* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --navy-deepest: #060A14;
    --navy-deep: #0A0E1A;
    --navy-mid: #0F1629;
    --navy-surface: #141D35;
    --navy-elevated: #1A2440;
    --navy-border: rgba(255,255,255,0.08);
    --navy-border-bright: rgba(255,255,255,0.14);
    --blue: #2563EB;
    --blue-bright: #3B7BFF;
    --blue-glow: rgba(37,99,235,0.35);
    --blue-faint: rgba(37,99,235,0.1);
    --white: #ffffff;
    --off-white: #F7F8FC;
    --ink: #0A0E1A;
    --ink-mid: #1E2840;
    --ink-soft: #4A5578;
    --muted: #8892AA;
    --border-light: #E4E8F0;
    --gold: #F5C842;
    --gold-dim: rgba(245,200,66,0.15);
}

html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--navy-deepest); color: #fff; }

/* ═══════════════════════════════════════
   FEATURE HERO
═══════════════════════════════════════ */
.fp-hero {
    position: relative;
    background: var(--navy-deepest);
    padding-top: 76px;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.fp-hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(37,99,235,0.22) 0%,
        rgba(37,99,235,0.08) 35%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.fp-hero-glow-accent {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.fp-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.6) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.6) 0%, transparent 70%);
}

/* Deco elements */
.fp-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.fp-deco-dots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.fp-deco-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

.fp-deco-dot:nth-child(odd) { background: rgba(37,99,235,0.5); }
.fp-deco-dot:nth-child(3n) { background: rgba(255,255,255,0.12); }

.fp-deco-ring {
    border-radius: 50%;
    border: 1.5px solid rgba(37,99,235,0.25);
    animation: fpSlowSpin 20s linear infinite;
}

.fp-deco-ring-inner {
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.1);
    animation: fpSlowSpinReverse 15s linear infinite;
}

@keyframes fpSlowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fpSlowSpinReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes fpFloatDrift {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes fpFadeSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fpFadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fpLivePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}
@keyframes fpCardReveal {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fpLinePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.fp-hero-inner {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px 100px;
    width: 100%;
}

.fp-hero-content {
    max-width: 680px;
}

.fp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
    letter-spacing: -0.1px;
}

.fp-back-link:hover { color: rgba(255,255,255,0.75); }
.fp-back-link svg { transition: transform 0.2s; }
.fp-back-link:hover svg { transform: translateX(-3px); }

.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    animation: fpFadeSlideDown 0.6s ease both;
}

.fp-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.fp-h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -2.5px;
    color: #fff;
    margin-bottom: 20px;
    animation: fpFadeSlideDown 0.6s 0.07s ease both;
}

.fp-h1 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgba(255,255,255,0.88);
}

.fp-hero-desc {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255,255,255,0.52);
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.2px;
    animation: fpFadeSlideDown 0.6s 0.14s ease both;
}

.fp-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fpFadeSlideDown 0.6s 0.21s ease both;
}

.btn-fp-primary {
    padding: 13px 28px;
    background: var(--blue);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.22s;
    letter-spacing: -0.2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-fp-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--blue-glow);
    color: #fff;
    text-decoration: none;
}

.btn-fp-secondary {
    padding: 13px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.22s;
    letter-spacing: -0.2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-fp-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
}

/* Hero visual panel */
.fp-hero-visual {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    animation: fpFadeSlideUp 0.8s 0.2s ease both;
}

/* ═══════════════════════════════════════
   FEATURE STATS BAR
═══════════════════════════════════════ */
.fp-stats {
    background: var(--navy-surface);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    padding: 28px 48px;
}

.fp-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.fp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fp-stat-num {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.fp-stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: -0.1px;
    text-align: center;
}

.fp-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--navy-border-bright);
}

/* ═══════════════════════════════════════
   FEATURE HOW IT WORKS (dark section)
═══════════════════════════════════════ */
.fp-how {
    background: var(--navy-deep);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.fp-how::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.4), transparent);
    animation: fpLinePulse 3s ease-in-out infinite;
}

.fp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.fp-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fp-section-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
}

.fp-section-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.fp-section-h2 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
}

.fp-section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin-bottom: 60px;
    letter-spacing: -0.2px;
}

/* Steps */
.fp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fp-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.25s, background 0.25s;
}

.fp-step:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(37,99,235,0.3);
}

.fp-step-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 20px;
    opacity: 0.45;
}

.fp-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fp-step-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #fff;
    margin-bottom: 10px;
}

.fp-step-body {
    font-size: 14px;
    line-height: 1.68;
    color: rgba(255,255,255,0.48);
    letter-spacing: -0.1px;
}

/* ═══════════════════════════════════════
   BENEFITS SECTION (white section)
═══════════════════════════════════════ */
.fp-benefits {
    background: var(--white);
    padding: 100px 48px;
    position: relative;
}

.fp-benefits-eyebrow { color: var(--blue); }
.fp-benefits-eyebrow::before { background: var(--blue); }

.fp-benefits-h2 {
    color: var(--ink);
    margin-bottom: 16px;
}

.fp-benefits-h2 em { color: var(--ink-soft); }

.fp-benefits-desc {
    color: var(--ink-soft);
    margin-bottom: 60px;
}

.fp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fp-benefit-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.fp-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fc-accent, linear-gradient(90deg,#2563EB,#6366f1));
    opacity: 0;
    transition: opacity 0.25s;
}

.fp-benefit-card:hover { border-color: rgba(37,99,235,0.2); box-shadow: 0 8px 32px rgba(37,99,235,0.08); }
.fp-benefit-card:hover::before { opacity: 1; }

.fp-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fp-benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.fp-benefit-body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
    letter-spacing: -0.1px;
}

/* ═══════════════════════════════════════
   FEATURE HIGHLIGHT (alternating)
═══════════════════════════════════════ */
.fp-highlight {
    padding: 100px 48px;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.fp-highlight-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fp-highlight-inner.reversed { direction: rtl; }
.fp-highlight-inner.reversed > * { direction: ltr; }

.fp-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #7FB3FF;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fp-highlight-h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 16px;
}

.fp-highlight-h3 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

.fp-highlight-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    letter-spacing: -0.1px;
    margin-bottom: 28px;
}

.fp-highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fp-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.fp-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Visual panel (dark glass card) */
.fp-glass-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-border-bright);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.fp-glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* Mockup rows inside glass panel */
.fp-mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.fp-mock-row:last-child { margin-bottom: 0; }

.fp-mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    font-family: 'Newsreader', serif;
    font-style: italic;
}

.fp-mock-info { flex: 1; min-width: 0; }

.fp-mock-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-mock-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: -0.1px;
}

.fp-mock-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 100px;
    white-space: nowrap;
}

.fp-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fp-mock-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.3px;
}

.fp-live-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 100px;
    padding: 2px 9px;
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
}

.fp-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10b981;
    animation: fpLivePulse 1.4s infinite;
}

/* ═══════════════════════════════════════
   FEATURES MINI CARDS (dark detail)
═══════════════════════════════════════ */
.fp-details {
    background: var(--navy-deepest);
    padding: 100px 48px;
}

.fp-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.fp-detail-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 18px;
    padding: 24px 20px;
    transition: all 0.25s;
}

.fp-detail-card:hover {
    background: rgba(255,255,255,0.055);
    border-color: rgba(37,99,235,0.25);
    transform: translateY(-3px);
}

.fp-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.fp-detail-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.fp-detail-body {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.42);
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.fp-cta {
    background: var(--navy-surface);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fp-cta-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.fp-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.fp-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue-bright);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fp-cta-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue-bright);
    border-radius: 1px;
}

.fp-cta-eyebrow::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue-bright);
    border-radius: 1px;
}

.fp-cta-h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 16px;
}

.fp-cta-h2 em {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

.fp-cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    margin-bottom: 40px;
    letter-spacing: -0.2px;
}

.fp-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FEATURE ICON CHIP
═══════════════════════════════════════ */
.fp-icon-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 10px 14px 10px 10px;
    margin-bottom: 28px;
    animation: fpFadeSlideDown 0.6s ease both;
}

.fp-icon-chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-icon-chip-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: -0.2px;
}

/* ═══════════════════════════════════════
   OTHER FEATURES BAND
═══════════════════════════════════════ */
.fp-other-features {
    background: var(--white);
    padding: 80px 48px;
}

.fp-other-features-eyebrow { color: var(--blue); }
.fp-other-features-eyebrow::before { background: var(--blue); }

.fp-other-features-h2 {
    color: var(--ink);
    margin-bottom: 48px;
}

.fp-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fp-other-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 22px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.fp-other-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--fc-accent, linear-gradient(90deg,#2563EB,#6366f1));
    opacity: 0;
    transition: opacity 0.25s;
}

.fp-other-card:hover { border-color: rgba(37,99,235,0.2); box-shadow: 0 6px 24px rgba(37,99,235,0.07); transform: translateY(-2px); text-decoration: none; }
.fp-other-card:hover::before { opacity: 1; }

.fp-other-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-other-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.fp-other-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.fp-other-card-link {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .fp-hero-visual { display: none; }
    .fp-hero-inner { padding: 80px 32px 100px; }
    .fp-how, .fp-benefits, .fp-highlight, .fp-details, .fp-cta, .fp-other-features, .fp-stats { padding-left: 32px; padding-right: 32px; }
    .fp-stats-inner { justify-content: center; gap: 24px; }
    .fp-details-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-other-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .fp-hero-inner { padding: 60px 20px 80px; }
    .fp-h1 { letter-spacing: -1.5px; }
    .fp-how, .fp-benefits, .fp-highlight, .fp-details, .fp-cta, .fp-other-features, .fp-stats { padding-left: 20px; padding-right: 20px; padding-top: 64px; padding-bottom: 64px; }
    .fp-steps { grid-template-columns: 1fr; gap: 16px; }
    .fp-benefits-grid { grid-template-columns: 1fr; }
    .fp-highlight-inner { grid-template-columns: 1fr; gap: 40px; }
    .fp-highlight-inner.reversed { direction: ltr; }
    .fp-details-grid { grid-template-columns: 1fr 1fr; }
    .fp-other-grid { grid-template-columns: 1fr; }
    .fp-stat-divider { display: none; }
    .fp-stats-inner { gap: 24px; }
    .fp-stat-item { flex: 1 1 40%; }
    .fp-hero-cta { flex-direction: column; }
    .btn-fp-primary, .btn-fp-secondary { justify-content: center; }
}

@media (max-width: 480px) {
    .fp-details-grid { grid-template-columns: 1fr; }
    .fp-stat-item { flex: 1 1 100%; }
}

/* ═══════════════════════════════════════
   NOTIFICATION STACK MOCKUP
═══════════════════════════════════════ */
.fp-notif-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fp-notif {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fpFloatDrift 6s ease-in-out infinite;
}

.fp-notif:nth-child(2) { animation-delay: 1s; }
.fp-notif:nth-child(3) { animation-delay: 2s; }

.fp-notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-notif-content { flex: 1; min-width: 0; }

.fp-notif-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.2px;
    margin-bottom: 3px;
}

.fp-notif-body {
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    line-height: 1.5;
}

.fp-notif-time {
    font-size: 10px;
    color: rgba(255,255,255,0.28);
    white-space: nowrap;
    font-family: 'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════
   STREAMING MOCKUP
═══════════════════════════════════════ */
.fp-stream-overlay {
    background: linear-gradient(135deg, rgba(8,20,50,0.9), rgba(3,10,30,0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.fp-stream-topbar {
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fp-stream-body {
    padding: 16px;
}

.fp-stream-player-card {
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.fp-stream-bid-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
}

.fp-stream-bid-row:last-child { border-bottom: none; }

/* ═══════════════════════════════════════
   THEME SWATCHES MOCKUP
═══════════════════════════════════════ */
.fp-theme-swatches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fp-swatch {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    cursor: default;
}

.fp-swatch.active { border-color: rgba(37,99,235,0.6); }
.fp-swatch-preview {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
}

.fp-swatch-label {
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: -0.1px;
}

/* ═══════════════════════════════════════
   REPLAY TIMELINE MOCKUP
═══════════════════════════════════════ */
.fp-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fp-timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fp-timeline-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.fp-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fp-timeline-line {
    width: 1px;
    flex: 1;
    min-height: 24px;
    background: rgba(255,255,255,0.08);
}

.fp-timeline-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 11px 14px;
    margin-bottom: 10px;
    flex: 1;
}

.fp-timeline-team {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2px;
}

.fp-timeline-amount {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.fp-timeline-time {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 3px;
}

/* Registration form mockup */
.fp-reg-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
}

.fp-reg-field {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    padding: 10px 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fp-reg-field-label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: -0.1px;
}

.fp-reg-field-val {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.fp-reg-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--blue);
    border-radius: 9px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
    margin-top: 16px;
}

/* Device row for remote bidding */
.fp-device-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-device-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    transition: background 0.2s;
}

.fp-device-card.online {
    background: rgba(37,99,235,0.08);
    border-color: rgba(37,99,235,0.2);
}

.fp-device-name {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    letter-spacing: -0.1px;
}

.fp-device-status {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 100px;
}

/* Analytics bar chart mockup */
.fp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    padding: 0 4px;
}

.fp-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: opacity 0.2s;
    min-width: 12px;
}

.fp-chart-bar:hover { opacity: 0.8; }

.fp-chart-labels {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    padding: 0 4px;
}

.fp-chart-label {
    flex: 1;
    text-align: center;
    font-size: 9px;
    color: rgba(255,255,255,0.25);
    font-family: 'JetBrains Mono', monospace;
}
