  :root {
    --purple-50:  #f3efff;
    --purple-100: #e7dcff;
    --purple-200: #c9b1ff;
    --purple-300: #a884ff;
    --purple:     #8b5cf6;
    --purple-600: #7c3aed;
    --purple-700: #5b2bb8;
    --purple-deep:#2a1d5e;
    --purple-ink: #1b1140;

    --cyan:       #18d0f0;
    --cyan-deep:  #0ea3c1;

    --cream:      #f7f4ee;   /* discord-ish off-white background */
    --bg:         #ffffff;
    --ink:        #15131e;
    --ink-2:      #3a364a;
    --muted:      #6b6779;
    --line:       #ebe7df;

    --max: 1180px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;

    --display: "Bricolage Grotesque", "Bricolage", system-ui, sans-serif;
    --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

    --shadow-card: 0 30px 60px -30px rgba(43, 21, 110, 0.25), 0 8px 24px -12px rgba(43, 21, 110, 0.12);
    --shadow-glow: 0 50px 120px -40px rgba(139, 92, 246, 0.55);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: var(--purple-600); text-decoration: none; }
  a:hover { text-decoration: underline; text-underline-offset: 3px; }
  img { max-width: 100%; display: block; }

  h1, h2, h3 {
    font-family: var(--display);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.02;
    font-weight: 800;
  }
  h1 { font-size: clamp(40px, 6vw, 78px); }
  h2 { font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.025em; line-height: 1.05; }
  h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.015em; }
  p { margin: 0; }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

  /* ── Nav ─────────────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid rgba(20,18,30,0.06);
  }
  .nav__inner {
    max-width: var(--max); margin: 0 auto;
    padding: 16px 24px;
    display: flex; align-items: center; gap: 36px;
  }
  .nav__logo {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink); font-family: var(--display); font-weight: 800;
    font-size: 22px; letter-spacing: -0.02em;
  }
  .nav__logo img { width: 32px; height: 32px; border-radius: 8px; }
  .nav__logo:hover { text-decoration: none; }
  .nav__links { display: flex; gap: 28px; }
  .nav__links a {
    color: var(--ink-2); font-weight: 600; font-size: 15px;
  }
  .nav__links a:hover { color: var(--purple-600); text-decoration: none; }
  .nav__spacer { flex: 1; }
  .nav__login {
    color: var(--ink-2); font-weight: 600; font-size: 15px;
  }
  .nav__cta {
    display: inline-flex; align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700; font-size: 14px;
    letter-spacing: -0.005em;
    transition: background .15s, transform .12s;
  }
  .nav__cta:hover { background: var(--purple-600); text-decoration: none; }
  .nav__lang {
    display: inline-flex; align-items: center; gap: 2px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
    color: var(--ink-2);
  }
  .nav__lang a {
    color: var(--ink-2); opacity: 0.55;
    padding: 4px 6px; border-radius: 6px;
    text-transform: uppercase;
  }
  .nav__lang a:hover { opacity: 1; color: var(--purple-600); text-decoration: none; }
  .nav__lang a.nav__lang--active { opacity: 1; color: var(--ink); background: rgba(20,18,30,0.06); }
  .nav__lang-select { display: none; }
  @media (max-width: 800px) {
    .nav__cta { display: none; }
    .nav__links { display: none; }
    .nav__inner { gap: 16px; }
    .nav__lang { display: none; }
    .nav__lang-select {
      display: inline-block;
      font: inherit;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--ink);
      background: rgba(20,18,30,0.06);
      border: 1px solid rgba(20,18,30,0.1);
      border-radius: 6px;
      padding: 4px 22px 4px 8px;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%2314121e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 7px center;
    }
  }

  /* ── Hero ────────────────────────────────────────────────── */
  .hero {
    position: relative;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, #3a2a82 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 20% 30%, #2c1c6e 0%, transparent 60%),
      linear-gradient(180deg, #1d1148 0%, #0f0828 100%);
    color: #fff;
    min-height: calc(100svh - 64px);
    display: flex; flex-direction: column;
    padding: 0;
    overflow: hidden;
  }
  /* starfield */
  .hero__stars {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,0.9), transparent 50%),
      radial-gradient(1px 1px at 28% 68%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1.5px 1.5px at 55% 14%, rgba(255,255,255,0.7), transparent 50%),
      radial-gradient(1px 1px at 80% 40%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(2px 2px at 92% 70%, rgba(255,255,255,0.85), transparent 50%),
      radial-gradient(1px 1px at 8% 88%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1.5px 1.5px at 45% 80%, rgba(255,255,255,0.7), transparent 50%),
      radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1px 1px at 38% 36%, rgba(255,255,255,0.4), transparent 50%),
      radial-gradient(1.5px 1.5px at 18% 50%, rgba(255,255,255,0.6), transparent 50%);
  }
  .hero__bg {
    position: absolute; inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .hero__blob {
    position: absolute; pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
  }
  .hero__blob--1 { width: 480px; height: 480px; background: #8b5cf6; left: -200px; bottom: -160px; opacity: 0.35; }
  .hero__blob--2 { width: 420px; height: 420px; background: #18d0f0; right: -120px; top: 20%; opacity: 0.22; }
  .hero__inner {
    position: relative; z-index: 1;
    flex: 1; min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 24px;
    max-width: 1320px; margin: 0 auto; width: 100%;
    padding: 24px 32px;
    text-align: left;
  }
  .hero__copy { display: flex; flex-direction: column; gap: 0; max-width: 540px; }
  .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 13px; font-weight: 600;
    color: #e9e3ff;
    margin-bottom: 24px;
    align-self: flex-start;
  }
  .hero__eyebrow b {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--cyan);
    color: var(--purple-ink);
    font-weight: 800; font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hero h1 {
    color: #fff;
    max-width: none;
    margin: 0;
    line-height: 1.02;
  }
  .hero h1 .accent {
    background: linear-gradient(120deg, var(--cyan) 0%, #b8e4ff 70%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline;
  }
  .hero__sub {
    max-width: 480px;
    margin: 24px 0 0;
    color: #c9c0ec; font-size: 17px; line-height: 1.55;
  }

  .hero__copy .hero__form--left { margin: 32px 0 0; max-width: 480px; }
  .hero__alt {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 18px;
  }
  .hero__download {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-weight: 700; font-size: 15px;
    letter-spacing: -0.005em;
    transition: background .15s, transform .12s, border-color .15s;
  }
  .hero__download:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.32);
    text-decoration: none; transform: translateY(-1px);
  }
  .hero__or { color: #8b85ad; font-size: 14px; font-weight: 500; }
  .hero__browse { color: #c9c0ec; font-weight: 600; font-size: 15px; }
  .hero__browse:hover { color: #fff; text-decoration: none; }

  .hero__form {
    position: relative; z-index: 2;
    margin: 36px auto 0;
    max-width: 520px;
    display: flex; align-items: stretch;
    gap: 8px;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.1),
      0 24px 60px -20px rgba(10, 5, 40, 0.6),
      0 0 80px -10px rgba(139, 92, 246, 0.45);
  }
  .hero__form input {
    flex: 1; min-width: 0;
    border: 0; outline: 0;
    background: transparent;
    padding: 0 18px;
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero__form input::placeholder { color: #8b8694; }
  .hero__form button {
    border: 0;
    background: var(--purple-600);
    color: #fff;
    font-family: var(--sans); font-weight: 700; font-size: 15px;
    padding: 14px 26px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s, transform .1s, box-shadow .15s;
    white-space: nowrap;
  }
  .hero__form button:hover { background: var(--purple); box-shadow: 0 8px 24px -6px rgba(139,92,246,0.6); }
  .hero__form button:active { transform: translateY(1px); }
  .hero__form button svg { transition: transform .15s; }
  .hero__form button:hover svg { transform: translateX(3px); }

  .hero__rr {
    display: flex; gap: 22px;
    margin-top: 22px;
    color: #b9b1d8; font-size: 13px; font-weight: 500;
  }
  .hero__rr span { display: inline-flex; align-items: center; gap: 6px; }
  .hero__rr svg { color: var(--cyan); }

  .hero__shot {
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__shot img {
    max-width: 130%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    animation: float 7s ease-in-out infinite;
    transform-origin: center;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
  }

  /* curved wave divider between hero and next section */
  .wave {
    display: block;
    width: 100%;
    height: 80px;
    color: var(--cream);
  }
  .wave--down { color: var(--cream); }

  /* spacer formerly held the floating screenshot — hero is now self-contained */
  .hero-pad { display: none; }

  @media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; padding: 32px 24px; gap: 16px; text-align: center; }
    .hero__copy { max-width: none; align-items: center; text-align: center; }
    .hero__eyebrow { align-self: center; }
    .hero__rr { justify-content: center; }
    .hero__copy .hero__form--left { margin-left: auto; margin-right: auto; }
    .hero__alt { justify-content: center; }
    .hero__shot { min-height: 280px; }
    .hero__shot img { max-width: 100%; }
  }
  @media (max-width: 720px) {
    .hero { min-height: 0; }
    .hero__inner { padding: 28px 20px 36px; }
    .hero h1 { font-size: clamp(36px, 9vw, 52px); }
    .hero__form { border-radius: var(--r-md); flex-direction: column; }
    .hero__form input { padding: 14px 16px; }
    .hero__form button { border-radius: 999px; justify-content: center; }
    .hero__rr { flex-wrap: wrap; justify-content: center; gap: 14px 22px; }
  }

  /* ── Generic feature row ─────────────────────────────────── */
  .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 96px 0;
  }
  .row--reverse .row__media { order: 2; }
  .row__copy h2 { margin-bottom: 22px; }
  .row__copy p {
    color: var(--ink-2); font-size: 18px; line-height: 1.6;
    max-width: 520px;
  }
  .row__copy .eyebrow {
    display: inline-block;
    color: var(--purple-600);
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .row__media {
    position: relative;
  }
  .row__media img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
  }
  .row__media--bare img {
    box-shadow: none;
    border-radius: 0;
  }
  @media (max-width: 880px) {
    .row { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
    .row--reverse .row__media { order: 0; }
  }

  /* ── Section: voice & screen share (light cream) ─────────── */
  .sec-cream { background: var(--cream); }
  .sec-cream .row__media {
    background:
      radial-gradient(circle at 30% 30%, rgba(139,92,246,0.18), transparent 60%),
      radial-gradient(circle at 70% 80%, rgba(24,208,240,0.18), transparent 60%);
    padding: 36px;
    border-radius: var(--r-xl);
  }

  /* ── Stat row ────────────────────────────────────────────── */
  .stats {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stats__grid {
    max-width: var(--max); margin: 0 auto;
    padding: 56px 24px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat__n {
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
  }
  .stat__n .u { color: var(--purple-600); }
  .stat__n .gold { color: var(--cyan-deep); }
  .stat__l {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
  }
  @media (max-width: 720px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  }

  /* ── Section: mobile (white) ─────────────────────────────── */
  .sec-white { background: #fff; }
  .sec-white .row__media {
    display: flex; justify-content: center;
    padding: 24px 0;
  }
  .phone-frame {
    position: relative;
    background: var(--purple-ink);
    border-radius: 38px;
    padding: 8px;
    box-shadow:
      0 30px 60px -20px rgba(20, 10, 60, 0.5),
      0 0 0 1px rgba(255,255,255,0.05);
    max-width: 280px;
  }
  .phone-frame::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #000;
    border-radius: 999px;
    z-index: 2;
  }
  .phone-frame img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    display: block;
  }
  .phone-orbit {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: var(--shadow-card);
    font-size: 13px;
    display: flex; align-items: center; gap: 10px;
    z-index: 3;
  }
  .phone-orbit b { color: var(--ink); display: block; font-size: 13px; font-weight: 700; }
  .phone-orbit span { color: var(--muted); font-size: 12px; }
  .phone-orbit__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #2ed391;
    box-shadow: 0 0 12px rgba(46, 211, 145, 0.6);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.25); opacity: 0.7; }
  }
  .phone-orbit--1 {
    top: 20px; right: -32px;
  }
  .phone-orbit--2 {
    bottom: 40px; left: -56px;
    padding: 12px 14px;
  }
  .phone-orbit--2 .av {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 13px;
  }
  @media (max-width: 720px) {
    .phone-orbit { display: none; }
  }

  /* ── Section: emoji / make it yours ──────────────────────── */
  .sec-mint {
    background: linear-gradient(180deg, #fff 0%, #f3efff 100%);
  }
  .sec-mint .row__media {
    background: linear-gradient(135deg, #fff 0%, #e9dfff 100%);
    padding: 40px 32px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
  }
  .emoji-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 18px;
  }
  .emoji-tile {
    aspect-ratio: 1;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    font-size: 30px;
    box-shadow: 0 4px 12px -6px rgba(0,0,0,0.1);
    transition: transform .2s ease;
  }
  .emoji-tile:hover { transform: translateY(-3px) rotate(-4deg); }
  .emoji-tile--gif { position: relative; }
  .emoji-tile--gif::after {
    content: "GIF";
    position: absolute; top: 6px; right: 6px;
    font-size: 8px; font-weight: 800;
    background: var(--purple-600); color: #fff;
    padding: 2px 5px; border-radius: 4px;
  }
  .role-row { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
  .role-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    background: #fff; border-radius: 12px;
    border: 1px solid var(--line);
    font-weight: 700; font-size: 14px;
    width: fit-content;
  }
  .role-pill .swatch { width: 10px; height: 10px; border-radius: 50%; }

  /* ── Pricing teaser ──────────────────────────────────────── */
  .pricing {
    background: var(--cream);
    padding: 96px 0;
    text-align: center;
  }
  .pricing h2 { max-width: 18ch; margin: 0 auto 14px; }
  .pricing__sub {
    color: var(--muted);
    font-size: 18px;
    max-width: 540px; margin: 0 auto 48px;
  }
  .tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  .tier {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 28px;
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform .15s, box-shadow .15s;
  }
  .tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .tier--featured {
    background: linear-gradient(180deg, var(--purple-ink) 0%, var(--purple-deep) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 30px 60px -20px rgba(43, 21, 110, 0.4);
    position: relative;
  }
  .tier--featured .tier__name,
  .tier--featured .tier__seats,
  .tier--featured ul li { color: #e1d8ff; }
  .tier--featured .tier__price b { color: #fff; }
  .tier--featured .tier__price em { color: var(--cyan); }
  .tier__badge {
    position: absolute; top: -12px; right: 20px;
    background: var(--cyan); color: var(--purple-ink);
    font-weight: 800; font-size: 11px;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .tier__name {
    font-family: var(--display); font-weight: 700;
    font-size: 22px; color: var(--ink);
    margin-bottom: 6px;
  }
  .tier__price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 4px;
  }
  .tier__price b {
    font-family: var(--display); font-size: 48px; font-weight: 800;
    letter-spacing: -0.04em; color: var(--ink); line-height: 1;
  }
  .tier__price em {
    font-style: normal;
    color: var(--muted);
    font-size: 14px; font-weight: 600;
  }
  .tier__seats {
    color: var(--muted); font-size: 14px;
    margin-bottom: 24px; padding-bottom: 22px;
    border-bottom: 1px dashed var(--line);
  }
  .tier--featured .tier__seats { border-bottom-color: rgba(255,255,255,0.12); }
  .tier ul {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 12px;
    font-size: 15px; color: var(--ink-2);
  }
  .tier ul li {
    display: grid; grid-template-columns: 20px 1fr; gap: 8px; align-items: start;
  }
  .tier ul li::before {
    content: "";
    width: 16px; height: 16px;
    margin-top: 4px;
    border-radius: 50%;
    background: var(--purple-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237c3aed' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5'/></svg>") center/12px no-repeat;
  }
  .tier--featured ul li::before {
    background: rgba(24,208,240,0.18) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2318d0f0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5'/></svg>") center/12px no-repeat;
  }
  .tier__cta {
    margin-top: auto;
    display: block; text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-weight: 700; font-size: 15px;
    transition: background .15s, transform .1s, box-shadow .15s;
  }
  .tier__cta--ghost {
    border: 1.5px solid var(--ink); color: var(--ink);
    background: transparent;
  }
  .tier__cta--ghost:hover { background: var(--ink); color: #fff; text-decoration: none; }
  .tier__cta--solid {
    background: var(--cyan); color: var(--purple-ink);
    border: 1.5px solid var(--cyan);
  }
  .tier__cta--solid:hover { background: #4be0ff; text-decoration: none; box-shadow: 0 10px 28px -6px rgba(24,208,240,0.5); }
  .tier__cta--purple {
    background: var(--purple-600); color: #fff;
    border: 1.5px solid var(--purple-600);
  }
  .tier__cta--purple:hover { background: var(--purple); text-decoration: none; box-shadow: 0 10px 28px -6px rgba(139,92,246,0.5); }
  @media (max-width: 820px) {
    .tiers { grid-template-columns: 1fr; }
  }

  /* ── Download ────────────────────────────────────────────── */
  .download {
    background: linear-gradient(180deg, #f3efff 0%, #e8defb 100%);
    padding: 96px 0;
    text-align: center;
  }
  .download h2 { max-width: 16ch; margin: 0 auto 14px; }
  .download__sub {
    color: var(--muted); font-size: 18px;
    max-width: 540px; margin: 0 auto 48px;
  }
  .platforms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 980px; margin: 0 auto;
  }
  .plat {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px 22px 24px;
    border: 1px solid var(--line);
    text-align: left;
    display: flex; flex-direction: column;
    gap: 14px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    position: relative;
    color: var(--ink);
  }
  .plat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--purple-200);
    text-decoration: none;
  }
  .plat__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
    display: grid; place-items: center;
    color: var(--purple-700);
  }
  .plat__name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .plat__meta {
    color: var(--muted);
    font-size: 13px; font-weight: 600;
  }
  .plat__cta {
    margin-top: auto;
    color: var(--purple-700);
    font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .plat__cta svg { transition: transform .15s; }
  .plat:hover .plat__cta svg { transform: translateX(3px); }
  .plat--soon { opacity: 0.7; pointer-events: none; }
  .plat__tag {
    position: absolute; top: 16px; right: 16px;
    background: var(--purple-50); color: var(--purple-700);
    font-weight: 700; font-size: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .plat__tag--soon { background: #fff3d6; color: #b07b1a; }
  .download__alt {
    margin-top: 36px;
    color: var(--muted);
    font-size: 14px;
  }
  .download__alt a { color: var(--purple-700); font-weight: 700; }
  @media (max-width: 820px) {
    .platforms { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 420px) {
    .platforms { grid-template-columns: 1fr; }
  }
  /* 5 platforms: keep one row at desktop with a narrower track */
  @media (min-width: 821px) {
    .platforms { grid-template-columns: repeat(5, 1fr); }
  }

  /* ── Final CTA ───────────────────────────────────────────── */
  .final {
    position: relative;
    background:
      radial-gradient(ellipse 80% 60% at 20% 20%, #4226a0 0%, transparent 60%),
      radial-gradient(ellipse 70% 60% at 80% 80%, #1c6080 0%, transparent 60%),
      linear-gradient(180deg, var(--purple-ink) 0%, #110a2b 100%);
    color: #fff;
    padding: 110px 0 96px;
    text-align: center;
    overflow: hidden;
  }
  .final__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 24px; }
  .final h2 { color: #fff; max-width: 14ch; margin: 0 auto 22px; }
  .final p {
    color: #d6cff0;
    font-size: 18px;
    max-width: 480px; margin: 0 auto 36px;
  }
  .final .hero__form { box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 100px -20px rgba(139,92,246,0.6); }
  .final__rr {
    display: flex; justify-content: center; gap: 20px;
    margin-top: 22px;
    color: #b9b1d8; font-size: 13px; font-weight: 500;
    flex-wrap: wrap;
  }
  .final__rr span { display: inline-flex; align-items: center; gap: 6px; }

  /* floating mini-icons in final cta */
  .final__sparkle {
    position: absolute;
    color: var(--cyan);
    opacity: 0.5;
    animation: drift 8s ease-in-out infinite;
  }
  .final__sparkle--1 { top: 18%; left: 12%; }
  .final__sparkle--2 { bottom: 22%; right: 14%; animation-delay: -3s; color: var(--purple-300); }
  .final__sparkle--3 { top: 30%; right: 22%; animation-delay: -5s; }
  @keyframes drift {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-14px) rotate(8deg); }
  }

  /* ── Footer ──────────────────────────────────────────────── */
  .footer {
    background: #0d0822;
    color: #9b94c2;
    padding: 56px 0 36px;
  }
  .footer__inner {
    max-width: var(--max); margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer__brand .nav__logo { color: #fff; font-size: 24px; }
  .footer__tag {
    margin-top: 14px;
    color: #9b94c2;
    font-size: 14px; line-height: 1.6;
    max-width: 280px;
  }
  .footer__col h4 {
    font-family: var(--sans);
    color: var(--cyan);
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin: 0 0 16px;
  }
  .footer__col a {
    display: block;
    color: #c4bdec;
    font-size: 14px; font-weight: 500;
    padding: 6px 0;
  }
  .footer__col a:hover { color: var(--cyan); text-decoration: none; }
  .footer__bottom {
    max-width: var(--max); margin: 56px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 16px;
    font-size: 13px;
    color: #7a749e;
  }
  .footer__bottom__spacer { flex: 1; }
  @media (max-width: 720px) {
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom { flex-wrap: wrap; }
  }

  /* ── Small bits ──────────────────────────────────────────── */
  .check-list {
    list-style: none; padding: 0; margin: 28px 0 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .check-list li {
    display: grid; grid-template-columns: 24px 1fr; gap: 10px;
    align-items: center;
    color: var(--ink); font-size: 15px; font-weight: 500;
  }
  .check-list li::before {
    content: "";
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--purple-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237c3aed' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5'/></svg>") center/14px no-repeat;
  }

  /* ── Reduced motion ─────────────────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    .hero__shot img,
    .phone-orbit__dot,
    .final__sparkle {
      animation: none !important;
    }
    * {
      scroll-behavior: auto !important;
    }
  }
