/* ============================================================
   Letsi — landing design system
   Matched to the real Letsi app: royal blue #2F66F0 + amber,
   soft near-white light surfaces + immersive navy call screens,
   Golos Text (RU/KK/EN), and the signature glowing orb (Amelia).
   ============================================================ */

:root {
  /* light surfaces (app light screens) */
  --page:        #f7f9ff;
  --page-2:      #eef2fd;
  --card:        #ffffff;
  --ink:         #15161c;
  --ink-soft:    #5a6072;
  --ink-muted:   #6c7185;
  --line:        #e6e8f4;
  --line-soft:   #eff1fa;

  /* blues */
  --blue:        #2f66f0;   /* primary CTA / logo blue */
  --blue-ink:    #2451c4;   /* pressed / accent text */
  --blue-2:      #3e6ae6;   /* medium royal card */
  --sky:         #cfe0ff;   /* light accents on blue */
  --blue-surface:#eaf0fe;

  /* immersive navy (onboarding-call screens) */
  --navy:        #10204d;
  --navy-2:      #0a1330;
  --navy-card:   rgba(255,255,255,.06);
  --navy-line:   rgba(255,255,255,.12);
  --navy-ink:    #eef3ff;
  --navy-soft:   #aab6d8;

  /* semantic — amber (working-on / live), green (wins) */
  --amber:       #f5a623;
  --amber-text:  #b26a00;
  --amber-surface:#fdf3e0;
  --green:       #22b66e;
  --green-text:  #15814a;
  --green-surface:#e3f7ec;
  --error:       #ef4f4a;

  --grad-blue:  linear-gradient(120deg, #3e7bff 0%, #2f66f0 55%, #2451c4 120%);
  --grad-orb:   radial-gradient(circle at 34% 30%, #9dc0ff 0%, #4f7cf5 34%, #2f66f0 60%, #1e3aa8 100%);
  --grad-navy:  radial-gradient(120% 90% at 50% -10%, #1c3168 0%, #10204d 46%, #0a1330 100%);

  --maxw: 1120px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(21,22,28,.05), 0 4px 14px rgba(21,22,28,.05);
  --shadow-md: 0 12px 34px -14px rgba(21,34,77,.22);
  --shadow-lg: 0 34px 80px -34px rgba(21,34,77,.5);
  --ring: 0 0 0 4px rgba(47,102,240,.22);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: 'Golos Text', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(47,102,240,.2); }

/* ---------- type ---------- */
h1, h2, h3 { font-weight: 700; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(32px, 5.6vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(18px, 2.4vw, 22px); font-weight: 600; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); }
.eyebrow.amber { color: var(--amber-text); }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); }
.grad-text { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(52px, 8vw, 96px) 0; }
.center { text-align: center; }
.center .lead, .center h2 { margin-left: auto; margin-right: auto; }
.soft { background: var(--page-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 600; font-size: 15.5px; letter-spacing: -.01em; white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(47,102,240,.9); }
.btn-primary:hover { background: var(--blue-ink); transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(47,102,240,.85); }
.btn-amber { background: var(--amber); color: #3a2600; box-shadow: 0 10px 24px -12px rgba(245,166,35,.9); }
.btn-amber:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-ghost { background: var(--card); border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-ink); transform: translateY(-1px); }
.btn-onnavy { background: rgba(255,255,255,.1); border-color: var(--navy-line); color: #fff; }
.btn-onnavy:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 17px 26px; font-size: 16.5px; border-radius: 16px; }
.btn-block { width: 100%; }
.btn .ic { width: 19px; height: 19px; flex: none; }
.btn-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(255,255,255,.25); animation: livePulse 1.8s ease-in-out infinite; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--page) 84%, transparent); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand img { height: 24px; width: auto; }
.brand .logo-fallback { font-weight: 800; font-size: 21px; letter-spacing: -.03em; color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; color: var(--ink-soft); }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* language switch (RU / KK / EN) */
.lang { display: inline-flex; align-items: center; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); }
.lang button { border: 0; background: transparent; color: var(--ink-muted); padding: 5px 9px; border-radius: 999px; letter-spacing: .02em; }
.lang button[aria-pressed="true"] { background: var(--blue); color: #fff; }
.lang button:focus-visible { outline: none; box-shadow: var(--ring); }
.lang.on-navy { background: rgba(255,255,255,.08); border-color: var(--navy-line); }
.lang.on-navy button { color: var(--navy-soft); }
.lang.on-navy button[aria-pressed="true"] { background: #fff; color: var(--navy); }

@media (max-width: 900px) { .nav-links a:not(.cta) { display: none; } }
@media (max-width: 520px) { .nav-right .cta-label { display: none; } }

/* ---------- pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600; }
.pill-live { background: rgba(245,166,35,.14); color: var(--amber-text); }
.pill-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(245,166,35,.22); animation: livePulse 1.8s ease-in-out infinite; }
.pill-navy { background: rgba(255,255,255,.08); border: 1px solid var(--navy-line); color: var(--navy-soft); }
.pill-navy .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); }

/* ---------- the ORB (Amelia) ---------- */
.orb-stage { position: relative; display: grid; place-items: center; }
.orb-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.orb-rings::before, .orb-rings::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid var(--navy-line); }
.orb {
  position: relative; border-radius: 50%; background: var(--grad-orb);
  display: grid; place-items: center; color: #0a1330; font-weight: 700;
  box-shadow: 0 0 0 10px rgba(79,124,245,.1), 0 24px 60px -18px rgba(47,102,240,.85), inset 0 6px 20px rgba(255,255,255,.35);
  animation: orbFloat 5s ease-in-out infinite;
}
.orb::after { content: ""; position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle at 36% 30%, rgba(255,255,255,.55), transparent 55%); }
.orb-stage.lg .orb { width: 150px; height: 150px; font-size: 40px; }
.orb-stage.lg .orb-rings::before { width: 240px; height: 240px; }
.orb-stage.lg .orb-rings::after { width: 320px; height: 320px; opacity: .6; }
.orb-stage.md .orb { width: 72px; height: 72px; font-size: 24px; }
.orb-stage.sm .orb { width: 46px; height: 46px; font-size: 17px; box-shadow: 0 8px 20px -8px rgba(47,102,240,.7); animation: none; }
.orb-label { margin-top: 16px; font-size: 13px; color: var(--navy-soft); letter-spacing: .02em; }
.orb.listening { animation: orbPulse 2.2s ease-in-out infinite; }

/* ---------- waveform motif ---------- */
.wave { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.wave span { width: 3px; border-radius: 3px; background: currentColor; animation: waveBar 1.1s ease-in-out infinite; }
.wave span:nth-child(1){height:30%;animation-delay:-.9s}.wave span:nth-child(2){height:68%;animation-delay:-.7s}
.wave span:nth-child(3){height:100%;animation-delay:-.5s}.wave span:nth-child(4){height:55%;animation-delay:-.35s}
.wave span:nth-child(5){height:85%;animation-delay:-.2s}.wave span:nth-child(6){height:40%;animation-delay:-.1s}
.wave span:nth-child(7){height:72%;animation-delay:0s}.wave span:nth-child(8){height:48%;animation-delay:-.6s}
.wave span:nth-child(9){height:90%;animation-delay:-.25s}.wave span:nth-child(10){height:36%;animation-delay:-.45s}
.wave.paused span { animation-play-state: paused; }

/* ---------- HERO (immersive navy) ---------- */
.hero { position: relative; background: var(--grad-navy); color: var(--navy-ink); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -30% -10% auto -10%; height: 620px; background: radial-gradient(600px 360px at 50% 0%, rgba(63,110,240,.35), transparent 70%); pointer-events: none; }
.hero .wrap { position: relative; padding: clamp(40px, 6vw, 72px) 22px clamp(52px, 8vw, 88px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .grad-text { background: linear-gradient(120deg, #cfe0ff, #7ea8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { margin-top: 20px; max-width: 52ch; color: var(--navy-soft); }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta .btn { flex: 1 1 auto; min-width: 210px; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--navy-soft); display: flex; align-items: center; gap: 8px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  /* Long CTA labels can't fit on one line on narrow screens; let them wrap and
     stack full-width instead of overflowing the viewport (which read as bad indentation). */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { min-width: 0; width: 100%; white-space: normal; text-align: center; }
}

/* phone frame on navy */
.phone { position: relative; justify-self: center; width: 300px; max-width: 84vw; aspect-ratio: 300/620; border-radius: 44px; padding: 12px; background: linear-gradient(160deg, #26365f, #131f42); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.14); }
.phone-screen { height: 100%; border-radius: 32px; overflow: hidden; background: var(--grad-navy); display: flex; flex-direction: column; padding: 16px 16px 18px; }
.phone-status { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--navy-soft); font-weight: 600; }
.phone-live { display: flex; align-items: center; gap: 7px; }
.phone-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(245,166,35,.25); }
.phone-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; }
.phone-greet { color: #fff; font-size: 21px; font-weight: 700; line-height: 1.25; margin-top: 6px; }
.phone-trans { color: var(--navy-soft); font-size: 12.5px; font-style: italic; margin-top: 8px; }
.phone-card { width: 100%; background: var(--navy-card); border: 1px solid var(--navy-line); border-radius: 16px; padding: 14px; text-align: left; margin-top: 8px; }
.phone-card .k { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.phone-band { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; color: #fff; }
.phone-band .n { font-size: 30px; font-weight: 800; }
.phone-band .arr { color: var(--navy-soft); }
.phone-band .t { font-size: 30px; font-weight: 800; color: var(--sky); }
.phone-cta { margin-top: 12px; width: 100%; padding: 12px; border-radius: 14px; background: var(--amber); color: #3a2600; font-weight: 700; text-align: center; font-size: 14px; }

/* trust strip under hero */
.trust { background: var(--navy-2); border-top: 1px solid var(--navy-line); padding: 26px 0; }
.trust-eyebrow { text-align: center; color: var(--amber); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.trust .row { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; justify-content: center; color: #fff; font-size: 15px; }
.trust .row b { color: #fff; font-weight: 700; }
.trust .sep { color: var(--amber); opacity: .8; }

/* ---------- hear-it strip ---------- */
.hearit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.playbtn { width: 56px; height: 56px; border-radius: 50%; flex: none; border: 0; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 26px -10px rgba(47,102,240,.9); transition: transform .15s ease; }
.playbtn:hover { transform: scale(1.05); }
.playbtn:focus-visible { outline: none; box-shadow: var(--ring); }
.playbtn svg { width: 22px; height: 22px; }
.hearit .meta { flex: 1 1 220px; }
.hearit .meta .t { font-weight: 600; font-size: 15px; }
.hearit .meta .s { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }
.hearit .wave-lg { color: var(--blue); height: 34px; gap: 4px; }
.hearit .wave-lg span { width: 4px; }
.hearit .quote { flex-basis: 100%; color: var(--ink-soft); font-size: 14.5px; }
.hearit .quote b { color: var(--ink); }

/* ---------- daily loop ---------- */
.loop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; position: relative; }
.loop::before { content: ""; position: absolute; top: 27px; left: 9%; right: 9%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; }
.step .n { width: 44px; height: 44px; border-radius: 13px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm); margin-bottom: 15px; color: var(--blue); }
.step .n svg { width: 22px; height: 22px; }
.step .k { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.step h3 { font-size: 17.5px; margin: 4px 0 6px; }
.step p { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 820px) {
  .loop { grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
  .loop::before { display: none; }
  .step { padding-left: 58px; padding-bottom: 24px; }
  .step .n { position: absolute; left: 0; top: 0; margin: 0; }
  .step::before { content: ""; position: absolute; left: 21px; top: 46px; bottom: 2px; width: 2px; background: repeating-linear-gradient(180deg, var(--line) 0 6px, transparent 6px 12px); }
  .step:last-child::before { display: none; }
}

/* ---------- why different / memory ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.diff-list { display: grid; gap: 15px; margin-top: 22px; }
.diff { display: flex; gap: 12px; align-items: flex-start; }
.diff .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--blue-surface); display: grid; place-items: center; margin-top: 1px; }
.diff .tick svg { width: 15px; height: 15px; stroke: var(--blue); }
.diff p { font-size: 15px; color: var(--ink-soft); }
.diff b { color: var(--ink); font-weight: 600; }

/* memory timeline card (matches app "journal") */
.memory { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 8px; box-shadow: var(--shadow-md); }
.mrow { display: flex; gap: 12px; padding: 15px 16px; align-items: flex-start; }
.mrow + .mrow { border-top: 1px dashed var(--line); }
.mrow .day { flex: none; font-size: 11px; font-weight: 700; letter-spacing: .05em; color: var(--ink-muted); width: 54px; padding-top: 2px; text-transform: uppercase; }
.mrow .txt { font-size: 14.5px; color: var(--ink); }
.mrow .txt b { color: var(--blue-ink); font-weight: 600; }
.mrow .txt s { color: var(--ink-muted); }
.mrow.win .txt b { color: var(--green-text); }
.tagpair { display: inline-flex; gap: 6px; margin-top: 6px; }
.tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.tag.win { background: var(--green-surface); color: var(--green-text); }
.tag.work { background: var(--amber-surface); color: var(--amber-text); }

/* ---------- proof ---------- */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .metrics { grid-template-columns: 1fr; } }
.metric { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.metric .big { font-size: clamp(32px, 5vw, 46px); font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -.02em; }
.metric .big .u { font-size: .5em; color: var(--ink-muted); font-weight: 700; }
.metric .cap { margin-top: 10px; font-size: 13.5px; color: var(--ink-soft); }
.proof-extra { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; margin-top: 32px; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.storebadge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); box-shadow: var(--shadow-sm); color: var(--ink); }
.storebadge svg { width: 22px; height: 22px; }
.storebadge .t small { display: block; font-size: 10px; color: var(--ink-muted); letter-spacing: .03em; }
.storebadge .t b { font-size: 15px; font-weight: 700; }
.testimonial { flex: 1 1 320px; background: var(--blue-surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 22px; box-shadow: var(--shadow-sm); }
.testimonial .quote { font-size: 16.5px; line-height: 1.5; color: var(--ink); }
.testimonial .who { margin-top: 13px; font-size: 13px; color: var(--ink-muted); display: flex; align-items: center; gap: 10px; }
.testimonial .who .av { width: 30px; height: 30px; border-radius: 50%; background: var(--grad-orb); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; }

/* ---------- pricing ---------- */
.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 44px auto 0; }
@media (max-width: 680px) { .prices { grid-template-columns: 1fr; } }
.price { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price.feat { border-color: var(--blue); box-shadow: 0 22px 50px -26px rgba(47,102,240,.5); }
.price .tag-top { position: absolute; top: -12px; right: 22px; background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price .name { font-weight: 700; font-size: 17px; }
.price .desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; min-height: 38px; }
.price .amt { margin-top: 16px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price .amt .n { font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price .amt .per { font-size: 13px; color: var(--ink-muted); }
.price .amt .usd { font-size: 12.5px; color: var(--ink-muted); }
.price ul { list-style: none; margin: 18px 0 22px; display: grid; gap: 10px; }
.price li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.price li svg { width: 16px; height: 16px; flex: none; stroke: var(--green); margin-top: 3px; }
.price .btn { margin-top: auto; }
.trial-note { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--ink-muted); }

/* ---------- investors (demoted) ---------- */
.investors { background: var(--navy); color: var(--navy-ink); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 42px); overflow: hidden; position: relative; }
.investors::before { content: ""; position: absolute; inset: -40% -20% auto auto; width: 360px; height: 360px; background: radial-gradient(circle, rgba(63,110,240,.4), transparent 65%); }
.investors-grid { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 780px) { .investors-grid { grid-template-columns: 1fr; gap: 22px; } }
.investors h2 { color: #fff; }
.investors .lead { color: var(--navy-soft); }
.thesis-points { display: grid; gap: 12px; margin-top: 16px; }
.thesis-points div { font-size: 14px; color: var(--navy-soft); display: flex; gap: 10px; }
.thesis-points b { color: #fff; }

/* ---------- built by people who teach ---------- */
.teach { max-width: 68ch; }
.teach-credit { margin-top: 20px; padding: 16px 18px; border-left: 3px solid var(--amber); background: var(--amber-surface); color: var(--amber-text); border-radius: 0 12px 12px 0; font-size: 14.5px; line-height: 1.55; font-weight: 600; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--page-2); padding: 40px 0; }
.foot-in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 22px; font-size: 14px; color: var(--ink-soft); flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }
.foot-meta { font-size: 13px; color: var(--ink-muted); }

/* ---------- generic ---------- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 26px; box-shadow: var(--shadow-sm); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.field { display: grid; gap: 7px; margin-bottom: 15px; text-align: left; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line); background: var(--card); color: var(--ink); font-size: 15px; font-family: inherit; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: var(--ring); }
.field .hint { font-size: 12px; color: var(--ink-muted); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- keyframes ---------- */
@keyframes waveBar { 0%,100%{ transform: scaleY(.5);} 50%{ transform: scaleY(1);} }
@keyframes orbFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-8px);} }
@keyframes orbPulse { 0%,100%{ box-shadow: 0 0 0 10px rgba(79,124,245,.12), 0 24px 60px -18px rgba(47,102,240,.85), inset 0 6px 20px rgba(255,255,255,.35);} 50%{ box-shadow: 0 0 0 20px rgba(79,124,245,.04), 0 30px 70px -18px rgba(47,102,240,.95), inset 0 6px 20px rgba(255,255,255,.4);} }
@keyframes livePulse { 0%,100%{ opacity: 1;} 50%{ opacity: .35;} }

[hidden] { display: none !important; }
