/* ==========================================================================
   Feeziq — foundations: fonts, tokens, reset, type, buttons, store badges
   ========================================================================== */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #09070f;
  --bg-elev: #110d1b;
  --bg-elev-2: #181224;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.065);

  --text: #f5f2fc;
  --text-2: #bdb5d1;
  --text-3: #8d85a4;

  --purple: #7c4dff;
  --purple-strong: #6934f2;
  --purple-soft: #b89cff;
  --purple-tint: rgba(124, 77, 255, 0.16);
  --amber: #ffc34d;
  --flame: #ff7a45;
  --green: #5edc96;
  --blue: #4ea9ff;
  --pink: #ff6fae;
  --red: #ff6b6b;

  --grad-brand: linear-gradient(120deg, #c7b0ff 0%, #8f63ff 40%, #ffb86b 100%);
  --grad-purple: linear-gradient(135deg, #8b5cff 0%, #6934f2 100%);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(96px, 12vw, 168px);
  --header-h: 72px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-lg: 0 50px 120px -40px rgba(0, 0, 0, 0.85);
  --font: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul[role='list'], ol[role='list'] { list-style: none; padding: 0; }
::selection { background: rgba(124, 77, 255, 0.45); color: #fff; }

:focus-visible {
  outline: 2px solid var(--purple-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

.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;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 16px; border-radius: 999px;
  background: var(--purple); color: #fff; font-weight: 500;
  transform: translateY(-160%); transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: none; }

/* ---------- Layout primitives ---------- */

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.container-narrow { width: min(100% - 2 * var(--gutter), 820px); margin-inline: auto; }

/* Decorative phones, glows and floating cards may extend past the edges; clip them per
   section so phones never get a wider layout viewport (body clipping alone doesn't stop that). */
main > section, .site-footer { overflow-x: clip; }

.section { position: relative; padding-block: var(--section-y); }
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 20px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }

.display {
  font-size: clamp(46px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}
.section-title {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.title-md { font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.03em; line-height: 1.1; }
.lead {
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.55;
  color: var(--text-2);
  text-wrap: pretty;
}
.muted { color: var(--text-2); }
.fine { font-size: 14px; color: var(--text-3); line-height: 1.55; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 18px; height: 1px;
  background: currentColor; opacity: 0.7;
}
.section-head.center .eyebrow::after {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.7;
}

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Icons ---------- */

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Buttons ---------- */

.btn {
  --btn-h: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--btn-h); padding: 0 24px;
  border-radius: 999px;
  font-size: 16px; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s, box-shadow 0.3s, border-color 0.25s, color 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn .icon { transition: transform 0.25s var(--ease); }
.btn:hover .icon { transform: translateX(2px); }

.btn-primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 30px -10px rgba(124, 77, 255, 0.7);
}
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 40px -10px rgba(124, 77, 255, 0.9); }

.btn-ghost {
  background: var(--glass-2);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.25); }

.btn-danger { background: #e5484d; color: #fff; }
.btn-danger:hover { background: #f05a5f; }
.btn[disabled], .btn[aria-disabled='true'] { opacity: 0.45; pointer-events: none; }

.btn-sm { --btn-h: 40px; padding: 0 18px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Store badges ---------- */

.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  height: 58px; padding: 0 22px 0 18px;
  border-radius: 16px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.3s;
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 40px -18px rgba(124, 77, 255, 0.8);
}
.store-logo { width: 26px; height: 28px; flex: none; }
.store-badge[data-store='android'] .store-logo { width: 24px; }
.store-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.store-text small { font-size: 11px; letter-spacing: 0.02em; opacity: 0.85; margin-bottom: 3px; }
.store-badge[data-store='android'] .store-text small { text-transform: uppercase; font-size: 10px; letter-spacing: 0.06em; }
.store-text strong { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }

/* ---------- Scroll reveal (only when JS is running) ---------- */

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

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

/* ==========================================================================
   Header, navigation and footer
   ========================================================================== */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.site-header.is-scrolled,
.nav-open .site-header {
  background: rgba(9, 7, 15, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 22px; font-weight: 600; letter-spacing: -0.03em;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 6px 20px -6px rgba(124, 77, 255, 0.6);
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 15px; color: var(--text-2);
  transition: color 0.2s, background-color 0.2s;
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--text); background: var(--glass-2); }
.nav .nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--glass-2);
  border: 1px solid var(--line);
}
.nav-toggle .icon { width: 22px; height: 22px; grid-area: 1 / 1; }
.nav-toggle .icon-close { opacity: 0; }
.nav-open .nav-toggle .icon-open { opacity: 0; }
.nav-open .nav-toggle .icon-close { opacity: 1; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-grid; }
  .header-cta { display: none; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100dvh - var(--header-h));
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 40px;
    background: rgba(9, 7, 15, 0.97);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a {
    padding: 18px 2px; border-radius: 0;
    font-size: 24px; letter-spacing: -0.02em; color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .nav a:hover { background: none; }
  .nav .nav-cta-mobile {
    display: inline-flex; margin-top: 28px;
    font-size: 17px; border-bottom: 0; border-radius: 999px; padding: 0 24px;
  }
  .nav-open { overflow: hidden; }
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  padding-block: clamp(64px, 8vw, 96px) 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.04), transparent 40%);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 56px;
  padding-bottom: 56px;
}
.footer-tagline { margin: 18px 0 28px; max-width: 360px; color: var(--text-2); }

.footer-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer-col h2 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: grid; gap: 10px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--text-3);
}
.footer-fine { font-size: 13px; max-width: 880px; }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ==========================================================================
   Reusable components: phone frame, cards, chips, tabs, FAQ, forms
   ========================================================================== */

/* ---------- Phone frame ----------
   Screens are exported with transparent rounded corners, so the frame is only
   bezel: a padded, rounded shell whose radius is the screen radius plus padding. */

.phone {
  --w: 300px;
  position: relative;
  width: var(--w);
  max-width: 100%;
  flex: none;
  padding: calc(var(--w) * 0.03);
  border-radius: calc(var(--w) * 0.172);
  background: linear-gradient(150deg, #3a3350 0%, #15111f 35%, #0c0a12 70%, #2b2540 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 calc(var(--w) * 0.011) #050408,
    0 60px 120px -40px rgba(0, 0, 0, 0.9),
    0 30px 80px -30px rgba(124, 77, 255, 0.35);
}
.phone::before, .phone::after {
  content: ''; position: absolute; width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, #3b3450, #1a1624);
}
.phone::before { right: -2px; top: 24%; height: 11%; }
.phone::after { left: -2px; top: 18%; height: 7%; box-shadow: 0 calc(var(--w) * 0.14) 0 #231e31; }
.phone img {
  width: 100%;
  border-radius: calc(var(--w) * 0.142);
  background: #fff;
}

/* ---------- Cards ---------- */

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
}
.card-title { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 8px; }
.card-text { color: var(--text-2); font-size: 16px; line-height: 1.6; }

.icon-tile {
  --tone: var(--purple-soft);
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 14px;
  color: var(--tone);
  background: color-mix(in srgb, var(--tone) 15%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone) 22%, transparent);
  margin-bottom: 20px;
}
.icon-tile .icon { width: 22px; height: 22px; }
.tone-amber { --tone: var(--amber); }
.tone-flame { --tone: var(--flame); }
.tone-green { --tone: var(--green); }
.tone-blue { --tone: var(--blue); }
.tone-pink { --tone: var(--pink); }
.tone-red { --tone: var(--red); }

/* ---------- Chips & badges ---------- */

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 34px; padding: 4px 14px;
  border-radius: 999px;
  background: var(--glass-2);
  border: 1px solid var(--line);
  font-size: 14px; color: var(--text-2); white-space: nowrap;
}
.chip .icon { width: 16px; height: 16px; color: var(--purple-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.badge-pro {
  display: inline-flex; align-items: center;
  height: 22px; padding: 0 9px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: #1a1030;
  background: linear-gradient(120deg, #ffd98a, #ffb547);
}

/* ---------- Check list ---------- */

.checklist { list-style: none; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); }
.checklist li strong { color: var(--text); font-weight: 500; }
.checklist .icon {
  width: 22px; height: 22px; padding: 4px; margin-top: 2px;
  border-radius: 50%;
  color: var(--purple-soft); background: var(--purple-tint);
}

/* ---------- Tabs ---------- */

.tablist { display: flex; flex-wrap: wrap; gap: 8px; }
.tab {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--text-2); font-size: 15px; font-weight: 500;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
}
.tab .icon { width: 18px; height: 18px; }
.tab:hover { color: var(--text); border-color: var(--line-strong); }
.tab[aria-selected='true'] {
  color: #fff;
  background: var(--purple-tint);
  border-color: rgba(124, 77, 255, 0.55);
}

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  transition: background-color 0.25s, border-color 0.25s;
}
.faq-item[open] { background: var(--glass-2); border-color: var(--line-strong); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 24px;
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  width: 30px; height: 30px; padding: 6px;
  border-radius: 50%;
  background: var(--glass-2);
  transition: transform 0.3s var(--ease), background-color 0.3s;
}
.faq-item[open] summary .icon { transform: rotate(45deg); background: var(--purple-tint); }
.faq-answer { padding: 0 24px 24px; color: var(--text-2); max-width: 760px; }
.faq-answer p + p { margin-top: 12px; }
.faq-answer a { color: var(--purple-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Callouts ---------- */

.notice {
  display: flex; gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 77, 255, 0.3);
  background: rgba(124, 77, 255, 0.08);
  color: var(--text-2);
}
.notice .icon { width: 22px; height: 22px; color: var(--purple-soft); margin-top: 2px; }
.notice strong { color: var(--text); font-weight: 500; }
.notice-warn { border-color: rgba(255, 195, 77, 0.35); background: rgba(255, 195, 77, 0.07); }
.notice-warn .icon { color: var(--amber); }
.notice-danger { border-color: rgba(255, 107, 107, 0.35); background: rgba(255, 107, 107, 0.07); }
.notice-danger .icon { color: var(--red); }
.notice-success { border-color: rgba(94, 220, 150, 0.35); background: rgba(94, 220, 150, 0.07); }
.notice-success .icon { color: var(--green); }

/* ---------- Forms ---------- */

.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text-2); }
.input {
  width: 100%; height: 52px; padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input::placeholder { color: var(--text-3); }
.input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.2); }

/* ---------- Text links ---------- */

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--purple-soft); font-weight: 500;
}
.link-arrow .icon { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Ambient glow ---------- */

.glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: var(--size, 600px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color, rgba(124, 77, 255, 0.35)) 0%, transparent 65%);
  filter: blur(20px);
}

/* ==========================================================================
   Home — hero, platform strip, all-in-one bento, AI showcase
   ========================================================================== */

@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } }
@keyframes spin { to { rotate: 360deg; } }
@keyframes draw { from { stroke-dasharray: 0 100; } }

/* ---------- Floating glass cards (hero, community) ---------- */

.float-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px 11px 11px;
  border-radius: 18px;
  background: rgba(24, 18, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  animation: float 8s ease-in-out infinite;
}
.float-card small { display: block; font-size: 12px; line-height: 1.25; color: var(--text-3); }
.float-card strong { display: block; font-size: 15px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
.float-icon {
  --tone: var(--purple-soft);
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 11px;
  color: var(--tone);
  background: color-mix(in srgb, var(--tone) 18%, transparent);
}
.float-icon .icon { width: 18px; height: 18px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 96px));
  padding-bottom: clamp(56px, 7vw, 104px);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, #000 15%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, #000 15%, transparent 72%);
}
.hero-glow-1 { --size: 1100px; --color: rgba(124, 77, 255, 0.3); top: -520px; left: 50%; translate: -50% 0; }
.hero-glow-2 { --size: 620px; --color: rgba(255, 170, 90, 0.13); top: 300px; right: -220px; }

/* Above the fold, content must never wait on JavaScript: the hero animates in with CSS
   alone, overriding the scroll-reveal hiding used further down the page. */
@keyframes hero-in { from { opacity: 0; transform: translateY(24px); } }
.js .hero [data-reveal], .hero [data-reveal] {
  opacity: 1; transform: none; transition: none;
  animation: hero-in 0.9s var(--ease) both;
  animation-delay: var(--delay, 0s);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  font-size: 14px; color: var(--text-2);
  transition: border-color 0.25s, color 0.25s;
}
.hero-kicker:hover { border-color: rgba(124, 77, 255, 0.6); color: var(--text); }
.hero-kicker > .icon { width: 14px; height: 14px; }
.hero-kicker-tag {
  display: inline-flex; align-items: center; gap: 5px;
  height: 26px; padding: 0 10px;
  border-radius: 999px;
  background: var(--grad-purple); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
}
.hero-kicker-tag .icon { width: 13px; height: 13px; }

.hero-lead { margin-top: 26px; max-width: 570px; }
.hero-actions { margin-top: 36px; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  margin-top: 28px; padding: 0; list-style: none;
  font-size: 14px; color: var(--text-3);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta strong { color: var(--text); font-weight: 600; }
.stars { display: inline-flex; gap: 1px; color: var(--amber); margin-right: 2px; }
.stars .icon { width: 14px; height: 14px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-stage { position: relative; width: 100%; max-width: 560px; height: clamp(540px, 52vw, 660px); }
.hero-phone { position: absolute; top: 50%; left: 50%; }
.hero-phone-front {
  --w: clamp(250px, 23vw, 300px);
  translate: -50% -50%;
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.hero-phone-left, .hero-phone-right {
  --w: clamp(200px, 18.5vw, 240px);
  z-index: 1;
  filter: brightness(0.72) saturate(0.9);
}
.hero-phone-left { translate: -120% -44%; rotate: -9deg; }
.hero-phone-right { translate: 20% -56%; rotate: 8deg; }

.float-card-deficit { top: 11%; left: -3%; animation-delay: -2s; }
.float-card-ai { bottom: 14%; left: -7%; animation-delay: -4.5s; }
.float-card-xp { top: 34%; right: -5%; animation-delay: -1s; }

@media (min-width: 961px) and (max-width: 1180px) {
  .hero-phone-left { translate: -104% -44%; }
  .hero-phone-right { translate: 4% -56%; }
  .float-card-xp { right: 0; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions .store-badges, .hero-meta { justify-content: center; }
  .hero-stage { height: 560px; }
}
@media (max-width: 560px) {
  .hero-stage { height: 470px; }
  .hero-phone-front { --w: 230px; }
  .hero-phone-left, .hero-phone-right { --w: 180px; }
  .float-card { padding: 8px 14px 8px 8px; gap: 10px; }
  .float-card strong { font-size: 13px; }
  .float-icon { width: 30px; height: 30px; }
  .float-card-deficit { left: 0; }
  .float-card-ai { left: 0; bottom: 8%; }
  .float-card-xp { right: 0; }
}

/* ---------- Platform strip ---------- */

.proof { position: relative; z-index: 1; border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.015); }
.proof-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  padding: 22px 0; margin: 0; list-style: none;
  font-size: 15px; color: var(--text-2);
}
.proof-list li { display: inline-flex; align-items: center; gap: 10px; }
.proof-list .icon { width: 18px; height: 18px; color: var(--purple-soft); }

/* ---------- All-in-one bento ---------- */

.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.bento-item .card-title { font-size: 19px; }
.bento-item:nth-last-child(-n + 2) { grid-column: span 2; }
.bento-today {
  grid-column: span 2; grid-row: span 2;
  display: flex; flex-direction: column; gap: 28px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(124, 77, 255, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

/* A light re-creation of the app's Today card, so it reads as real UI. */
.today-widget {
  display: grid; gap: 12px;
  margin-top: auto;
  padding: 22px;
  border-radius: 24px;
  background: #fbfaff; color: #1b1726;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.tw-label { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #8a8499; }
.tw-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; padding: 4px 0 8px; }
.tw-stat { display: grid; text-align: center; }
.tw-stat strong { font-size: clamp(24px, 2.4vw, 30px); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.tw-stat small { font-size: 13px; color: #6f6a7d; }
.tw-purple { color: #6a3bc0; }
.tw-amber { color: #f59e0b; }
.tw-ring { position: relative; width: clamp(118px, 12vw, 148px); aspect-ratio: 1; }
.tw-ring svg { width: 100%; height: 100%; rotate: -90deg; }
.tw-track, .tw-arc { fill: none; stroke-width: 10; }
.tw-track { stroke: #ebe8f0; }
.tw-arc { stroke-linecap: round; }
.tw-arc-purple { stroke: #6a3bc0; stroke-dasharray: 18 82; }
.tw-arc-amber { stroke: #f59e0b; stroke-dasharray: 46 54; stroke-dashoffset: -24; }
.bento-today.is-visible .tw-arc { animation: draw 1.6s var(--ease) both 0.2s; }
.tw-ring-label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.tw-ring-label strong { font-size: clamp(22px, 2.2vw, 27px); font-weight: 600; line-height: 1.1; font-variant-numeric: tabular-nums; }
.tw-ring-label small { font-size: 12px; color: #6f6a7d; }

.tw-bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 14px; font-size: 15px; }
.tw-bar span { display: inline-flex; align-items: center; gap: 8px; color: #2b2735; }
.tw-bar .icon { width: 16px; height: 16px; }
.tw-bar strong { font-weight: 600; }
.tw-bar-green { background: #eaf6ec; }
.tw-bar-green strong, .tw-bar-green .icon { color: #3f9d4c; }
.tw-bar-blue { background: #e6f1fc; }
.tw-bar-blue strong, .tw-bar-blue .icon { color: #1e7fd8; }

.tw-streak { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-radius: 14px; background: #f3f1f7; }
.tw-streak-count {
  display: grid; grid-template-columns: auto auto; column-gap: 6px; align-items: center;
  padding-right: 16px; border-right: 1px solid #e2dee9;
}
.tw-streak-count .icon { width: 18px; height: 18px; color: #6a3bc0; }
.tw-streak-count strong { font-size: 22px; line-height: 1; }
.tw-streak-count small { grid-column: 1 / -1; font-size: 12px; color: #6f6a7d; }
.tw-days { flex: 1; display: flex; justify-content: space-between; gap: 4px; margin: 0; padding: 0; list-style: none; }
.tw-days li {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 11px; font-weight: 500; color: #8a8499; background: #e7e4ec;
}
.tw-days li.done { background: #6a3bc0; color: #fff; }
.tw-days li.today { box-shadow: 0 0 0 3px rgba(106, 59, 192, 0.25); }

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-today { grid-column: 1 / -1; grid-row: auto; }
  .bento-item:nth-last-child(-n + 2) { grid-column: auto; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .today-widget { padding: 16px; }
  .tw-days li { width: 24px; height: 24px; }
}

/* ---------- AI showcase ---------- */

.ai {
  overflow: clip;
  background: linear-gradient(180deg, transparent, rgba(124, 77, 255, 0.05) 30%, rgba(124, 77, 255, 0.05) 70%, transparent);
}
.ai-bg { position: absolute; inset: 0; pointer-events: none; }
.ai-glow-1 { --size: 820px; --color: rgba(124, 77, 255, 0.26); top: 8%; right: -12%; }
.ai-glow-2 { --size: 520px; --color: rgba(255, 111, 174, 0.09); bottom: 0; left: -12%; }

.ai-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.ai .section-head { margin-bottom: 36px; }
.ai-panels { margin-top: 32px; min-height: 300px; }
.ai-panel h3 { margin-bottom: 14px; }
.ai-panel .checklist { margin-top: 24px; }
.ai-panel:not([hidden]) { animation: fade-up 0.5s var(--ease) both; }
.ai-fine { margin-top: 28px; padding-top: 24px; max-width: 580px; border-top: 1px solid var(--line); }
.ai-fine .link-arrow { margin-top: 8px; font-size: 14px; }

.ai-visual { display: flex; justify-content: center; }
.ai-stage { position: relative; padding: 40px; }
.ai-orbit {
  position: absolute; inset: -2% -20%;
  border-radius: 50%;
  border: 1px dashed rgba(184, 156, 255, 0.2);
  animation: spin 40s linear infinite;
}
.ai-orbit::before { content: ''; position: absolute; inset: 14%; border-radius: 50%; border: 1px solid rgba(184, 156, 255, 0.1); }
.ai-orbit::after {
  content: ''; position: absolute; top: 50%; left: -5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple-soft);
  box-shadow: 0 0 20px 4px rgba(184, 156, 255, 0.6);
}
.ai-phone { --w: clamp(260px, 25vw, 320px); z-index: 1; }
.ai-screens { display: grid; }
.ai-screens img {
  grid-area: 1 / 1;
  opacity: 0; transform: scale(0.985);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.ai-screens img.is-active { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .ai-grid { grid-template-columns: 1fr; gap: 0; }
  .ai-copy { display: contents; }
  .ai .section-head { order: 1; }
  .ai .tablist { order: 2; }
  .ai-visual { order: 3; margin-top: 16px; }
  .ai-panels { order: 4; min-height: 0; }
  .ai-fine { order: 5; }
}
@media (max-width: 600px) {
  .ai .tablist { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
  .ai .tablist::-webkit-scrollbar { display: none; }
  .tab { flex: none; }
  .ai-phone { --w: 250px; }
  .ai-orbit { inset: 4% -6%; }
}

/* ==========================================================================
   Home — feature rows, catalogs, community, watch, privacy, pricing, FAQ, CTA
   ========================================================================== */

/* ---------- Feature rows ---------- */

.features { padding-top: calc(var(--section-y) * 0.5); }
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.feature-row + .feature-row { margin-top: var(--section-y); }
.feature-row-reverse .feature-copy { order: 2; }
.feature-copy .section-title { font-size: clamp(34px, 4.4vw, 54px); }
.feature-copy .lead { margin-top: 20px; }

.feature-points { display: grid; gap: 22px; margin: 36px 0 0; padding: 0; list-style: none; }
.feature-points li { display: flex; align-items: flex-start; gap: 16px; }
.feature-points .icon-tile { width: 42px; height: 42px; margin: 0; border-radius: 12px; }
.feature-points .icon-tile .icon { width: 20px; height: 20px; }
.feature-points h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
.feature-points p { font-size: 16px; color: var(--text-2); }
.feature-copy .chip-row { margin-top: 32px; }

.feature-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: clamp(36px, 5vw, 64px) 0;
}
.feature-visual .phone { --w: clamp(240px, 24vw, 300px); z-index: 1; }

.feature-panel {
  --tone: var(--purple);
  position: absolute; inset: 6% 2%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 50% 100%, color-mix(in srgb, var(--tone) 36%, transparent), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}
.feature-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
  mask-image: linear-gradient(180deg, #000, transparent 85%);
}
.feature-panel-flame { --tone: var(--flame); }
.feature-panel-amber { --tone: #f5a524; }
.feature-panel-blue { --tone: var(--blue); }
.feature-panel-pink { --tone: var(--pink); }

.feature-visual-duo .phone-back {
  --w: clamp(200px, 19vw, 250px);
  translate: 20% -5%; rotate: -6deg;
  filter: brightness(0.75);
}
.feature-visual-duo .phone-front { --w: clamp(220px, 21vw, 280px); translate: -20% 5%; z-index: 2; }

@media (max-width: 960px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row-reverse .feature-copy { order: 0; }
}
@media (max-width: 520px) {
  .feature-visual-duo .phone-back { --w: 170px; }
  .feature-visual-duo .phone-front { --w: 195px; }
}

/* ---------- Catalogs ---------- */

.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.catalog-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #110d1b;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.catalog-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.catalog-shot {
  position: relative;
  height: 330px; padding: 36px 36px 0;
  overflow: hidden;
  background: radial-gradient(80% 90% at 50% 100%, rgba(124, 77, 255, 0.28), transparent 70%);
}
.catalog-shot img {
  width: 78%; margin-inline: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
  transition: transform 0.6s var(--ease);
}
.catalog-card:hover .catalog-shot img { transform: translateY(-10px); }
.catalog-shot::after {
  content: ''; position: absolute; inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, #110d1b 85%);
}
.catalog-body { position: relative; padding: 4px 32px 32px; }

@media (max-width: 960px) {
  .catalog-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* ---------- Community ---------- */

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.community-visual { position: relative; display: flex; justify-content: center; padding: 56px 0; }
.community-visual .phone { --w: clamp(250px, 24vw, 300px); z-index: 1; }
.float-card-achievement { top: 14%; right: -2%; animation-delay: -3s; }
.float-card-streak { bottom: 12%; left: -4%; animation-delay: -1s; }
.community .section-head { margin-bottom: 40px; }

.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 32px; }
.mini .icon-tile { width: 40px; height: 40px; margin-bottom: 14px; border-radius: 12px; }
.mini .icon-tile .icon { width: 19px; height: 19px; }
.mini h3 { font-size: 17px; margin-bottom: 4px; }
.mini p { font-size: 15.5px; color: var(--text-2); }

.coach-card {
  display: flex; align-items: flex-start; gap: 18px;
  margin-top: 40px; padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 195, 77, 0.25);
  background: linear-gradient(120deg, rgba(255, 195, 77, 0.08), rgba(124, 77, 255, 0.06));
}
.coach-card .icon-tile { margin: 0; }
.coach-card h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; margin-bottom: 4px; }
.coach-card p { font-size: 16px; color: var(--text-2); }

@media (max-width: 960px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-visual { order: 2; }
}
@media (max-width: 560px) {
  .mini-grid { grid-template-columns: 1fr; }
  .float-card-achievement { right: 0; }
  .float-card-streak { left: 0; }
}

/* ---------- Watch ---------- */

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.watch .section-head { margin-bottom: 36px; }
.watch-list { margin-bottom: 32px; }

.watch-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 500px; }
.watch-glow { --size: 560px; --color: rgba(124, 77, 255, 0.34); top: 50%; left: 50%; translate: -50% -50%; }

.watch-visual .watch {
  position: relative; z-index: 1;
  padding: 12px;
  background: linear-gradient(145deg, #3d3750, #14111c 50%, #2b2738);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 50px 100px -30px rgba(0, 0, 0, 0.9);
  font-family: -apple-system, 'SF Pro Rounded', 'SF Pro Display', var(--font);
}
.watch-apple { width: 250px; height: 300px; border-radius: 74px; rotate: -4deg; translate: 12% -4%; }
.watch-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 62px;
  background: #000;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.watch-crown {
  position: absolute; right: -9px; top: 70px;
  width: 12px; height: 46px; border-radius: 6px;
  background: linear-gradient(90deg, #4c4659, #211e2a);
}
.watch-button { position: absolute; right: -5px; top: 140px; width: 7px; height: 58px; border-radius: 4px; background: #2b2738; }

.watch-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.watch-ring path { fill: none; stroke-width: 6; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.watch-ring-track { stroke: rgba(179, 136, 255, 0.18); stroke-dasharray: 86 14; stroke-dashoffset: -7; }
.watch-ring-progress { stroke: #7c4dff; stroke-dasharray: 64.5 35.5; stroke-dashoffset: -7; transition: stroke-dasharray 1s linear; }

.watch-ui {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
}
.watch-caption { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: #b388ff; }
.watch-clock { font-size: 58px; font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: #f6f3fc; font-variant-numeric: tabular-nums; }
.watch-next { font-size: 15px; font-weight: 500; color: #aaa2bc; }
.watch-controls { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.watch-pill {
  display: grid; place-items: center;
  height: 40px; padding: 0 16px; border-radius: 999px;
  font-size: 16px; font-weight: 600; color: #b388ff; background: rgba(179, 136, 255, 0.16);
}
.watch-round { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #7c4dff; color: #fff; }
.watch-round svg { width: 24px; height: 24px; }

.watch-wear {
  position: absolute !important; left: 2%; bottom: 4%;
  width: 210px; height: 210px; padding: 11px !important;
  border-radius: 50%;
  rotate: 7deg; z-index: 2 !important;
}
.watch-wear .watch-screen { border-radius: 50%; }
.watch-wear .watch-crown { top: 50%; translate: 0 -50%; right: -8px; height: 36px; }
.watch-chip { padding: 4px 9px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: #b388ff; background: rgba(179, 136, 255, 0.16); }
.watch-title { margin-top: 6px; font-size: 14px; font-weight: 600; color: #f6f3fc; }
.watch-reps { display: flex; align-items: baseline; gap: 5px; }
.watch-reps strong { font-size: 40px; font-weight: 800; line-height: 1.05; color: #f6f3fc; }
.watch-reps small { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: #aaa2bc; }
.watch-wear .watch-controls { margin-top: 8px; gap: 10px; }
.watch-round-sm { width: 36px; height: 36px; background: rgba(179, 136, 255, 0.16); color: #b388ff; }
.watch-round-sm svg { width: 16px; height: 16px; }
.watch-round-check { background: rgba(111, 224, 160, 0.18); color: #6fe0a0; }

@media (max-width: 960px) {
  .watch-grid { grid-template-columns: 1fr; }
  .watch-visual { min-height: 440px; }
}
@media (max-width: 520px) {
  .watch-visual { min-height: 400px; scale: 0.82; }
}

/* ---------- Privacy ---------- */

.trust-card {
  position: relative; overflow: hidden;
  padding: clamp(32px, 6vw, 80px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(124, 77, 255, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}
.trust-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.trust-head .lead { margin-top: 18px; }
.trust-head .eyebrow::after { content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.7; }
.trust-shield {
  display: grid; place-items: center;
  width: 64px; height: 64px; margin: 0 auto 24px;
  border-radius: 20px;
  color: var(--purple-soft); background: var(--purple-tint);
  box-shadow: inset 0 0 0 1px rgba(124, 77, 255, 0.35), 0 0 60px rgba(124, 77, 255, 0.35);
}
.trust-shield .icon { width: 30px; height: 30px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  margin: 0; padding: 0; list-style: none;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--line);
}
.trust-grid li { padding: 28px; background: #0e0b17; }
.trust-grid .icon { width: 24px; height: 24px; margin-bottom: 16px; color: var(--purple-soft); }
.trust-grid h3 { font-size: 18px; margin-bottom: 6px; }
.trust-grid p { font-size: 15.5px; color: var(--text-2); }
.trust-foot { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 28px; margin-top: 40px; }

@media (max-width: 960px) { .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 980px; margin-inline: auto; }
.plan {
  display: flex; flex-direction: column; gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}
.plan .checklist { flex: 1; }
.plan-pro {
  border-color: rgba(124, 77, 255, 0.5);
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(124, 77, 255, 0.3), transparent 60%),
    radial-gradient(70% 50% at 0% 100%, rgba(255, 181, 71, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(124, 77, 255, 0.1), rgba(255, 255, 255, 0.015));
  box-shadow: 0 40px 100px -50px rgba(124, 77, 255, 0.7);
}
.plan-head { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.plan-name { display: flex; align-items: center; gap: 10px; font-size: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 8px; }
.plan-price strong { font-size: clamp(40px, 4.5vw, 52px); font-weight: 600; line-height: 1; letter-spacing: -0.04em; }
.plan-price span { color: var(--text-3); }
.plan-desc { color: var(--text-2); }
.plan-note { font-size: 14px; color: var(--text-3); }
.plan-pro .checklist .icon { color: #1a1030; background: linear-gradient(120deg, #d3c1ff, #9a70ff); }

.compare { max-width: 980px; margin: 24px auto 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--glass); }
.compare summary {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  padding: 18px; cursor: pointer; list-style: none;
  font-weight: 500; color: var(--text-2);
}
.compare summary::-webkit-details-marker { display: none; }
.compare summary .icon { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.compare[open] summary .icon { transform: rotate(45deg); }
.compare-wrap { overflow-x: auto; padding: 0 clamp(12px, 3vw, 28px) 24px; }
.compare-table { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 15.5px; }
.compare-table th, .compare-table td { padding: 14px 12px; border-top: 1px solid var(--line); text-align: center; }
.compare-table thead th { border-top: 0; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.compare-table thead th:first-child, .compare-table th[scope='row'] { text-align: left; }
.compare-table th[scope='row'] { font-weight: 400; color: var(--text); }
.compare-table td { color: var(--text-2); }
.compare-table .yes { width: 20px; height: 20px; margin-inline: auto; color: var(--green); }
.compare-table .no { color: var(--text-3); }

@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-layout .section-head { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
.inline-link { color: var(--purple-soft); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout .section-head { position: static; }
}

/* ---------- Final call to action ---------- */

.cta { padding-bottom: clamp(64px, 8vw, 112px); }
.cta-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: center;
  padding: clamp(40px, 7vw, 88px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 77, 255, 0.35);
  background: linear-gradient(135deg, #2a1a5e 0%, #160f2c 55%, #0f0b1a 100%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow-1 { --size: 720px; --color: rgba(124, 77, 255, 0.45); top: -320px; left: -160px; }
.cta-glow-2 { --size: 480px; --color: rgba(255, 170, 90, 0.18); bottom: -240px; right: 12%; }
.cta-copy, .cta-qr { position: relative; z-index: 1; }
.cta-icon {
  width: 84px; height: 84px; margin-bottom: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px -10px rgba(124, 77, 255, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.cta-copy .lead { max-width: 520px; margin: 18px 0 32px; }
.cta-qr { display: grid; justify-items: center; gap: 14px; text-align: center; }
.cta-qr img { width: 168px; height: 168px; padding: 12px; border-radius: 20px; background: #fff; box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8); }
.cta-qr figcaption { max-width: 170px; font-size: 13px; color: var(--text-2); }

@media (max-width: 860px) {
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-icon, .cta-copy .lead { margin-inline: auto; }
  .cta-copy .store-badges { justify-content: center; }
  .cta-qr { display: none; }
}

/* ==========================================================================
   Inner pages — shared hero, download, 404, support, delete account, legal, press
   ========================================================================== */

.section-sm { position: relative; padding-block: clamp(48px, 7vw, 88px); }
.center { text-align: center; }
.center .eyebrow::after { content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.7; }

.page-hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 110px));
  padding-bottom: clamp(24px, 4vw, 48px);
}
.page-hero > .container-narrow, .page-hero > .container { position: relative; z-index: 1; }
.page-hero .lead { max-width: 640px; margin: 18px auto 0; }
.page-glow { --size: 900px; --color: rgba(124, 77, 255, 0.26); top: -520px; left: 50%; translate: -50% 0; }

/* ---------- Download ---------- */

.download-hero { display: flex; align-items: center; min-height: 100svh; padding-bottom: 96px; }
.download-hero .container-narrow { width: min(100% - 2 * var(--gutter), 640px); }
.download-icon {
  width: 96px; height: 96px; margin: 0 auto 28px;
  border-radius: 24px;
  box-shadow: 0 24px 60px -12px rgba(124, 77, 255, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.download-badges { margin-top: 32px; }
.download-badges .store-badges { justify-content: center; }
.download-qr { display: grid; justify-items: center; gap: 12px; max-width: 280px; margin: 48px auto 0; }
.download-qr img { width: 176px; height: 176px; padding: 12px; border-radius: 20px; background: #fff; }
.download-qr figcaption { font-size: 14px; color: var(--text-2); }
.download-reqs { display: grid; gap: 10px; max-width: 460px; margin: 44px auto 0; padding: 0; list-style: none; text-align: left; }
.download-reqs li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 16px;
  border: 1px solid var(--line); background: var(--glass);
  font-size: 15px; color: var(--text-2);
}
.download-reqs .icon { width: 22px; height: 22px; color: var(--text); }
.download-reqs strong { margin-right: 4px; color: var(--text); font-weight: 500; }
@media (hover: none) and (pointer: coarse) { .download-qr { display: none; } }

/* ---------- 404 ---------- */

.error-hero { display: flex; align-items: center; min-height: 100svh; }
.error-code {
  margin-bottom: 8px;
  font-size: clamp(120px, 22vw, 220px); font-weight: 700; line-height: 0.9; letter-spacing: -0.06em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.04));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }

/* ---------- Support ---------- */

.help-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.help-card {
  display: block; padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.help-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.help-card h2 { font-size: 19px; margin-bottom: 4px; }
.help-card p { font-size: 15.5px; color: var(--text-2); overflow-wrap: anywhere; }

.support-articles { display: grid; gap: clamp(56px, 7vw, 88px); }
.support-article > h2 { padding-bottom: 20px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 24px); }
.support-article h3 { font-size: 19px; margin: 32px 0 10px; }
.support-article p { color: var(--text-2); }
.support-article p + p { margin-top: 12px; }
.support-article a:not(.link-arrow) { color: var(--purple-soft); text-decoration: underline; text-underline-offset: 3px; }
.support-article strong { color: var(--text); font-weight: 500; }
.support-article .notice { margin-top: 24px; }

.steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 24px 0; }
.steps-card { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass); }
.steps-card h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 17px; font-weight: 600; }
.steps-card h4 .icon { width: 20px; height: 20px; }
.steps-card ol { display: grid; gap: 8px; margin-bottom: 18px; padding-left: 20px; color: var(--text-2); }
.steps-card ol li::marker { color: var(--purple-soft); font-weight: 600; }
.steps-card .link-arrow { font-size: 15px; }

.page-support .faq-section { padding-block: clamp(64px, 8vw, 110px); }
.contact-section { padding-bottom: var(--section-y); }
.contact-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 77, 255, 0.35);
  background: radial-gradient(80% 120% at 100% 0%, rgba(124, 77, 255, 0.25), transparent 60%), var(--bg-elev);
}
.contact-card > div { max-width: 560px; }
.contact-card .muted { margin-top: 8px; }

@media (max-width: 900px) { .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .help-grid { grid-template-columns: 1fr; } }

/* ---------- Delete account ---------- */

.delete-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding-bottom: calc(var(--section-y) * 0.6);
}
.delete-main { display: grid; gap: 20px; }
.notice p { margin: 0; }

.delete-card { overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--line); background: var(--bg-elev); }
.delete-steps { margin: 0; padding: 0; list-style: none; }
.delete-step { padding: 26px clamp(20px, 4vw, 36px); }
.delete-step + .delete-step { border-top: 1px solid var(--line); }
.step-head { display: flex; align-items: flex-start; gap: 16px; }
.step-head h2 { font-size: 19px; letter-spacing: -0.015em; }
.step-head p { margin-top: 2px; font-size: 15px; color: var(--text-3); }
.step-head p strong { color: var(--text-2); font-weight: 500; }
.step-num {
  display: grid; place-items: center; flex: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 14px; font-weight: 600; color: var(--text-3);
}
.delete-step.is-active .step-num { background: var(--purple); border-color: var(--purple); color: #fff; }
.delete-step.is-complete .step-num { background: var(--purple-tint); border-color: transparent; color: var(--purple-soft); }
.delete-step:not(.is-active) .step-head h2 { color: var(--text-2); }
.step-body { display: grid; gap: 16px; margin-top: 24px; padding-left: 48px; }

.auth-buttons { display: grid; gap: 10px; }
.auth-buttons .icon { width: 20px; height: 20px; }
.or { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--text-3); }
.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.email-form { display: grid; gap: 14px; }
.form-error { font-size: 15px; color: #ff8d8d; }
.text-button { font-size: inherit; color: var(--purple-soft); text-decoration: underline; text-underline-offset: 3px; }

.btn[aria-busy='true'] { position: relative; color: transparent !important; }
.btn[aria-busy='true']::after {
  content: ''; position: absolute;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.delete-alt { padding: 24px clamp(20px, 4vw, 36px); border-radius: var(--radius-lg); border: 1px dashed var(--line-strong); }
.delete-alt h2 { font-size: 18px; margin-bottom: 6px; }
.delete-alt p { color: var(--text-2); }

.delete-aside .card { position: sticky; top: calc(var(--header-h) + 24px); }
.delete-aside .checklist { gap: 10px; margin: 16px 0 28px; }
.delete-aside .checklist li { font-size: 15.5px; }
.plain-list { display: grid; gap: 8px; margin: 12px 0 24px; padding-left: 18px; font-size: 15.5px; color: var(--text-2); }
.plain-list li::marker { color: var(--text-3); }

@media (max-width: 900px) {
  .delete-layout { grid-template-columns: 1fr; }
  .delete-aside .card { position: static; }
}
@media (max-width: 560px) { .step-body { padding-left: 0; } }

/* ---------- Legal documents ---------- */

.legal-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; margin-top: 24px; }
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: var(--section-y);
}
.legal-toc {
  position: sticky; top: calc(var(--header-h) + 24px);
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto; padding-right: 8px;
}
.legal-toc h2 { margin-bottom: 14px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.legal-toc ol { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.legal-toc a { display: block; padding: 6px 10px; border-radius: 8px; font-size: 14px; line-height: 1.4; color: var(--text-2); transition: color 0.2s, background-color 0.2s; }
.legal-toc a:hover { color: var(--text); background: var(--glass-2); }
.legal-toc a.is-current { color: var(--text); background: var(--purple-tint); }

.prose { max-width: 760px; font-size: 17px; line-height: 1.75; color: var(--text-2); }
.prose > section + section { margin-top: 56px; }
.prose h2 { margin-bottom: 16px; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -0.025em; color: var(--text); scroll-margin-top: calc(var(--header-h) + 24px); }
.prose h3 { margin: 32px 0 10px; font-size: 19px; color: var(--text); scroll-margin-top: calc(var(--header-h) + 24px); }
.prose p, .prose ul, .prose ol, .prose .table-wrap { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 6px; }
.prose li::marker { color: var(--purple-soft); }
.prose strong { font-weight: 600; color: var(--text); }
.prose a { color: var(--purple-soft); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose code { padding: 2px 6px; border-radius: 6px; font-size: 0.88em; background: var(--glass-2); color: var(--text); }
.prose .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.prose table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 15px; line-height: 1.55; }
.prose th, .prose td { padding: 12px 16px; text-align: left; vertical-align: top; border-top: 1px solid var(--line); }
.prose thead th { border-top: 0; font-size: 14px; font-weight: 600; color: var(--text); background: var(--glass-2); }
.prose .summary-box { padding: 24px 28px; border-radius: var(--radius-lg); border: 1px solid rgba(124, 77, 255, 0.3); background: rgba(124, 77, 255, 0.06); }
.prose .summary-box ul { margin: 0; }
.prose .emphasis { padding: 20px 24px; border-radius: var(--radius); border: 1px solid rgba(255, 195, 77, 0.3); background: rgba(255, 195, 77, 0.06); }
.prose .emphasis > :last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; max-height: none; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); }
  .legal-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) { .legal-toc ol { grid-template-columns: 1fr; } }

/* ---------- Press ---------- */

.press-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 20px; align-items: start; }
.press-facts { display: grid; gap: 0; margin: 0; }
.press-facts div { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.press-facts div:first-child { border-top: 0; }
.press-facts dt { font-size: 14px; color: var(--text-3); }
.press-facts dd { margin: 0; color: var(--text); }
.press-boiler p { color: var(--text-2); }
.press-boiler p + p { margin-top: 14px; }
.press-assets { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; margin-top: 20px; }
.press-asset { display: grid; gap: 10px; font-size: 14px; color: var(--text-2); }
.press-asset img { width: 100%; border-radius: 16px; background: var(--glass); }
.press-asset:hover { color: var(--text); }
.press-colors { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.swatch { display: grid; gap: 8px; width: 120px; font-size: 13px; color: var(--text-2); }
.swatch span { height: 64px; border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
.swatch code { color: var(--text); }

@media (max-width: 860px) { .press-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .press-facts div { grid-template-columns: 1fr; gap: 2px; } }
