/* Fonts */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Tokens */
:root {
  --c-bg: #0f1320;
  --c-bg-2: #0b0e18;
  --c-panel: #171d2e;
  --c-panel-2: #1d2436;
  --c-line: rgba(255,255,255,.08);
  --c-line-2: rgba(255,255,255,.14);
  --c-cyan: #34e7e4;
  --c-pink: #ff5d8f;
  --c-amber: #ffc24b;
  --c-text: #eef2ff;
  --c-muted: #9aa6c4;
  --c-grad: linear-gradient(115deg, #34e7e4 0%, #ff5d8f 60%, #ffc24b 120%);
  --c-grad-soft: linear-gradient(115deg, rgba(52,231,228,.16), rgba(255,93,143,.16));
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-pop: cubic-bezier(.34,1.56,.64,1);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Reset / base */
* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(52,231,228,.10), transparent 60%),
    radial-gradient(1000px 600px at 0% 10%, rgba(255,93,143,.10), transparent 55%),
    var(--c-bg);
}
main { flex: 1; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-break: break-word; }
p { overflow-wrap: break-word; word-break: break-word; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 28px; }
@media (max-width: 820px) { .container { padding-inline: 20px; } }
@media (max-width: 520px) { .container { padding-inline: 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;
}

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

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  white-space: normal; text-align: center; position: relative; isolation: isolate;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none; user-select: none;
  transition: transform .4s var(--ease-pop), box-shadow .4s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { color: #0b0e18; background: var(--c-grad); box-shadow: 0 10px 30px rgba(255,93,143,.32), 0 0 0 1px rgba(255,255,255,.12) inset; }
.btn--primary:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(52,231,228,.4), 0 0 0 1px rgba(255,255,255,.2) inset; }
.btn--ghost { color: var(--c-text); background: rgba(255,255,255,.04); box-shadow: 0 0 0 1px var(--c-line-2) inset; }
.btn--ghost:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--c-cyan) inset, 0 10px 30px rgba(52,231,228,.22); }
.btn--lg { padding: 18px 38px; font-size: 18px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60; overflow: visible;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(15,19,32,.74);
  border-bottom: 1px solid var(--c-line);
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 700; font-size: 21px; letter-spacing: -.01em; }
.brand img { width: 40px; height: 40px; }
.brand b { font-weight: 700; }
.brand .eg { padding-right: 1px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a:not(.nav-cta) {
  position: relative; font-weight: 600; font-size: 15px; padding: 9px 16px; border-radius: 999px;
  color: var(--c-muted); transition: color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--c-text); background: var(--c-grad-soft); box-shadow: 0 0 18px rgba(52,231,228,.18); }
.nav a.is-active:not(.nav-cta) { color: var(--c-text); background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px var(--c-line-2); }
/* Header CTA = same .btn--primary, only smaller. Never override its color/hover. */
.nav .nav-cta { margin-left: 8px; padding: 11px 22px; font-size: 15px; }

/* Burger */
.burger {
  display: none; width: 46px; height: 46px; position: relative; z-index: 110; flex-shrink: 0;
  border-radius: 13px; background: rgba(255,255,255,.05); border: 1px solid var(--c-line-2); cursor: pointer;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent; -webkit-user-select: none; user-select: none;
}
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--c-text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 70px)); z-index: 100; box-sizing: border-box;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 18px 20px 28px;
    background: linear-gradient(165deg, #131a2b 0%, #0d111c 100%);
    border-top: 1px solid var(--c-line); box-shadow: 0 24px 50px rgba(0,0,0,.5);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s; }
  .nav a:not(.nav-cta) { width: 100%; padding: 15px 16px; font-size: 19px; border-radius: 12px; }
  .nav .nav-cta { width: 100%; margin-left: 0; margin-top: 10px; }
}

/* Section frame */
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section__head { max-width: 760px; margin-bottom: 52px; }
.section__head.center { margin-inline: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-cyan); margin-bottom: 16px; }
.kicker svg { width: 16px; height: 16px; }
h2.section__title { font-size: clamp(30px, 4.6vw, 50px); }
.section__lead { color: var(--c-muted); font-size: 18px; margin-top: 14px; }

/* Hero */
.hero {
  position: relative; min-height: clamp(620px, 92vh, 880px); display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
  background-image: url('/assets/img/hero/hero-bg.avif');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,14,24,.92) 0%, rgba(11,14,24,.6) 42%, rgba(11,14,24,.28) 100%),
    linear-gradient(0deg, rgba(11,14,24,.96) 2%, rgba(11,14,24,.1) 55%);
}
.hero__inner { padding-block: clamp(56px, 9vw, 110px); width: 100%; }
.hero__title { font-size: clamp(44px, 8.4vw, 104px); font-weight: 600; line-height: .98; }
.hero__title .eg { display: inline-block; }
.hero__sub { color: #d6def5; font-size: clamp(17px, 2.1vw, 22px); margin: 22px 0 34px; max-width: 720px; }
.hero__cta { display: flex; }
.age-pill { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  font-weight: 800; font-size: 13px; color: #0b0e18; background: var(--c-amber); box-shadow: 0 0 0 3px rgba(255,194,75,.25); }

/* Compliance note under header */
.topnote { background: rgba(255,194,75,.06); border-bottom: 1px solid var(--c-line); }
.topnote__row { display: flex; align-items: center; justify-content: center; gap: 12px; padding-block: 10px; text-align: center; }
.topnote .age-pill { width: 28px; height: 28px; font-size: 11px; box-shadow: 0 0 0 2px rgba(255,194,75,.25); }
.topnote p { margin: 0; color: var(--c-muted); font-size: 13.5px; }

/* Hero entrance (pure CSS, no JS, no flash) */
.hero__title, .hero__sub, .hero__cta { animation: heroRise .9s var(--ease) both; }
.hero__sub { animation-delay: .12s; }
.hero__cta { animation-delay: .22s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

/* Floating neon symbols */
.hero__orbs { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 700;
  border-radius: 50%; color: #fff; opacity: .9; will-change: transform; }
.orb svg { width: 54%; height: 54%; }
.orb--1 { top: 14%; right: 12%; width: 96px; height: 96px; background: radial-gradient(circle at 35% 30%, rgba(52,231,228,.5), rgba(52,231,228,.04)); box-shadow: 0 0 40px rgba(52,231,228,.4); animation: drift 9s ease-in-out infinite; color: var(--c-cyan); }
.orb--2 { top: 34%; right: 30%; width: 64px; height: 64px; background: radial-gradient(circle at 35% 30%, rgba(255,93,143,.5), rgba(255,93,143,.04)); box-shadow: 0 0 36px rgba(255,93,143,.4); animation: drift 11s ease-in-out infinite reverse; color: var(--c-pink); }
.orb--3 { top: 18%; right: 44%; width: 50px; height: 50px; background: radial-gradient(circle at 35% 30%, rgba(255,194,75,.5), rgba(255,194,75,.04)); box-shadow: 0 0 30px rgba(255,194,75,.4); animation: drift 8s ease-in-out infinite; color: var(--c-amber); }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-26px) rotate(4deg); } }
@media (max-width: 820px) { .hero__orbs { display: none; } }

/* Marquee-free trust strip */
.trust { border-block: 1px solid var(--c-line); background: rgba(255,255,255,.02); }
.trust__row { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: center; padding-block: 22px; }
.trust__item { display: flex; align-items: center; gap: 11px; color: var(--c-muted); font-weight: 600; font-size: 15px; }
.trust__item svg { width: 22px; height: 22px; color: var(--c-cyan); }

/* Why cards */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard {
  position: relative; padding: 30px 28px 32px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--c-panel) 0%, var(--c-bg-2) 100%);
  border: 1px solid var(--c-line); overflow: hidden;
  transition: transform .5s var(--ease-pop), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.fcard::before { content: ''; position: absolute; inset: 0; opacity: 0; background: var(--c-grad-soft); transition: opacity .4s var(--ease); }
.fcard:hover { transform: translateY(-8px); border-color: var(--c-line-2); box-shadow: var(--shadow); }
.fcard:hover::before { opacity: 1; }
.fcard > * { position: relative; }
.fcard__ic { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(52,231,228,.1); box-shadow: inset 0 0 0 1px var(--c-line-2); color: var(--c-cyan); }
.fcard:nth-child(2) .fcard__ic { background: rgba(255,93,143,.12); color: var(--c-pink); }
.fcard:nth-child(3) .fcard__ic { background: rgba(255,194,75,.12); color: var(--c-amber); }
.fcard:nth-child(4) .fcard__ic { background: rgba(255,93,143,.12); color: var(--c-pink); }
.fcard:nth-child(5) .fcard__ic { background: rgba(255,194,75,.12); color: var(--c-amber); }
.fcard:nth-child(6) .fcard__ic { background: rgba(52,231,228,.1); color: var(--c-cyan); }
.fcard__ic svg { width: 30px; height: 30px; }
.fcard h3 { font-size: 22px; margin-bottom: 8px; }
.fcard p { color: var(--c-muted); font-size: 15.5px; margin: 0; }

/* Steps (business model) */
.model { background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%); }
.model__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 34px 28px 30px; border-radius: var(--radius);
  background: var(--c-panel); border: 1px solid var(--c-line);
  transition: transform .5s var(--ease-pop), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__n { counter-increment: step; font-family: 'Fraunces', serif; font-weight: 700; font-size: 50px; line-height: 1; color: transparent; -webkit-background-clip: text; background-clip: text; background-image: var(--c-grad); }
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 21px; margin: 14px 0 8px; }
.step p { color: var(--c-muted); font-size: 15.5px; margin: 0; }
.model__note { margin-top: 30px; padding: 22px 26px; border-radius: 16px; border: 1px dashed var(--c-line-2);
  background: rgba(255,255,255,.02); color: var(--c-muted); font-size: 15px; }
.model__note b { color: var(--c-text); }

/* Reviews carousel */
.reviews { background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg)); }
.rev { position: relative; }
.rev__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 24px; scrollbar-width: none; }
.rev__track::-webkit-scrollbar { display: none; }
.rcard { scroll-snap-align: start; flex: 0 0 clamp(280px, 80%, 420px); padding: 30px 28px; border-radius: var(--radius);
  background: var(--c-panel); border: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 16px; }
.rcard__top { display: flex; align-items: center; gap: 14px; }
.rcard__top img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--c-line-2); }
.rcard__name { font-weight: 700; font-size: 16px; }
.rcard__role { color: var(--c-muted); font-size: 13px; }
.stars { display: flex; gap: 3px; color: var(--c-amber); }
.stars svg { width: 18px; height: 18px; }
.rcard p { color: #c8d1ec; font-size: 15.5px; margin: 0; }
.rev__nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }
.rev__btn { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.05); border: 1px solid var(--c-line-2); color: var(--c-text);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: transform .3s var(--ease-pop), background .3s var(--ease), color .3s var(--ease); }
.rev__btn:hover { background: var(--c-grad); color: #0b0e18; transform: translateY(-3px); }
.rev__btn--prev svg { transform: rotate(180deg); }

/* Demo game */
.demo__wrap { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .95fr); gap: 36px; align-items: stretch; }
.demo__frame {
  position: relative; min-width: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--c-line-2);
  background: #05070d; box-shadow: var(--shadow); aspect-ratio: 16 / 11; min-height: 360px;
}
.demo__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.demo__ph { position: absolute; inset: 0; display: grid; place-items: center; gap: 18px; align-content: center; text-align: center; padding: 24px;
  background: radial-gradient(600px 300px at 50% 30%, rgba(52,231,228,.14), transparent 70%), #070a12; }
.demo__ph .spin { width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--c-line-2); border-top-color: var(--c-cyan); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo__ph p { color: var(--c-muted); font-size: 15px; margin: 0; }
.demo__info { align-self: center; }
.demo__info h2 { font-size: clamp(28px, 4vw, 44px); }
.demo__info p { color: var(--c-muted); margin: 14px 0; }
.demo__list { display: grid; gap: 12px; margin-top: 18px; }
.demo__list li { display: flex; gap: 12px; align-items: flex-start; color: #c8d1ec; font-size: 15.5px; }
.demo__list svg { width: 22px; height: 22px; color: var(--c-cyan); flex-shrink: 0; margin-top: 2px; }

/* Community */
.community { position: relative; isolation: isolate; overflow: hidden;
  background-image: url('/assets/img/sections/community-bg.avif'); background-size: cover; background-position: center; }
.community::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,14,24,.86), rgba(11,14,24,.92)); }
.community h2 { font-size: clamp(30px, 5vw, 54px); }
.community p { color: #d6def5; font-size: 18px; margin: 16px 0 28px; }
.rg-box { margin-top: 30px; padding: 24px 26px; border-radius: 18px; background: rgba(15,19,32,.6);
  border: 1px solid var(--c-line-2); backdrop-filter: blur(6px); }
.rg-box h3 { font-size: 19px; margin-bottom: 8px; }
.rg-box p { font-size: 15px; color: var(--c-muted); margin: 0; }

/* Page hero (inner) */
.phero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(72px, 11vw, 150px);
  background-image: url('/assets/img/sections/about-bg.avif'); background-size: cover; background-position: center; }
.phero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(11,14,24,.94), rgba(11,14,24,.66)); }
.phero h1 { font-size: clamp(38px, 6.6vw, 76px); }
.phero p { color: #d6def5; font-size: 19px; max-width: 720px; margin-top: 16px; }

/* Prose (full width, NO max-width) */
.prose h2 { font-size: clamp(26px, 3.6vw, 38px); margin-top: 8px; }
.prose h3 { font-size: 22px; margin-top: 8px; }
.prose p { color: #c8d1ec; margin: 0 0 18px; }
.prose ul.dl { display: grid; gap: 14px; margin: 0 0 18px; }
.prose ul.dl li { position: relative; padding-left: 30px; color: #c8d1ec; }
.prose ul.dl li::before { content: ''; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 4px; background: var(--c-grad); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 18px; }
.about-grid .fcard h3 { font-size: 20px; }

.legal-content p { color: #c8d1ec; margin: 0 0 16px; }
.legal-content h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 36px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 24px 0 10px; }
.legal-meta { color: var(--c-muted); font-size: 14px; margin-bottom: 8px; }
.legal-table-wrap { overflow-x: auto; margin: 0 0 18px; border-radius: 14px; border: 1px solid var(--c-line); }
.legal-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 14.5px; }
.legal-table th, .legal-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--c-line); }
.legal-table th { color: var(--c-text); font-weight: 700; background: rgba(255,255,255,.03); }
.legal-table td { color: #c8d1ec; }
.legal-table tr:last-child td { border-bottom: 0; }

/* Contact (unique layout) */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.cform { padding: 32px; border-radius: 22px; background: var(--c-panel); border: 1px solid var(--c-line); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: #c8d1ec; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--c-text); padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--c-line-2); transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: none; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(52,231,228,.18); }

/* Custom select */
.cselect { position: relative; }
.cselect__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: inherit; font-size: 16px; color: var(--c-text); padding: 14px 16px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--c-line-2); text-align: left;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.cselect__trigger[data-placeholder="true"] { color: var(--c-muted); }
.cselect__trigger svg { width: 18px; height: 18px; color: var(--c-muted); transition: transform .3s var(--ease); }
.cselect.open .cselect__trigger { border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(52,231,228,.18); }
.cselect.open .cselect__trigger svg { transform: rotate(90deg); }
.cselect__panel { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 30; padding: 6px; border-radius: 12px;
  background: var(--c-panel-2); border: 1px solid var(--c-line-2); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s; }
.cselect.open .cselect__panel { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s; }
.cselect__opt { padding: 11px 14px; border-radius: 9px; cursor: pointer; font-size: 15px; color: #c8d1ec;
  transition: background .2s var(--ease), color .2s var(--ease); }
.cselect__opt:hover, .cselect__opt[aria-selected="true"] { background: var(--c-grad-soft); color: var(--c-text); }

/* Contact info side (unique tiles) */
.cinfo { display: grid; gap: 16px; }
.itile { display: flex; gap: 16px; padding: 22px 24px; border-radius: 18px; background: linear-gradient(180deg, var(--c-panel), var(--c-bg-2));
  border: 1px solid var(--c-line); transition: transform .4s var(--ease-pop), border-color .3s var(--ease); }
.itile:hover { transform: translateY(-5px); border-color: var(--c-line-2); }
.itile__ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center; background: rgba(52,231,228,.1); color: var(--c-cyan); }
.itile:nth-child(2) .itile__ic { background: rgba(255,93,143,.12); color: var(--c-pink); }
.itile:nth-child(3) .itile__ic { background: rgba(255,194,75,.12); color: var(--c-amber); }
.itile:nth-child(4) .itile__ic { background: rgba(255,93,143,.12); color: var(--c-pink); }
.itile__ic svg { width: 26px; height: 26px; }
.itile h3 { font-size: 16px; margin-bottom: 4px; }
.itile p { color: var(--c-muted); font-size: 15px; margin: 0; }
.itile a:hover { color: var(--c-cyan); }

/* Footer */
.site-footer { margin-top: auto; background: linear-gradient(180deg, var(--c-bg-2), #070a12); border-top: 1px solid var(--c-line); }

/* Intro band: brand + business-model recap */
.footer__intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: stretch; padding-block: 56px 44px; }
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 700; font-size: 23px; margin-bottom: 16px; }
.footer__brand img { width: 42px; height: 42px; }
.footer__about { color: var(--c-muted); font-size: 15px; margin: 0 0 20px; max-width: 56ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--c-muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--c-line); transition: transform .35s var(--ease-pop), color .3s var(--ease), border-color .3s var(--ease); }
.footer__social a:hover { transform: translateY(-4px); color: var(--c-text); border-color: var(--c-cyan); }
.footer__social svg { width: 21px; height: 21px; }

.footer__model h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; margin-bottom: 14px; }
.footer__model ul { display: grid; gap: 12px; counter-reset: fstep; }
.footer__model li { position: relative; padding-left: 38px; color: var(--c-muted); font-size: 14px; line-height: 1.5; }
.footer__model li::before { counter-increment: fstep; content: counter(fstep); position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 13px; color: #0b0e18; background: var(--c-grad); }
.footer__model b { color: var(--c-text); }

/* Mid columns: Explore + Contact + Disclaimer (no policy links here) */
.footer__grid { display: grid; grid-template-columns: 1fr 1.25fr 1.15fr; gap: 40px; padding-bottom: 44px; border-top: 1px solid var(--c-line); padding-top: 40px; }
.footer__col h4 { font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-text); margin-bottom: 18px; }
.footer__note { display: flex; gap: 14px; padding: 18px 20px; border-radius: 14px; background: rgba(255,93,143,.07); border: 1px solid rgba(255,93,143,.2); }
.footer__note .age-pill { background: var(--c-pink); box-shadow: 0 0 0 3px rgba(255,93,143,.22); width: 44px; height: 44px; font-size: 13px; }
.footer__note p { margin: 0; font-size: 13.5px; color: #d6def5; line-height: 1.55; }
.footer__note b { color: #fff; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.footer__links a { color: var(--c-muted); font-size: 15px; transition: color .25s var(--ease); }
.footer__links a:hover { color: var(--c-cyan); }
.footer__contact { color: var(--c-muted); font-size: 15px; display: grid; gap: 10px; }
.footer__contact .fc-row { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .fc-row svg { width: 20px; height: 20px; color: var(--c-cyan); flex-shrink: 0; margin-top: 2px; }
.footer__contact a:hover { color: var(--c-cyan); }

.rg-bar { border-top: 1px solid var(--c-line); padding-block: 30px; }
.rg-bar h4 { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); text-align: center; margin-bottom: 20px; }
.rg-logos { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; justify-content: center; }
.rg-logos a { display: inline-flex; align-items: center; opacity: .8; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.rg-logos a:hover { opacity: 1; transform: translateY(-2px); }
.rg-logos img { height: 40px; width: auto; }

.footer__bottom { border-top: 1px solid var(--c-line); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-block: 22px; }
.footer__bottom p { color: var(--c-muted); font-size: 13.5px; margin: 0; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__bottom a { color: var(--c-muted); font-size: 13.5px; }
.footer__bottom a:hover { color: var(--c-cyan); }

/* Chat */
.chat-toggle { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 64px; height: 64px; border-radius: 50%; cursor: pointer;
  border: 0; display: grid; place-items: center; color: #0b0e18; background: var(--c-grad);
  box-shadow: 0 14px 34px rgba(255,93,143,.4); touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: transform .4s var(--ease-pop); }
.chat-toggle:hover { transform: scale(1.07); }
.chat-toggle svg { width: 30px; height: 30px; }
.chat-toggle::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--c-cyan); opacity: .6; animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.9); opacity: .6; } 70%,100% { transform: scale(1.35); opacity: 0; } }
.chat-toggle[aria-expanded="true"]::after { display: none; }

.chat-panel { position: fixed; right: 22px; bottom: 98px; z-index: 81; width: 360px; max-width: calc(100vw - 32px); height: 460px; max-height: calc(100dvh - 130px);
  display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: var(--c-panel); border: 1px solid var(--c-line-2);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(20px) scale(.96); transform-origin: bottom right;
  transition: opacity .3s var(--ease), transform .35s var(--ease-pop), visibility 0s linear .35s; }
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); transition: opacity .3s var(--ease), transform .35s var(--ease-pop), visibility 0s linear 0s; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: linear-gradient(120deg, rgba(52,231,228,.16), rgba(255,93,143,.16)); border-bottom: 1px solid var(--c-line); }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 2px var(--c-cyan); }
.chat-head b { font-size: 15px; }
.chat-head span { display: block; font-size: 12px; color: var(--c-cyan); }
.chat-head .chat-x { margin-left: auto; background: transparent; border: 0; color: var(--c-muted); cursor: pointer; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.chat-head .chat-x:hover { background: rgba(255,255,255,.06); color: var(--c-text); }
.chat-head .chat-x svg { width: 20px; height: 20px; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; overscroll-behavior: contain; }
.msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.5; }
.msg--bot { align-self: flex-start; background: rgba(255,255,255,.06); border: 1px solid var(--c-line); border-bottom-left-radius: 5px; }
.msg--user { align-self: flex-end; background: var(--c-grad); color: #0b0e18; font-weight: 600; border-bottom-right-radius: 5px; }
.chat-typing { align-self: flex-start; display: flex; gap: 5px; padding: 12px 16px; background: rgba(255,255,255,.06); border-radius: 16px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--c-muted); animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.chat-foot { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--c-line); background: var(--c-bg-2); }
.chat-foot input { flex: 1; min-width: 0; font-family: inherit; font-size: 14.5px; color: var(--c-text); padding: 11px 14px; border-radius: 11px; background: rgba(255,255,255,.05); border: 1px solid var(--c-line-2); }
.chat-foot input:focus { outline: none; border-color: var(--c-cyan); }
.chat-foot button { flex-shrink: 0; width: 46px; border-radius: 11px; border: 0; cursor: pointer; color: #0b0e18; background: var(--c-grad); display: grid; place-items: center; touch-action: manipulation; }
.chat-foot button svg { width: 20px; height: 20px; }

/* Cookie banner */
.cookie { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 380px; max-width: calc(100vw - 32px); padding: 22px 24px; border-radius: 18px;
  background: var(--c-panel-2); border: 1px solid var(--c-line-2); box-shadow: var(--shadow);
  transform: translateY(28px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), transform .4s var(--ease-pop), visibility 0s linear .4s; }
.cookie.show { transform: translateY(0); opacity: 1; visibility: visible; transition: opacity .4s var(--ease), transform .4s var(--ease-pop), visibility 0s linear 0s; }
.cookie p { font-size: 14px; color: var(--c-muted); margin: 0 0 16px; }
.cookie p a { color: var(--c-cyan); }
.cookie__btns { display: flex; gap: 10px; justify-content: flex-end; }
.cookie__btns button { font-family: inherit; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 999px; cursor: pointer; border: 0; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.cookie__btns .c-reject { background: rgba(255,255,255,.06); color: var(--c-text); border: 1px solid var(--c-line-2); }
.cookie__btns .c-accept { background: var(--c-grad); color: #0b0e18; }
/* keep cookie + chat from colliding */
body:has(.cookie.show) .chat-toggle { transform: translateY(-118px); }
body:has(.cookie.show) .chat-panel { bottom: 216px; }

/* Toast */
.toast-back { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; background: rgba(5,7,13,.66); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
.toast-back.show { opacity: 1; visibility: visible; transition: opacity .3s var(--ease), visibility 0s linear 0s; }
.toast { width: min(420px, 100%); padding: 32px 30px; border-radius: 20px; text-align: center; background: var(--c-panel); border: 1px solid var(--c-line-2); box-shadow: var(--shadow);
  transform: scale(.9); transition: transform .4s var(--ease-pop); }
.toast-back.show .toast { transform: scale(1); }
.toast__ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(52,231,228,.14); color: var(--c-cyan); }
.toast__ic svg { width: 34px; height: 34px; }
.toast h3 { font-size: 22px; margin-bottom: 8px; }
.toast p { color: var(--c-muted); font-size: 15px; margin: 0; }

/* Reveal animation (reel-spin overshoot) */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .7s var(--ease), transform .8s var(--ease-pop); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* Responsive */
@media (max-width: 1100px) {
  .demo__wrap { grid-template-columns: minmax(0, 1fr); }
  .demo__frame { aspect-ratio: auto; min-height: 0; height: clamp(300px, 78vw, 460px); }
  .footer__intro { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 980px) {
  .why__grid, .model__grid, .about-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding-block: clamp(54px, 12vw, 84px); }
  .section__head { margin-bottom: 38px; }
  .hero { min-height: 0; align-items: stretch; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .topnote__row { flex-wrap: wrap; }
  .brand { font-size: 18px; gap: 10px; }
  .brand img { width: 34px; height: 34px; }
}
@media (max-width: 620px) {
  .why__grid, .model__grid, .about-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .rg-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; justify-items: center; }
  .rg-logos a { justify-content: center; }
  .rcard { flex-basis: 86%; }
  .cookie { left: 16px; right: 16px; width: auto; }
  body:has(.cookie.show) .chat-toggle { transform: translateY(-156px); }
}
@media (max-width: 430px) {
  .btn { width: 100%; }
  .hero__cta { width: 100%; }
  .chat-toggle { right: 16px; bottom: 16px; }
  .chat-panel { right: 16px; }
  .brand { font-size: 16px; }
  .brand img { width: 32px; height: 32px; }
}

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