/* ==========================================================================
   Findlee — landing. Light, editorial, on-brand.
   Palette pulled 1:1 from the real product widget (theme "Aurora Light"):
   accent #6a4cff · ink #1a1633 · lavender-white surfaces.
   Display face: Bricolage Grotesque (characterful, not the generic AI grotesk).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400..800&family=Inter:wght@400;450;500;600&family=Space+Grotesk:wght@700&display=swap');

:root {
  /* surfaces — cool lavender-whites echoing the widget panel (#fbfaff) */
  --paper: #f5f4fb;
  --paper-2: #eeecf7;
  --surface: #ffffff;
  --surface-tint: #faf9ff;

  /* ink (near-black indigo — the product's text color) */
  --ink: #1a1633;
  --ink-2: #322d4d;
  --muted: #6d6889;
  --faint: #9a96b0;

  /* single locked accent — product violet */
  --accent: #6a4cff;
  --accent-deep: #563bdc;
  --accent-soft: #efeaff;
  --accent-softer: #f6f3ff;
  --accent-ink: #ffffff;      /* text on accent */

  /* supporting */
  --ok: #1ea672;              /* in-stock dot (product) */
  --hair: rgba(26, 22, 51, 0.09);
  --hair-2: rgba(26, 22, 51, 0.14);
  --shadow-card: 0 1px 2px rgba(26,22,51,.04), 0 2px 8px rgba(26,22,51,.05);
  --shadow-pop: 0 30px 70px -24px rgba(40,28,110,.28), 0 8px 20px -12px rgba(26,22,51,.12);

  /* radii — locked: pill buttons / 22px cards / 14px inputs (widget uses 26) */
  --r-card: 22px;
  --r-lg: 30px;
  --r-input: 14px;
  --r-pill: 999px;

  --font-display: 'Manrope', ui-sans-serif, system-ui, 'Segoe UI', sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --pad-x: clamp(20px, 5vw, 60px);
  --sec-y: clamp(76px, 11vw, 150px);
  --maxw: 1220px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-q: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: #fff; }

/* ---- Type ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.03; letter-spacing: -0.02em; text-wrap: balance; }
.display { font-size: clamp(2.7rem, 6.4vw, 5rem); font-weight: 650; line-height: 0.98; letter-spacing: -0.035em; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.35rem); letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.35rem, 2.3vw, 1.85rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--muted); max-width: 56ch; line-height: 1.55; }
.kicker { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.kicker::before { content: ""; width: 20px; height: 6px; border-radius: 3px; background: var(--accent); }
.ital { font-family: var(--font-display); font-style: italic; font-weight: 500; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tint { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #efedf7; }
.section--ink .lead { color: #b4afca; }

/* ---- Buttons ---- */
.btn {
  --bg: var(--accent); --fg: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  height: 50px; padding-inline: 24px;
  background: var(--bg); color: var(--fg);
  border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .35s var(--ease), background .2s;
  box-shadow: 0 8px 22px -10px rgba(106,76,255,.6);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 16px 34px -12px rgba(106,76,255,.6); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--lg { height: 56px; padding-inline: 30px; font-size: 1.05rem; }
.btn--sm { height: 40px; padding-inline: 18px; font-size: 0.92rem; box-shadow: 0 6px 16px -8px rgba(106,76,255,.55); }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border: 1px solid var(--hair-2); box-shadow: none; }
.btn--ghost:hover { background: #fff; border-color: var(--hair-2); box-shadow: var(--shadow-card); }
.section--ink .btn--ghost { --fg: #efedf7; border-color: rgba(255,255,255,.18); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,.06); }

/* ---- Nav ---- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 72px; display: flex; align-items: center; transition: background .4s var(--ease), box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.is-stuck { background: rgba(245,244,251,.82); backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%); border-bottom-color: var(--hair); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.03em; color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex: none; }
/* Логотип-локап (іконка + напис) 430×120 — задаємо висоту, ширина йде за пропорцією. */
.brand__logo { display: block; height: 34px; width: auto; flex: none; }
/* Напис у логотипі — фірмовий Space Grotesk. Правило скоуплене на сам логотип,
   щоб не чіпати інші <text> у SVG на сторінці. */
.brand__logo text { font-family: 'Space Grotesk', 'Segoe UI', sans-serif; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 0.94rem; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login { font-size: 0.94rem; color: var(--muted); transition: color .2s; }
.nav__login:hover { color: var(--ink); }
.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__burger span { position: relative; }
.nav__burger span::before { position: absolute; top: -6px; } .nav__burger span::after { position: absolute; top: 6px; }

/* ==========================================================================
   HERO — editorial split + real store/widget mock
   ========================================================================== */
.hero { position: relative; padding-block: 130px 70px; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background:
  radial-gradient(60% 50% at 12% 0%, var(--accent-softer), transparent 70%),
  radial-gradient(50% 45% at 100% 20%, #f0edff, transparent 68%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; height: 32px; padding-inline: 6px 14px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); font-size: 0.83rem; color: var(--ink-2); margin-bottom: 26px; }
.hero__eyebrow .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .u { color: var(--accent); }
.hero__sub { max-width: 34ch; margin-bottom: 32px; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero__meta { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 650; letter-spacing: -0.02em; }
.hero__meta span { font-size: 0.85rem; color: var(--muted); }

/* ==========================================================================
   INTERACTIVE WIDGET DEMO — standalone widget, mode tabs, live theme presets.
   Widget is fully driven by CSS variables so a preset recolours it instantly.
   ========================================================================== */
.demo { justify-self: end; width: min(408px, 100%); }
.demo__tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.demo__tab { font-family: var(--font-display); font-size: 0.82rem; font-weight: 500; padding: 7px 14px; border-radius: var(--r-pill); border: 1px solid var(--hair); color: var(--muted); background: #fff; transition: color .2s, background .2s, border-color .2s; }
.demo__tab:hover { color: var(--ink); border-color: var(--hair-2); }
.demo__tab.on { background: var(--ink); color: #fff; border-color: var(--ink); }
/* theme picker — dropdown 1:1 with product settings (3 overlapping swatches + name) */
.demo__theme { position: relative; margin-top: 16px; }
.demo__theme .lbl { display: block; font-size: 0.82rem; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.fl-theme-trigger { display: flex; width: 100%; align-items: center; gap: 10px; border: 1px solid var(--hair); background: #fff; border-radius: 16px; padding: 11px 14px; box-shadow: var(--shadow-card); transition: border-color .2s; }
.fl-theme-trigger:hover { border-color: var(--hair-2); }
.fl-theme-dots { display: flex; align-items: center; flex: none; }
.fl-theme-dots span { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #fff; box-shadow: 0 1px 2px rgba(26,22,51,.14); margin-left: -6px; }
.fl-theme-dots span:first-child { margin-left: 0; }
.fl-theme-trigger .name { flex: 1; min-width: 0; text-align: left; font-size: 0.9rem; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fl-theme-trigger .chev { flex: none; color: var(--faint); transition: transform .25s var(--ease); }
.fl-theme-trigger.open .chev { transform: rotate(180deg); }
.fl-theme-list { position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 80; max-height: 296px; overflow-y: auto; background: #fff; border: 1px solid var(--hair); border-radius: 16px; padding: 8px; box-shadow: 0 24px 60px -24px rgba(26,22,51,.35); }
.fl-theme-list.up { top: auto; bottom: calc(100% + 8px); box-shadow: 0 -24px 60px -24px rgba(26,22,51,.35); }
.fl-theme-item { display: flex; width: 100%; align-items: center; gap: 12px; padding: 9px 11px; border-radius: 11px; text-align: left; transition: background .15s; }
.fl-theme-item:hover { background: var(--paper); }
.fl-theme-item.on { background: var(--accent-softer); }
.fl-theme-item.on .name { color: var(--accent-deep); }
.fl-theme-item .name { flex: 1; min-width: 0; font-size: 0.88rem; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- Widget (theme-variable driven, 1:1 with product) ---- */
.fl {
  --fl-panel: #fbfaff; --fl-border: rgba(20,16,60,.08); --fl-header: #1a1633; --fl-icon: #8b87a3;
  --fl-accent: #6a4cff; --fl-accent-2: #7a5cff; --fl-send-icon: #ffffff; --fl-assist-bg: #ffffff; --fl-assist-text: #1a1633; --fl-assist-border: rgba(20,16,60,.06);
  --fl-user-bg: #6a4cff; --fl-user-text: #ffffff; --fl-avatar-bg: #efeaff; --fl-avatar-fg: #6a4cff;
  --fl-badge-bg: rgba(106,76,255,.12); --fl-badge-fg: #6a4cff; --fl-badge-border: rgba(106,76,255,.25);
  --fl-input-bg: #ffffff; --fl-placeholder: #9aa0b5; --fl-disc: #8e95ab;
  position: relative; width: 100%; font-family: var(--font-body);
  border-radius: 24px; background: var(--fl-panel); border: 1px solid var(--fl-border);
  box-shadow: 0 30px 70px -22px rgba(40,28,110,.34), 0 8px 20px -12px rgba(26,22,51,.1);
  overflow: hidden; transition: background .5s var(--ease), border-color .5s var(--ease);
}
.fl__head { display: flex; align-items: center; gap: 8px; padding: 15px 17px; }
.fl__head h4 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; color: var(--fl-header); display: flex; align-items: center; gap: 8px; letter-spacing: 0; transition: color .5s; }
.fl__badge { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--fl-badge-fg); background: var(--fl-badge-bg); border: 1px solid var(--fl-badge-border); padding: 2px 6px; border-radius: 6px; transition: .5s; }
.fl__sp { flex: 1; }
.fl__ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: var(--fl-icon); transition: color .5s; }
.fl__ic:hover { background: rgba(125,120,160,.12); }
.fl__body { padding: 8px 15px 4px; height: 384px; overflow: hidden; display: flex; flex-direction: column; gap: 11px; }
.fl__row { display: flex; gap: 8px; align-items: flex-end; opacity: 0; transform: translateY(8px); animation: flin .45s var(--ease) forwards; }
.fl__row.user { justify-content: flex-end; }
.fl__av { width: 30px; height: 30px; border-radius: 50%; flex: none; background: var(--fl-avatar-bg); color: var(--fl-avatar-fg); display: grid; place-items: center; box-shadow: 0 4px 10px -4px rgba(106,76,255,.35); transition: background .5s, color .5s; }
@keyframes flin { to { opacity: 1; transform: none; } }
.fl__bub { max-width: 80%; font-size: 0.88rem; line-height: 1.5; padding: 10px 13px; border-radius: 16px; transition: background .5s, color .5s; }
.fl__bub.bot { background: var(--fl-assist-bg); color: var(--fl-assist-text); border: 1px solid var(--fl-assist-border); border-bottom-left-radius: 6px; box-shadow: 0 1px 2px rgba(26,22,51,.04); }
.fl__bub.usr { background: var(--fl-user-bg); color: var(--fl-user-text); font-weight: 500; border-bottom-right-radius: 6px; box-shadow: 0 8px 20px -10px rgba(106,76,255,.5); }
.fl__status { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--fl-assist-text); }
.fl__status b { font-weight: 500; }
.fl__spin { width: 14px; height: 14px; flex: none; border-radius: 50%; border: 2px solid color-mix(in oklab, var(--fl-assist-text) 22%, transparent); border-top-color: var(--fl-assist-text); animation: flspin .9s linear infinite; }
@keyframes flspin { to { transform: rotate(360deg); } }
.fl__dots { display: inline-flex; gap: 3px; }
.fl__dots i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: fldot 1.2s infinite; }
.fl__dots i:nth-child(2){ animation-delay:.2s } .fl__dots i:nth-child(3){ animation-delay:.4s }
@keyframes fldot { 0%,60%,100%{ opacity:.25 } 30%{ opacity:1 } }
.fl__bub.proc { background-image: linear-gradient(110deg, var(--fl-assist-bg) 0%, color-mix(in oklab, var(--fl-accent) 22%, var(--fl-assist-bg)) 50%, var(--fl-assist-bg) 100%); background-size: 200% 100%; animation: flshim 2.2s linear infinite; }
@keyframes flshim { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* product card */
.fl__prod { align-self: stretch; margin-left: 38px; background: var(--fl-assist-bg); border: 1px solid var(--fl-assist-border); border-radius: 12px; overflow: hidden; display: flex; flex-wrap: wrap; opacity: 0; transform: translateY(8px); animation: flin .45s var(--ease) forwards; transition: background .5s; }
.fl__prod-img { width: 80px; flex: none; align-self: stretch; background: #fff; display: grid; place-items: center; border-right: 1px solid var(--fl-assist-border); padding: 6px; }
.fl__prod-img img { max-width: 100%; max-height: 66px; object-fit: contain; }
.fl__prod-b { padding: 9px 11px; min-width: 0; flex: 1; }
.fl__prod-brand { font-size: 0.66rem; text-transform: uppercase; letter-spacing: .04em; color: #9a96b0; }
.fl__prod-name { font-size: 0.8rem; font-weight: 600; color: var(--fl-assist-text); line-height: 1.25; margin: 2px 0 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color .5s; }
.fl__prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fl__prod-prices { display: flex; flex-direction: column; gap: 1px; line-height: 1.1; }
.fl__prod-old { font-size: 10.5px; font-weight: 600; color: #94a3b8; text-decoration: line-through; white-space: nowrap; }
.fl__prod-price { font-size: 12.5px; font-weight: 700; color: var(--fl-assist-text); white-space: nowrap; transition: color .5s; }
/* stock status pill — 1:1 with product widget */
.fl__prod-stock { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; padding: 2px 7px 2px 6px; border-radius: 999px; white-space: nowrap; }
.fl__prod-stock i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex: none; }
.fl__prod-stock.ok { color: #1b8a4a; background: rgba(27,138,74,.1); }
.fl__prod-stock.ok i { box-shadow: 0 0 0 2px rgba(27,138,74,.22); }
.fl__prod-stock.off { color: #8a8a93; background: rgba(138,138,147,.14); }
.fl__prod-stock.off i { box-shadow: 0 0 0 2px rgba(138,138,147,.22); }
.fl__prod-reason { order: 3; flex-basis: 100%; width: 100%; margin: 0 11px 11px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--fl-badge-fg); background: var(--fl-badge-bg); border: 1px solid var(--fl-badge-border); border-radius: 999px; padding: 4px 10px; align-self: flex-start; width: fit-content; transition: .5s; }
.fl__prod-reason svg { flex: none; }

/* consult: product context strip */
.fl__ctx { align-self: stretch; display: flex; gap: 9px; align-items: center; background: var(--fl-assist-bg); border: 1px solid var(--fl-assist-border); border-radius: 12px; padding: 8px 10px; opacity: 0; transform: translateY(8px); animation: flin .45s var(--ease) forwards; transition: background .5s; }
.fl__ctx-img { width: 36px; height: 36px; border-radius: 8px; background-size: cover; background-position: center; flex: none; }
.fl__ctx-meta { min-width: 0; }
.fl__ctx-t { font-size: 0.64rem; text-transform: uppercase; letter-spacing: .04em; color: #9a96b0; }
.fl__ctx-n { font-size: 0.8rem; font-weight: 600; color: var(--fl-assist-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .5s; }
.fl__ctx-tag { margin-left: auto; flex: none; font-size: 0.62rem; font-weight: 600; color: var(--fl-badge-fg); background: var(--fl-badge-bg); border-radius: 999px; padding: 3px 9px; transition: .5s; }

/* compare table (styles taken from the product widget) */
.fl__cmp { align-self: stretch; border: 1px solid var(--fl-assist-border); border-radius: 14px; background: var(--fl-assist-bg); overflow: hidden; opacity: 0; transform: translateY(8px); animation: flin .45s var(--ease) forwards; transition: background .5s; box-shadow: 0 1px 2px rgba(26,22,51,.04); }
.fl__cmp table { border-collapse: separate; border-spacing: 0; width: 100%; table-layout: fixed; font-size: 11px; color: var(--fl-assist-text); }
.fl__cmp th, .fl__cmp td { padding: 8px 6px; vertical-align: middle; }
.fl__cmp tbody tr:not(:last-child) td, .fl__cmp tbody tr:not(:last-child) th { border-bottom: 1px solid rgba(0,0,0,.05); }
.fl__cmp thead th { padding: 12px 6px 10px; text-align: center; vertical-align: bottom; }
.fl__cmp .col { width: 39%; }
.fl__cmp thead th:first-child { width: 22%; }
.fl__cmp .thumb { width: 46px; height: 46px; border-radius: 10px; background: #fff; border: 1px solid rgba(0,0,0,.05); display: grid; place-items: center; margin: 0 auto 6px; overflow: hidden; padding: 5px; transition: box-shadow .3s; }
.fl__cmp .thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.fl__cmp .pname { font-size: 11px; font-weight: 600; line-height: 1.2; }
.fl__cmp .attr { font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: .02em; opacity: .5; text-align: left; }
.fl__cmp .cell { text-align: center; color: var(--fl-assist-text); }
.fl__cmp .cell.best { font-weight: 700; color: var(--fl-badge-fg); }

.fl__foot { padding: 12px 16px 12px; display: flex; flex-direction: column; gap: 8px; }
.fl__inp { display: flex; align-items: center; gap: 6px; background: var(--fl-input-bg); border: 1px solid var(--fl-border); border-radius: 999px; padding: 5px 5px 5px 4px; box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 10px 24px -14px rgba(20,16,60,.3), 0 2px 6px -2px rgba(20,16,60,.08); transition: background .5s, border-color .5s; }
.fl__inp span { flex: 1; min-width: 0; padding: 0 12px; height: 44px; display: flex; align-items: center; font-size: 0.9rem; color: var(--fl-placeholder); transition: color .5s; }
.fl__send { width: 42px; height: 42px; border-radius: 50%; flex: none; color: var(--fl-send-icon); background: var(--fl-accent); background-image: linear-gradient(135deg, var(--fl-accent) 0%, var(--fl-accent-2) 100%); display: grid; place-items: center; box-shadow: 0 8px 18px -6px rgba(40,28,110,.5), 0 1px 0 rgba(255,255,255,.4) inset; transition: filter .15s, transform .15s; }
.fl__send:hover { filter: brightness(1.05); transform: translateY(-1px); }
.fl__disc { text-align: center; font-size: 0.64rem; color: var(--fl-disc); padding: 8px 10px 11px; transition: color .5s; }

/* ==========================================================================
   LOGO / CATEGORY STRIP
   ========================================================================== */
.strip { border-block: 1px solid var(--hair); padding-block: 26px; }
.strip__label { text-align: center; font-size: 0.8rem; color: var(--faint); margin-bottom: 18px; letter-spacing: .04em; }
.strip__track { display: flex; gap: 40px; width: max-content; animation: marq 68s linear infinite; }
.strip__mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.strip__item { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--faint); white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
.strip__item::after { content: "·"; color: var(--accent); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ==========================================================================
   STATEMENT + STATS
   ========================================================================== */
.statement { text-align: center; }
.statement__big { font-family: var(--font-display); font-weight: 550; font-size: clamp(1.7rem, 3.7vw, 2.9rem); line-height: 1.16; letter-spacing: -0.025em; max-width: 26ch; margin-inline: auto; }
.statement__big .fade { color: var(--faint); }
.statement__src { text-align: center; font-size: 0.82rem; color: var(--faint); margin-top: 22px; }
.statement__src a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.statement__src a:hover { color: var(--accent); }
.statement__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 52px; }
.stat { flex: 1; min-width: 220px; background: #fff; border: 1px solid var(--hair); border-radius: var(--r-card); padding: 30px 26px; box-shadow: var(--shadow-card); text-align: left; }
.stat b { font-family: var(--font-display); font-size: clamp(2.2rem, 4.4vw, 3rem); font-weight: 650; color: var(--accent); letter-spacing: -0.02em; display: block; }
.stat span { color: var(--muted); font-size: 0.94rem; display: block; margin-top: 6px; }

/* ==========================================================================
   AGENTS bento (light)
   ========================================================================== */
.agents__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.agents__head p { max-width: 40ch; }
.agrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.acard { background: #fff; border: 1px solid var(--hair); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-card); }
.acard__ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: color-mix(in oklab, var(--ic, var(--accent)) 15%, #fff); color: var(--ic, var(--accent)); }
.acard__ico svg { width: 24px; height: 24px; }
.acard h3 { font-size: 1.18rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.acard p { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

/* ==========================================================================
   HOW (steps)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 50px; border: 1px solid var(--hair); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.step { padding: 40px clamp(24px, 3vw, 38px); position: relative; border-left: 1px solid var(--hair); }
.step:first-child { border-left: none; }
.step__n { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.step__n b { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 0.9rem; }
.step h3 { font-size: 1.28rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   FEATURES (asymmetric)
   ========================================================================== */
.feat { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 58px); align-items: center; }
.feat + .feat { margin-top: clamp(56px, 8vw, 104px); }
.feat--flip .feat__visual { order: -1; }
.feat h3 { font-size: clamp(1.55rem, 3vw, 2.25rem); margin: 14px 0 14px; }
.feat p { color: var(--muted); max-width: 44ch; margin-bottom: 20px; }
.feat__list { display: flex; flex-direction: column; gap: 11px; }
.feat__list li { display: flex; gap: 11px; align-items: flex-start; list-style: none; font-size: 0.96rem; }
.feat__list .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.feat__visual { border-radius: var(--r-lg); border: 1px solid var(--hair); background: #fff; aspect-ratio: 4/3; position: relative; overflow: hidden; box-shadow: var(--shadow-card); }

.viz-facets { position: absolute; inset: 0; padding: 30px; display: flex; flex-wrap: wrap; gap: 10px; align-content: center; justify-content: center; }
.chip { padding: 9px 14px; border-radius: var(--r-pill); border: 1px solid var(--hair); font-size: 0.85rem; color: var(--muted); background: var(--surface-tint); transition: .4s; }
.chip.on { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 500; }
.viz-orbit { position: absolute; inset: 0; display: grid; place-items: center; }
.viz-orbit .core { width: 70px; height: 70px; border-radius: 18px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; z-index: 2; box-shadow: 0 16px 34px -10px rgba(106,76,255,.5); }
.viz-orbit .ring { position: absolute; border: 1px dashed var(--hair-2); border-radius: 50%; }
.viz-orbit .ring--1 { width: 180px; height: 180px; animation: spin 24s linear infinite; }
.viz-orbit .ring--2 { width: 280px; height: 280px; animation: spin 40s linear infinite reverse; }
.viz-orbit .node { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 4px 9px; border-radius: 8px; background: #fff; border: 1px solid var(--hair); font-size: 0.72rem; font-weight: 500; color: var(--ink); box-shadow: var(--shadow-card); }
@keyframes spin { to { transform: rotate(360deg); } }
.viz-bars { position: absolute; inset: 0; display: flex; align-items: flex-end; gap: 12px; padding: 34px; }
.viz-bars .bar { flex: 1; background: var(--accent); border-radius: 8px 8px 0 0; height: var(--h, 40%); transform-origin: bottom; }
.viz-bars .bar:nth-child(even) { background: var(--accent-soft); }
/* image search */
.viz-photo { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 30px; }
.viz-photo__drop { border-radius: 16px; border: 2px dashed var(--hair-2); background: var(--surface-tint); display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 16px 24px; }
.viz-photo__shot { width: 88px; height: 88px; border-radius: 12px; background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); display: grid; place-items: center; padding: 9px; transform: rotate(-4deg); }
.viz-photo__shot img { max-width: 100%; max-height: 100%; object-fit: contain; }
.viz-photo__hint { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.viz-photo__flow { color: var(--accent); transform: rotate(90deg); }
.viz-photo__res { display: flex; gap: 13px; }
.viz-photo__found { position: relative; width: 68px; height: 68px; border-radius: 12px; background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); display: grid; place-items: center; padding: 8px; }
.viz-photo__found img { max-width: 100%; max-height: 100%; object-fit: contain; }
/* smart search — typos & slang still find products */
.viz-fix { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 34px; }
.vfx__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--hair); border-radius: 14px; padding: 13px 15px; box-shadow: var(--shadow-card); }
.vfx__q { font-size: 0.94rem; color: var(--ink); }
.vfx__typo { text-decoration: underline wavy #e0517a; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.vfx__slang { text-decoration: underline dotted var(--accent); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.vfx__r { flex: none; display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 600; color: #1b8a4a; background: rgba(27,138,74,.1); border-radius: 999px; padding: 5px 11px; white-space: nowrap; }
.vfx__r::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
/* AI providers — OpenAI/Gemini now, Claude & local AI soon */
.viz-ai { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; place-content: center; padding: 40px; }
.prov { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 56px; border-radius: 15px; font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; border: 1px solid var(--hair); background: #fff; color: var(--ink); box-shadow: var(--shadow-card); }
.prov.on { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-softer); }
.prov .dot { width: 8px; height: 8px; border-radius: 50%; background: #1b8a4a; flex: none; }
.prov.soon { color: var(--faint); background: var(--surface-tint); box-shadow: none; }
.prov.soon b { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 2px 7px; }

/* ==========================================================================
   HONEST PRICING band
   ========================================================================== */
.honesty { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.honesty__lead h2 { margin-bottom: 18px; }
.honesty__cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hcard { border-radius: var(--r-card); padding: 28px 24px; border: 1px solid rgba(255,255,255,.12); }
.hcard__tag { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 16px; }
.hcard__big { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.hcard p { font-size: 0.9rem; line-height: 1.45; }
.hcard--bad { background: rgba(255,255,255,.03); }
.hcard--bad .hcard__tag { color: #9a96b0; }
.hcard--bad .hcard__big { color: #ff8f8f; }
.honesty .hl { font-style: normal; font-weight: 600; color: #fff; }
.hcard--bad p { color: #9a96b0; }
.hcard--good { background: var(--accent); border-color: var(--accent); box-shadow: 0 24px 50px -20px rgba(106,76,255,.6); }
.hcard--good .hcard__tag { color: rgba(255,255,255,.85); }
.hcard--good .hcard__big { color: #fff; }
.hcard--good p { color: rgba(255,255,255,.92); }

/* ==========================================================================
   TARIFFS
   ========================================================================== */
.tariffs__head { text-align: center; max-width: 38ch; margin: 0 auto 50px; }
.tariffs__head p { margin-inline: auto; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.plan { border: 1px solid var(--hair); border-radius: var(--r-lg); padding: 32px 28px; background: #fff; position: relative; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.plan--featured { background: #fff; border: 1.5px solid var(--accent); box-shadow: 0 26px 54px -26px rgba(106,76,255,.5); }
.plan__badge { position: absolute; top: 20px; right: 22px; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: #fff; background: var(--accent); padding: 4px 11px; border-radius: var(--r-pill); }
.plan__name { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.plan__glyph { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.plan__tagline { font-size: 0.85rem; color: var(--muted); margin-top: 4px; margin-bottom: 22px; }
.plan__feats { list-style: none; display: flex; flex-direction: column; gap: 13px; padding-top: 22px; border-top: 1px solid var(--hair); }
.pfeat { display: flex; gap: 11px; align-items: center; }
.pfeat__ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.pfeat__ic svg { width: 16px; height: 16px; }
.pfeat.off { opacity: .42; }
.pfeat.off .pfeat__ic { background: var(--paper-2); color: var(--muted); }
.pfeat__t { display: flex; flex-direction: column; min-width: 0; }
.pfeat__t b { font-size: 0.9rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pfeat__t span { font-size: 0.8rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plan .btn { width: 100%; margin-top: 26px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.qa { border-top: 1px solid var(--hair); }
.qa:last-child { border-bottom: 1px solid var(--hair); }
.qa__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 4px; text-align: left; font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.24rem); font-weight: 500; letter-spacing: -0.01em; }
.qa__ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--hair-2); display: grid; place-items: center; position: relative; transition: .35s var(--ease); }
.qa__ico::before, .qa__ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: .35s var(--ease); }
.qa__ico::before { width: 12px; height: 2px; } .qa__ico::after { width: 2px; height: 12px; }
.qa.open .qa__ico { background: var(--accent); border-color: var(--accent); }
.qa.open .qa__ico::before, .qa.open .qa__ico::after { background: #fff; }
.qa.open .qa__ico::after { transform: rotate(90deg); opacity: 0; }
.qa__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.qa__a p { padding: 0 4px 25px; color: var(--muted); max-width: 68ch; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { position: relative; overflow: hidden; }
.cta__box { background: var(--accent); color: #fff; border-radius: var(--r-lg); padding: clamp(44px, 6vw, 80px); text-align: center; position: relative; overflow: hidden; }
.cta__box::after { content: ""; position: absolute; width: 130%; height: 300px; left: -15%; bottom: -170px; background: radial-gradient(ellipse at center, rgba(255,255,255,.16), transparent 70%); pointer-events: none; }
.cta h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); letter-spacing: -0.03em; max-width: 16ch; margin: 0 auto 18px; position: relative; }
.cta p { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 44ch; margin: 0 auto 30px; position: relative; }
.cta .btn { --bg: #fff; --fg: var(--accent-deep); box-shadow: none; position: relative; }
.cta .btn:hover { --bg: #f3f1ff; background: #f3f1ff; box-shadow: 0 16px 40px -12px rgba(0,0,0,.3); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: #b4afca; padding-block: 64px 38px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer__brand p { max-width: 30ch; margin-top: 15px; font-size: 0.92rem; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #7d799a; margin-bottom: 15px; }
.footer__col a { display: block; color: #b4afca; font-size: 0.94rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bot { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; color: #7d799a; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer__legal { display: inline-flex; gap: 20px; flex-wrap: wrap; }
.footer__bot a { color: #7d799a; transition: color .2s; }
.footer__bot a:hover { color: #fff; }

/* ==========================================================================
   TRIAL — free 14-day band with balance
   ========================================================================== */
.trialbox { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--accent-deep), var(--accent) 55%, #8a5cff); color: #fff; padding: clamp(34px, 5vw, 58px); display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; box-shadow: var(--shadow-pop); }
.trialbox__glow { position: absolute; width: 60%; height: 340px; right: -8%; top: -140px; background: radial-gradient(ellipse at center, rgba(255,255,255,.22), transparent 68%); pointer-events: none; }
.trialbox__body { position: relative; }
.trialbox__kicker { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-pill); padding: 5px 13px; }
.trialbox__h { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 650; letter-spacing: -0.03em; line-height: 1.02; margin: 18px 0 14px; }
.trialbox__p { color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.55; max-width: 52ch; }
.trialbox__pts { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 22px 0 28px; }
.trialbox__pts li { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; font-size: 0.96rem; }
.tcheck { width: 20px; height: 20px; flex: none; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; display: grid; place-items: center; }
.trialbox .btn { --bg: #fff; --fg: var(--accent-deep); box-shadow: none; }
.trialbox .btn:hover { --bg: #f3f1ff; background: #f3f1ff; box-shadow: 0 16px 40px -12px rgba(0,0,0,.3); }
.trialbox__badge { position: relative; justify-self: center; text-align: center; width: 214px; aspect-ratio: 1; border-radius: 28px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(6px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.trialbox__days { font-family: var(--font-display); font-weight: 750; font-size: 5.2rem; line-height: 0.9; letter-spacing: -0.04em; }
.trialbox__daysl { font-family: var(--font-display); font-weight: 600; font-size: 1rem; line-height: 1.1; text-transform: uppercase; letter-spacing: .04em; }
.trialbox__balance { margin-top: 16px; font-size: 0.8rem; font-weight: 500; color: #fff; background: rgba(255,255,255,.18); border-radius: var(--r-pill); padding: 5px 12px; }

/* ==========================================================================
   SETTINGS — control-panel grid
   ========================================================================== */
.set__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.setgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.setcard { background: #fff; border: 1px solid var(--hair); border-radius: var(--r-card); padding: 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.setcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); border-color: var(--hair-2); }
.setcard__h { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; }
.setcard__ic { width: 38px; height: 38px; flex: none; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.setcard__ic svg { width: 20px; height: 20px; }
.setcard p { color: var(--muted); font-size: 0.88rem; line-height: 1.45; margin: 12px 0 16px; }
.setcard__ctl { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.setcard__ctl--row { gap: 10px; }
.setdots { display: inline-flex; }
.setdots i { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #fff; box-shadow: 0 1px 2px rgba(26,22,51,.16); margin-left: -5px; }
.setdots i:first-child { margin-left: 0; }
.setpill { font-size: 0.8rem; font-weight: 500; color: var(--ink); background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r-pill); padding: 5px 12px; }
.setpill--soft { color: var(--accent-deep); background: var(--accent-softer); border-color: transparent; }
.setchip { font-size: 0.72rem; color: var(--muted); background: var(--surface-tint); border: 1px solid var(--hair); border-radius: var(--r-pill); padding: 3px 9px; }
.setchip.on { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 500; }
.setmap { font-size: 0.82rem; color: var(--ink-2); background: var(--surface-tint); border: 1px dashed var(--hair-2); border-radius: 10px; padding: 7px 11px; width: 100%; }
.setmap b { color: var(--accent); padding: 0 3px; }
.setmini { font-size: 0.78rem; color: var(--faint); }
.settoggle { width: 40px; height: 23px; flex: none; border-radius: var(--r-pill); background: var(--accent); position: relative; transition: background .2s; }
.settoggle i { position: absolute; top: 3px; left: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(26,22,51,.3); transition: left .2s; }
.settoggle.on i { left: 20px; }

/* ==========================================================================
   DEMO VIDEO — click-to-play, framed like the product window
   ========================================================================== */
.vsec__head { text-align: center; max-width: 760px; margin: 0 auto clamp(38px, 5vw, 60px); }
.vsec__head .kicker { justify-content: center; }
.vsec__head .lead { margin-inline: auto; }

.vframe {
  max-width: 980px; margin: 0 auto;
  border-radius: var(--r-lg);
  background: #16122b;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.vframe__bar {
  display: flex; align-items: center; gap: 14px;
  height: 46px; padding-inline: 18px;
  background: linear-gradient(180deg, #211b40, #191434);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.vframe__dots { display: inline-flex; gap: 7px; }
.vframe__dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.22); }
.vframe__dots i:first-child { background: #ff5f57; }
.vframe__dots i:nth-child(2) { background: #febc2e; }
.vframe__dots i:nth-child(3) { background: #28c840; }
.vframe__tab {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 500; letter-spacing: -0.01em;
  color: #c7c1e6; background: rgba(255,255,255,.06);
  padding: 5px 14px 5px 11px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.08);
}
.vframe__yt { width: 17px; height: 17px; display: block; flex: none; }
.vframe__stage { position: relative; aspect-ratio: 16 / 9; background: #0f0c22; }
.vframe__el { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }

/* Постер — реальний кадр із ролика (титр «Клієнт має питання / AI допоможе»).
   Затемнення поверх кадру потрібне, щоб кнопка play і підпис читались на титрі. */
.vframe__poster {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background:
    radial-gradient(46% 46% at 50% 50%, rgba(8,6,20,.92), rgba(8,6,20,.55) 68%, rgba(8,6,20,.3)),
    linear-gradient(180deg, rgba(8,6,20,.55), rgba(8,6,20,.62)),
    radial-gradient(120% 90% at 50% 6%, rgba(106,76,255,.3), transparent 62%),
    url("assets/demo-poster.jpg") center / cover no-repeat,
    linear-gradient(180deg, #201a44 0%, #14102c 100%);
  transition: opacity .5s var(--ease), visibility .5s;
}
.vframe.is-playing .vframe__poster { opacity: 0; visibility: hidden; pointer-events: none; }
.vframe__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,76,255,.55), transparent 62%);
  filter: blur(8px);
}
@media (prefers-reduced-motion: no-preference) {
  .vframe__glow { animation: vpulse 3.4s var(--ease) infinite; }
}
@keyframes vpulse { 0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(1); } 50% { opacity: .9; transform: translate(-50%, -50%) scale(1.12); } }
.vframe__play {
  position: relative; z-index: 1;
  width: 84px; height: 84px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  /* Напівпрозора: кадр із ролика має проглядати крізь кнопку, а не бути перекритим. */
  color: #fff; background: rgba(106,76,255,.34);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.42);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
/* Центроїд трикутника в цьому path уже збігається з центром кола — зайвий зсув
   вправо (був margin-left: 4px) читався як «плей не по центру». */
.vframe__play svg { margin-left: 0; }
.vframe__poster:hover .vframe__play {
  transform: scale(1.07); background: rgba(106,76,255,.52);
  box-shadow: 0 26px 54px -18px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.35);
}
.vframe__cta {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: #fff;
}
.vframe__dur {
  font-size: 0.82rem; font-weight: 500; color: #c7c1e6;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  padding: 3px 10px; border-radius: var(--r-pill);
}

/* ==========================================================================
   REVEAL — content is visible by default; JS only enhances (no blank ships)
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }

/* ==========================================================================
   TRY / LEAD FORM MODAL
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(26,22,51,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: mfade .25s var(--ease); }
.modal__dialog { position: relative; width: 100%; max-width: 480px; max-height: calc(100vh - 40px); overflow-y: auto; background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-lg); box-shadow: var(--shadow-pop); padding: clamp(26px, 4vw, 40px); animation: mpop .35s var(--ease); }
@keyframes mfade { from { opacity: 0; } }
@keyframes mpop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.modal__x { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); background: var(--paper); transition: background .2s, color .2s; }
.modal__x:hover { background: var(--paper-2); color: var(--ink); }
.modal__body .kicker { justify-content: flex-start; }
.modal__dialog h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin: 14px 0 8px; letter-spacing: -0.02em; }
.modal__sub { color: var(--muted); font-size: 0.96rem; line-height: 1.5; margin-bottom: 24px; }

.fld { display: block; margin-bottom: 16px; }
.fld__l { display: block; font-size: 0.88rem; font-weight: 500; color: var(--ink-2); margin-bottom: 8px; }
.fld__opt { color: var(--faint); font-weight: 400; }
.fld__i { width: 100%; height: 48px; padding: 0 15px; font: inherit; font-size: 0.98rem; color: var(--ink); background: var(--surface-tint); border: 1px solid var(--hair-2); border-radius: var(--r-input); transition: border-color .2s, box-shadow .2s, background .2s; }
.fld__i::placeholder { color: var(--faint); }
.fld__i:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
.fld__t { height: auto; padding: 12px 15px; resize: vertical; min-height: 84px; line-height: 1.5; }
.fld__i.err { border-color: #e0517a; box-shadow: 0 0 0 3px rgba(224,81,122,.14); }

.chan { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.chan__b { height: 44px; padding: 0 6px; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--muted); background: var(--surface-tint); border: 1px solid var(--hair-2); border-radius: var(--r-input); transition: all .2s; }
.chan__b:hover { border-color: var(--accent); color: var(--ink); }
.chan__b.on { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 8px 20px -10px rgba(106,76,255,.6); }
.modal__submit { width: 100%; margin-top: 6px; }
.modal__submit[disabled] { opacity: .6; pointer-events: none; }
.modal__err { margin: 2px 0 10px; font-size: 0.9rem; color: #d92d20; }
/* Honeypot: прибираємо з очей, але лишаємо в DOM для ботів. */
.fld__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.modal__done { text-align: center; padding: 20px 0 6px; }
.modal__check { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--ok); box-shadow: 0 16px 34px -12px rgba(30,166,114,.6); }
.modal__done h3 { margin-bottom: 8px; }
.modal__done p { color: var(--muted); margin-bottom: 22px; }
body.modal-open { overflow: hidden; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 46px; }
  .browser { justify-self: center; }
  .setgrid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__login { display: none; }
  .nav__burger { display: flex; }
  .nav.mobile-open .nav__links { display: flex; position: fixed; inset: 72px 0 auto 0; flex-direction: column; background: rgba(245,244,251,.97); backdrop-filter: blur(14px); padding: 18px var(--pad-x) 26px; gap: 6px; border-bottom: 1px solid var(--hair); }
  .nav.mobile-open .nav__links a { padding: 12px 0; font-size: 1.05rem; }
  .agrid { grid-template-columns: 1fr; }
  .setgrid { grid-template-columns: 1fr; }
  .chan { grid-template-columns: repeat(2, 1fr); }
  .trialbox { grid-template-columns: 1fr; }
  .trialbox__badge { justify-self: start; width: 168px; }
  .trialbox__days { font-size: 4rem; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--hair); }
  .step:first-child { border-top: none; }
  .feat { grid-template-columns: 1fr; }
  .feat--flip .feat__visual { order: 0; }
  .plans { grid-template-columns: 1fr; }
  .honesty { grid-template-columns: 1fr; }
  .statement__row { gap: 14px; }
  .vframe__tab { display: none; }
  .vframe__play { width: 66px; height: 66px; }
  .vframe__play svg { width: 24px; height: 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .footer__bot { flex-direction: column; align-items: flex-start; }
  .browser__stage { height: 420px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .strip__track, .ring--1, .ring--2, .hero .fl { animation: none !important; }
}

/* ==========================================================================
   LEGAL — бічна панель із документами (політика / умови)
   ========================================================================== */
.legal { position: fixed; inset: 0; z-index: 210; }
.legal[hidden] { display: none; }
.legal__backdrop { position: absolute; inset: 0; background: rgba(26,22,51,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: mfade .25s var(--ease); }
.legal__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(680px, 100%);
  display: flex; flex-direction: column;
  background: var(--surface);
  box-shadow: -24px 0 60px -24px rgba(26,22,51,.35);
  animation: legalIn .38s var(--ease);
}
@keyframes legalIn { from { transform: translateX(24px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .legal__panel { animation: none; } }

.legal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 30px 18px; border-bottom: 1px solid var(--hair); }
.legal__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 650; letter-spacing: -0.02em; margin-top: 8px; }
.legal__meta { margin-top: 6px; font-size: 0.82rem; color: var(--faint); }
.legal__x { width: 38px; height: 38px; flex: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--hair-2); color: var(--muted); transition: background .2s, color .2s; }
.legal__x:hover { background: var(--paper); color: var(--ink); }

.legal__tabs { display: flex; gap: 8px; padding: 14px 30px; border-bottom: 1px solid var(--hair); }
.legal__tab { padding: 7px 15px; border-radius: var(--r-pill); border: 1px solid var(--hair-2); font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--muted); transition: .2s; }
.legal__tab:hover { background: var(--paper); color: var(--ink); }
.legal__tab.on { background: var(--ink); border-color: var(--ink); color: #fff; }

.legal__body { flex: 1; overflow-y: auto; padding: 24px 30px 60px; -webkit-overflow-scrolling: touch; }
.legal__lead { font-size: 1rem; line-height: 1.6; color: var(--ink-2); padding: 14px 16px; border-radius: var(--r-input); background: var(--accent-softer); border: 1px solid var(--accent-soft); }
.legal__doc[hidden] { display: none; }
.legal__doc h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 650; letter-spacing: -0.015em; margin: 28px 0 10px; }
.legal__doc p { font-size: 0.94rem; line-height: 1.65; color: var(--ink-2); margin-bottom: 10px; }
.legal__doc ul { margin: 0 0 12px; padding-left: 20px; }
.legal__doc li { font-size: 0.94rem; line-height: 1.6; color: var(--ink-2); margin-bottom: 7px; }
.legal__doc b { color: var(--ink); font-weight: 650; }
.legal__note { padding: 12px 14px; border-radius: var(--r-input); background: var(--paper-2); border: 1px solid var(--hair); font-size: 0.9rem !important; }
.legal__link { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal__link:hover { color: var(--accent-deep); }

@media (max-width: 760px) {
  .legal__head { padding: 20px 18px 14px; }
  .legal__tabs { padding: 12px 18px; }
  .legal__body { padding: 18px 18px 48px; }
}

/* ============================== LANGUAGE PICKER ============================== */
/* Нативний <details> у ролі дропдауна. Кнопка компактна (іконка + код мови),
   бо на мобільному вона лишається видимою, коли решта навігації ховається в бургер:
   мовну версію треба вміти перемкнути з телефона, а не тільки з десктопа. */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 10px;
  border: 1px solid var(--hair-2); border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-2);
  background: var(--surface);
  cursor: pointer; user-select: none; white-space: nowrap;
  transition: border-color .2s, background .2s, color .2s;
}
.lang__btn::-webkit-details-marker { display: none; }
.lang__btn::marker { content: ""; }
.lang__btn:hover { border-color: var(--accent); color: var(--accent); }
.lang[open] .lang__btn { border-color: var(--accent); color: var(--accent); }
.lang__caret { transition: transform .2s var(--ease); }
.lang[open] .lang__caret { transform: rotate(180deg); }

.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 10;
  min-width: 168px; padding: 6px;
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: 14px; box-shadow: var(--shadow-pop);
}
.lang__opt {
  display: block; padding: 9px 12px; border-radius: 9px;
  font-size: 0.92rem; color: var(--ink-2); white-space: nowrap;
  transition: background .15s, color .15s;
}
.lang__opt:hover { background: var(--accent-softer); color: var(--accent); }
.lang__opt.is-on { color: var(--accent); font-weight: 600; background: var(--accent-soft); }

@media (prefers-reduced-motion: reduce) {
  .lang__caret { transition: none; }
}
