:root {
      --brand: #b000ff;
      --brand-dim: rgba(176, 0, 255, 0.14);
      --brand-glow: rgba(176, 0, 255, 0.32);
      --night: #050505;
      --carbon: #0a0a0c;
      --surface: #111114;
      --elevated: #18181d;
      --paper: #f4f2f8;
      --muted: rgba(244, 242, 248, 0.58);
      --line: rgba(255, 255, 255, 0.09);
      --font: "Inter", system-ui, sans-serif;
      --display: "Montserrat", system-ui, sans-serif;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --radius: 1.25rem;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--night);
      color: var(--paper);
      font-family: var(--font);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: 0; background: none; }
    ::selection { background: var(--brand); color: #fff; }
    :focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }

    .skip {
      position: fixed; z-index: 100; top: -60px; left: 16px;
      padding: 12px 16px; background: var(--brand); color: #fff; font-weight: 600; border-radius: 8px;
    }
    .skip:focus { top: 16px; }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }

    .grain {
      position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .orb {
      position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0;
      animation: drift 18s ease-in-out infinite alternate;
    }
    .orb--a { width: 55vw; height: 55vw; top: -18vw; left: 10vw; background: radial-gradient(circle, rgba(176,0,255,0.22), transparent 68%); }
    .orb--b { width: 42vw; height: 42vw; right: -8vw; bottom: -10vw; background: radial-gradient(circle, rgba(120,0,200,0.16), transparent 70%); animation-delay: -6s; }

    .cursor-spotlight {
      position: fixed; inset: 0; z-index: 48; pointer-events: none;
      opacity: 0; transition: opacity 0.35s ease; mix-blend-mode: screen;
      background: radial-gradient(
        min(560px, 85vw) circle at var(--spot-x, 50vw) var(--spot-y, 50vh),
        rgba(176, 0, 255, 0.22) 0%,
        rgba(176, 0, 255, 0.09) 26%,
        rgba(176, 0, 255, 0.03) 44%,
        transparent 62%
      );
    }
    body.is-cursor-lit .cursor-spotlight { opacity: 1; }

    .wrap { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 999px;
      border: 1px solid rgba(176, 0, 255, 0.35); background: var(--brand-dim);
      color: #e9c4ff; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    }
    .eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--brand-glow); animation: pulse 2.4s ease-in-out infinite; }

    /* Logo lockup */
    .logo-lockup {
      display: inline-flex; align-items: center; gap: clamp(8px, 1.8vw, 14px);
      flex-shrink: 0; min-width: 0;
    }
    .logo-lockup__icon { width: clamp(28px, 4vw, 40px); height: auto; flex-shrink: 0; }
    .logo-lockup__text {
      flex-shrink: 0;
      font-family: var(--display), "Montserrat", system-ui, sans-serif;
      font-style: italic; font-weight: 800;
      font-size: clamp(0.72rem, 1.6vw, 1.05rem); line-height: 0.95;
      letter-spacing: -0.02em; text-transform: uppercase; color: var(--paper);
    }

    /* Nav */
    .nav {
      position: fixed; z-index: 50; top: 16px; left: 50%; transform: translateX(-50%);
      width: min(calc(100% - 24px), 1100px);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      padding: 8px 10px 8px 16px; border-radius: 999px;
      border: 1px solid var(--line); background: rgba(10, 10, 12, 0.72);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      isolation: isolate;
    }
    .nav__links {
      display: flex; align-items: center; gap: 4px; margin-inline: auto;
    }
    .nav__links a {
      min-height: 44px; padding: 0 12px; border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 500; color: var(--muted);
      transition: color 0.2s, background 0.2s;
    }
    .nav__links a:hover { color: var(--paper); background: rgba(255, 255, 255, 0.04); }
    .nav__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .nav__phone {
      min-height: 44px; padding: 0 12px; border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--paper); white-space: nowrap;
      transition: color 0.2s;
    }
    .nav__phone:hover { color: #e9c4ff; }
    .nav__phone svg { flex-shrink: 0; color: var(--brand); }
    .nav__burger {
      display: none; align-items: center; justify-content: center;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); color: var(--paper);
      transition: border-color 0.2s, background 0.2s;
    }
    .nav__burger:hover { border-color: rgba(176, 0, 255, 0.35); background: var(--brand-dim); }
    .material-symbols-outlined {
      font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
      font-size: 24px; line-height: 1; user-select: none;
    }
    .nav__burger__close { display: none; }
    .nav__burger[aria-expanded="true"] .nav__burger__open { display: none; }
    .nav__burger[aria-expanded="true"] .nav__burger__close { display: block; }
    .nav__cta {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 44px; padding: 0 18px; border-radius: 999px;
      background: var(--brand); color: #fff; font-size: 13px; font-weight: 600;
      transition: transform 0.25s var(--ease), box-shadow 0.25s;
    }
    .nav__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px var(--brand-glow); }

    /* Mobile drawer */
    .nav-drawer {
      position: fixed; inset: 0; z-index: 55; visibility: hidden; pointer-events: none;
    }
    .nav-drawer.is-open { visibility: visible; pointer-events: auto; }
    .nav-drawer__scrim {
      position: absolute; inset: 0; background: rgba(5, 5, 5, 0.62);
      opacity: 0; transition: opacity 0.28s var(--ease);
    }
    .nav-drawer.is-open .nav-drawer__scrim { opacity: 1; }
    .nav-drawer__panel {
      position: absolute; top: 0; right: 0; width: min(340px, 88vw); height: 100%;
      padding: max(88px, calc(72px + env(safe-area-inset-top))) 24px max(24px, env(safe-area-inset-bottom));
      border-left: 1px solid var(--line); background: rgba(12, 12, 14, 0.96);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      transform: translateX(100%); transition: transform 0.32s var(--ease);
      display: flex; flex-direction: column; gap: 8px;
    }
    .nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
    .nav-drawer__label {
      margin: 0 0 8px; padding: 0 12px; font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
    }
    .nav-drawer__link {
      min-height: 48px; padding: 0 12px; border-radius: 12px;
      display: flex; align-items: center; font-size: 1.05rem; font-weight: 500; color: var(--paper);
      transition: background 0.2s;
    }
    .nav-drawer__link:hover { background: rgba(255, 255, 255, 0.04); }
    .nav-drawer__divider { height: 1px; margin: 12px 0; background: var(--line); }
    .nav-drawer__cta {
      margin-top: 8px; min-height: 52px; border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--brand); color: #fff; font-weight: 700; font-size: 15px;
    }
    .nav-drawer__contact {
      min-height: 48px; padding: 0 12px; border-radius: 12px;
      display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.95rem;
      transition: background 0.2s, color 0.2s;
    }
    .nav-drawer__contact:hover { background: rgba(255, 255, 255, 0.04); color: var(--paper); }
    .nav-drawer__contact svg { flex-shrink: 0; width: 20px; height: 20px; }
    .nav-drawer__contact--stroke svg { color: var(--brand); }
    body.nav-open { overflow: hidden; }

    /* Hero */
    .hero {
      position: relative; z-index: 1; min-height: 100dvh;
      display: grid; align-items: center; padding: 120px 0 72px;
    }
    .hero__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 48px; align-items: center; }
    .hero h1 {
      margin: 24px 0 20px; max-width: 14ch;
      font-family: var(--display); font-style: italic; font-weight: 800;
      font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 0.95; letter-spacing: -0.03em;
    }
    .hero h1 em { font-style: italic; color: var(--brand); }
    .hero__lead { margin: 0; max-width: 52ch; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.6; }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 14px; min-height: 52px;
      padding: 6px 8px 6px 22px; border-radius: 999px;
      background: var(--brand); color: #fff; font-weight: 700; font-size: 15px;
      transition: transform 0.28s var(--ease), box-shadow 0.28s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 48px var(--brand-glow); }
    .btn-primary__icon {
      display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
      background: rgba(0,0,0,0.25); font-size: 18px; transition: transform 0.28s var(--ease);
    }
    .btn-primary:hover .btn-primary__icon { transform: translate(2px, -2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 44px; padding: 0 18px; border-radius: 999px;
      border: 1px solid var(--line); color: var(--muted); font-weight: 500; font-size: 14px; line-height: 1;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(176,0,255,0.4); color: var(--paper); }
    .hero__tags { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: var(--muted); font-size: 13px; }
    .hero__tags a {
      display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
      transition: color 0.2s ease;
    }
    .hero__tags a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
    .hero__tags a:hover { color: var(--paper); }

    /* Device stage */
    .stage {
      position: relative; width: min(100%, 580px); margin-inline: auto;
      perspective: 1100px; padding-top: 20px;
    }
    .stage__screen {
      position: relative; z-index: 1; width: 100%; padding: 10px;
      border: 1px solid var(--line); border-radius: 20px; background: var(--elevated);
      box-shadow: 28px 36px 70px rgba(0,0,0,0.55);
      transform: rotateY(-9deg) rotateX(4deg) rotateZ(-3deg);
      transition: transform 0.7s var(--ease);
    }
    .stage__preview {
      position: relative; width: 100%; aspect-ratio: 16 / 9;
      border-radius: 12px; overflow: hidden; isolation: isolate; background: #0a0a0c;
    }
    .stage__screen video, .stage__phone video {
      display: block; width: 100%; height: 100%; object-fit: cover;
    }
    .stage__preview video {
      position: absolute; inset: 0; width: 100%; height: 100%;
    }
    .stage__screen video { border-radius: 12px; filter: saturate(0.92) contrast(1.04); }
    .stage__phone {
      position: absolute; z-index: 2; right: 0; bottom: 0; width: 34%;
      aspect-ratio: 9 / 16; height: auto; padding: 7px; border-radius: 28px; background: #1a1a1e;
      box-shadow: 20px 28px 55px rgba(0,0,0,0.6), 0 0 0 1px rgba(176,0,255,0.2);
      transform: translateZ(60px) rotate(9deg); transition: transform 0.7s var(--ease);
      overflow: hidden;
    }
    .stage__phone video {
      position: absolute; inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px);
      border-radius: 22px;
    }
    .stage__phone::before {
      content: ""; position: absolute; z-index: 3; top: 12px; left: 50%; width: 28%; height: 4px;
      transform: translateX(-50%); border-radius: 8px; background: #2a2a30;
    }
    .stage__club-logo {
      position: absolute; z-index: 4; right: 14px; bottom: 14px;
      display: inline-flex; align-items: center; gap: 6px;
      max-width: calc(100% - 28px); padding: 5px 8px 5px 5px;
      border-radius: 10px;
      border: 1px dashed rgba(255, 255, 255, 0.42);
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
      color: rgba(255, 255, 255, 0.72);
      pointer-events: none;
    }
    .stage__club-logo__icon {
      flex-shrink: 0; width: 26px; height: 26px;
      display: grid; place-items: center;
      border-radius: 6px; background: rgba(255, 255, 255, 0.08);
    }
    .stage__club-logo__icon .material-symbols-outlined {
      font-size: 15px; opacity: 0.85;
    }
    .stage__club-logo__text {
      font-size: clamp(7px, 1.9vw, 9px); font-weight: 600;
      letter-spacing: 0.14em; line-height: 1;
      color: rgba(255, 255, 255, 0.88); white-space: nowrap;
    }
    .stage:hover .stage__screen { transform: rotateY(-4deg) rotateX(2deg) translateY(-6px); }
    .stage:hover .stage__phone { transform: translateZ(90px) rotate(6deg) translateY(-8px); }
    .stage__fallback {
      display: grid; place-items: center; min-height: 220px;
      background: linear-gradient(135deg, rgba(176,0,255,0.12), rgba(10,10,12,0.9));
      color: var(--muted); font-size: 13px; text-align: center; padding: 24px;
    }

    /* Ticker */
    .ticker-band { position: relative; z-index: 1; }
    .ticker-band .wrap { padding-block: 6px; }
    .ticker__track {
      display: flex; width: max-content;
      animation: ticker-marquee var(--ticker-duration, 22s) linear infinite;
      will-change: transform;
    }
    .ticker__set {
      display: flex; align-items: center; flex-shrink: 0; gap: 0;
    }
    .ticker-capsule {
      position: relative; overflow: hidden;
      border: 1px solid rgba(176, 0, 255, 0.28); border-radius: 999px;
      background: linear-gradient(135deg, rgba(176, 0, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 48%, rgba(176, 0, 255, 0.06) 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 40px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      padding: 8px 0;
    }
    @media (min-width: 768px) {
      .ticker-capsule { padding: 10px 0; }
    }
    .ticker-capsule::before,
    .ticker-capsule::after {
      content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 40px; pointer-events: none;
    }
    .ticker-capsule::before {
      left: 0; border-radius: 999px 0 0 999px;
      background: linear-gradient(90deg, rgba(8, 8, 10, 0.95) 15%, transparent);
    }
    .ticker-capsule::after {
      right: 0; border-radius: 0 999px 999px 0;
      background: linear-gradient(270deg, rgba(8, 8, 10, 0.95) 15%, transparent);
    }
    @media (min-width: 768px) {
      .ticker-capsule::before,
      .ticker-capsule::after { width: 72px; }
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
      margin-right: 10px; padding: 5px 12px 5px 6px; border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(5, 5, 5, 0.35);
      text-decoration: none; color: inherit; cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }
    .ticker-item:focus-visible {
      outline: 2px solid var(--brand); outline-offset: 2px;
    }
    .ticker-item:active { transform: scale(0.98); }
    .ticker-item:hover {
      border-color: rgba(176, 0, 255, 0.5);
      background: rgba(176, 0, 255, 0.14);
      box-shadow: 0 0 24px rgba(176, 0, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .ticker-item:hover .ticker-item__icon {
      border-color: rgba(176, 0, 255, 0.55);
      background: rgba(176, 0, 255, 0.28);
      color: #fff;
      box-shadow: 0 0 14px rgba(176, 0, 255, 0.35);
    }
    .ticker-item:hover .ticker-item__label { color: #fff; }
    .ticker-item:hover .ticker-item__label em { color: #f0d0ff; }
    @media (min-width: 768px) {
      .ticker-item {
        gap: 10px; margin-right: 14px; padding: 6px 16px 6px 8px;
      }
    }
    .ticker-item__icon {
      display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0;
      border-radius: 50%; border: 1px solid rgba(176, 0, 255, 0.25); background: var(--brand-dim); color: #e9c4ff;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
    @media (min-width: 768px) {
      .ticker-item__icon { width: 30px; height: 30px; }
    }
    .ticker-item__icon svg { width: 13px; height: 13px; }
    @media (min-width: 768px) {
      .ticker-item__icon svg { width: 15px; height: 15px; }
    }
    .ticker-item__label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper); white-space: nowrap;
      transition: color 0.2s ease;
    }
    @media (min-width: 768px) {
      .ticker-item__label { font-size: 11px; letter-spacing: 0.1em; }
    }
    .ticker-item__label em {
      font-family: var(--display); font-style: italic; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; text-transform: none;
    }

    /* Sections */
    .section { position: relative; z-index: 1; padding: clamp(72px, 10vw, 120px) 0; }
    .section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
    .section-head h2 {
      margin: 16px 0 0; font-family: var(--display); font-style: italic; font-weight: 800;
      font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1; letter-spacing: -0.03em;
    }
    .section-head p { margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.55; max-width: 58ch; }

    /* Benefits */
    .benefits { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
    .benefits__mark {
      display: none; grid-column: 9 / -1; grid-row: 2 / 4;
      align-self: center; justify-self: center;
      position: relative; isolation: isolate;
      width: min(100%, 380px); aspect-ratio: 1;
      pointer-events: none; user-select: none;
      transform: rotate(-10deg);
      animation: benefits-mark-float 11s ease-in-out infinite;
    }
    .benefits__mark__glow {
      position: absolute; z-index: 0; inset: -10%;
      border-radius: 50%;
      background:
        radial-gradient(ellipse 58% 52% at 28% 32%, rgba(176, 0, 255, 0.38), transparent 62%),
        radial-gradient(ellipse 48% 46% at 78% 72%, rgba(210, 150, 255, 0.24), transparent 58%);
      filter: blur(22px);
      animation: benefits-mark-aurora 8s ease-in-out infinite alternate;
    }
    .benefits__mark__base,
    .benefits__mark__sheen {
      position: absolute; inset: 0;
      mask: url("favicon.svg") center / contain no-repeat;
      -webkit-mask: url("favicon.svg") center / contain no-repeat;
    }
    .benefits__mark__base {
      z-index: 1;
      background: linear-gradient(
        125deg,
        rgba(100, 0, 180, 0.2) 0%,
        rgba(176, 0, 255, 0.45) 16%,
        rgba(244, 230, 255, 0.58) 36%,
        rgba(176, 0, 255, 0.4) 56%,
        rgba(150, 50, 230, 0.3) 76%,
        rgba(176, 0, 255, 0.38) 100%
      );
      background-size: 300% 300%;
      animation: benefits-mark-flow 9s ease-in-out infinite;
      filter: drop-shadow(0 0 20px rgba(176, 0, 255, 0.22));
    }
    .benefits__mark__sheen {
      z-index: 2; opacity: 0.9; mix-blend-mode: screen;
      background: linear-gradient(
        108deg,
        transparent 0%,
        transparent 36%,
        rgba(255, 255, 255, 0.06) 44%,
        rgba(255, 255, 255, 0.48) 50%,
        rgba(220, 180, 255, 0.18) 56%,
        transparent 64%,
        transparent 100%
      );
      background-size: 240% 100%;
      animation: benefits-mark-sheen 6.5s ease-in-out infinite;
    }
    @media (min-width: 901px) {
      .benefits__mark { display: block; }
    }
    .benefit {
      grid-column: span 4; padding: 1px; border-radius: calc(var(--radius) + 2px);
      background: linear-gradient(145deg, rgba(176,0,255,0.25), rgba(255,255,255,0.04));
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .benefit:hover {
      transform: translateY(-4px);
      background: linear-gradient(145deg, rgba(176, 0, 255, 0.5), rgba(176, 0, 255, 0.12));
      box-shadow: 0 16px 48px rgba(176, 0, 255, 0.18), 0 8px 24px rgba(0, 0, 0, 0.28);
    }
    .benefit--wide { grid-column: span 6; }
    .benefit--accent {
      grid-column: span 6;
      background: linear-gradient(145deg, rgba(176,0,255,0.55), rgba(176,0,255,0.15));
    }
    .benefit--accent:hover {
      background: linear-gradient(145deg, rgba(176, 0, 255, 0.72), rgba(176, 0, 255, 0.22));
      box-shadow: 0 20px 56px rgba(176, 0, 255, 0.24), 0 8px 24px rgba(0, 0, 0, 0.28);
    }
    .benefit__inner {
      height: 100%; padding: 28px; border-radius: var(--radius); background: var(--surface);
      transition: background 0.2s ease;
    }
    .benefit--accent .benefit__inner { background: linear-gradient(160deg, #1a0a24 0%, var(--surface) 55%); }
    .benefit:hover .benefit__inner {
      background: linear-gradient(160deg, rgba(176, 0, 255, 0.12) 0%, var(--surface) 58%);
    }
    .benefit--accent:hover .benefit__inner {
      background: linear-gradient(160deg, #2a1040 0%, var(--surface) 55%);
    }
    .benefit__icon {
      display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px;
      border-radius: 12px; border: 1px solid var(--line); background: var(--brand-dim); color: #e9c4ff;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
    .benefit:hover .benefit__icon {
      border-color: rgba(176, 0, 255, 0.55);
      background: rgba(176, 0, 255, 0.28);
      color: #fff;
      box-shadow: 0 0 18px rgba(176, 0, 255, 0.35);
    }
    .benefit h3 {
      margin: 0 0 10px; font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em;
      transition: color 0.2s ease;
    }
    .benefit:hover h3 { color: #fff; }
    .benefit p {
      margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5;
      transition: color 0.2s ease;
    }
    .benefit:hover p { color: rgba(255, 255, 255, 0.72); }

    /* Flow */
    .flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
    .flow__step { padding: 28px 24px; border-right: 1px solid var(--line); background: var(--carbon); transition: background 0.3s; }
    .flow__step:last-child { border-right: 0; }
    .flow__step:hover { background: var(--surface); }
    .flow__no { color: var(--brand); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; }
    .flow__step h3 { margin: 20px 0 8px; font-size: 1rem; font-weight: 600; }
    .flow__step p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }

    /* WL band */
    .wl {
      padding: clamp(40px, 6vw, 72px); border-radius: calc(var(--radius) + 4px);
      border: 1px solid rgba(176,0,255,0.3);
      background: linear-gradient(135deg, rgba(176,0,255,0.12) 0%, var(--carbon) 45%, var(--carbon) 100%);
      display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
    }
    .wl h2 { margin: 12px 0 0; font-family: var(--display); font-style: italic; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1; }
    .wl p { margin: 14px 0 0; max-width: 52ch; color: var(--muted); line-height: 1.55; }
    .wl__chips {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; align-content: start;
    }
    .wl__chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
      background: rgba(255,255,255,0.03); font-size: 12px; font-weight: 500; color: var(--muted);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .wl__chip-icon {
      display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0;
      border-radius: 8px; border: 1px solid rgba(176, 0, 255, 0.25); background: var(--brand-dim); color: #e9c4ff;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
    .wl__chip-icon .material-symbols-outlined { font-size: 16px; }
    .wl__chip-label { line-height: 1.2; }
    .wl__chip:is(:hover, :active) {
      transform: translateY(-3px);
      border-color: rgba(176, 0, 255, 0.45);
      background: rgba(176, 0, 255, 0.08);
      box-shadow: 0 12px 32px rgba(176, 0, 255, 0.12);
    }
    .wl__chip:is(:hover, :active) .wl__chip-icon {
      border-color: rgba(176, 0, 255, 0.55);
      background: rgba(176, 0, 255, 0.28);
      color: #fff;
      box-shadow: 0 0 14px rgba(176, 0, 255, 0.3);
    }
    @media (min-width: 901px) {
      .wl { grid-template-columns: 1fr minmax(300px, 400px); }
      .wl__chips {
        display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
      }
      .wl__chip {
        flex-direction: column; align-items: flex-start; gap: 14px;
        min-height: 108px; padding: 18px 16px; border-radius: var(--radius);
        font-size: 13px; font-weight: 600; color: var(--paper);
      }
      .wl__chip-icon {
        width: 36px; height: 36px; border-radius: 10px;
      }
      .wl__chip-icon .material-symbols-outlined { font-size: 20px; }
    }

    /* FAQ */
    .faq { border-top: 1px solid var(--line); }
    .faq details { border-bottom: 1px solid var(--line); }
    .faq summary {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      min-height: 72px; padding: 8px 0; cursor: pointer; list-style: none;
      font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 500; letter-spacing: -0.02em;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: "+"; color: var(--brand); font-size: 1.6rem; font-weight: 300; transition: transform 0.25s var(--ease); }
    .faq details[open] summary::after { transform: rotate(45deg); }
    .faq__a { max-width: 640px; padding: 0 0 20px; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }

    /* Final CTA */
    .final {
      position: relative; isolation: isolate; overflow: hidden;
      padding: clamp(48px, 8vw, 88px); border-radius: calc(var(--radius) + 6px);
      text-align: center;
      border: 1px solid transparent;
      background:
        linear-gradient(var(--carbon), var(--carbon)) padding-box,
        linear-gradient(
          100deg,
          rgba(176, 0, 255, 0.35) 0%,
          rgba(176, 0, 255, 0.95) 22%,
          rgba(230, 170, 255, 0.7) 44%,
          rgba(120, 0, 200, 0.55) 66%,
          rgba(176, 0, 255, 0.35) 100%
        ) border-box;
      background-size: 100% 100%, 280% 100%;
      animation: final-border-shimmer 5s linear infinite;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 72px rgba(176, 0, 255, 0.1);
    }
    .final::before {
      content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 45% at 15% 0%, rgba(176, 0, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 100%, rgba(176, 0, 255, 0.14), transparent 50%);
      animation: final-aurora 7s ease-in-out infinite alternate;
    }
    .final::after {
      content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit; pointer-events: none;
      opacity: 0.42;
      background: linear-gradient(
        105deg,
        transparent 12%,
        rgba(255, 255, 255, 0.03) 32%,
        rgba(176, 0, 255, 0.07) 50%,
        rgba(255, 255, 255, 0.03) 68%,
        transparent 88%
      );
      background-size: 320% 100%;
      animation: final-sheen 7.5s ease-in-out infinite;
    }
    .final h2 {
      margin: 16px auto 0; max-width: 16ch;
      font-family: var(--display); font-style: italic; font-weight: 800;
      font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 0.95; letter-spacing: -0.03em;
    }
    .final p { margin: 20px auto 0; max-width: 46ch; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
    .final .btn-primary { margin-top: 28px; }

    .footer {
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
      padding: 32px 0 max(100px, calc(80px + env(safe-area-inset-bottom)));
      border-top: 1px solid var(--line); color: var(--muted); font-size: 14px;
    }
    .footer a:hover { color: var(--paper); }
    .footer__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; }
    .footer__social { display: flex; align-items: center; gap: 8px; }
    .footer__social-link {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
      transition: transform 0.22s var(--ease), border-color 0.22s, background 0.22s;
    }
    .footer__social-link:hover {
      transform: translateY(-2px); border-color: rgba(176, 0, 255, 0.35); background: rgba(176, 0, 255, 0.08);
    }
    .footer__social-link svg { display: block; width: 22px; height: 22px; }

    .mobile-bar {
      display: none; position: fixed; z-index: 45; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px;
      align-items: center; justify-content: space-between; min-height: 56px; padding: 6px 8px 6px 20px;
      border-radius: 999px; background: var(--brand); color: #fff; font-weight: 700;
      box-shadow: 0 16px 40px rgba(0,0,0,0.45);
      opacity: 0; visibility: hidden; pointer-events: none;
      transform: translateY(12px);
      transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
    }
    .mobile-bar.is-visible {
      opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    }
    .mobile-bar span {
      display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
      background: rgba(0,0,0,0.25); font-size: 18px;
    }

    [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
    [data-reveal].is-visible { opacity: 1; transform: none; }

    @keyframes ticker-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @keyframes final-border-shimmer {
      from { background-position: 0 0, 0% 0; }
      to { background-position: 0 0, 280% 0; }
    }
    @keyframes final-aurora {
      from { transform: translate(0, 0) scale(1); opacity: 0.85; }
      to { transform: translate(2%, 3%) scale(1.04); opacity: 1; }
    }
    @keyframes final-sheen {
      0%, 100% { background-position: 140% 0; }
      50% { background-position: -40% 0; }
    }
    @keyframes benefits-mark-flow {
      0%, 100% { background-position: 0% 45%; filter: drop-shadow(0 0 18px rgba(176, 0, 255, 0.18)); }
      50% { background-position: 100% 55%; filter: drop-shadow(0 0 32px rgba(200, 120, 255, 0.34)); }
    }
    @keyframes benefits-mark-aurora {
      from { transform: translate(-2%, -1%) scale(0.94); opacity: 0.6; }
      to { transform: translate(3%, 4%) scale(1.06); opacity: 1; }
    }
    @keyframes benefits-mark-sheen {
      0%, 100% { background-position: 135% 0; }
      50% { background-position: -35% 0; }
    }
    @keyframes benefits-mark-float {
      0%, 100% { transform: rotate(-10deg) translateY(0); }
      50% { transform: rotate(-10deg) translateY(-7px); }
    }
    @keyframes pulse { 50% { opacity: 0.5; } }
    @keyframes drift { from { transform: translate(0,0); } to { transform: translate(3vw, 2vh); } }

    @media (max-width: 900px) {
      .hero__grid, .wl { grid-template-columns: 1fr; }
      .benefit, .benefit--wide, .benefit--accent { grid-column: span 12; }
      .flow { grid-template-columns: 1fr; }
      .flow__step { border-right: 0; border-bottom: 1px solid var(--line); }
      .flow__step:last-child { border-bottom: 0; }
      .stage { margin-top: 16px; }
      .mobile-bar { display: flex; }
      .nav__cta { display: none; }
      .nav__inner { padding-right: 8px; }
      .nav__phone { padding: 0 10px; font-size: 12px; gap: 5px; }
    }

    @media (max-width: 1024px) {
      .nav__links { display: none; }
      .nav__burger { display: inline-flex; }
    }

    @media (max-width: 420px) {
      .nav__phone-text { display: none; }
      .footer .logo-lockup__text { display: none; }
      .nav__phone { width: 44px; padding: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
      [data-reveal] { opacity: 1; transform: none; }
    }
