:root {
    --bg-base: #050511;
    --bg-surface: rgba(18, 18, 32, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.18);

    --accent-primary: #8b5cf6;
    --accent-secondary: #3b82f6;
    --accent-pink: #e879f9;
    --accent-amber: #f59e0b;
    --accent-green: #10b981;
    --accent-glow: rgba(139, 92, 246, 0.45);
    --accent-blue-glow: rgba(59, 130, 246, 0.35);

    --text-main: #f1f0ff;
    --text-muted: #9896b8;
    --text-dim: #5c5a7a;

    --glass-blur: 24px;
    --radius-card: 24px;
    --radius-pill: 999px;

    --section-pad: 5rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .brand-logo span {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ─── Animated Mesh Background ─────────────────────────────── */
.bg-mesh {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, #111130 0%, var(--bg-base) 70%);
}
.mesh-blob {
    position: absolute; border-radius: 50%;
    filter: blur(130px); opacity: 0;
    animation: blobFloat 20s infinite alternate ease-in-out;
    animation-fill-mode: forwards;
}
.mesh-1 { top: -15%; left: -15%; width: 55vw; height: 55vw; background: var(--accent-primary); opacity: 0.38; }
.mesh-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: var(--accent-secondary); opacity: 0.3; animation-delay: -6s; }
.mesh-3 { top: 35%; left: 35%; width: 40vw; height: 40vw; background: var(--accent-pink); opacity: 0.18; animation-delay: -12s; }
.mesh-4 { top: 60%; left: -10%; width: 30vw; height: 30vw; background: var(--accent-amber); opacity: 0.1; animation-delay: -9s; }

@keyframes blobFloat {
    0%   { transform: scale(1) translate(0, 0); }
    50%  { transform: scale(1.1) translate(3%, -4%); }
    100% { transform: scale(1.2) translate(6%, 5%); }
}

/* ─── Glass Utility ─────────────────────────────────────────── */
.glass, .glass-panel, .glass-nav {
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
}
.glass-panel { background: rgba(20, 18, 40, 0.7); }

/* Shine sweep on selected cards on hover */
.fb-card, .ab-card, .perk-card, .hof-card, .plexie-card, .pricing-card, .dl-btn {
    position: relative; overflow: hidden;
}
.fb-card::before, .ab-card::before, .perk-card::before,
.plexie-card::before, .dl-btn::before {
    content: ''; position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    transition: left 0.7s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none; z-index: 1;
}
.fb-card:hover::before, .ab-card:hover::before, .perk-card:hover::before,
.plexie-card:hover::before, .dl-btn:hover::before {
    left: 120%;
}
.fb-card > *, .ab-card > *, .perk-card > *,
.plexie-card > *, .dl-btn > * { position: relative; z-index: 2; }

/* ─── Gradient Text ─────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(115deg, #a78bfa 0%, #60a5fa 35%, #e879f9 65%, #a78bfa 100%);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 9s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position:   0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ─── Scroll progress bar (top of viewport) ─────────────────── */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0%;
    background: linear-gradient(90deg, #a78bfa, #60a5fa, #e879f9);
    z-index: 1100; pointer-events: none;
    box-shadow: 0 0 12px rgba(167,139,250,0.7);
    transition: width 0.08s linear;
}

/* ─── Premium dot grid overlay (subtle) ─────────────────────── */
.bg-dotgrid {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    border-bottom-color: var(--border-glass);
    background: rgba(8, 7, 20, 0.85);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center; height: 76px;
}
.brand-logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 1.45rem; font-weight: 800;
}
.logo-img { width: 30px; height: 30px; object-fit: contain; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a:not(.btn) {
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--accent-primary); transition: width 0.3s;
}
.nav-links a:not(.btn):hover { color: var(--text-main); }
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-main); border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    border-radius: var(--radius-pill); font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.btn-sm  { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg  { padding: 0.9rem 1.9rem; font-size: 1rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white; box-shadow: 0 4px 22px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-secondary { color: var(--text-main); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline {
    border: 1px solid var(--border-glass); color: var(--text-main);
    background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--border-glass-hover); }
.btn-block { width: 100%; text-align: center; }

/* ─── Section Shared ────────────────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent-primary); margin-bottom: 0.85rem;
    background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
}
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.section-header p  { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    padding-top: 130px; min-height: 100vh;
    display: flex; align-items: center; padding-bottom: 4rem;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.55rem; border-radius: var(--radius-pill);
    background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
    position: relative; overflow: hidden;
}
.badge::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: badgeShine 4.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes badgeShine {
    0%, 60% { transform: translateX(-100%); }
    100%    { transform: translateX(100%); }
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,0.7);
    animation: badgeDotPulse 2s infinite;
    flex-shrink: 0;
}
@keyframes badgeDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* ── Hero sparkles ────────────────────────────────────────── */
.hero-sparkles {
    position: absolute; inset: -10%;
    pointer-events: none; z-index: 1;
    overflow: visible;
}
.spark {
    position: absolute; width: 6px; height: 6px;
    background: radial-gradient(circle, #fff 0%, rgba(167,139,250,0.6) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: sparkTwinkle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(167,139,250,0.85));
}
.spark.s1 { top: 12%; left: 8%;  animation-delay: 0s;   }
.spark.s2 { top: 28%; left: 88%; animation-delay: 0.6s; width: 4px; height: 4px; }
.spark.s3 { top: 65%; left: 4%;  animation-delay: 1.2s; width: 5px; height: 5px; }
.spark.s4 { top: 80%; left: 78%; animation-delay: 1.8s; }
.spark.s5 { top: 8%;  left: 55%; animation-delay: 2.4s; width: 4px; height: 4px; }
.spark.s6 { top: 50%; left: 96%; animation-delay: 3.0s; width: 5px; height: 5px; }
@keyframes sparkTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50%      { opacity: 1; transform: scale(1.4); }
}

/* ── Hero social proof row ───────────────────────────────── */
.hero-social {
    margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap;
}
.hero-avatars {
    display: flex; align-items: center;
}
.hero-avatars img {
    width: 34px; height: 34px; border-radius: 50%;
    object-fit: cover; object-position: center;
    background: linear-gradient(135deg, #2a2547, #1a1730);
    border: 2px solid var(--bg-base);
    margin-left: -10px;
    transition: transform 0.25s ease;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-avatars img:hover { transform: translateY(-3px) scale(1.08); z-index: 5; }
.hero-social-text {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.45;
}
.hero-social-text strong { color: var(--text-main); font-weight: 700; }
.hero-stars { color: #fbbf24; letter-spacing: 1px; font-size: 0.85rem; }
.hero-title {
    font-size: clamp(3rem, 5vw, 4.8rem); line-height: 1.05;
    margin-bottom: 1.4rem;
}
.hero-desc {
    font-size: 1.15rem; color: var(--text-muted);
    margin-bottom: 2.2rem; max-width: 88%; line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }

.hero-platforms { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.platform-pill {
    font-size: 0.78rem; padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass);
    color: var(--text-muted); font-weight: 500;
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.platform-pill.soon {
    color: var(--accent-amber); border-color: rgba(245,158,11,0.2);
    background: rgba(245,158,11,0.06);
}

.hero-visual { position: relative; perspective: 1200px; }
.hero-image-wrapper {
    position: relative;
    transform: rotateY(-12deg) rotateX(4deg); transform-style: preserve-3d;
    transition: transform 0.5s ease;
}
.hero-image-wrapper:hover { transform: rotateY(-4deg) rotateX(1deg); }
.hero-img {
    width: 100%; border-radius: 24px;
    box-shadow: 24px 24px 70px rgba(0,0,0,0.55);
    border: 1px solid var(--border-glass);
}

/* Hero Plexie Cluster */
.hero-plexie-cluster {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 0 20px;
}
.hpc-img {
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}
.hpc-img:hover { transform: translateY(-10px) scale(1.08) !important; }
.hpc-center { width: 160px !important; height: 160px !important; z-index: 3; margin: 0 -8px; }
.hpc-near   { width: 120px !important; height: 120px !important; z-index: 2; transform: translateY(20px); margin: 0 -6px; }
.hpc-side   { width:  90px !important; height:  90px !important; z-index: 1; transform: translateY(36px); opacity: 0.85; }
.hpc-glow {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 320px; height: 70px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.4) 0%, transparent 70%);
    filter: blur(28px); z-index: 0; pointer-events: none;
}
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
.floating { animation: floatAnim 6s ease-in-out infinite; }
.hero-image-wrapper:hover { animation-play-state: paused; }

.hero-badge-1, .hero-badge-2 {
    position: absolute; display: flex; align-items: center; gap: 0.65rem;
    padding: 0.65rem 1rem; border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: floatAnim 6s ease-in-out infinite;
}
.hero-badge-1 { bottom: 30%; left: -10%; animation-delay: -1s; }
.hero-badge-2 { top: 5%;   right: -10%; animation-delay: -3s; }
.hb-icon { display: flex; align-items: center; }
.hb-icon svg { width: 20px; height: 20px; stroke: var(--accent-amber); stroke-width: 2; }
.hb-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.hb-value { font-size: 1rem; font-weight: 700; font-family: 'Outfit', sans-serif; }

/* ─── Launch Strip ──────────────────────────────────────────── */
.launch-strip {
    margin: 0 2rem; border-radius: 20px;
    padding: 1.1rem 2rem;
}
.launch-strip-inner {
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    max-width: 1100px; margin: 0 auto;
}
.launch-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
}
.launch-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.launch-emoji { display: flex; align-items: center; flex-shrink: 0; }
.launch-emoji svg { width: 16px; height: 16px; stroke: var(--accent-primary); stroke-width: 2; }
.launch-label { color: var(--text-muted); }
.launch-divider { width: 1px; height: 28px; background: var(--border-glass); flex-shrink: 0; }

/* ─── Features Section ──────────────────────────────────────── */
.features-section { padding: var(--section-pad) 0; }

/* Feature Bento Overview */
.feature-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 1rem; margin-bottom: 6rem;
}
.fb-card {
    padding: 1.5rem 1.25rem; border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.15rem;
}
/* Hero "Smart Timer" tile spans 2 columns × 2 rows for visual rhythm */
.fb-card--hero {
    grid-column: span 2;
    grid-row: span 2;
    text-align: left;
    align-items: flex-start; justify-content: flex-start;
    padding: 2rem 1.85rem;
    background: linear-gradient(135deg, rgba(139,92,246,0.14) 0%, rgba(59,130,246,0.08) 60%, rgba(232,121,249,0.06) 100%) !important;
    border: 1px solid rgba(139,92,246,0.28) !important;
    position: relative; overflow: hidden;
}
.fb-card--hero::after {
    content: ''; position: absolute; right: -40px; bottom: -40px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, transparent 70%);
    pointer-events: none; opacity: 0.6;
}
.fb-card--hero .fb-icon {
    width: 56px; height: 56px; margin: 0 0 0.85rem;
}
.fb-card--hero .fb-icon svg { width: 26px; height: 26px; }
.fb-card--hero h4 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.fb-card--hero p  { font-size: 0.94rem; color: var(--text-muted); max-width: 90%; line-height: 1.55; }
.fb-hero-pills {
    margin-top: 1.1rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.fb-hero-pills .pill { font-size: 0.74rem; padding: 0.3rem 0.7rem; }
/* legacy wide modifier — keep backward compat */
.fb-card--wide { grid-column: span 1; }
.fb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139,92,246,0.3);
    background: rgba(139,92,246,0.08);
}
.fb-icon {
    margin: 0 auto 0.7rem; display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(59,130,246,0.1));
    border: 1px solid rgba(139,92,246,0.22);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.fb-card:hover .fb-icon {
    transform: translateY(-2px) rotate(-4deg) scale(1.05);
    box-shadow: 0 8px 22px rgba(139,92,246,0.28);
}
.fb-icon svg { width: 22px; height: 22px; stroke: #c4b5fd; stroke-width: 1.75; }
.fb-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.fb-card p  { font-size: 0.78rem; color: var(--text-muted); }

/* Feature Rows */
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-bottom: 4.5rem;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text { max-width: 520px; }

.feature-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent-primary); margin-bottom: 1rem;
    padding: 0.25rem 0.75rem; border-radius: var(--radius-pill);
    background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.22);
}

.feature-icon-box {
    width: 52px; height: 52px;
    background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.feature-icon-box svg { width: 24px; height: 24px; stroke: var(--accent-primary); stroke-width: 1.75; }
.feature-icon-box.lockin-icon {
    background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(232,121,249,0.12));
    border-color: rgba(139,92,246,0.35);
    box-shadow: 0 0 24px rgba(139,92,246,0.18);
}
.feature-text h3 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom: 1.1rem; line-height: 1.2; }
.feature-text p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.75rem; line-height: 1.75; }

.feature-list { list-style: none; margin-bottom: 1.5rem; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 0.85rem; font-size: 0.98rem; color: var(--text-muted);
}
.feature-list li::before {
    content: '✓'; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; background: rgba(139,92,246,0.2);
    border-radius: 50%; font-size: 0.65rem; font-weight: 800; color: #a78bfa;
    margin-top: 2px;
}

/* Pill tags for features */
.feature-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
    font-size: 0.8rem; padding: 0.35rem 0.85rem; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass);
    color: var(--text-muted); font-weight: 500;
}

/* Room category tags */
.room-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.room-tag {
    font-size: 0.82rem; padding: 0.35rem 0.85rem; border-radius: var(--radius-pill);
    background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
    color: #93c5fd; font-weight: 600;
}

/* Feature Visuals */
.feature-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.mobile-mockup {
    width: 280px; border-radius: 36px; border: 8px solid #16162a;
    box-shadow: 0 30px 60px rgba(0,0,0,0.55); position: relative; z-index: 2;
    object-fit: cover;
}
.tall-mockup { width: 256px; }
.img-glass {
    width: 100%; border-radius: 24px; border: 1px solid var(--border-glass);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); z-index: 2;
}
.wide-mockup {
    max-width: 460px; border-radius: 20px;
}
.mockup-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%; background: var(--accent-primary); filter: blur(80px); opacity: 0.3; z-index: 1;
}
.mockup-glow.color-2 { background: var(--accent-secondary); }
.mockup-glow.color-3 { background: #e879f9; }


/* Image Stack */
.image-stack { position: relative; width: 100%; min-height: 500px; display: flex; justify-content: center; align-items: center; }
.image-stack img { position: absolute; transition: transform 0.5s ease; }
.img-front { z-index: 3; transform: scale(1) translateX(0); }
.img-back-1 { z-index: 2; transform: scale(0.9) translateX(-40px) rotate(-5deg); opacity: 0.8; }
.img-back-2 { z-index: 1; transform: scale(0.8) translateX(50px) rotate(8deg); opacity: 0.6; }
.image-stack:hover .img-front { transform: scale(1.05) translateX(0); }
.image-stack:hover .img-back-1 { transform: scale(0.95) translateX(-80px) rotate(-10deg); opacity: 1; }
.image-stack:hover .img-back-2 { transform: scale(0.85) translateX(90px) rotate(15deg); opacity: 1; }

/* Floating Plexies */
.floating-plexie {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 0;
    opacity: 0.8;
    animation: float-plexie 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes float-plexie {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ─── Floating Plexies ──────────────────────────────────────── */
.fp {
    position: fixed; z-index: 0; pointer-events: none;
    width: 72px; opacity: 0.12;
    filter: drop-shadow(0 4px 12px rgba(139,92,246,0.2));
    animation: fpFloat 9s ease-in-out infinite;
}
.fp-1 { top: 22%; left: 0.5%;  animation-delay: 0s;    width: 68px; }
.fp-2 { top: 58%; right: 0.5%; animation-delay: -2.5s; width: 72px; }
.fp-3 { top: 80%; left: 0.5%;  animation-delay: -5s;   width: 64px; }
.fp-4 { top: 38%; right: 0.5%; animation-delay: -1.5s; width: 70px; }
.fp-5 { top: 68%; right: 0.5%; animation-delay: -3.5s; width: 66px; }

@keyframes fpFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 1100px) { .fp { display: none; } }

/* ─── Plexie Showcase Section ───────────────────────────────── */
.plexie-showcase-section { margin-bottom: 4.5rem; }
.plexie-showcase-header { margin-bottom: 3rem; }
.plexie-showcase-header h3 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom: 1rem; line-height: 1.2; }
.plexie-showcase-header p  { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; line-height: 1.75; }

.plexie-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 1.5rem;
}

.plexie-card {
    border-radius: 20px; padding: 1.5rem 1rem 1.25rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; cursor: default;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
}
.plexie-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139,92,246,0.35);
    background: rgba(139,92,246,0.07);
    box-shadow: 0 16px 40px rgba(139,92,246,0.15);
}

.plexie-img-wrap {
    width: 120px; height: 120px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.03) 75%, transparent 100%);
    border-radius: 50%;
}
.plexie-img {
    width: 108px; height: 108px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
    border-radius: 14px;
}
.plexie-card:hover .plexie-img { transform: scale(1.15) translateY(-5px); }

.plexie-info { width: 100%; }
.plexie-name {
    font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800;
    margin-bottom: 0.3rem; color: var(--text-main);
}
.plexie-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; min-height: 36px; }
.plexie-unlock {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    padding: 0.25rem 0.7rem; border-radius: var(--radius-pill); letter-spacing: 0.04em;
}
.free-tag { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: var(--accent-green); }
.plus-tag { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: var(--accent-amber); }

/* "More soon" card */
.plexie-more {
    display: flex; align-items: center; justify-content: center;
    border: 1px dashed rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
}
.plexie-more:hover { border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.05); }
.plexie-more-inner { text-align: center; }
.plexie-more-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.plexie-note {
    text-align: center; color: var(--text-dim); font-size: 0.85rem; font-style: italic;
}

/* ─── Analytics Section ─────────────────────────────────────── */
.analytics-section { padding: var(--section-pad) 0; }
.analytics-inner {
    border-radius: 32px; padding: 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.analytics-inner .feature-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1.2rem;
}
.analytics-inner .feature-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.analytics-bento {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ab-card {
    padding: 1.25rem 1rem; border-radius: 16px;
    transition: all 0.3s; border: 1px solid rgba(255,255,255,0.04);
}
.ab-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.ab-icon { margin-bottom: 0.5rem; display: flex; }
.ab-icon svg { width: 22px; height: 22px; stroke: var(--accent-primary); stroke-width: 1.75; }
.ab-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem; }
.ab-card p  { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Gamification / Hall of Fame ───────────────────────────── */
.gamification-section { padding: var(--section-pad) 0; }

/* Hero split layout */
.hof-hero {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 4rem; align-items: center;
    margin-bottom: 3.5rem;
}
.hof-screenshot-wrap {
    position: relative; display: flex; justify-content: center;
}
.hof-screenshot {
    width: 260px; max-height: 420px; object-fit: cover; object-position: top center;
    border-radius: 32px;
    border: 7px solid #1a1a2e;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative; z-index: 2;
}
.hof-screen-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(245,158,11,0.25), rgba(139,92,246,0.2), transparent 70%);
    filter: blur(40px); z-index: 1; border-radius: 50%;
}
.hof-right h3 { font-size: clamp(1.6rem, 2.2vw, 2.2rem); margin-bottom: 1rem; line-height: 1.25; }
.hof-right p  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }

/* Tier ladder */
.tier-ladder { }
.tier-ladder-label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-dim); margin-bottom: 1rem;
}
.tier-row {
    display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.tier-badge-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    transition: transform 0.25s;
}
.tier-badge-item:hover { transform: scale(1.15) translateY(-3px); }
.tier-badge-item img {
    width: 52px; height: 52px; object-fit: contain;
    filter: drop-shadow(0 2px 10px var(--tier-glow, rgba(245,158,11,0.45)));
    transition: filter 0.3s ease, transform 0.3s ease;
}
.tier-badge-item:hover img { transform: scale(1.1) translateY(-2px); }
.tier-badge-item span {
    font-size: 0.62rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.tier-badge-item.t-1 { --tier-glow: rgba(156,163,175,0.5); }
.tier-badge-item.t-2 { --tier-glow: rgba(96,165,250,0.55); }
.tier-badge-item.t-3 { --tier-glow: rgba(52,211,153,0.55); }
.tier-badge-item.t-4 { --tier-glow: rgba(167,139,250,0.6); }
.tier-badge-item.t-5 { --tier-glow: rgba(251,191,36,0.65); }
.tier-badge-item.t-6 { --tier-glow: rgba(239,68,68,0.55); }
.tier-badge-item.t-7 { --tier-glow: rgba(245,158,11,0.85); }
.tier-badge-item.t-7 img { filter: drop-shadow(0 0 14px var(--tier-glow)) drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.tier-arrow {
    color: var(--text-dim); font-size: 0.9rem; opacity: 0.7;
    animation: tierArrowPulse 2.2s ease-in-out infinite;
}
.tier-row .tier-arrow:nth-child(2) { animation-delay: 0s;    }
.tier-row .tier-arrow:nth-child(4) { animation-delay: 0.15s; }
.tier-row .tier-arrow:nth-child(6) { animation-delay: 0.3s;  }
.tier-row .tier-arrow:nth-child(8) { animation-delay: 0.45s; }
.tier-row .tier-arrow:nth-child(10){ animation-delay: 0.6s;  }
.tier-row .tier-arrow:nth-child(12){ animation-delay: 0.75s; }
@keyframes tierArrowPulse {
    0%, 100% { opacity: 0.35; transform: translateX(0); }
    50%      { opacity: 1;    transform: translateX(3px); }
}

/* 3 cards below */
.hof-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hof-card {
    border-radius: var(--radius-card); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hof-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.hof-card-img { width: 100%; height: 320px; object-fit: cover; object-position: center 15%; border-bottom: 1px solid var(--border-glass); }
.hof-card-body { padding: 1.5rem; flex: 1; }
.hof-card-body h3 { font-size: 1.25rem; margin: 0.4rem 0 0.5rem; }
.hof-card-body p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.g-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent-amber);
}

/* Synapse card (3rd card, no image) */
.synapse-card-inner {
    padding: 1.5rem; display: flex; flex-direction: column; height: 100%;
    background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(139,92,246,0.06));
}
.synapse-big-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.synapse-card-inner h3 { font-size: 1.25rem; margin: 0.4rem 0 0.5rem; }
.synapse-card-inner p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; flex: 1; }
.synapse-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.syn-pill {
    font-size: 0.72rem; padding: 0.25rem 0.65rem; border-radius: var(--radius-pill);
    background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
    color: var(--accent-amber); font-weight: 600;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: var(--section-pad) 0; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    padding: 2rem; border-radius: var(--radius-card);
    display: flex; flex-direction: column; gap: 1.25rem;
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139,92,246,0.2);
}
.t-stars { color: var(--accent-amber); font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-card p {
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.75;
    flex: 1; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 0.85rem; }
.t-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; color: white; flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}
.t-name { font-weight: 700; font-size: 0.92rem; }
.t-role { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing-section { padding: var(--section-pad) 0; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1180px; margin: 0 auto 5rem;
    align-items: stretch;
}
.pricing-card {
    padding: 2.25rem 1.85rem; border-radius: 28px;
    display: flex; flex-direction: column; position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-5px); }

/* Monthly Plus accent (purple-ish) */
.plus-card {
    border: 1px solid rgba(139, 92, 246, 0.28);
    box-shadow: 0 8px 36px rgba(139, 92, 246, 0.08);
}
.plus-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 28px;
    background: radial-gradient(circle at 50% -20%, rgba(139,92,246,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.plan-tag {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #c4b5fd; background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
    padding: 0.15rem 0.6rem; border-radius: var(--radius-pill);
    font-family: 'Inter', sans-serif;
}

/* Yearly Plus (premium, amber accent) */
.premium-card {
    border: 1px solid rgba(245,158,11,0.35);
    box-shadow: 0 10px 44px rgba(245,158,11,0.12);
    background: rgba(22, 18, 40, 0.78);
}
.premium-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 28px;
    background: radial-gradient(circle at 50% -20%, rgba(245,158,11,0.16) 0%, transparent 60%);
    pointer-events: none;
}
.premium-card::after {
    content: ''; position: absolute; inset: -1px; border-radius: 29px;
    background: conic-gradient(from 0deg,
        rgba(245,158,11,0) 0%, rgba(245,158,11,0.6) 12%,
        rgba(251,191,36,0.85) 22%, rgba(245,158,11,0) 38%,
        rgba(245,158,11,0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    padding: 1px; pointer-events: none; opacity: 0.85;
    animation: premiumSpin 6s linear infinite;
    z-index: 0;
}
@keyframes premiumSpin {
    to { transform: rotate(360deg); }
}
.premium-card > * { position: relative; z-index: 2; }
.popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000;
    padding: 0.35rem 1.1rem; border-radius: var(--radius-pill);
    font-weight: 800; font-size: 0.72rem; letter-spacing: 0.05em; z-index: 5;
    white-space: nowrap;
}
.tier-icon { margin-bottom: 0.6rem; display: flex; }
.tier-icon svg { width: 28px; height: 28px; stroke: var(--accent-primary); stroke-width: 1.75; }
.pricing-header { text-align: center; margin-bottom: 1.85rem; position: relative; z-index: 1; }
.pricing-header h3 {
    font-size: 1.4rem; margin-bottom: 0.7rem;
    display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.inline-logo-small { width: 24px; height: 24px; border-radius: 6px; }
.price { font-size: 2.85rem; font-weight: 800; line-height: 1; margin-bottom: 0.35rem; font-family: 'Outfit', sans-serif; }
.price span { font-size: 0.92rem; color: var(--text-muted); font-weight: 500; font-family: 'Inter', sans-serif; }
.price-strike { text-decoration: line-through; color: var(--text-dim); font-size: 0.95rem; font-weight: 500; margin-bottom: 0.2rem; }
.price-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.5; }
.plus-text { background: linear-gradient(135deg,#fbbf24,#f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }

.pricing-features { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; position: relative; z-index: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.85rem; font-size: 0.9rem; line-height: 1.5; }
.check  { color: var(--accent-green); font-weight: 800; flex-shrink: 0; }
.check.highlight { color: var(--accent-amber); }
.cross  { color: #6b5555; font-weight: 800; flex-shrink: 0; }

/* ─── Plus Perks Bento ─────────────────────────────────────── */
.plus-perks {
    max-width: 1180px; margin: 0 auto 4rem;
}
.plus-perks-header {
    text-align: center; margin-bottom: 2.5rem;
}
.plus-eyebrow {
    color: var(--accent-amber);
    background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3);
    margin-bottom: 0.85rem;
}
.plus-perks-header h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: var(--text-main);
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.perk-card {
    padding: 1.4rem 1.25rem; border-radius: 18px;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.perk-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139,92,246,0.06);
}
.perk-icon {
    margin-bottom: 0.6rem;
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.2);
}
.perk-icon svg { width: 20px; height: 20px; stroke: var(--accent-primary); stroke-width: 1.75; }
.perk-highlight .perk-icon svg { stroke: var(--accent-amber); }
.perk-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.perk-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Highlighted perk (the new Synapse coins one) */
.perk-highlight {
    border: 1px solid rgba(245,158,11,0.35);
    background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(139,92,246,0.06));
}
.perk-highlight:hover {
    border-color: rgba(245,158,11,0.55);
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(139,92,246,0.1));
}
.perk-highlight .perk-icon {
    background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3);
}
.perk-badge {
    position: absolute; top: 0.8rem; right: 0.8rem;
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem; border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000;
}

/* ─── Subscription Notice ──────────────────────────────────── */
.subscription-notice {
    max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem;
    border-radius: 20px;
}
.sn-row {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center; gap: 1.25rem;
}
.sn-item {
    display: flex; align-items: flex-start; gap: 0.85rem;
}
.sn-icon {
    font-size: 1.5rem; flex-shrink: 0;
    width: 42px; height: 42px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border-glass);
}
.sn-item h5 {
    font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem;
    color: var(--text-main);
}
.sn-item p {
    font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; margin: 0;
}
.sn-link { color: #a78bfa; font-weight: 600; }
.sn-link:hover { color: #c4b5fd; text-decoration: underline; }
.sn-divider { width: 1px; align-self: stretch; background: var(--border-glass); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: var(--section-pad) 0; }
.faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; max-width: 1100px; margin: 0 auto;
}
.faq-item { border-radius: 16px; overflow: hidden; }
.faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; color: var(--text-main);
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
    text-align: left; gap: 1rem;
    transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
    flex-shrink: 0; font-size: 1.4rem; font-weight: 300; color: var(--accent-primary);
    transition: transform 0.3s ease; line-height: 1; font-family: 'Inter', sans-serif;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 0 1.5rem 1.25rem; color: var(--text-muted);
    font-size: 0.93rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ─── Final CTA banner ─────────────────────────────────────── */
.final-cta-section {
    padding: 3rem 0 1rem;
}
.final-cta {
    position: relative;
    border-radius: 36px;
    padding: 4rem 3rem;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(139,92,246,0.25);
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139,92,246,0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(232,121,249,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.18) 0%, transparent 60%),
        rgba(14, 12, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.final-cta::before {
    content: ''; position: absolute; inset: -1px; border-radius: 37px;
    background: conic-gradient(from 0deg,
        transparent 0%, rgba(167,139,250,0.55) 18%,
        transparent 36%, rgba(96,165,250,0.45) 55%,
        transparent 75%, rgba(232,121,249,0.5) 92%, transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    padding: 1px; pointer-events: none; opacity: 0.7;
    animation: premiumSpin 10s linear infinite;
}
.final-cta-plexies {
    display: flex; justify-content: center; align-items: flex-end;
    gap: 0; margin-bottom: 1.25rem; position: relative; z-index: 2;
}
.final-cta-plexies img {
    width: 64px; height: 64px; object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}
.final-cta-plexies img:nth-child(1) { transform: translateY(8px) rotate(-6deg); }
.final-cta-plexies img:nth-child(2) { width: 84px; height: 84px; z-index: 2; }
.final-cta-plexies img:nth-child(3) { transform: translateY(8px) rotate(6deg); }
.final-cta:hover .final-cta-plexies img:nth-child(2) { transform: translateY(-6px) scale(1.05); }
.final-cta h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.1; margin-bottom: 1rem;
    position: relative; z-index: 2;
}
.final-cta p {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 580px; margin: 0 auto 2rem; line-height: 1.7;
    position: relative; z-index: 2;
}
.final-cta .hero-cta {
    justify-content: center; margin: 0; position: relative; z-index: 2;
}
.final-cta-meta {
    margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-dim);
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    position: relative; z-index: 2;
}
.final-cta-meta span {
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.final-cta-meta svg { width: 14px; height: 14px; stroke: var(--accent-green); stroke-width: 2; }
@media (max-width: 680px) {
    .final-cta { padding: 2.5rem 1.5rem; border-radius: 28px; }
}

/* ─── Downloads ─────────────────────────────────────────────── */
.downloads-section { padding: var(--section-pad) 0; }

/* App preview row */
.dl-previews {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; align-items: flex-end;
    margin-bottom: 3rem;
}
.dl-preview-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
    transition: transform 0.3s;
}
.dl-preview-item:hover { transform: translateY(-6px); }
.dl-preview-center { transform: scale(1.06) translateY(-8px); }
.dl-preview-center:hover { transform: scale(1.06) translateY(-14px); }
.dl-preview-img {
    width: 100%; border-radius: 20px;
    border: 6px solid #16162a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: cover; max-height: 320px;
}
.dl-preview-label {
    font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
    text-align: center;
}

/* Download buttons row */
.dl-buttons {
    display: flex; flex-wrap: wrap; gap: 0.85rem;
    justify-content: center;
}
.dl-btn {
    display: flex; align-items: center; gap: 0.85rem;
    padding: 0.9rem 1.4rem; border-radius: 18px;
    transition: all 0.3s; cursor: pointer;
    min-width: 180px; flex: 0 0 auto;
}
.dl-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
    border-color: var(--border-glass-hover);
}
.dl-btn-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.brand-icon { width: 28px; height: 28px; color: var(--text-main); flex-shrink: 0; }
.pill-icon { width: 13px; height: 13px; flex-shrink: 0; }
.dl-btn-text { flex: 1; }
.dl-btn-text span { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.dl-btn-text strong { font-size: 1rem; display: block; margin-top: 0.1rem; }
.dl-btn-arrow { display: flex; align-items: center; color: var(--text-muted); transition: transform 0.3s; margin-left: auto; }
.dl-btn-arrow svg { width: 18px; height: 18px; stroke: currentColor; }
.dl-btn:hover .dl-btn-arrow { transform: translateX(3px); color: var(--text-main); }
.dl-badge {
    font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill); background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25); color: var(--accent-amber);
    flex-shrink: 0;
}
.placeholder { opacity: 0.7; cursor: default; }
.placeholder:hover { transform: none; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border-glass); padding: 4rem 0 2.5rem; margin-top: 2rem; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 250px; line-height: 1.65; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.2rem; font-family: 'Outfit', sans-serif; }
.footer-logo-img { width: 26px; height: 26px; border-radius: 7px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass);
    font-size: 1rem; color: var(--text-muted); transition: all 0.2s;
}
.footer-socials a:hover { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.3); color: var(--text-main); }
.footer-links h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 1.1rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-main); }
.footer-bottom { border-top: 1px solid var(--border-glass); padding-top: 2rem; text-align: center; color: var(--text-dim); font-size: 0.85rem; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .feature-bento { grid-template-columns: repeat(4, 1fr); }
    .gamification-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .gamification-grid .gamification-card:last-child { grid-column: span 2; }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    .plexie-cards { grid-template-columns: repeat(4, 1fr); }
    .sn-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .sn-divider { width: 100%; height: 1px; }
}

@media (max-width: 900px) {
    :root { --section-pad: 5rem; }
    .hof-hero { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .hof-screenshot { width: 200px; }
    .tier-row { justify-content: center; }
    .hof-cards { grid-template-columns: 1fr; }
    .dl-previews { grid-template-columns: 1fr; }
    .dl-preview-center { transform: none; }
    .dl-buttons { flex-direction: column; align-items: center; }
    .dl-btn { width: 100%; max-width: 320px; }
    .hero-grid, .feature-row { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
    .feature-row.reverse { direction: ltr; }
    .feature-text { margin: 0 auto; }
    .hero-cta, .hero-platforms { justify-content: center; }
    .hero-desc { max-width: 100%; }
    .hero-badge-1 { bottom: 5%; left: -5%; }
    .hero-badge-2 { top: 5%; right: -5%; }
    .hero-plexie-cluster { max-width: 420px; }
    .hpc-center { width: 140px !important; height: 140px !important; }
    .hpc-near   { width: 108px !important; height: 108px !important; }
    .hpc-side   { width:  80px !important; height:  80px !important; }
    .image-stack { min-height: 420px; }
    .feature-pills, .room-tags { justify-content: center; }
    .feature-list { text-align: left; max-width: 380px; margin: 0 auto; }
    .analytics-inner { grid-template-columns: 1fr; padding: 2.5rem; gap: 3rem; }
    .analytics-bento { grid-template-columns: 1fr 1fr; }
    .gamification-grid { grid-template-columns: 1fr; }
    .gamification-grid .gamification-card:last-child { grid-column: 1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; gap: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .downloads-inner { grid-template-columns: 1fr; }
    .downloads-text { text-align: center; }
    .downloads-text .section-eyebrow { display: block; width: fit-content; margin: 0 auto 0.85rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .launch-divider { display: none; }
    .launch-strip { margin: 0 1rem; }
    .launch-strip-inner { gap: 0.75rem; }
    .feature-bento { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 680px) {
    /* ── Global overflow guard ── */
    html, body { overflow-x: hidden; }
    .container { padding: 0 1.25rem; max-width: 100%; }

    /* ── Nav ── */
    .nav-links { display: none; flex-direction: column; position: fixed; top: 76px; left: 0; width: 100%; background: rgba(5,5,17,0.97); backdrop-filter: blur(20px); padding: 1.5rem 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid var(--border-glass); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    /* ── Hero ── */
    .hero-grid { gap: 2.5rem; }
    .hero-badge-1, .hero-badge-2 { display: none; }
    .hero-plexie-cluster { max-width: 320px; padding: 16px 0 8px; }
    .hpc-center { width: 120px !important; height: 120px !important; margin: 0 -6px; }
    .hpc-near   { width: 90px  !important; height: 90px  !important; transform: translateY(14px); margin: 0 -4px; }
    .hpc-side   { width: 68px  !important; height: 68px  !important; transform: translateY(26px); }

    /* ── Feature sections ── */
    .feature-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .fb-card--hero { grid-column: span 2; grid-row: auto; padding: 1.6rem 1.35rem; }
    .perks-grid { grid-template-columns: 1fr; }
    .subscription-notice { padding: 1.25rem 1.25rem; }



    /* ── Mockups ── */
    .mobile-mockup { width: 200px; }
    .tall-mockup { width: 180px; }
    .image-stack { min-height: 360px; overflow: hidden; }
    .img-back-2 { display: none; }  /* hide 3rd stacked image — too wide on mobile */
    .img-back-1 { transform: scale(0.88) translateX(-30px) rotate(-5deg); }

    /* ── Plexie cards ── */
    .plexie-cards { grid-template-columns: repeat(2, 1fr); }
    .plexie-img-wrap, .plexie-img { width: 90px; height: 90px; }

    /* ── HOF ── */
    .hof-cards { grid-template-columns: 1fr; }
    .hof-card-img { height: 260px; }
    .hof-screenshot { width: 160px; max-height: 320px; }
    .tier-row { flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
    .tier-arrow { display: none; }

    /* ── Analytics ── */
    .analytics-bento { grid-template-columns: 1fr; }

    /* ── Misc ── */
    .synapse-banner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .download-cards { grid-template-columns: 1fr; }
    .pricing-grid { padding: 0; }
    .stats-grid { gap: 1.2rem; }
    .stat-number { font-size: 1.8rem; }
    .hof-hero { gap: 2rem; }
    .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}
