:root {
    /* Brand */
    --brand-primary: #6B5BFF;
    --brand-primary-light: #8A7DFF;
    --brand-accent: #EC6FB8;
    --brand-gradient: linear-gradient(135deg, #6B5BFF 0%, #EC6FB8 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(107,91,255,0.18) 0%, rgba(236,111,184,0.18) 100%);

    /* Personality colors */
    --p-friend: linear-gradient(135deg, #8A7DFF, #EC6FB8);
    --p-coach: linear-gradient(135deg, #7DA8FF, #8A7DFF);
    --p-fun: linear-gradient(135deg, #8FE0CE, #B3A8FF);
    --p-sage: linear-gradient(135deg, #3FA0A8, #7FC9D0);

    /* Mood */
    --m-great: #7DD3C0;
    --m-good: #B4D77A;
    --m-okay: #F5C97A;
    --m-bad: #F5A66B;

    /* Type */
    --font-display: 'Nunito', system-ui, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;
    --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  }

  /* DARK theme tokens */
  :root, [data-theme="dark"] {
    --bg-page: #0F0F1A;
    --bg-card: #1A1A2E;
    --bg-card-elev: #22223B;
    --surface-alt: rgba(255,255,255,0.04);
    --text-primary: #F0F0FF;
    --text-secondary: #AAABCC;
    --text-muted: #6B6B8A;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);
    --shadow-card: 0 20px 50px -20px rgba(0,0,0,0.5);
    --nav-bg: rgba(15,15,26,0.72);
    --hero-glow-1: rgba(107,91,255,0.32);
    --hero-glow-2: rgba(236,111,184,0.22);
  }
  /* LIGHT theme tokens */
  [data-theme="light"] {
    --bg-page: #FAFAFC;
    --bg-card: #FFFFFF;
    --bg-card-elev: #F4F4F8;
    --surface-alt: #F0EFFA;
    --text-primary: #1A1A2E;
    --text-secondary: #5A5A7A;
    --text-muted: #9A9AB0;
    --border: #ECECF2;
    --border-strong: #DCDCE8;
    --shadow-card: 0 20px 50px -25px rgba(107,91,255,0.18);
    --nav-bg: rgba(250,250,252,0.82);
    --hero-glow-1: rgba(107,91,255,0.16);
    --hero-glow-2: rgba(236,111,184,0.14);
  }

  * { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 80px; }
  body {
    font-family: var(--font-display);
    background: var(--bg-page);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    overflow-x: clip;
  }
  a { color: inherit; text-decoration: none; }

  /* Hide initial content until React mounts */
  #root:empty::before {
    content:""; position:fixed; inset:0; background:var(--bg-page); z-index:9999;
  }

  /* === Layout === */
  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* === Nav === */
  .nav-wrap {
    position: sticky; top: 0; z-index: 50;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .nav-wrap.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 10px 28px -18px rgba(0,0,0,0.4);
  }

  /* === Scroll-to-top FAB === */
  .scroll-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--brand-gradient);
    color: white; border: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 28px -10px rgba(107,91,255,0.55), 0 0 0 1px rgba(255,255,255,0.05) inset;
    cursor: pointer;
    opacity: 0; transform: translateY(12px) scale(0.9);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, box-shadow .2s ease;
  }
  .scroll-top.visible {
    opacity: 1; transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .scroll-top:hover {
    box-shadow: 0 18px 36px -10px rgba(107,91,255,0.7), 0 0 0 1px rgba(255,255,255,0.05) inset;
    transform: translateY(-2px) scale(1);
  }
  @media (max-width: 520px) {
    .scroll-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .nav-brand { display: flex; align-items: center; gap: 10px; }
  .nav-wordmark { font-weight: 900; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
  .nav-wordmark .lumy { color: var(--text-primary); }
  .nav-wordmark .nax {
    background: var(--brand-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .nav-links { display: flex; gap: 30px; font-size: 14.5px; font-weight: 600; color: var(--text-secondary); }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-right { display: flex; gap: 12px; align-items: center; }

  .pill-toggle {
    display: inline-flex; align-items: center; padding: 3px;
    background: var(--surface-alt); border: 1px solid var(--border);
    border-radius: 999px; font-size: 12px; font-weight: 700;
  }
  .pill-toggle button {
    border: 0; background: transparent; color: var(--text-secondary);
    padding: 5px 11px; border-radius: 999px; cursor: pointer; font: inherit;
    transition: all .15s ease;
  }
  .pill-toggle button.on {
    background: var(--brand-gradient); color: white;
  }
  .icon-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--surface-alt);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); cursor: pointer;
  }
  .icon-btn:hover { color: var(--text-primary); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
    cursor: pointer; border: 0; transition: transform .15s, box-shadow .2s, filter .15s;
    text-decoration: none;
  }
  .btn-primary { background: var(--brand-gradient); color: white; box-shadow: 0 8px 22px -8px rgba(107,91,255,0.6); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(107,91,255,0.7); }
  .btn-ghost { background: var(--surface-alt); color: var(--text-primary); border: 1px solid var(--border); }
  .btn-ghost:hover { border-color: var(--border-strong); }

  /* === Hero === */
  .hero { position: relative; padding: 80px 0 60px; overflow: hidden; }
  .hero-bg-orb {
    position: absolute; pointer-events: none; border-radius: 50%;
    filter: blur(80px); z-index: 0;
  }
  .hero-bg-orb.a { width: 520px; height: 520px; background: var(--hero-glow-1); top: -120px; left: -100px; }
  .hero-bg-orb.b { width: 480px; height: 480px; background: var(--hero-glow-2); top: 120px; right: -120px; }
  .hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px; border-radius: 999px;
    background: var(--surface-alt); border: 1px solid var(--border);
    font-size: 12.5px; font-weight: 700; color: var(--text-secondary);
    letter-spacing: 0.02em;
  }
  .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-accent); box-shadow: 0 0 12px var(--brand-accent); }
  .hero h1 {
    font-size: clamp(40px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.035em;
    font-weight: 900; margin: 22px 0 24px; text-wrap: balance;
  }
  .hero h1 .grad {
    background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero h1 .serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -0.02em; }
  .hero-sub {
    font-size: 18px; line-height: 1.55; color: var(--text-secondary);
    max-width: 540px; margin: 0 0 32px; font-weight: 500;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px 12px 18px; border-radius: 14px;
    background: var(--text-primary); color: var(--bg-page);
    font-weight: 700; transition: transform .15s, box-shadow .2s;
  }
  .store-btn:hover { transform: translateY(-1px); }
  .store-btn .store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; white-space: nowrap; }
  .store-btn .store-text small { font-size: 10.5px; font-weight: 600; opacity: 0.7; letter-spacing: 0.04em; }
  .store-btn .store-text span { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
  .store-btn.alt { background: var(--surface-alt); color: var(--text-primary); border: 1px solid var(--border); }

  .hero-microline {
    margin-top: 26px; display: flex; gap: 18px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-muted); font-weight: 600;
  }
  .hero-microline span { display: inline-flex; gap: 6px; align-items: center; }
  .hero-microline svg { color: var(--brand-accent); }

  /* Trust row */
  .trust-row {
    margin-top: 36px; display: flex; align-items: center; gap: 18px;
    padding: 14px 18px; border-radius: 16px; background: var(--surface-alt); border: 1px solid var(--border);
    max-width: 460px;
  }
  .avatar-stack { display: flex; }
  .avatar-stack .av {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-page);
    margin-left: -10px; overflow: hidden; flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    object-fit: cover;
  }
  .avatar-stack .av:first-child { margin-left: 0; }
  .trust-text { font-size: 13.5px; font-weight: 600; color: var(--text-secondary); line-height: 1.4; }
  .trust-text b { color: var(--text-primary); }

  /* === Phone — generic chrome === */
  .phone-stage {
    position: relative; display: flex; justify-content: center; align-items: center;
    min-height: 600px;
    overflow: hidden;
  }
  .phone-glow {
    position: absolute; width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(107,91,255,0.35), transparent 65%);
    filter: blur(30px); z-index: 0;
  }
  .phone {
    position: relative; z-index: 1;
    width: 380px; height: 780px;
    background: #0B0B1A;
    border-radius: 52px;
    padding: 12px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06) inset,
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 40px 80px -20px rgba(0,0,0,0.7),
      0 0 0 1px rgba(0,0,0,0.5);
  }
  .phone .notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 26px; background: #000; border-radius: 14px;
    z-index: 3;
  }
  .phone .screen {
    width: 100%; height: 100%;
    background: #0F0F1A;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
  }
  .phone-statusbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 28px 6px; font-size: 13px; font-weight: 700; color: #F0F0FF;
  }
  .phone-statusbar .right { display: flex; gap: 5px; align-items: center; opacity: 0.85; }

  /* === Sections === */
  .section { padding: 100px 0; position: relative; }
  .section-eyebrow {
    text-transform: uppercase; letter-spacing: 0.14em;
    font-size: 12px; font-weight: 800; color: var(--brand-primary);
    margin-bottom: 14px;
  }
  [data-theme="light"] .section-eyebrow { color: #5037D6; }
  .section h2 {
    font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em;
    font-weight: 900; margin: 0 0 16px; text-wrap: balance;
  }
  .section h2 .serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -0.015em; }
  .section h2 .grad {
    background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .section-lede {
    font-size: 18px; color: var(--text-secondary); max-width: 640px; line-height: 1.55;
    font-weight: 500;
  }

  /* === "What it does" big band === */
  .does-band {
    padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, var(--surface-alt) 60%, transparent);
  }
  .does-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .does-cell { padding: 10px 0; }
  .does-cell .verb {
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em;
    background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 8px;
  }
  .does-cell .verb-meta {
    font-size: 14px; color: var(--text-secondary); font-weight: 500; line-height: 1.45;
  }

  /* === Feature split === */
  .feat { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 60px 0; }
  .feat.reverse { grid-template-columns: 1fr 1fr; }
  .feat.reverse .feat-copy { order: 2; }
  .feat .feat-copy h3 {
    font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.025em;
    font-weight: 800; margin: 14px 0 16px; text-wrap: balance;
  }
  .feat .feat-copy p { font-size: 17px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 22px; }
  .feat .feat-copy .tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--brand-gradient-soft); border: 1px solid rgba(107,91,255,0.25);
    font-size: 12px; font-weight: 800; color: var(--brand-primary-light); letter-spacing: 0.04em; text-transform: uppercase;
  }
  [data-theme="light"] .feat .feat-copy .tag { color: #5037D6; border-color: rgba(107,91,255,0.3); }
  .feat ul.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  .feat ul.bullets li {
    display: flex; gap: 12px; font-size: 15px; color: var(--text-primary); font-weight: 500;
  }
  .feat ul.bullets li .check {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: var(--brand-gradient); display: flex; align-items: center; justify-content: center;
    color: white;
  }
  .feat ul.bullets li b { font-weight: 800; }
  .feat ul.bullets li span.muted { color: var(--text-secondary); font-weight: 500; }

  /* === Quiet Changes / Season feature === */
  .season-section {
    position: relative;
    padding: 112px 0 120px;
    overflow: hidden;
    background:
      radial-gradient(900px 600px at 8% -6%, rgba(107,91,255,0.20), transparent 58%),
      radial-gradient(820px 560px at 96% 108%, rgba(236,111,184,0.16), transparent 54%),
      var(--bg-page);
  }
  [data-theme="light"] .season-section {
    background:
      radial-gradient(900px 600px at 8% -6%, #EFEBFF 0%, transparent 58%),
      radial-gradient(820px 560px at 96% 108%, #FCE9F4 0%, transparent 54%),
      #FAFAFC;
  }
  .season-sparks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .season-sparks i {
    position: absolute;
    color: var(--brand-primary-light);
    opacity: 0.22;
    animation: seasonFloat 9s ease-in-out infinite;
  }
  .season-sparks svg { display: block; }
  .season-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
  }
  .season-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 11px;
    border-radius: 999px;
    background: var(--brand-gradient-soft);
    border: 1px solid rgba(107,91,255,0.25);
    color: var(--brand-primary-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }
  [data-theme="light"] .season-eyebrow { color: #5037D6; }
  .season-eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-gradient);
    box-shadow: 0 0 8px rgba(124,104,255,0.7);
  }
  .season-copy h2 {
    margin: 22px 0 0;
    max-width: 620px;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 900;
    text-wrap: balance;
  }
  .season-copy h2 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .season-lede {
    margin: 20px 0 0;
    max-width: 560px;
    font-size: 17.5px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .season-points {
    margin-top: 34px;
    display: grid;
    gap: 18px;
  }
  .season-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .season-point > span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary-light);
    background: var(--brand-gradient-soft);
    border: 1px solid rgba(107,91,255,0.22);
  }
  .season-point h3 {
    margin: 0;
    font-size: 16.5px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.01em;
  }
  .season-point p {
    margin: 3px 0 0;
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 500;
  }
  .season-tiers {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 7px 8px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 800;
  }
  .season-tiers span { padding: 4px 12px; border-radius: 9px; white-space: nowrap; }
  .season-tiers b { color: var(--text-muted); padding: 0 2px; }
  .season-tiers .free { color: var(--text-muted); }
  .season-tiers .premium { color: var(--brand-primary-light); }
  .season-tiers .pro {
    color: white;
    background: var(--brand-gradient);
    box-shadow: 0 6px 16px -6px rgba(236,111,184,0.55);
  }
  .season-cta-row { margin-top: 36px; }
  .season-cta-wrap { position: relative; display: inline-block; }
  .season-stage {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .season-stage::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,104,255,0.28) 0%, rgba(236,111,184,0.12) 45%, transparent 70%);
    filter: blur(10px);
    animation: seasonBreathe 7s ease-in-out infinite;
  }
  .season-device {
    position: relative;
    z-index: 2;
    width: 318px;
    height: 648px;
    border-radius: 44px;
    background: #0b0a14;
    box-shadow:
      0 0 0 9px #1b1930,
      0 0 0 11px #2b2840,
      0 50px 110px -30px rgba(75,68,204,0.55),
      0 30px 70px rgba(40,30,90,0.28);
    overflow: hidden;
    animation: seasonFloatPhone 8s ease-in-out infinite;
  }
  .season-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 24px;
    background: #0b0a14;
    border-radius: 0 0 15px 15px;
    z-index: 5;
  }
  .season-viewport {
    position: absolute;
    inset: 0;
    border-radius: 44px;
    overflow: hidden;
    background:
      radial-gradient(120% 60% at 78% 6%, rgba(107,91,255,0.18) 0%, transparent 45%),
      radial-gradient(110% 60% at 14% 98%, rgba(236,111,184,0.12) 0%, transparent 48%),
      #0F0F1A;
  }
  .season-scroller {
    position: absolute;
    inset: 0 0 auto;
    will-change: transform;
  }
  .season-statusbar {
    height: 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 20px 6px;
    color: #F0F0FF;
    font-size: 13px;
    font-weight: 900;
  }
  .season-status-icons { display: inline-flex; align-items: flex-end; gap: 4px; }
  .season-status-icons i {
    width: 3px;
    border-radius: 999px;
    background: #F0F0FF;
    opacity: 0.72;
  }
  .season-status-icons i:nth-child(1) { height: 7px; }
  .season-status-icons i:nth-child(2) { height: 10px; }
  .season-status-icons i:nth-child(3) { height: 13px; opacity: 0.45; }
  .season-float-tag {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 13px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    animation: seasonFloatTag 6s ease-in-out infinite;
  }
  .season-float-tag svg { color: var(--brand-accent); }
  .season-float-tag.t1 { top: 64px; left: -14px; animation-delay: .2s; }
  .season-float-tag.t2 { top: 300px; right: 6px; animation-delay: 1.1s; }
  .season-float-tag.t2 svg { color: var(--brand-primary-light); }
  .season-float-tag.t3 { bottom: 70px; left: -8px; animation-delay: .7s; }
  .season-phone-note {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    z-index: 3;
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
  }

  .season-feature {
    --sf-bg: #0F0F1A;
    --sf-card: #1A1A2E;
    --sf-card-2: #22223B;
    --sf-text: #F0F0FF;
    --sf-text-2: #AAABCC;
    --sf-text-3: #6B6B8A;
    --sf-line: #2A2A45;
    --sf-brand: #6B5BFF;
    --sf-brand-2: #9D96FF;
    --sf-coral: #FF6584;
    position: relative;
    z-index: 1;
    padding: 0 18px 36px;
    color: var(--sf-text);
  }
  .season-feature-sec { position: relative; padding: 30px 0; }
  .season-feature-label {
    margin-bottom: 14px;
    color: var(--sf-brand-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .season-feature-sub { color: var(--sf-text-2); font-size: 13px; font-weight: 600; }
  .season-feature-hero { padding-top: 8px; padding-bottom: 26px; }
  .season-feature-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,91,255,0.45) 0%, rgba(107,91,255,0) 62%);
    filter: blur(8px);
    animation: seasonFeatureGlow 6s ease-in-out infinite;
  }
  .season-orb {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 8px auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .season-orb-core {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #b9b0ff, #6B5BFF 60%, #4B44CC);
    box-shadow: 0 0 30px rgba(124,104,255,0.8);
    animation: seasonCore 6s ease-in-out infinite;
  }
  .season-orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(189,178,255,0.4);
    animation: seasonPulseRing 6s ease-in-out infinite;
  }
  .season-orb-ring.r1 { width: 74px; height: 74px; }
  .season-orb-ring.r2 { width: 92px; height: 92px; border-color: rgba(189,178,255,0.16); animation-delay: .6s; }
  .season-orb-spark { position: relative; z-index: 1; color: white; filter: drop-shadow(0 0 8px rgba(255,255,255,0.95)); animation: seasonTwinkle 6s ease-in-out infinite; }
  .season-feature-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(107,91,255,0.35);
    background: rgba(107,91,255,0.1);
    color: var(--sf-brand-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .season-feature h3 {
    margin: 0;
    color: var(--sf-text);
    font-size: 30px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
  }
  .season-feature-hero p {
    max-width: 280px;
    margin: 16px 0 0;
    color: var(--sf-text-2);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
  }
  .season-scroll-hint {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--sf-text-3);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .season-scroll-hint i {
    position: relative;
    width: 1px;
    height: 26px;
    background: linear-gradient(var(--sf-text-3), transparent);
  }
  .season-scroll-hint i::after {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sf-brand-2);
    animation: seasonDrop 2.4s ease-in-out infinite;
  }
  .season-qmark {
    position: absolute;
    left: -6px;
    top: -34px;
    color: rgba(124,104,255,0.18);
    font-family: Georgia, serif;
    font-size: 96px;
    line-height: 1;
    font-weight: 900;
  }
  .season-quote-wrap { position: relative; padding-left: 4px; }
  .season-quote-wrap p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--sf-text);
    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .season-quote-line {
    display: block;
    width: 70%;
    height: 9px;
    margin-top: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(124,104,255,0.85), rgba(255,101,132,0.7), rgba(124,104,255,0));
    background-size: 220% 100%;
    animation: seasonShimmer 5s linear infinite;
  }
  .season-quote-attr {
    margin: 20px 0 0;
    color: var(--sf-text-2);
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 700;
  }
  .season-feature-boundary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    padding: 8px 0;
  }
  .season-feature-boundary span { flex: 1; height: 1px; background: var(--sf-line); }
  .season-feature-boundary b {
    color: var(--sf-text-3);
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .season-arc { position: relative; padding-left: 4px; }
  .season-arc-rail {
    position: absolute;
    left: 17px;
    top: 14px;
    bottom: 18px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, #6B5BFF, #9D96FF 50%, #FF6584);
    box-shadow: 0 0 12px rgba(124,104,255,0.6);
  }
  .season-node {
    position: relative;
    margin-bottom: 16px;
    padding-left: 46px;
  }
  .season-node-dot {
    position: absolute;
    left: 10px;
    top: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #cfc7ff, #6B5BFF);
    box-shadow: 0 0 0 4px rgba(107,91,255,0.18), 0 0 14px rgba(124,104,255,0.8);
    animation: seasonDot 3.6s ease-in-out infinite;
  }
  .season-node-card {
    border-radius: 18px;
    padding: 15px 16px 16px;
    border: 1px solid var(--sf-line);
    background: linear-gradient(160deg, rgba(34,34,59,0.7), rgba(26,26,46,0.66));
  }
  .season-node-card div { margin-bottom: 6px; color: var(--sf-brand-2); font-size: 13px; font-weight: 900; }
  .season-node-card p { margin: 0; color: var(--sf-text); font-size: 14px; line-height: 1.5; font-weight: 600; }
  .season-ba-grid { display: flex; flex-direction: column; }
  .season-ba-card {
    border-radius: 18px;
    padding: 16px 17px;
    border: 1px solid var(--sf-line);
  }
  .season-ba-card div {
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .season-ba-card p { margin: 0; font-size: 14px; line-height: 1.5; font-weight: 600; }
  .season-ba-card.before { background: rgba(22,33,62,0.5); }
  .season-ba-card.before div { color: var(--sf-text-3); }
  .season-ba-card.before p { color: var(--sf-text-2); }
  .season-ba-card.after {
    border-color: rgba(124,104,255,0.4);
    background: linear-gradient(150deg, rgba(107,91,255,0.16), rgba(255,101,132,0.1));
  }
  .season-ba-card.after div { color: #FF8FA3; }
  .season-ba-link { display: flex; justify-content: center; padding: 4px 0; }
  .season-ba-link i {
    position: relative;
    width: 2px;
    height: 26px;
    background: linear-gradient(var(--sf-text-3), var(--sf-coral));
  }
  .season-ba-link i::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--sf-coral);
    border-bottom: 2px solid var(--sf-coral);
    transform: rotate(45deg);
  }
  .season-photo { display: flex; flex-direction: column; gap: 18px; }
  .season-photo-frame {
    position: relative;
    width: 132px;
    padding: 12px 12px 30px;
    border-radius: 8px;
    border: 1px solid var(--sf-line);
    background: #15131f;
    transform: rotate(-3deg);
    box-shadow: 0 16px 36px -14px rgba(0,0,0,0.8);
  }
  .season-photo-ghost {
    height: 120px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(207,199,255,0.6);
    background: radial-gradient(circle at 50% 38%, rgba(107,91,255,0.3), rgba(15,15,26,0.9));
  }
  .season-photo-frame > div:last-child {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    color: var(--sf-text-3);
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
  }
  .season-photo p { margin: 0; color: var(--sf-text-2); font-size: 14px; line-height: 1.55; font-weight: 600; }
  .season-moments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .season-moment {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 13px;
    border-radius: 15px;
    border: 1px solid var(--sf-line);
    background: rgba(26,26,46,0.6);
    color: var(--sf-text);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
  }
  .season-moment svg { flex: 0 0 auto; margin-top: 2px; filter: drop-shadow(0 0 5px currentColor); }
  .season-seal-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 30px 22px 26px;
    text-align: center;
    background: linear-gradient(160deg, #6B5BFF 0%, #4B44CC 55%, #3a2f8f 100%);
    box-shadow: 0 24px 56px -18px rgba(107,91,255,0.7), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  .season-seal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 80% 0%, rgba(255,101,132,0.4), transparent 55%);
  }
  .season-seal-emblem {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
    color: white;
  }
  .season-seal-label, .season-seal-card p, .season-seal-sign { position: relative; z-index: 1; }
  .season-seal-label {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .season-seal-card p { margin: 0; color: white; font-size: 16px; line-height: 1.55; font-weight: 700; }
  .season-seal-sign { margin-top: 18px; color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 900; font-style: italic; }
  @keyframes seasonBreathe { 0%,100% { transform: scale(1); opacity:.85 } 50% { transform: scale(1.08); opacity:1 } }
  @keyframes seasonFloatPhone { 0%,100% { transform: translateY(0) rotate(-0.6deg) } 50% { transform: translateY(-14px) rotate(0.6deg) } }
  @keyframes seasonFloatTag { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }
  @keyframes seasonFloat { 0%,100% { transform: translateY(0) scale(1) } 50% { transform: translateY(-16px) scale(1.12) } }
  @keyframes seasonFeatureGlow { 0%,100% { transform: translateX(-50%) scale(1); opacity:.8 } 50% { transform: translateX(-50%) scale(1.12); opacity:1 } }
  @keyframes seasonCore { 0%,100% { transform: scale(1); opacity:.85 } 50% { transform: scale(1.1); opacity:1 } }
  @keyframes seasonPulseRing { 0%,100% { transform: scale(1); opacity:.5 } 50% { transform: scale(1.07); opacity:.85 } }
  @keyframes seasonTwinkle { 0%,100% { transform: scale(1) rotate(0deg); opacity:.92 } 50% { transform: scale(1.12) rotate(45deg); opacity:1 } }
  @keyframes seasonDrop { 0% { top:0; opacity:0 } 30% { opacity:1 } 100% { top:22px; opacity:0 } }
  @keyframes seasonShimmer { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
  @keyframes seasonDot { 0%,100% { box-shadow: 0 0 0 4px rgba(107,91,255,0.14), 0 0 10px rgba(124,104,255,0.6); } 50% { box-shadow: 0 0 0 6px rgba(107,91,255,0.22), 0 0 18px rgba(124,104,255,0.95); } }

  @media (prefers-reduced-motion: reduce) {
    .season-section .season-device,
    .season-section .season-float-tag,
    .season-section .season-stage::before,
    .season-section .season-sparks i,
    .season-section .season-feature-glow,
    .season-section .season-orb-core,
    .season-section .season-orb-ring,
    .season-section .season-orb-spark,
    .season-section .season-node-dot,
    .season-section .season-quote-line,
    .season-section .season-scroll-hint i::after {
      animation: none !important;
    }
  }

  /* === Personalities === */
  .personas-grid {
    display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; margin-top: 48px;
  }
  .persona-card {
    position: relative; padding: 24px 20px 20px;
    border-radius: 22px; background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden; min-height: 236px;
    display: flex; flex-direction: column;
    transition: transform .25s ease, border-color .2s;
  }
  .personas-grid .persona-card:nth-child(-n+3) { grid-column: span 2; }
  .personas-grid .persona-card:nth-child(4) { grid-column: 2 / span 2; }
  .personas-grid .persona-card:nth-child(5) { grid-column: 4 / span 2; }
  .persona-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
  .persona-card .p-glow {
    position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%;
    filter: blur(30px); opacity: 0.55;
  }
  .persona-card .avatar {
    position: relative; z-index: 1;
    width: 56px; height: 56px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .persona-card .avatar svg { color: white; }
  .persona-card .pname { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; margin: 0 0 4px; position: relative; z-index: 1; }
  .persona-card .ptier {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted); margin-bottom: 10px; position: relative; z-index: 1;
  }
  .persona-card .ptier.pro { color: var(--brand-accent); }
  .persona-card .ptier.prem { color: var(--brand-primary-light); }
  .persona-card .pdesc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; position: relative; z-index: 1; margin: 0; }
  .persona-card .pquote {
    margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
    font-family: var(--font-serif); font-style: italic; font-size: 13px; line-height: 1.45; color: var(--text-primary);
    position: relative; z-index: 1;
  }

  /* === How it works === */
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
    position: relative;
  }
  .step {
    position: relative; padding: 32px 26px; border-radius: 22px;
    background: var(--bg-card); border: 1px solid var(--border);
  }
  .step-num {
    font-family: var(--font-serif); font-style: italic; font-size: 56px; font-weight: 400;
    line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 16px;
  }
  .step h4 { font-size: 19px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.01em; }
  .step p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

  /* === Pricing === */
  .price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
    align-items: stretch;
  }
  .price-card {
    position: relative; padding: 32px 28px;
    border-radius: 24px; background: var(--bg-card); border: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .price-card.featured {
    border-color: transparent;
    background:
      linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
      var(--brand-gradient) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 30px 60px -30px rgba(107,91,255,0.4);
    transform: translateY(-6px);
  }
  .price-card .pop-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    background: var(--brand-gradient); color: white;
    white-space: nowrap;
  }
  .price-tier {
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted);
  }
  .price-name { font-size: 26px; font-weight: 900; margin: 8px 0 4px; letter-spacing: -0.02em; }
  .price-tag {
    margin: 18px 0 22px; display: flex; align-items: baseline; gap: 6px;
  }
  .price-tag .num { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
  .price-tag .per { color: var(--text-muted); font-size: 14px; font-weight: 600; white-space: nowrap; }
  .price-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
  .price-features li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px; color: var(--text-primary); line-height: 1.45;
  }
  .price-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-primary-light); }
  .price-features li.muted { color: var(--text-muted); }
  .price-features li.muted svg { color: var(--text-muted); opacity: 0.5; }
  .price-card .price-cta { width: 100%; }

  /* === Proactive timeline === */
  .timeline {
    position: relative; margin-top: 48px;
    padding: 30px; border-radius: 24px;
    background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden;
  }
  .timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .tl-card {
    padding: 18px; border-radius: 16px;
    background: var(--surface-alt); border: 1px solid var(--border);
  }
  .tl-card .tl-time {
    font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em;
    margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
  }
  .tl-card .tl-time .dotc { width: 6px; height: 6px; border-radius: 50%; }
  .tl-card .tl-title { font-size: 14px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.005em; }
  .tl-card .tl-msg { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

  /* === Widgets === */
  .widget-section {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 52%, transparent);
  }
  .widget-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(260px, 330px);
    justify-content: center;
    align-items: start;
    gap: 120px;
    margin-top: 58px;
  }
  .widget-device-label {
    text-align: center;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .widget-phone {
    position: relative;
    width: 320px;
    height: 650px;
    margin: 0 auto;
    border-radius: 46px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.05), transparent 18%),
      #080817;
    box-shadow:
      0 0 0 10px rgba(255,255,255,0.015),
      0 30px 70px -28px rgba(0,0,0,0.75),
      0 0 0 1px rgba(0,0,0,0.6) inset;
    overflow: hidden;
  }
  .widget-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 25px;
    border-radius: 999px;
    background: #000;
    z-index: 3;
  }
  .widget-notch.small { width: 82px; height: 24px; }
  .widget-home-screen {
    position: absolute;
    inset: 14px 12px 12px;
    border-radius: 34px;
    padding: 62px 20px 18px;
    background:
      radial-gradient(circle at 24% 10%, rgba(107,91,255,0.35), transparent 34%),
      radial-gradient(circle at 80% 100%, rgba(236,111,184,0.12), transparent 36%),
      linear-gradient(180deg, #181642 0%, #090918 70%);
  }
  .lumy-widget {
    background: rgba(24,24,48,0.82);
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 14px 30px -20px rgba(0,0,0,0.75);
    color: #F0F0FF;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .lumy-widget.wide {
    border-radius: 18px;
    padding: 15px 16px 14px;
    min-height: 124px;
  }
  .widget-row, .widget-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .widget-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: rgba(240,240,255,0.72);
  }
  .widget-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(138,125,255,0.22);
    color: #C4A8FF;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .widget-chip.amber {
    color: #F5C97A;
    background: rgba(245,201,122,0.16);
  }
  .lumy-widget.wide p {
    margin: 14px 0 12px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    color: #F0F0FF;
  }
  .widget-meta {
    font-size: 9px;
    color: rgba(240,240,255,0.52);
    font-weight: 800;
  }
  .widget-meta span:first-child { color: #9F8CFF; }
  .widget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  .lumy-widget.square {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 16px;
    padding: 13px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .lumy-widget.square .widget-row {
    width: 100%;
    gap: 6px;
  }
  .lumy-widget.square .widget-brand {
    font-size: 9px;
  }
  .lumy-widget.square .widget-chip {
    font-size: 7px;
    padding: 2px 6px;
  }
  .lumy-widget.square strong {
    display: block;
    margin-top: 8px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .lumy-widget.square small {
    color: rgba(240,240,255,0.72);
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
  }
  .ios-placeholder {
    aspect-ratio: 1;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .ios-placeholder.blue { background: linear-gradient(135deg, #6B5BFF, #7DA8FF); }
  .ios-placeholder.pink { background: linear-gradient(135deg, #EC6FB8, #B968DC); }
  .ios-placeholder.mint { background: linear-gradient(135deg, #5BCDC0, #7DD3C0); }
  .ios-placeholder.spark { background: linear-gradient(135deg, #6B5BFF, #8A7DFF); }
  .ios-placeholder.muted { background: rgba(255,255,255,0.12); }
  .ios-placeholder.amber { background: linear-gradient(135deg, #F5C97A, #F5A66B); }
  .ios-placeholder.violet { background: linear-gradient(135deg, #8A7DFF, #6B5BFF); }
  .widget-dock {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 64px;
    border-radius: 22px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .widget-dock span {
    border-radius: 13px;
    background: rgba(255,255,255,0.22);
  }
  .widget-phone-lock {
    background:
      radial-gradient(circle at 50% 4%, rgba(107,91,255,0.32), transparent 34%),
      radial-gradient(circle at 58% 104%, rgba(236,111,184,0.14), transparent 34%),
      linear-gradient(180deg, #1B1A43 0%, #090918 74%);
    color: #F0F0FF;
    padding-top: 62px;
    text-align: center;
  }
  .lock-date {
    font-size: 13px;
    color: rgba(240,240,255,0.72);
    font-weight: 800;
  }
  .lock-time {
    margin-top: 2px;
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
  }
  .lock-widget-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }
  .lock-reminder {
    width: 186px;
    min-height: 50px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .lock-quick-widget {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,240,255,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .lock-plus {
    font-size: 16px;
    color: rgba(240,240,255,0.86);
  }
  .lock-reminder strong {
    display: block;
    font-size: 13px;
    line-height: 1;
  }
  .lock-reminder span:last-child {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    color: rgba(240,240,255,0.72);
    font-weight: 700;
  }
  .lock-bottom {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 52px;
    display: flex;
    justify-content: space-between;
  }
  .lock-bottom span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lock-homebar {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
  }
  .widget-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px;
  }
  .widget-info-card {
    border-radius: 18px;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }
  .widget-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 18px;
  }
  .widget-info-icon.note { background: linear-gradient(135deg, #6B5BFF, #8A7DFF); }
  .widget-info-icon.reminder { background: linear-gradient(135deg, #EC6FB8, #F5A66B); }
  .widget-info-icon.lumy { background: linear-gradient(135deg, #8A7DFF, #EC6FB8); }
  .widget-info-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  .widget-info-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* === FAQ === */
  .faq-list { margin-top: 36px; display: grid; gap: 10px; }
  .faq-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; transition: border-color .2s;
  }
  .faq-item[open] { border-color: var(--border-strong); }
  .faq-q {
    padding: 20px 24px; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 16px; color: var(--text-primary);
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q .ico {
    width: 28px; height: 28px; border-radius: 50%; background: var(--surface-alt);
    display: flex; align-items: center; justify-content: center; transition: transform .25s, background .2s;
  }
  .faq-item[open] .faq-q .ico { transform: rotate(45deg); background: var(--brand-gradient); color: white; }
  .faq-a {
    padding: 0 24px 22px; font-size: 15px; color: var(--text-secondary); line-height: 1.6;
  }

  /* === CTA banner === */
  .cta-banner {
    margin-top: 80px; padding: 60px 56px; border-radius: 28px; position: relative; overflow: hidden;
    background:
      radial-gradient(circle at 20% 30%, rgba(107,91,255,0.55), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(236,111,184,0.45), transparent 55%),
      #1A1A2E;
    border: 1px solid rgba(255,255,255,0.08);
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  }
  [data-theme="light"] .cta-banner {
    background:
      radial-gradient(circle at 20% 30%, rgba(107,91,255,0.18), transparent 55%),
      radial-gradient(circle at 80% 70%, rgba(236,111,184,0.16), transparent 60%),
      #FFFFFF;
    border-color: var(--border-strong);
  }
  .cta-banner h2 { color: #F0F0FF; margin: 0 0 14px; }
  [data-theme="light"] .cta-banner h2 { color: #1A1A2E; }
  .cta-banner p { color: rgba(240,240,255,0.7); margin: 0 0 28px; font-size: 17px; line-height: 1.55; }
  [data-theme="light"] .cta-banner p { color: var(--text-secondary); }

  /* === Footer === */
  footer { padding: 60px 0 40px; border-top: 1px solid var(--border); margin-top: 80px; }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  }
  .footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 14px 0 0; max-width: 320px; }
  .footer-col h5 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 0 0 16px; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .footer-col a { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
  .footer-col a:hover { color: var(--text-primary); }
  .footer-bottom {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--text-muted);
  }
  .footer-bottom .legal-pills { display: flex; gap: 16px; flex-wrap: wrap; }

  .language-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 34px;
    min-width: 58px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-secondary);
  }
  .language-menu select {
    width: 100%;
    height: 100%;
    appearance: none;
    border: 0;
    outline: 0;
    padding: 0 25px 0 10px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
  }
  .language-menu svg {
    position: absolute;
    right: 7px;
    pointer-events: none;
  }
  /* Premium language dropdown (custom; globe + native-name menu) */
  .lang-picker { position: relative; display: inline-flex; }
  .lang-trigger {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 11px; border-radius: 999px;
    background: var(--surface-alt); border: 1px solid var(--border); color: var(--text-secondary);
    font: inherit; font-size: 12.5px; font-weight: 800; letter-spacing: 0.02em;
    cursor: pointer; transition: border-color .15s, color .15s;
  }
  .lang-trigger:hover { color: var(--text-primary); border-color: var(--border-strong); }
  .lang-trigger .chev { transition: transform .22s ease; opacity: .65; margin-left: -1px; }
  .lang-picker.open .lang-trigger { color: var(--text-primary); border-color: var(--border-strong); }
  .lang-picker.open .lang-trigger .chev { transform: rotate(180deg); }
  .lang-menu {
    position: absolute; top: calc(100% + 9px); right: 0; min-width: 210px; padding: 6px;
    background: var(--bg-card-elev); border: 1px solid var(--border-strong); border-radius: 16px;
    box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 2px; z-index: 80;
    transform-origin: top right; animation: lang-menu-in .16s cubic-bezier(.2,.7,.3,1);
  }
  @keyframes lang-menu-in {
    from { opacity: 0; transform: translateY(-6px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .lang-menu .lang-menu-head { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); padding: 6px 12px 4px; }
  .lang-item {
    display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px;
    width: 100%; text-align: left; background: transparent; border: 0; font: inherit;
    font-size: 14.5px; font-weight: 600; color: var(--text-secondary); cursor: pointer;
    transition: background .12s, color .12s;
  }
  .lang-item:hover:not(:disabled) { background: var(--surface-alt); color: var(--text-primary); }
  .lang-item.active { color: var(--text-primary); }
  .lang-item.soon { cursor: default; opacity: .55; }
  .lang-item .l-native { flex: 1; }
  .lang-item .l-code { font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--text-muted); text-transform: uppercase; }
  .lang-item .l-check { color: var(--brand-primary-light); display: flex; }
  .lang-item .l-soon { font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); border-radius: 6px; padding: 2px 6px; }

  .legal-translation-notice { margin: 0 0 30px; }

  /* === Responsive === */
  @media (max-width: 1080px) {
    .container { padding: 0 24px; }
    .hero { padding: 60px 0 40px; }
    .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
  }
  @media (max-width: 960px) {
    .nav { height: 64px; }
    .nav-links { display: none; }
    .nav-right .btn-primary { padding: 9px 14px; font-size: 13px; }
    .hero-grid, .feat, .does-grid, .personas-grid, .price-grid, .steps, .footer-grid, .cta-banner, .timeline-grid, .widget-showcase, .widget-card-grid { grid-template-columns: 1fr !important; }
    .season-wrap { grid-template-columns: 1fr; gap: 54px; }
    .season-section { padding: 84px 0 92px; }
    .season-stage { min-height: 660px; }
    .season-copy h2 { font-size: clamp(34px, 7vw, 44px); }
    .season-lede { max-width: 100%; }
    .season-float-tag.t1 { left: 4px; }
    .season-float-tag.t2 { right: 4px; }
    .season-float-tag.t3 { left: 6px; }
    .feat { gap: 36px !important; padding: 30px 0; }
    .feat.reverse .feat-copy { order: 0; }
    .hero { padding: 36px 0 16px; }
    .section { padding: 56px 0; }
    .price-card.featured { transform: none; }
    .phone-stage { min-height: 520px; }
    .phone { transform: scale(0.92); }
    .does-grid { gap: 24px; }
    .widget-showcase { gap: 42px; }
    .does-cell .verb { font-size: 32px !important; }
    .cta-banner { padding: 40px 28px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px 24px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 720px) {
    .container { padding: 0 20px; }
    .does-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
    .personas-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
    .personas-grid .persona-card:nth-child(n) { grid-column: auto; }
    .timeline { padding: 18px; }
    .nav-wordmark { font-size: 19px; }
    .hero h1 { letter-spacing: -0.025em; }
    .section h2 { font-size: clamp(28px, 6vw, 40px) !important; }
    .does-cell .verb { font-size: 26px !important; }
    .price-card { padding: 26px 22px; }
    .price-tag .num { font-size: 38px; }
    .cta-banner h2 { font-size: clamp(26px, 6vw, 36px) !important; }
    .footer-bottom { font-size: 11.5px; }
  }
  @media (max-width: 520px) {
    .container { padding: 0 16px; }
    .does-grid { grid-template-columns: 1fr !important; }
    .personas-grid { grid-template-columns: 1fr !important; }
    .personas-grid .persona-card:nth-child(n) { grid-column: auto; }
    .nav { gap: 8px; }
    .nav-right { gap: 6px; }
    .language-menu { min-width: 52px; height: 32px; }
    .language-menu select { padding-left: 8px; font-size: 10.5px; }
    .lang-trigger { padding: 6px 9px; font-size: 12px; }
    .lang-menu { min-width: 188px; }
    .nav-right .icon-btn { width: 32px; height: 32px; }
    .nav-right .btn-primary { padding: 8px 12px; font-size: 12.5px; }
    .nav-wordmark { font-size: 18px; }
    .hero-cta { gap: 8px; }
    .store-btn { padding: 10px 16px 10px 14px; }
    .store-btn .store-text span { font-size: 14px; }
    .store-btn svg { width: 18px !important; height: 18px !important; }
    .trust-row { padding: 12px 14px; gap: 12px; }
    .avatar-stack .av { width: 30px; height: 30px; }
    .phone { transform: scale(0.85); transform-origin: center top; }
    .phone-stage { min-height: 460px; }
    .season-section { padding: 64px 0 76px; }
    .season-copy h2 { font-size: 31px; letter-spacing: -0.025em; }
    .season-lede { font-size: 16px; }
    .season-tiers {
      display: grid;
      grid-template-columns: 1fr;
      justify-items: stretch;
      text-align: center;
      width: 100%;
    }
    .season-tiers b { display: none; }
    .season-device {
      width: min(280px, calc(100vw - 58px));
      height: 572px;
    }
    .season-stage { min-height: 590px; }
    .season-float-tag { font-size: 12px; padding: 8px 11px; }
    .season-float-tag.t1 { top: 40px; left: -6px; }
    .season-float-tag.t2 { top: 270px; right: -6px; }
    .season-float-tag.t3 { bottom: 56px; left: -4px; }
    .season-feature h3 { font-size: 27px; }
    .season-moments-grid { grid-template-columns: 1fr; }
    .season-cta-row .btn { width: 100%; }
    .season-cta-wrap { width: 100%; }
    .widget-phone {
      width: min(320px, calc(100vw - 44px));
      height: 610px;
    }
    .widget-home-screen { padding: 58px 18px 18px; }
    .widget-grid { gap: 10px; }
    .feat .feat-copy h3 { font-size: 26px !important; }
    .feat .feat-copy p { font-size: 15px; }
    .price-tag .num { font-size: 32px; }
    .price-features li { font-size: 13.5px; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  }
