@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-cyrillic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-cyrillic-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-latin-ext-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --bg: #0a0b0d;
  --canvas: #0e1014;
  --surface-1: #15171c;
  --surface-2: #1d2026;
  --surface-3: #292c33;
  --border: #262a31;
  --border-strong: #3b4049;
  --ink: #f4f5f6;
  --ink-mid: #b8bdc6;
  --ink-low: #777e89;
  --ink-dim: #505660;
  --accent: #d9ff40;
  --accent-hover: #c7ee35;
  --accent-ink: #121509;
  --sans: "Inter Tight", "Arial Narrow", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shell: min(1240px, calc(100vw - 80px));
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 68% 8%, rgba(217, 255, 64, 0.085), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--accent-ink); background: var(--accent); }

.shell { width: var(--shell); margin-inline: auto; }
.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(38, 42, 49, 0.9);
  background: rgba(10, 11, 13, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner { height: 68px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { font-size: 18px; font-weight: 650; letter-spacing: -0.025em; }
.desktop-nav { display: flex; align-items: center; gap: 2px; margin-left: 14px; }
.desktop-nav a, .top-up-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 520;
  transition: 160ms ease;
}
.desktop-nav a:hover, .top-up-link:hover { color: var(--ink); background: var(--surface-1); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.language-picker { position: relative; }
.language-button, .menu-button {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-1);
  color: var(--ink-mid);
  cursor: pointer;
}
.language-button { display: flex; align-items: center; gap: 8px; padding: 0 12px; font: 500 12px/1 var(--mono); }
.language-button:hover { border-color: var(--border-strong); color: var(--ink); }
.status-square { width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.chevron { color: var(--ink-low); font-size: 14px; transform: translateY(-1px); }
.language-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 184px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.language-menu button { flex-shrink: 0; }
.language-menu button {
  width: 100%; height: 38px; display: flex; align-items: center; gap: 10px;
  border: 0; border-radius: 8px; background: transparent; color: var(--ink-mid); cursor: pointer; text-align: left;
}
.language-menu button:hover { background: var(--surface-3); color: var(--ink); }
.language-menu button span { width: 28px; margin-left: 8px; color: var(--ink-low); font: 400 10px/1 var(--mono); }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--accent); color: var(--accent-ink); }
.button-primary:hover { background: var(--accent-hover); }
.button-secondary { background: var(--surface-2); border-color: var(--border-strong); color: var(--ink); }
.button-secondary:hover { background: var(--surface-3); border-color: #555b65; }
.button-large { min-height: 52px; padding-inline: 22px; border-radius: 13px; font-size: 15px; }
.chrome-mark { width: 16px; height: 16px; border: 2px solid currentColor; border-radius: 50%; position: relative; }
.chrome-mark::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: currentColor; }
.menu-button { display: none; width: 40px; padding: 0; place-items: center; align-content: center; gap: 4px; }
.menu-button span { width: 16px; height: 1.5px; background: currentColor; display: block; }
.mobile-menu { padding: 8px max(24px, calc((100vw - var(--shell)) / 2)) 18px; border-top: 1px solid var(--border); }
.mobile-menu a { display: block; padding: 13px 2px; color: var(--ink-mid); font-size: 15px; font-weight: 520; }

.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  padding-block: clamp(70px, 9vw, 116px);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% auto auto -12%;
  width: 360px; height: 360px;
  border: 1px solid rgba(217,255,64,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(217,255,64,.018), 0 0 0 160px rgba(217,255,64,.012);
}
.eyebrow-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: rgba(21,23,28,.78);
  color: var(--ink-mid);
  font: 500 10px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.live-dot { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(217,255,64,.08); animation: pulse 1.5s ease-in-out infinite; }
.hero h1 {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(52px, 6.2vw, 82px);
  font-weight: 610;
  letter-spacing: -.048em;
  line-height: .94;
  text-wrap: balance;
}
.accent-text { color: var(--accent); }
.hero-lead { max-width: 600px; margin: 26px 0 0; color: var(--ink-mid); font-size: clamp(18px, 1.7vw, 21px); line-height: 1.48; }
.hero-support { max-width: 575px; margin: 15px 0 0; color: var(--ink-low); font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 22px; color: var(--ink-low); font: 400 11px/1.4 var(--mono); }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: ""; width: 4px; height: 4px; border-radius: 1px; background: var(--accent); }

.hero-visual { position: relative; min-height: 590px; }
.browser-frame {
  position: absolute;
  inset: 28px 50px 42px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #101217;
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
}
.browser-bar { height: 48px; display: flex; align-items: center; gap: 12px; padding: 0 14px; border-bottom: 1px solid var(--border); background: #15181e; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #454b55; }
.address-bar { height: 25px; flex: 1; display: flex; align-items: center; padding: 0 10px; border: 1px solid #24282f; border-radius: 7px; background: #0c0e11; color: var(--ink-dim); font: 400 9px/1 var(--mono); }
.browser-action { color: var(--ink-low); font-size: 12px; }
.browser-content { height: calc(100% - 48px); padding: 24px; background: radial-gradient(circle at 20% 18%, #3d352a 0, transparent 30%), linear-gradient(135deg, #191d22, #0e1013 68%); }
.reference-image {
  position: relative;
  width: 67%;
  height: 72%;
  margin: 42px 0 0 20px;
  border: 1px dashed var(--accent);
  background:
    linear-gradient(90deg, rgba(217,255,64,.08), transparent 35%),
    url("assets/extension-ui.png") center 9% / 146% auto no-repeat,
    #181a1f;
  box-shadow: inset 0 0 0 999px rgba(10,11,13,.08);
}
.capture-label { position: absolute; top: -25px; left: -1px; height: 24px; display: inline-flex; align-items: center; padding: 0 9px; border-radius: 6px 6px 0 0; background: var(--accent); color: var(--accent-ink); font: 600 9px/1 var(--mono); letter-spacing: .08em; }
.selection-corner { position: absolute; width: 22px; height: 22px; border-color: var(--accent); }
.corner-one { inset: -1px auto auto -1px; border-left: 2px solid; border-top: 2px solid; }
.corner-two { inset: -1px -1px auto auto; border-right: 2px solid; border-top: 2px solid; }
.corner-three { inset: auto auto -1px -1px; border-left: 2px solid; border-bottom: 2px solid; }
.corner-four { inset: auto -1px -1px auto; border-right: 2px solid; border-bottom: 2px solid; }

.extension-panel {
  position: absolute;
  z-index: 3;
  width: 320px;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 17px;
  background: #15171b;
  box-shadow: 0 32px 80px rgba(0,0,0,.68);
  animation: float 6s ease-in-out infinite;
}
.extension-head { height: 53px; display: flex; align-items: center; gap: 9px; padding: 0 14px; border-bottom: 1px solid var(--border); }
.extension-head img { border-radius: 6px; }
.extension-head strong { flex: 1; font-size: 13px; font-weight: 650; }
.balance-pill { display: inline-flex; align-items: center; gap: 6px; height: 25px; padding: 0 9px; border: 1px solid var(--border); border-radius: 99px; color: var(--accent); font: 500 10px/1 var(--mono); }
.balance-pill i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.extension-body { padding: 14px; }
.extension-photo { height: 146px; overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: #0b0c0e; }
.extension-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 13%; filter: saturate(.88) contrast(1.06); }
.output-tabs { display: flex; gap: 4px; margin-top: 11px; padding: 4px; border: 1px solid var(--border); border-radius: 9px; background: #0c0e11; }
.output-tabs span { flex: 1; padding: 7px; border-radius: 6px; color: var(--ink-low); text-align: center; font-size: 11px; font-weight: 650; }
.output-tabs .active { color: var(--ink); background: var(--surface-3); }
.prompt-output { margin-top: 10px; padding: 12px; border: 1px solid var(--border); border-radius: 9px; background: #0b0c0f; }
.prompt-output > div { display: flex; justify-content: space-between; color: var(--ink-dim); font: 500 8px/1 var(--mono); letter-spacing: .09em; }
.prompt-output b { color: var(--accent); font-weight: 500; letter-spacing: 0; }
.prompt-output p { margin: 9px 0 0; color: var(--ink-mid); font: 400 9.5px/1.55 var(--mono); }
.mock-copy { width: 100%; height: 38px; margin-top: 10px; border: 0; border-radius: 9px; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 680; }
.floating-result { position: absolute; z-index: 5; display: grid; grid-template-columns: 25px auto 8px; align-items: center; gap: 8px; min-height: 43px; padding: 0 12px; border: 1px solid var(--border-strong); border-radius: 11px; background: rgba(27,30,35,.92); backdrop-filter: blur(10px); box-shadow: 0 14px 34px rgba(0,0,0,.38); }
.floating-result span { color: var(--ink-low); font: 400 9px/1 var(--mono); }
.floating-result strong { font-size: 11px; font-weight: 600; white-space: nowrap; }
.floating-result i { width: 6px; height: 6px; border-radius: 2px; background: var(--accent); }
.result-one { top: 3px; right: 17px; }
.result-two { left: -25px; bottom: 71px; }

.scanner-section { padding: 96px 0 112px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #0c0e11; }
.scanner-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.section-kicker { margin: 0; color: var(--accent); font: 500 10px/1.4 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.scanner-heading h2, .first-slice-end h2 { margin: 14px 0 0; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.038em; font-weight: 610; }
.scanner-heading > p { max-width: 450px; margin: 0; color: var(--ink-low); font-size: 15px; line-height: 1.65; }
.scanner-stage { position: relative; height: 480px; margin-top: 50px; overflow: hidden; touch-action: pan-y; cursor: grab; }
.scanner-stage:active { cursor: grabbing; }
.scanner-stage::before, .scanner-stage::after { content: ""; position: absolute; z-index: 8; inset: 0 auto 0 0; width: 12vw; pointer-events: none; background: linear-gradient(90deg, #0c0e11, transparent); }
.scanner-stage::after { inset: 0 0 0 auto; transform: scaleX(-1); }
.scanner-track { position: absolute; left: 0; top: 35px; display: flex; gap: 22px; width: max-content; will-change: transform; }
.scanner-card { position: relative; width: 620px; height: 360px; flex: 0 0 620px; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 17px; background: var(--surface-1); box-shadow: 0 18px 50px rgba(0,0,0,.38); }
.scan-photo, .scan-prompt { position: absolute; inset: 0; }
.scan-photo { z-index: 2; display: flex; align-items: end; padding: 14px; clip-path: inset(0 var(--photo-hide, 0%) 0 0); background-size: cover; background-position: center; transition: filter 220ms ease; }
.scanner-card:hover .scan-photo { filter: saturate(1.08) contrast(1.04); }
.scan-photo::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(217,255,64,.24); opacity: 0; transition: opacity 180ms ease; }
.scanner-card:hover .scan-photo::after { opacity: 1; }
.scan-photo > span { position: absolute; z-index: 3; left: 14px; bottom: 14px; padding: 6px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; background: rgba(8,9,11,.64); color: rgba(255,255,255,.76); font: 400 9px/1 var(--mono); backdrop-filter: blur(6px); }
.scene-1 .scan-photo { background-image: linear-gradient(25deg, rgba(0,0,0,.18), transparent), url("assets/showcase-beauty.webp"); }
.scene-2 .scan-photo { background-image: linear-gradient(25deg, rgba(0,0,0,.18), transparent), url("assets/showcase-sneaker.webp"); }
.scene-3 .scan-photo { background-image: linear-gradient(25deg, rgba(0,0,0,.16), transparent), url("assets/showcase-cosmetics.webp"); }
.scene-4 .scan-photo { background-image: linear-gradient(25deg, rgba(0,0,0,.18), transparent), url("assets/showcase-interior.webp"); }
.scene-5 .scan-photo { background-image: linear-gradient(25deg, rgba(0,0,0,.16), transparent), url("assets/showcase-food.webp"); }
.scene-6 .scan-photo { align-items: stretch; background-image: linear-gradient(0deg, rgba(0,0,0,.42), transparent 62%), url("assets/reference-fashion.webp"); }
.screen-reference { width: 68%; align-self: center; color: #15171a; }
.screen-reference small { display: block; color: #666b70; font: 600 8px/1 var(--mono); letter-spacing: .12em; }
.screen-reference strong { display: block; margin-top: 22px; font-size: 38px; line-height: .94; letter-spacing: -.05em; }
.screen-reference i { display: block; width: 82%; height: 5px; margin-top: 15px; border-radius: 3px; background: #c9cbc7; }
.screen-reference i:nth-of-type(2) { width: 66%; margin-top: 8px; }
.screen-reference i:nth-of-type(3) { width: 74%; margin-top: 8px; }
.slide-reference { position: relative; width: 100%; padding: 20px; }
.slide-reference small { color: var(--accent); font: 500 8px/1 var(--mono); letter-spacing: .12em; }
.slide-reference strong { display: block; margin-top: 28px; font-size: 48px; line-height: .88; letter-spacing: -.06em; }
.slide-reference > div { position: absolute; right: 24px; bottom: 34px; width: 190px; padding: 16px; border: 1px solid var(--border-strong); border-radius: 11px; background: rgba(10,12,15,.68); }
.slide-reference b { color: var(--accent); font: 500 35px/1 var(--mono); }
.slide-reference div span { display: block; margin-top: 6px; color: var(--ink-low); font-size: 10px; }
.ui-reference { width: min(330px, 88%); align-self: center; margin: auto; padding: 20px; border: 1px solid var(--border-strong); border-radius: 15px; background: #101216; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.ui-reference > span { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: var(--ink-dim); }
.ui-reference > span:nth-child(3) { background: var(--accent); }
.ui-reference strong { display: block; margin-top: 22px; color: var(--ink-low); font: 600 9px/1 var(--mono); letter-spacing: .12em; }
.ui-reference p { margin: 13px 0 0; color: var(--ink); font-size: 17px; line-height: 1.7; }
.youtube-reference { position: relative; z-index: 2; width: 100%; height: 100%; color: #fff; }
.youtube-top { position: absolute; top: 17px; left: 18px; right: 18px; display: flex; align-items: center; gap: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.75); }
.youtube-top span { width: 26px; height: 19px; display: grid; place-items: center; border-radius: 5px; background: #ff0033; font-size: 9px; }.youtube-top strong { font-size: 13px; font-weight: 580; }
.youtube-caption { position: absolute; left: 50%; bottom: 62px; max-width: 78%; padding: 7px 10px; background: rgba(0,0,0,.76); font-size: 14px; line-height: 1.25; text-align: center; transform: translateX(-50%); }
.youtube-controls { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; }.youtube-controls i { height: 3px; background: linear-gradient(90deg, #ff0033 0 71%, rgba(255,255,255,.45) 71%); }.youtube-controls b, .youtube-controls span { font: 500 8px/1 var(--mono); }.youtube-controls span { padding: 4px; border: 1px solid rgba(255,255,255,.55); border-radius: 3px; }
.scan-prompt { z-index: 1; padding: 25px; clip-path: inset(0 0 0 var(--prompt-hide, 100%)); background: #0d0f12; color: var(--ink-mid); font-family: var(--mono); }
.scan-prompt::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: radial-gradient(rgba(217,255,64,.24) .7px, transparent .7px); background-size: 9px 9px; mask-image: linear-gradient(90deg, transparent, #000); }
.scan-prompt span, .scan-prompt p { position: relative; z-index: 1; }
.scan-prompt span { color: var(--accent); font-size: 9px; letter-spacing: .11em; }
.scan-prompt p { max-width: 540px; margin: 23px 0 0; font-size: 14px; line-height: 1.68; }
.scanner-beam { position: absolute; z-index: 7; top: 12px; bottom: 54px; left: 50%; width: 1px; background: linear-gradient(transparent, var(--accent) 12%, var(--accent) 88%, transparent); box-shadow: 0 0 9px var(--accent), 0 0 24px rgba(217,255,64,.55); pointer-events: none; }
.scanner-beam span { position: absolute; top: 16px; left: 10px; color: var(--accent); font: 500 9px/1 var(--mono); letter-spacing: .1em; writing-mode: vertical-rl; }
.scanner-beam span::after { content: "SCANNING"; }
.scanner-hint { position: absolute; z-index: 9; bottom: 12px; left: 50%; transform: translateX(-50%); margin: 0; color: var(--ink-dim); font: 400 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.first-slice-end { padding-block: 110px 140px; }

.section-space { padding-block: clamp(92px, 10vw, 148px); }
.section-heading { max-width: 780px; }
.section-heading h2,
.capture-copy h2,
.models-copy h2,
.credits-copy h2,
.account-note h2,
.faq-heading h2,
.final-cta h2 {
  margin: 15px 0 0;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 610;
  line-height: .98;
  letter-spacing: -.043em;
  text-wrap: balance;
}
.section-heading > p:last-child,
.split-heading > p,
.section-lead,
.models-copy > p:last-child,
.credits-copy > p,
.account-note > div > p:last-child,
.faq-heading > p:last-child,
.final-cta > p {
  color: var(--ink-low);
  font-size: 16px;
  line-height: 1.65;
}
.section-heading > p:last-child { max-width: 640px; margin: 20px 0 0; }
.split-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 64px; }
.split-heading > div { max-width: 760px; }
.split-heading > p { max-width: 440px; margin: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 62px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.step-card { position: relative; min-height: 300px; padding: 28px 24px 30px; border-right: 1px solid var(--border); }
.step-card:last-child { border-right: 0; }
.step-number { color: var(--ink-dim); font: 500 11px/1 var(--mono); }
.step-line { display: block; width: 100%; height: 1px; margin-top: 47px; background: linear-gradient(90deg, var(--accent) 0 32px, var(--border) 32px); }
.step-card h3 { margin: 32px 0 0; font-size: 20px; font-weight: 620; letter-spacing: -.02em; }
.step-card p { margin: 12px 0 0; color: var(--ink-low); font-size: 14px; line-height: 1.6; }

.context-section { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.context-visual { position: relative; min-height: 540px; overflow: hidden; border: 1px solid var(--border-strong); border-radius: var(--radius-xl); background: #101216; box-shadow: 0 32px 90px rgba(0,0,0,.42); }
.context-visual > img { width: 100%; height: 500px; display: block; object-fit: cover; object-position: center; }
.context-browser-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid var(--border); background: #17191e; }
.context-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.context-browser-bar span { margin-left: 8px; color: var(--ink-dim); font: 400 8px/1 var(--mono); }
.context-highlight { position: absolute; right: 26px; bottom: 31px; min-width: 260px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(217,255,64,.4); border-radius: 10px; background: rgba(26,29,34,.94); box-shadow: 0 20px 55px rgba(0,0,0,.55), inset 3px 0 var(--accent); backdrop-filter: blur(12px); }
.context-highlight img { border-radius: 6px; }.context-highlight strong { font-size: 13px; }.context-highlight span { color: var(--accent); font: 500 7px/1 var(--mono); letter-spacing: .1em; }
.context-copy h2 { margin: 15px 0 0; font-size: clamp(42px, 5vw, 68px); font-weight: 610; line-height: .98; letter-spacing: -.043em; text-wrap: balance; }
.context-copy > p:nth-of-type(2) { max-width: 540px; margin: 22px 0 0; color: var(--ink-low); font-size: 16px; line-height: 1.65; }
.context-steps { margin-top: 35px; border-top: 1px solid var(--border); }
.context-steps > div { min-height: 68px; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.context-steps > div > span { color: var(--accent); font: 500 9px/1 var(--mono); }.context-steps p { margin: 0; }.context-steps strong { display: block; font-size: 13px; font-weight: 600; }.context-steps small { display: block; margin-top: 4px; color: var(--ink-dim); font-size: 11px; }

.features-section { border-block: 1px solid var(--border); background: var(--canvas); }
.feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; margin-top: 58px; }
.feature-card { position: relative; min-height: 390px; grid-column: span 4; overflow: hidden; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-1); transition: 180ms ease; }
.feature-card:hover { border-color: var(--border-strong); background: #191c21; transform: translateY(-2px); }
.feature-1 { grid-column: span 8; min-height: 390px; background: linear-gradient(115deg, #171a1f, #111318); }
.feature-6, .feature-7, .feature-8, .feature-9 { grid-column: span 3; }
.feature-meta { display: flex; align-items: center; justify-content: space-between; color: var(--ink-dim); font: 400 10px/1 var(--mono); }
.feature-meta i { width: 7px; height: 7px; border-radius: 2px; background: var(--border-strong); transition: background 160ms ease; }
.feature-card:hover .feature-meta i, .feature-1 .feature-meta i { background: var(--accent); }
.feature-card h3 { max-width: 360px; margin: 28px 0 0; font-size: 21px; font-weight: 620; letter-spacing: -.025em; }
.feature-card p { max-width: 420px; margin: 10px 0 0; color: var(--ink-low); font-size: 14px; line-height: 1.6; }
.feature-1 h3 { margin-top: 28px; font-size: 27px; }
.feature-1 p { font-size: 15px; }
.feature-preview { position: absolute; left: 22px; right: 22px; bottom: 20px; height: 128px; overflow: hidden; border: 1px solid var(--border); border-radius: 11px; background: #0b0d10; }
.preview-1 { left: auto; width: 48%; height: 210px; display: grid; grid-template-columns: 1.05fr .95fr; }
.preview-image { background: url("assets/reference-fashion.webp") center / cover; }
.preview-prompt { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 18px; background: radial-gradient(circle at 100% 0, rgba(217,255,64,.08), transparent 40%), #0b0d10; }
.preview-prompt i { display: block; height: 5px; border-radius: 4px; background: var(--border-strong); }
.preview-prompt i:nth-child(2) { width: 75%; }.preview-prompt i:nth-child(3) { width: 88%; }
.preview-prompt b { margin-top: 9px; color: var(--accent); font: 500 8px/1 var(--mono); letter-spacing: .09em; }
.ocr-sheet { height: 100%; padding: 18px; color: #15171a; background: #eceee9; }
.ocr-sheet small { font: 600 7px/1 var(--mono); letter-spacing: .12em; }
.ocr-sheet strong { display: block; margin-top: 13px; font-size: 19px; line-height: .95; }
.ocr-sheet i { display: block; width: 90%; height: 4px; margin-top: 11px; background: #c6c9c3; }.ocr-sheet i:nth-of-type(2) { width: 65%; margin-top: 6px; }.ocr-sheet i:nth-of-type(3) { width: 78%; margin-top: 6px; }
.screen-shot { height: 100%; padding: 15px; background: linear-gradient(135deg, #2b2f35, #101216); }
.screen-shot span, .screen-shot strong { font: 500 8px/1 var(--mono); }.screen-shot span { color: var(--accent); }.screen-shot strong { float: right; color: var(--ink-dim); }
.screen-shot p { margin: 25px 0 0; color: var(--ink); font-size: 17px; line-height: 1.05; }.screen-shot i { position: absolute; left: 15px; right: 15px; bottom: 12px; height: 3px; background: linear-gradient(90deg, var(--accent) 0 38%, var(--border-strong) 38%); }
.area-shot { position: relative; height: 100%; background: url("assets/reference-ai.webp") center / cover; }.area-shot::after { content:""; position:absolute; inset:17px; border:1px dashed var(--accent); }.area-shot span { position:absolute; z-index:2; top:22px; left:22px; padding:5px 7px; color:var(--accent); background:#0b0d10; font:500 7px/1 var(--mono); }
.translate-preview, .style-preview { height: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; }.translate-preview span, .style-preview span { padding: 8px; border: 1px solid var(--border-strong); border-radius: 7px; color: var(--ink-mid); font: 500 8px/1 var(--mono); }.translate-preview b { color: var(--accent); font-weight: 400; }
.style-preview { flex-wrap: wrap; align-content: center; }.style-preview span:first-child { border-color: var(--accent); color: var(--accent); }
.credit-preview { height: 100%; padding: 17px; }.credit-preview strong { display: block; color: var(--accent); font: 500 34px/1 var(--mono); }.credit-preview span { color: var(--ink-dim); font: 500 7px/1 var(--mono); letter-spacing: .12em; }.credit-preview i { display: block; height: 4px; margin-top: 17px; background: linear-gradient(90deg, var(--accent) 0 64%, var(--border) 64%); }
.mini-prompt { position: absolute; right: 24px; bottom: 24px; width: min(45%, 330px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--border-strong); border-radius: 10px; background: #0b0d10; color: var(--ink-dim); font: 400 8px/1 var(--mono); }
.mini-prompt span:nth-child(2) { color: var(--accent); font-size: 15px; }
.mini-prompt b { color: var(--accent); font-weight: 500; text-align: right; }
.dual-output { height: 100%; display: flex; align-items: center; gap: 4px; padding: 10px; background: #0b0d10; }
.dual-output span { flex: 1; padding: 7px; border-radius: 5px; color: var(--ink-dim); text-align: center; font-size: 10px; font-weight: 600; }
.dual-output .active { background: var(--surface-3); color: var(--ink); }
.history-stack { height: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }
.history-stack i { display: block; width: 31px; height: 41px; border: 1px solid var(--border-strong); border-radius: 6px; background: #0d0f12; transform: rotate(-5deg); }
.history-stack i:nth-child(2) { height: 50px; transform: rotate(2deg); }
.history-stack i:nth-child(3) { height: 36px; transform: rotate(7deg); }

.capture-section { display: grid; grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr); gap: clamp(54px, 7vw, 105px); align-items: center; }
.capture-copy .section-lead { max-width: 510px; margin: 21px 0 0; }
.source-list { display: grid; gap: 8px; margin-top: 35px; }
.source-list button { min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface-1); color: var(--ink-mid); cursor: pointer; transition: 150ms ease; }
.source-list button:hover, .source-list button.active { border-color: var(--border-strong); background: var(--surface-2); color: var(--ink); }
.source-list button.active { box-shadow: inset 2px 0 var(--accent); }
.source-list button span { font-size: 13px; font-weight: 560; }
.source-list button b { color: var(--accent); font: 500 11px/1 var(--mono); }
.capture-demo { overflow: hidden; border: 1px solid var(--border-strong); border-radius: var(--radius-xl); background: #101217; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.demo-toolbar { height: 50px; display: flex; align-items: center; gap: 13px; padding: 0 15px; border-bottom: 1px solid var(--border); background: var(--surface-1); }
.demo-toolbar > div { display: flex; gap: 6px; }
.demo-toolbar > div span { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.demo-toolbar strong { color: var(--ink-mid); font: 500 9px/1 var(--mono); letter-spacing: .08em; }
.demo-toolbar small { margin-left: auto; color: var(--ink-dim); font: 400 9px/1 var(--mono); }
.demo-stage { position: relative; min-height: 470px; padding: 28px; background: radial-gradient(circle at 30% 20%, rgba(217,255,64,.05), transparent 42%), repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(255,255,255,.018) 32px), #0d0f12; }
.demo-selection { position: relative; width: 67%; height: 305px; overflow: hidden; border: 1px dashed var(--accent); background: #16191e; }
.demo-selection::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(217,255,64,.15); pointer-events: none; }
.demo-selection img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; filter: saturate(.9) contrast(1.04); }
.demo-result { position: absolute; z-index: 3; right: 28px; bottom: 28px; width: 330px; padding: 13px; border: 1px solid var(--border-strong); border-radius: 15px; background: #17191e; box-shadow: 0 24px 65px rgba(0,0,0,.6); }
.demo-tabs { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--border); border-radius: 9px; background: #0b0d10; }
.demo-tabs button { flex: 1; padding: 8px; border: 0; border-radius: 6px; background: transparent; color: var(--ink-low); cursor: pointer; font-size: 11px; font-weight: 620; }
.demo-tabs button.active { background: var(--surface-3); color: var(--ink); }
.demo-output { margin-top: 10px; padding: 13px; border: 1px solid var(--border); border-radius: 9px; background: #0b0c0f; }
.demo-output[hidden] { display: none; }
.demo-output > div { display: flex; align-items: center; justify-content: space-between; color: var(--ink-dim); font: 500 8px/1 var(--mono); letter-spacing: .08em; }
.demo-output button { border: 0; background: transparent; color: var(--accent); cursor: pointer; font: 500 9px/1 var(--mono); }
.demo-output p { margin: 10px 0 0; color: var(--ink-mid); font: 400 10.5px/1.6 var(--mono); }

.workflow-section { border-block: 1px solid var(--border); background: var(--canvas); }
.workflow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 58px; }
.workflow-card { min-height: 590px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-1); }
.card-topline { display: flex; justify-content: space-between; align-items: center; color: var(--ink-dim); font: 400 9px/1 var(--mono); letter-spacing: .08em; }
.card-topline i { width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.workflow-card > h3 { margin: 48px 0 0; font-size: 27px; line-height: 1.06; letter-spacing: -.032em; font-weight: 610; }
.workflow-card > p { margin: 13px 0 0; color: var(--ink-low); font-size: 14px; line-height: 1.6; }
.format-list { margin-top: 36px; border-top: 1px solid var(--border); }
.format-list > div { display: grid; grid-template-columns: 28px 84px 1fr; gap: 8px; align-items: start; padding: 17px 0; border-bottom: 1px solid var(--border); }
.format-list span { color: var(--ink-dim); font: 400 9px/1.5 var(--mono); }
.format-list strong { font-size: 13px; font-weight: 620; }
.format-list p { margin: 0; color: var(--ink-low); font-size: 12px; line-height: 1.45; }
.language-routes { display: grid; gap: 8px; margin-top: 48px; }
.language-routes > div { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 51px; padding: 0 14px; border: 1px solid var(--border); border-radius: 9px; background: #101216; }
.language-routes span, .language-routes strong { font: 400 11px/1 var(--mono); }
.language-routes span { color: var(--ink-low); }
.language-routes b { color: var(--accent); font-weight: 400; }
.language-routes strong { color: var(--ink); text-align: right; font-weight: 500; }
.history-list { display: grid; gap: 9px; margin-top: 40px; }
.history-list > div { min-height: 64px; display: flex; align-items: center; gap: 11px; padding: 9px; border: 1px solid var(--border); border-radius: 10px; background: #101216; }
.history-list .thumb { width: 47px; height: 45px; flex: 0 0 auto; border-radius: 7px; background: var(--surface-3); }
.thumb-one { background: url("assets/extension-ui.png") center 10% / 150% auto no-repeat !important; }
.thumb-two { background: linear-gradient(135deg, #2a3341, #0b0d10 65%) !important; }
.thumb-three { background: linear-gradient(135deg, rgba(217,255,64,.35), #20242b 55%) !important; }
.history-list p { flex: 1; margin: 0; }
.history-list strong { display: block; font-size: 12px; font-weight: 580; }
.history-list small { display: block; margin-top: 4px; color: var(--ink-dim); font: 400 9px/1 var(--mono); }
.history-list b { color: var(--ink-dim); font-size: 10px; }

.languages-section { overflow: hidden; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 50% 64%, rgba(217,255,64,.055), transparent 34%), #0d0f12; }
.languages-heading { position: relative; z-index: 4; text-align: center; }
.languages-heading h2 { max-width: 760px; margin-inline: auto; }
.languages-heading > p:last-child { max-width: 650px; margin: 20px auto 0; }
.language-orbit { position: relative; height: 720px; margin-top: 32px; }
.orbit-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(217,255,64,.12); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.orbit-ring::after { content: ""; position: absolute; top: 50%; left: -3px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.orbit-ring-one { width: 310px; height: 310px; }
.orbit-ring-two { width: 510px; height: 510px; border-color: rgba(255,255,255,.07); }
.orbit-ring-three { width: 690px; height: 690px; border-color: rgba(255,255,255,.045); }
.orbit-core { position: absolute; z-index: 3; top: 50%; left: 50%; width: 190px; height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--border-strong); border-radius: 32px; background: linear-gradient(145deg, #1b1e23, #0e1013); box-shadow: 0 30px 85px rgba(0,0,0,.52), 0 0 0 12px rgba(217,255,64,.018); transform: translate(-50%, -50%); }
.orbit-core img { position: relative; z-index: 1; border-radius: 20px; }
.orbit-core strong { margin-top: 13px; font-size: 16px; font-weight: 650; }
.orbit-core small { margin-top: 7px; color: var(--accent); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.orbit-pulse { position: absolute; inset: 18px; border: 1px solid rgba(217,255,64,.09); border-radius: 25px; }
.orbit-languages { position: absolute; inset: 0; }
.orbit-language { position: absolute; z-index: 2; min-width: 118px; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: rgba(20,23,27,.94); box-shadow: 0 12px 35px rgba(0,0,0,.28); white-space: nowrap; }
.orbit-language em { font-size: 16px; line-height: 1; font-style: normal; }
.orbit-language b { color: var(--accent); font: 500 9px/1 var(--mono); }
.orbit-language span { color: var(--ink-mid); font-size: 12px; font-weight: 540; }
.language-1 { left: 43%; top: 4%; } .language-2 { left: 62%; top: 9%; } .language-3 { left: 76%; top: 20%; }
.language-4 { left: 82%; top: 36%; } .language-5 { left: 83%; top: 55%; } .language-6 { left: 73%; top: 71%; }
.language-7 { left: 60%; top: 83%; } .language-8 { left: 43%; top: 88%; } .language-9 { left: 26%; top: 82%; }
.language-10 { left: 12%; top: 70%; } .language-11 { left: 5%; top: 53%; } .language-12 { left: 6%; top: 35%; }
.language-13 { left: 14%; top: 19%; } .language-14 { left: 28%; top: 8%; }
.language-15 { left: 67%; top: 30%; } .language-16 { left: 68%; top: 61%; }
.language-17 { left: 22%; top: 61%; } .language-18 { left: 21%; top: 30%; }
.orbit-language:nth-child(3n) { border-color: rgba(217,255,64,.2); }

.models-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.models-copy > p:last-child { max-width: 540px; margin: 21px 0 0; }
.model-signals { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-1); }
.model-signals > div { min-height: 61px; display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 13px; padding: 0 18px; border-bottom: 1px solid var(--border); }
.model-signals > div:last-child { border-bottom: 0; }
.model-signals i { width: 7px; height: 7px; border-radius: 2px; background: var(--accent); box-shadow: 0 0 0 5px rgba(217,255,64,.06); }
.model-signals span { color: var(--ink-mid); font-size: 13px; font-weight: 540; }
.model-signals b { color: var(--ink-dim); font: 400 9px/1 var(--mono); letter-spacing: .08em; }
.model-settings-card { padding: 25px; border: 1px solid var(--border-strong); border-radius: var(--radius-xl); background: linear-gradient(145deg, #1b1e23, #0d0f12); box-shadow: 0 30px 80px rgba(0,0,0,.36); }
.settings-label { display: flex; justify-content: space-between; color: var(--ink-low); font: 600 10px/1 var(--mono); letter-spacing: .14em; }.settings-label b { color: var(--accent); font-size: 8px; }
.provider-select { margin-top: 26px; padding: 14px; border: 1px solid var(--border); border-radius: 10px; background: #0b0d10; }.provider-select small { display:block; color:var(--ink-dim); font:500 8px/1 var(--mono); text-transform:uppercase; }.provider-select strong { display:block; margin-top:8px; font-size:13px; font-weight:560; }
.provider-list { margin-top: 10px; overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: #101216; }.provider-list > div { min-height: 48px; display:grid; grid-template-columns:27px 1fr auto; align-items:center; gap:10px; padding:0 13px; border-bottom:1px solid var(--border); }.provider-list > div:last-child { border-bottom:0; }.provider-list .selected { background: var(--accent); color: var(--accent-ink); }.provider-list i { width:22px; height:22px; display:grid; place-items:center; border:1px solid var(--border-strong); border-radius:6px; color:var(--ink-low); font:500 8px/1 var(--mono); font-style:normal; }.provider-list .selected i { border-color:rgba(0,0,0,.2); color:var(--accent-ink); }.provider-list span { font-size:13px; font-weight:590; }.provider-list b { color:var(--ink-dim); font:500 8px/1 var(--mono); letter-spacing:.08em; }.provider-list .selected b { color:rgba(18,21,9,.55); }
.model-settings-card > p { margin: 15px 2px 0; color: var(--ink-dim); font-size: 11px; line-height: 1.5; }

.credits-section { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(60px, 10vw, 150px); align-items: center; overflow: hidden; margin-bottom: clamp(92px, 10vw, 148px); padding: clamp(42px, 6vw, 74px); border: 1px solid var(--border); border-radius: var(--radius-xl); background: linear-gradient(110deg, #13161a, #0d0f12); }
.credits-section::after { content: ""; position: absolute; right: -120px; top: -160px; width: 450px; height: 450px; border: 1px solid rgba(217,255,64,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(217,255,64,.018), 0 0 0 140px rgba(217,255,64,.01); pointer-events: none; }
.credits-copy { position: relative; z-index: 1; }
.credits-copy > p { max-width: 570px; margin: 20px 0 0; }
.credits-copy .button { margin-top: 30px; }
.balance-card { position: relative; z-index: 2; padding: 24px; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: rgba(24,27,32,.92); box-shadow: 0 28px 80px rgba(0,0,0,.36); }
.balance-head { display: flex; align-items: center; justify-content: space-between; color: var(--ink-low); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.balance-head i { width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.balance-value { margin-top: 20px; color: var(--accent); font: 500 60px/.9 var(--mono); letter-spacing: -.05em; }
.balance-value small { color: var(--ink-low); font: 400 13px/1 var(--sans); letter-spacing: 0; }
.balance-track { height: 5px; margin-top: 27px; overflow: hidden; border-radius: 99px; background: #0b0d10; }
.balance-track i { display: block; width: 38%; height: 100%; border-radius: inherit; background: var(--accent); }
.balance-meta { display: flex; justify-content: space-between; margin-top: 10px; color: var(--ink-dim); font: 400 9px/1.4 var(--mono); }
.balance-meta b { color: var(--ink-low); font-weight: 400; }
.balance-card .button { width: 100%; margin-top: 24px; }

.use-cases-section { border-block: 1px solid var(--border); background: var(--canvas); }
.use-cases-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 58px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.use-cases-grid article { min-height: 235px; padding: 23px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-1); transition: background 160ms ease; }
.use-cases-grid article:hover { background: var(--surface-2); }
.use-cases-grid article > span { color: var(--ink-dim); font: 400 9px/1 var(--mono); }
.use-cases-grid h3 { margin: 56px 0 0; font-size: 20px; letter-spacing: -.02em; font-weight: 610; }
.use-cases-grid p { margin: 10px 0 0; color: var(--ink-low); font-size: 13px; line-height: 1.58; }

.account-note { display: grid; grid-template-columns: 105px 1fr; gap: 28px; align-items: start; margin-block: clamp(92px, 10vw, 148px); padding: clamp(30px, 5vw, 54px); border: 1px solid var(--border); border-left: 2px solid var(--accent); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: var(--surface-1); }
.account-icon { position: relative; width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 50%; background: #0e1013; }
.account-icon span { width: 20px; height: 20px; border: 2px solid var(--ink-mid); border-radius: 50%; }
.account-icon i { position: absolute; bottom: 13px; width: 38px; height: 19px; border: 2px solid var(--ink-mid); border-bottom: 0; border-radius: 28px 28px 0 0; }
.account-note h2 { max-width: 800px; font-size: clamp(32px, 4vw, 50px); }
.account-note > div > p:last-child { max-width: 680px; margin: 17px 0 0; }

.faq-section { border-top: 1px solid var(--border); background: var(--canvas); }
.faq-shell { display: grid; grid-template-columns: minmax(0, .7fr) minmax(540px, 1.3fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading > p:last-child { margin: 20px 0 0; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { min-height: 78px; display: grid; grid-template-columns: 36px 1fr 20px; align-items: center; gap: 10px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--ink-dim); font: 400 9px/1 var(--mono); }
.faq-list summary strong { font-size: 16px; font-weight: 590; }
.faq-list summary i { position: relative; width: 16px; height: 16px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; inset: 7px 1px auto; height: 1px; background: var(--accent); transition: transform 180ms ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { margin: -5px 30px 26px 46px; color: var(--ink-low); font-size: 14px; line-height: 1.65; }

.final-cta { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; margin-block: clamp(92px, 11vw, 165px); padding: clamp(64px, 8vw, 105px) 40px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: #101216; text-align: center; }
.final-grid { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(circle, #000, transparent 76%); }
.final-cta .section-kicker, .final-cta h2, .final-cta > p, .final-cta .hero-actions { position: relative; z-index: 1; }
.final-cta h2 { max-width: 900px; font-size: clamp(48px, 7vw, 86px); }
.final-cta > p { max-width: 610px; margin: 24px 0 0; }
.final-cta .hero-actions { justify-content: center; }

.site-footer { border-top: 1px solid var(--border); background: #08090b; }
.footer-main { min-height: 220px; display: flex; justify-content: space-between; gap: 60px; padding-block: 48px; }
.footer-main > div:first-child > p { margin: 15px 0 0; color: var(--ink-low); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 14px 48px; align-content: start; }
.footer-links a { color: var(--ink-mid); font-size: 13px; font-weight: 520; transition: color 150ms ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #171a1f; }
.footer-bottom .shell { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ink-dim); font: 400 9px/1 var(--mono); letter-spacing: .05em; }

.toast { position: fixed; z-index: 200; right: 20px; bottom: 20px; width: min(360px, calc(100vw - 40px)); display: flex; align-items: flex-start; gap: 12px; padding: 15px; border: 1px solid var(--border-strong); border-left: 3px solid var(--accent); border-radius: var(--radius-md); background: var(--surface-2); box-shadow: 0 18px 48px rgba(0,0,0,.55); }
.toast[hidden] { display: none; }
.toast p { margin: 0; color: var(--ink-mid); font-size: 13px; line-height: 1.45; }
.toast strong { color: var(--ink); }

/* Top up */
.topup-main { min-height: 100vh; background: radial-gradient(circle at 12% 10%, rgba(217,255,64,.045), transparent 28%), var(--bg); }
.topup-header-status { display: flex; align-items: center; gap: 8px; color: var(--ink-dim); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.topup-header-status i { width: 7px; height: 7px; border-radius: 2px; background: var(--accent); box-shadow: 0 0 0 5px rgba(217,255,64,.06); }
.topup-back { min-height: 40px; padding-inline: 15px; font-size: 12px; }
.topup-hero { min-height: 700px; display: grid; grid-template-columns: minmax(0, 1.2fr) 410px; gap: clamp(70px, 10vw, 150px); align-items: center; padding-block: 105px; }
.topup-intro h1 { max-width: 760px; margin: 28px 0 0; font-size: clamp(64px, 7vw, 104px); line-height: .92; letter-spacing: -.065em; font-weight: 650; }
.topup-intro > p { max-width: 640px; margin: 28px 0 0; color: var(--ink-low); font-size: 17px; line-height: 1.65; }
.topup-capabilities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.topup-capabilities span { padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px; color: var(--ink-low); background: rgba(21,23,28,.72); font: 400 9px/1 var(--mono); letter-spacing: .05em; }
.balance-login-card { padding: 28px; border: 1px solid var(--border-strong); border-radius: var(--radius-xl); background: linear-gradient(145deg, #1b1e23, #101216); box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.balance-login-head { display: flex; align-items: center; justify-content: space-between; color: var(--ink-low); font: 500 9px/1 var(--mono); letter-spacing: .13em; }
.balance-login-head i { width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.balance-placeholder { margin-top: 35px; color: var(--accent); font: 500 70px/.9 var(--mono); letter-spacing: -.06em; }
.balance-placeholder small { color: var(--ink-low); font: 400 13px/1 var(--sans); letter-spacing: 0; }
.balance-login-card > p { margin: 21px 0 28px; color: var(--ink-low); font-size: 14px; line-height: 1.55; }
.balance-login-card .button { width: 100%; min-height: 50px; }
.google-mark { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #4285f4; font: 700 12px/1 Arial, sans-serif; }
.signin-divider { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin: 17px 0; color: var(--ink-dim); font: 400 9px/1 var(--mono); text-transform: uppercase; }
.signin-divider::before, .signin-divider::after { content: ""; height: 1px; background: var(--border); }
.topup-packages { padding-block: 110px 130px; border-top: 1px solid var(--border); }
.topup-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.topup-section-heading h2 { max-width: 650px; margin-top: 13px; }
.topup-section-heading > p { max-width: 420px; margin: 0; color: var(--ink-low); font-size: 14px; line-height: 1.6; }
.credit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; margin-top: 58px; }
.credit-package { position: relative; min-height: 300px; display: flex; flex-direction: column; padding: 23px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-1); }
.credit-package::after { content: ""; position: absolute; right: -58px; top: -58px; width: 145px; height: 145px; border: 1px solid rgba(255,255,255,.04); border-radius: 50%; }
.credit-package.popular { border-color: rgba(217,255,64,.46); background: linear-gradient(145deg, rgba(217,255,64,.055), var(--surface-1) 54%); }
.popular-label { position: absolute; top: 17px; right: 17px; padding: 7px 8px; border-radius: 6px; color: var(--accent-ink); background: var(--accent); font: 650 8px/1 var(--mono); letter-spacing: .09em; }
.package-index { color: var(--ink-dim); font: 400 9px/1 var(--mono); }
.package-value { margin-top: 50px; color: var(--ink); font: 540 58px/.9 var(--mono); letter-spacing: -.06em; }
.popular .package-value { color: var(--accent); }
.package-unit { margin-top: 8px; color: var(--ink-dim); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.package-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 23px; border-top: 1px solid var(--border); }
.package-footer strong { font-size: 20px; font-weight: 600; }
.package-footer button { min-height: 38px; padding: 0 12px; border: 1px solid var(--border); border-radius: 8px; color: var(--ink-dim); background: #101216; font: 500 9px/1 var(--mono); cursor: not-allowed; }
.coupon-section { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; margin-bottom: 18px; padding: clamp(36px, 5vw, 64px); border: 1px solid var(--border); border-radius: var(--radius-xl); background: linear-gradient(110deg, #15181c, #0d0f12); }
.coupon-copy h2 { margin-top: 12px; font-size: clamp(38px, 4vw, 56px); }
.coupon-copy > p:last-child { max-width: 650px; margin: 17px 0 0; color: var(--ink-low); font-size: 14px; line-height: 1.6; }
.checkout-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; margin-block: 18px 110px; padding: 27px; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.checkout-icon { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 15px; background: var(--surface-1); }
.checkout-note span { color: var(--accent); font: 500 8px/1 var(--mono); letter-spacing: .12em; }
.checkout-note h2 { margin: 7px 0 0; font-size: 22px; }
.checkout-note p { max-width: 760px; margin: 7px 0 0; color: var(--ink-low); font-size: 12px; line-height: 1.5; }
.topup-footer { border-top: 1px solid var(--border); background: #08090b; }
.topup-footer > div { min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.topup-footer p { margin: 0; color: var(--ink-dim); font: 400 10px/1 var(--mono); }
.topup-footer > div > div { justify-self: end; display: flex; gap: 20px; }
.topup-footer > div > div a { color: var(--ink-low); font-size: 12px; }

@keyframes pulse { 50% { opacity: .45; } }
@keyframes float { 50% { transform: translateY(-8px); } }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 980px); }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: .95fr 1.05fr; gap: 34px; }
  .hero h1 { font-size: clamp(50px, 6vw, 70px); }
  .hero-visual { min-height: 520px; }
  .browser-frame { right: 35px; }
  .extension-panel { width: 288px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-card:nth-child(2) { border-right: 0; }
  .step-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-1 { grid-column: span 8; }
  .feature-6, .feature-7, .feature-8, .feature-9 { grid-column: span 6; }
  .capture-section { grid-template-columns: minmax(0, .75fr) minmax(480px, 1.25fr); gap: 45px; }
  .context-section { grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); gap: 50px; }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .history-card { grid-column: span 2; min-height: auto; }
  .history-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq-shell { grid-template-columns: minmax(0, .65fr) minmax(500px, 1.35fr); gap: 60px; }
  .topup-hero { grid-template-columns: minmax(0, 1fr) 370px; gap: 55px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 40px, 720px); }
  .top-up-link, .header-install { display: none; }
  .menu-button { display: grid; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 54px; padding-block: 68px 84px; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(54px, 11vw, 76px); }
  .hero-visual { width: min(100%, 650px); min-height: 570px; margin-inline: auto; }
  .scanner-heading { align-items: start; flex-direction: column; gap: 18px; }
  .scanner-heading > p { max-width: 620px; }
  .scanner-card { width: 500px; flex-basis: 500px; height: 310px; }
  .scan-prompt p { font-size: 12px; line-height: 1.58; }
  .section-space { padding-block: 96px; }
  .split-heading { align-items: start; flex-direction: column; gap: 20px; }
  .split-heading > p { max-width: 620px; }
  .feature-card, .feature-1, .feature-6, .feature-7, .feature-8, .feature-9 { grid-column: span 6; min-height: 260px; }
  .context-section { grid-template-columns: 1fr; }
  .context-visual { min-height: 520px; }
  .context-copy { max-width: 680px; }
  .feature-card, .feature-1, .feature-6, .feature-7, .feature-8, .feature-9 { min-height: 370px; }
  .feature-1 { grid-column: span 12; }
  .feature-1 h3 { margin-top: 49px; font-size: 23px; }
  .mini-prompt { left: 24px; width: auto; max-width: none; }
  .capture-section { grid-template-columns: 1fr; }
  .capture-copy { max-width: 640px; }
  .source-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-grid { grid-template-columns: 1fr; }
  .history-card { grid-column: auto; }
  .workflow-card { min-height: auto; }
  .history-list { grid-template-columns: 1fr; }
  .language-orbit { height: 650px; transform: scale(.92); transform-origin: center top; }
  .models-section { grid-template-columns: 1fr; gap: 46px; }
  .credits-section { grid-template-columns: 1fr; }
  .balance-card { max-width: 440px; width: 100%; }
  .use-cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-shell { grid-template-columns: 1fr; gap: 50px; }
  .faq-heading { position: static; }
  .topup-hero { grid-template-columns: 1fr; padding-block: 80px; }
  .topup-intro { max-width: 680px; }
  .balance-login-card { max-width: 520px; }
  .credit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topup-section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .coupon-section { grid-template-columns: 1fr; gap: 30px; }
  .coupon-section .button { justify-self: start; }
  .checkout-note { grid-template-columns: auto 1fr; }
  .checkout-note > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .header-inner { height: 62px; gap: 10px; }
  .brand img { width: 32px; height: 32px; }
  .brand span { font-size: 16px; }
  .language-button { height: 38px; padding-inline: 10px; }
  .menu-button { width: 38px; height: 38px; }
  .hero { padding-block: 54px 72px; }
  .eyebrow-chip { max-width: 100%; font-size: 9px; }
  .hero h1 { margin-top: 20px; font-size: clamp(47px, 14vw, 66px); line-height: .96; }
  .hero-lead { margin-top: 22px; font-size: 17px; }
  .hero-support { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { min-height: 470px; }
  .browser-frame { inset: 0 22px 42px 0; }
  .browser-content { padding: 14px; }
  .reference-image { width: 78%; height: 66%; margin: 52px 0 0 6px; }
  .extension-panel { width: 246px; right: 0; }
  .extension-photo { height: 112px; }
  .prompt-output p { max-height: 46px; overflow: hidden; }
  .result-one { top: -18px; right: 8px; }
  .result-two { display: none; }
  .scanner-section { padding-block: 72px 84px; }
  .scanner-heading h2, .first-slice-end h2 { font-size: 42px; }
  .scanner-stage { height: 320px; margin-top: 36px; }
  .scanner-track { top: 30px; gap: 14px; }
  .scanner-card { width: 280px; flex-basis: 280px; height: 205px; }
  .scan-prompt { padding: 15px; }
  .scan-prompt p { font-size: 10px; }
  .youtube-top strong { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
  .youtube-caption { bottom: 46px; max-width: 88%; padding: 5px 7px; font-size: 9px; }
  .youtube-controls { left: 12px; right: 12px; bottom: 12px; gap: 7px; }
  .scanner-beam { bottom: 44px; }
  .first-slice-end { padding-block: 78px 110px; }
  .section-space { padding-block: 76px; }
  .section-heading h2, .capture-copy h2, .models-copy h2, .credits-copy h2, .faq-heading h2 { font-size: 42px; }
  .section-heading > p:last-child, .split-heading > p, .section-lead, .models-copy > p:last-child, .credits-copy > p, .account-note > div > p:last-child, .faq-heading > p:last-child, .final-cta > p { font-size: 14px; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .step-card { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--border); }
  .step-card:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .context-visual { min-height: 390px; }
  .context-visual > img { height: 350px; }
  .context-highlight { right: 12px; bottom: 14px; min-width: 230px; }
  .context-copy h2 { font-size: 42px; }
  .context-copy > p:nth-of-type(2) { font-size: 14px; }
  .feature-card, .feature-1, .feature-6, .feature-7, .feature-8, .feature-9 { grid-column: auto; min-height: 360px; }
  .feature-1 { min-height: 420px; }
  .preview-1 { left: 20px; width: auto; height: 190px; }
  .mini-prompt { grid-template-columns: 1fr auto 1fr; }
  .source-list { grid-template-columns: 1fr; }
  .demo-stage { min-height: 420px; padding: 16px; }
  .demo-selection { width: 82%; height: 245px; }
  .demo-result { width: calc(100% - 32px); right: 16px; bottom: 16px; }
  .workflow-grid { margin-top: 42px; }
  .workflow-card { padding: 20px; }
  .workflow-card > h3 { font-size: 24px; }
  .format-list > div { grid-template-columns: 24px 73px 1fr; }
  .languages-section { background: radial-gradient(circle at 50% 31%, rgba(217,255,64,.06), transparent 26%), #0d0f12; }
  .languages-heading { text-align: left; }
  .languages-heading > p:last-child { margin-left: 0; }
  .language-orbit { width: var(--shell); height: auto; margin-top: 44px; transform: none; }
  .orbit-ring { display: none; }
  .orbit-core { position: relative; top: auto; left: auto; width: 156px; height: 156px; margin: 0 auto 34px; border-radius: 26px; transform: none; }
  .orbit-core img { width: 60px; height: 60px; }
  .orbit-core strong { font-size: 14px; }
  .orbit-languages { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .orbit-language, .language-1, .language-2, .language-3, .language-4, .language-5, .language-6, .language-7, .language-8, .language-9, .language-10, .language-11, .language-12, .language-13, .language-14, .language-15, .language-16, .language-17, .language-18 { position: static; min-width: 0; padding: 11px 10px; box-shadow: none; }
  .orbit-language span { overflow: hidden; text-overflow: ellipsis; font-size: 11px; }
  .model-signals > div { padding-inline: 14px; }
  .model-signals b { display: none; }
  .credits-section { width: calc(100% - 24px); gap: 44px; padding: 28px 20px; margin-bottom: 76px; }
  .balance-value { font-size: 50px; }
  .use-cases-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .use-cases-grid article { min-height: 205px; }
  .account-note { grid-template-columns: 1fr; margin-block: 76px; padding: 27px 22px; }
  .account-icon { width: 66px; height: 66px; }
  .account-note h2 { font-size: 35px; }
  .topup-header-status { display: none; }
  .topup-back { position: relative; width: 40px; overflow: hidden; padding: 0; white-space: nowrap; color: transparent; font-size: 0; }
  .topup-back::after { content: "←"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink); font-size: 16px; }
  .topup-hero { gap: 44px; padding-block: 58px 74px; }
  .topup-intro h1 { font-size: 52px; }
  .topup-intro > p { font-size: 15px; }
  .balance-login-card { padding: 22px; }
  .topup-packages { padding-block: 76px; }
  .credit-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .credit-package { min-height: 250px; }
  .coupon-section { width: calc(100% - 24px); padding: 28px 20px; }
  .coupon-section .button { width: 100%; }
  .checkout-note { grid-template-columns: 1fr; margin-bottom: 76px; padding: 22px; }
  .checkout-note > .button { grid-column: auto; }
  .topup-footer > div { min-height: 160px; grid-template-columns: 1fr; justify-items: start; gap: 12px; padding-block: 30px; }
  .topup-footer > div > div { justify-self: start; }
  .faq-list summary { grid-template-columns: 29px 1fr 18px; }
  .faq-list summary strong { font-size: 15px; }
  .faq-list details > p { margin-left: 39px; }
  .final-cta { width: calc(100% - 24px); margin-block: 76px; padding: 62px 18px; }
  .final-cta h2 { font-size: 48px; }
  .final-cta .hero-actions { width: 100%; }
  .final-cta .button { width: 100%; }
  .footer-main { flex-direction: column; min-height: auto; padding-block: 42px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .shell { align-items: flex-start; flex-direction: column; justify-content: center; }
}

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

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Legal pages (Terms, Privacy) */
.legal-main { width: var(--shell); margin: 56px auto 0; }
.legal-head { max-width: 760px; }
.legal-head .section-kicker { margin-bottom: 12px; }
.legal-head h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
.legal-updated { margin-top: 14px; color: var(--ink-low); font: 400 13px/1.4 var(--mono); }
.legal-body { max-width: 760px; margin-top: 40px; padding-bottom: 96px; }
.legal-body section { margin-top: 40px; }
.legal-body h2 {
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
  padding-top: 22px; border-top: 1px solid var(--border);
}
.legal-body h3 { margin-top: 26px; font-size: 16px; color: var(--ink); }
.legal-body p, .legal-body li { color: var(--ink-mid); font-size: 15.5px; line-height: 1.72; }
.legal-body p { margin-top: 14px; }
.legal-body ul { margin-top: 14px; padding-left: 22px; display: grid; gap: 8px; }
.legal-body li { padding-left: 4px; }
.legal-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.legal-body a:hover { border-bottom-color: var(--accent); }
.legal-body strong { color: var(--ink); }
.legal-toc {
  margin-top: 26px; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-1);
}
.legal-toc p { margin: 0 0 10px; color: var(--ink-low); font: 500 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.legal-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.legal-toc a { color: var(--ink-mid); font-size: 14px; text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }
html[dir="rtl"] .legal-body ul, html[dir="rtl"] .legal-toc ol { padding-left: 0; padding-right: 22px; }
@media (max-width: 640px) {
  .legal-main { margin-top: 34px; }
  .legal-body { margin-top: 30px; }
}
