:root {
  --bg: #0c0e10;
  --bg-soft: #111417;
  --surface: #15191d;
  --surface-raised: #1a1f24;
  --surface-light: #20262c;
  --line: #2c333a;
  --line-strong: #3c454e;
  --text: #f3f5f1;
  --text-soft: #bac1bc;
  --muted: #7d8781;
  --accent: #cddad1;
  --accent-strong: #e2e9e4;
  --accent-ink: #0d120f;
  --accent-rgb: 205 218 209;
  --ok: #66d39b;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 24px;
  --shadow: 0 40px 100px rgb(0 0 0 / 42%);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="evergreen"] {
  --bg: #080d0c;
  --bg-soft: #0b110f;
  --surface: #111916;
  --surface-raised: #15201c;
  --surface-light: #1b2722;
  --line: #293a33;
  --line-strong: #3a4e45;
  --text: #f2f7f4;
  --text-soft: #b5c5bc;
  --muted: #748b7f;
  --accent: #a3dcbc;
  --accent-strong: #beedd3;
  --accent-ink: #09140e;
  --accent-rgb: 163 220 188;
}

:root[data-theme="ember"] {
  --bg: #0e0c0b;
  --bg-soft: #12100f;
  --surface: #191513;
  --surface-raised: #1f1a17;
  --surface-light: #26201c;
  --line: #3a3029;
  --line-strong: #4e4035;
  --text: #f7f4f0;
  --text-soft: #cabeb1;
  --muted: #918070;
  --accent: #e0bf92;
  --accent-strong: #efd3ac;
  --accent-ink: #18110a;
  --accent-rgb: 224 191 146;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .28s ease, color .28s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0, var(--bg) 44%, transparent 100%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent); color: var(--accent-ink); }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.ambient { position: absolute; z-index: -1; pointer-events: none; border-radius: 50%; filter: blur(2px); }
.ambient-one { top: -220px; left: 50%; width: 740px; height: 520px; transform: translateX(-28%); background: radial-gradient(circle, rgb(var(--accent-rgb) / 9%) 0, transparent 70%); }
.ambient-two { top: 1050px; left: -280px; width: 600px; height: 600px; background: radial-gradient(circle, rgb(210 219 210 / 6%) 0, transparent 70%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  border-color: rgb(255 255 255 / 7%);
  background: rgb(12 14 16 / 82%);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.025em; }
.brand img { border-radius: 10px; box-shadow: 0 8px 20px rgb(0 0 0 / 22%); }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--text-soft); font-size: 14px; font-weight: 600; }
.nav-links > a:not(.button) { transition: color .2s ease; }
.nav-links > a:not(.button):hover { color: var(--text); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); }
.menu-button span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgb(var(--accent-rgb) / 48%); outline-offset: 3px; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 14px 38px rgb(var(--accent-rgb) / 12%); }
.button-primary:hover { background: var(--accent-strong); box-shadow: 0 18px 46px rgb(var(--accent-rgb) / 19%); }
.button-ghost { border-color: var(--line-strong); background: rgb(255 255 255 / 2.5%); color: var(--text); }
.button-ghost:hover { border-color: #626d76; background: rgb(255 255 255 / 5%); }
.button-light { background: var(--text); color: #101214; }
.button-small { min-height: 38px; padding-inline: 15px; border-radius: 10px; font-size: 13px; }

.hero {
  min-height: 760px;
  padding-block: 100px 82px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 76px;
}
.eyebrow, .kicker, .card-tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgb(var(--accent-rgb) / 8%); animation: pulse 2.2s ease-in-out infinite; }
.hero h1 { margin: 0; font-size: clamp(54px, 6vw, 84px); line-height: .96; letter-spacing: -.065em; font-weight: 720; }
.hero h1 span { color: var(--text-soft); }
.hero-lede { max-width: 590px; margin: 28px 0 0; color: var(--text-soft); font-size: 19px; line-height: 1.65; letter-spacing: -.012em; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; min-width: 0; perspective: 1300px; }
.visual-glow { position: absolute; inset: 20% 10% -10%; z-index: -1; background: radial-gradient(ellipse, rgb(var(--accent-rgb) / 14%), transparent 65%); filter: blur(20px); }
.app-window { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 18px; background: var(--bg-soft); box-shadow: var(--shadow), 0 0 0 1px rgb(255 255 255 / 3%) inset; transform: translateZ(0); }
.product-shot-frame { background: #090b0d; }
.window-bar { height: 34px; padding-left: 10px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: #101316; color: var(--text-soft); }
.window-title { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 650; }
.window-title img { width: 18px; height: 18px; border-radius: 5px; }
.window-actions { align-self: stretch; display: grid; grid-template-columns: repeat(3, 42px); }
.window-actions i { display: grid; place-items: center; color: #818a84; font-size: 11px; font-style: normal; font-weight: 400; }
.window-actions i:last-child { font-size: 15px; }
.window-canvas { overflow: hidden; background: #090b0d; }
.window-canvas img { width: 100%; height: auto; }
.recording-preview { position: absolute; right: -18px; bottom: -30px; padding: 8px 12px 8px 8px; border: 1px solid #424a51; border-radius: 17px; display: flex; align-items: center; gap: 11px; background: rgb(18 21 24 / 96%); box-shadow: 0 24px 60px rgb(0 0 0 / 48%); backdrop-filter: blur(12px); transform: rotateY(-2deg); }
.recording-preview img { width: 184px; height: 44px; border-radius: 13px; }
.recording-preview span { color: #9ea7a0; font-size: 9px; font-weight: 650; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }

.trust-strip { min-height: 112px; border-block: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip div { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.trust-strip div:first-child { padding-left: 0; }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { font-size: 16px; letter-spacing: -.02em; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.palette-strip { min-height: 110px; margin-top: 30px; padding: 18px 22px 18px 26px; border: 1px solid var(--line); border-radius: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: linear-gradient(135deg, var(--surface), var(--bg-soft)); box-shadow: inset 0 1px rgb(255 255 255 / 3%); }
.palette-copy { min-width: 0; display: flex; flex-direction: column; }
.palette-copy span { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.palette-copy strong { margin-top: 5px; font-size: 14px; letter-spacing: -.015em; }
.palette-controls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.palette-controls button { min-width: 112px; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; background: var(--surface-raised); color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 700; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s var(--ease); }
.palette-controls button:hover { color: var(--text); transform: translateY(-1px); }
.palette-controls button[aria-pressed="true"] { border-color: var(--accent); background: var(--surface-light); color: var(--text); }
.palette-controls i { width: 12px; height: 12px; border-radius: 50%; background: #cddad1; box-shadow: 7px 0 0 #27302b; }
.palette-controls button[data-theme="evergreen"] i { background: #a3dcbc; box-shadow: 7px 0 0 #1b3228; }
.palette-controls button[data-theme="ember"] i { background: #e0bf92; box-shadow: 7px 0 0 #3b2b1d; }

.section { padding-block: 140px; }
.section-heading { max-width: 760px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.kicker { margin: 0 0 18px; }
.section h2, .final-cta h2 { margin: 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.05; letter-spacing: -.052em; font-weight: 690; }
.section-heading > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--text-soft); font-size: 18px; }
.steps { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.step { position: relative; min-height: 340px; padding: 38px 38px 36px; border-right: 1px solid var(--line); }
.step:last-child { border: 0; }
.step-number { position: absolute; top: 27px; right: 28px; color: #4f5852; font-size: 11px; font-variant-numeric: tabular-nums; letter-spacing: .14em; }
.step-icon { width: 68px; height: 68px; margin-bottom: 52px; border: 1px solid var(--line-strong); border-radius: 18px; display: grid; place-items: center; background: var(--surface); box-shadow: inset 0 1px rgb(255 255 255 / 4%); }
.key-icon { border-bottom-width: 4px; color: var(--accent); font-size: 18px; font-weight: 750; }
.wave-icon { display: flex; align-items: center; justify-content: center; gap: 3px; }
.wave-icon i { width: 2px; height: 12px; border-radius: 2px; background: var(--text-soft); }
.wave-icon i:nth-child(2), .wave-icon i:nth-child(4) { height: 24px; }
.wave-icon i:nth-child(3) { height: 36px; background: var(--accent); }
.paste-icon span { position: relative; width: 30px; height: 36px; border: 1.5px solid var(--text-soft); border-radius: 6px; }
.paste-icon span::before { content: ""; position: absolute; top: -6px; left: 7px; width: 14px; height: 9px; border: 1.5px solid var(--accent); border-radius: 4px; background: var(--surface); }
.step h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.035em; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.product-section { position: relative; border-block: 1px solid rgb(255 255 255 / 4%); background: #0f1214; }
.product-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 75% 22%, rgb(var(--accent-rgb) / 5%), transparent 30%); }
.bento { position: relative; margin-top: 72px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.bento-card { position: relative; overflow: hidden; min-height: 380px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--surface-raised), #121518); box-shadow: 0 20px 60px rgb(0 0 0 / 16%); }
.bento-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 1px rgb(255 255 255 / 3%); }
.bento-card h3 { max-width: 510px; margin: 14px 0 15px; font-size: 31px; line-height: 1.15; letter-spacing: -.042em; }
.bento-card p { max-width: 540px; margin: 0; color: var(--text-soft); font-size: 15px; }
.bento-language { min-height: 500px; }
.bento-language .card-copy { position: relative; z-index: 2; max-width: 470px; }
.language-orbit { position: absolute; right: -50px; bottom: -85px; width: 360px; height: 360px; border: 1px solid #343d38; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, rgb(var(--accent-rgb) / 8%) 0, transparent 63%); }
.orbit-ring { position: absolute; inset: 52px; border: 1px dashed #465047; border-radius: 50%; animation: spin 22s linear infinite; }
.language-orbit span { position: absolute; width: 86px; height: 86px; border: 1px solid #4a554d; border-radius: 24px; display: grid; place-items: center; background: #1e2420; color: var(--text); font-size: 25px; font-weight: 760; box-shadow: 0 18px 40px rgb(0 0 0 / 30%); }
.language-orbit .lang-en { left: 40px; top: 105px; }
.language-orbit .lang-sl { right: 40px; top: 105px; }
.language-orbit i { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-style: normal; font-weight: 800; box-shadow: 0 0 0 12px rgb(var(--accent-rgb) / 5%); }
.language-orbit b { position: absolute; bottom: 52px; padding: 6px 12px; border: 1px solid #465047; border-radius: 99px; background: #171c19; color: var(--text-soft); font-size: 11px; letter-spacing: .04em; }
.bento-private { min-height: 500px; padding-top: 210px; }
.privacy-lock { position: absolute; top: 36px; right: 42px; width: 132px; height: 132px; border: 1px solid #3a443c; border-radius: 34px; display: grid; place-items: center; background: #1b211c; transform: rotate(4deg); }
.privacy-lock::before { content: ""; position: absolute; inset: -20px; border: 1px solid rgb(var(--accent-rgb) / 8%); border-radius: 42px; }
.privacy-lock svg { width: 62px; fill: none; stroke: var(--accent); stroke-width: 1.8; }
.bento-wave { min-height: 390px; }
.wave-stage { position: absolute; right: 0; bottom: 0; left: 0; height: 150px; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.wave-stage svg { width: 100%; height: 100%; overflow: visible; }
.wave-line { fill: none; stroke: var(--accent); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 8 5; animation: dash 12s linear infinite; }
.wave-back { stroke: rgb(var(--accent-rgb) / 12%); stroke-width: 18; filter: blur(9px); stroke-dasharray: none; }
.bento-tools { min-height: 720px; }
.tool-list { margin-top: 30px; border-top: 1px solid var(--line); }
.tool-list > div { min-height: 80px; padding-block: 15px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 16px; }
.tool-list i { width: 27px; color: #667067; font-size: 10px; font-style: normal; }
.tool-list span { display: flex; flex-direction: column; }
.tool-list strong { font-size: 14px; }
.tool-list small { margin-top: 2px; color: var(--muted); font-size: 12px; }

.interface-section { padding-bottom: 70px; }
.interface-showcase { margin-top: 66px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 28px; background: #111417; box-shadow: var(--shadow); }
.interface-tabs { padding: 12px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; background: var(--surface-raised); }
.interface-tabs button { min-height: 44px; border: 1px solid transparent; border-radius: 11px; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; font-weight: 700; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.interface-tabs button:hover { color: var(--text); }
.interface-tabs button[aria-selected="true"] { border-color: #465049; background: #242a26; color: var(--accent); }
.interface-stage { padding: 28px 28px 0; background: radial-gradient(circle at 70% 0, rgb(var(--accent-rgb) / 6%), transparent 40%), #0d1012; }
.shot-window { overflow: hidden; border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 16px 16px 0 0; background: #090b0d; box-shadow: 0 24px 70px rgb(0 0 0 / 36%); }
.shot-window > img { width: 100%; height: auto; }
.interface-caption { min-height: 92px; padding: 20px 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: .42fr 1fr; align-items: center; gap: 28px; background: #171b1f; }
.interface-caption strong { font-size: 15px; }
.interface-caption span { color: var(--muted); font-size: 13px; }
.capability-grid { margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); list-style: none; }
.capability-grid li { min-height: 94px; padding: 20px; display: flex; flex-direction: column; justify-content: center; background: #13171a; }
.capability-grid strong { font-size: 13px; }
.capability-grid span { margin-top: 3px; color: var(--muted); font-size: 11px; }

.privacy-section { padding-bottom: 40px; }
.privacy-panel { overflow: hidden; min-height: 550px; padding: 70px; border: 1px solid var(--line); border-radius: 30px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 72px; background: linear-gradient(120deg, #171b1f, #111416); box-shadow: var(--shadow); }
.privacy-copy p:not(.kicker) { margin: 24px 0; color: var(--text-soft); }
.privacy-details { margin: 0 0 24px; padding: 0; display: grid; gap: 9px; color: var(--muted); font-size: 12px; list-style: none; }
.privacy-details li { position: relative; padding-left: 17px; }
.privacy-details li::before { content: ""; position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-size: 14px; font-weight: 700; }
.privacy-flow { display: grid; grid-template-columns: 1fr .8fr 1fr .8fr 1fr; align-items: center; }
.flow-node { min-width: 0; height: 146px; padding: 18px 10px; border: 1px solid var(--line); border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #181c20; text-align: center; }
.flow-node.featured { border-color: #4b5945; background: #1c221d; transform: translateY(-12px); box-shadow: 0 22px 50px rgb(0 0 0 / 24%); }
.flow-node img { margin-bottom: 12px; }
.flow-icon { height: 34px; margin-bottom: 12px; color: var(--accent); font-size: 20px; font-weight: 700; }
.flow-node strong { font-size: 12px; }
.flow-node small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.flow-line { position: relative; height: 2px; background: #3b443e; }
.flow-line i { position: absolute; top: -2px; right: -1px; width: 6px; height: 6px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); transform: rotate(45deg); }
.flow-line span { position: absolute; top: 10px; left: 50%; color: #6f7872; font-size: 7px; white-space: nowrap; text-transform: uppercase; letter-spacing: .1em; transform: translateX(-50%); }

.install-section { padding-bottom: 160px; }
.install-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.requirements { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.requirements span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: var(--text-soft); font-size: 11px; }
.install-card { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 22px; background: #111417; box-shadow: var(--shadow); }
.terminal-bar { height: 52px; padding: 0 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: #191d21; }
.terminal-bar span { color: var(--muted); font-size: 12px; }
.terminal-bar i, .terminal-bar i::before, .terminal-bar i::after { width: 8px; height: 8px; border-radius: 50%; background: #414950; }
.terminal-bar i { position: relative; margin-right: 36px; }
.terminal-bar i::before, .terminal-bar i::after { content: ""; position: absolute; top: 0; }
.terminal-bar i::before { left: 14px; }.terminal-bar i::after { left: 28px; }
.terminal-line { min-height: 100px; padding: 30px 24px; display: flex; align-items: flex-start; gap: 10px; color: var(--text-soft); font-family: "Cascadia Code", Consolas, monospace; font-size: 13px; line-height: 1.8; }
.terminal-line span { color: var(--accent); user-select: none; }
.terminal-line code { overflow-wrap: anywhere; }
.select-command code { background: rgb(var(--accent-rgb) / 14%); }
.copy-button { width: calc(100% - 48px); min-height: 42px; margin: 0 24px 22px; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 9px; background: #1b2024; color: var(--text-soft); cursor: pointer; transition: background .2s ease, color .2s ease; }
.copy-button:hover { background: #22282d; color: var(--text); }
.copy-button i { position: relative; width: 13px; height: 13px; border: 1px solid currentColor; border-radius: 2px; }
.copy-button i::before { content: ""; position: absolute; top: -4px; left: -4px; width: 9px; height: 9px; border: 1px solid currentColor; border-radius: 2px; background: #1b2024; }
.copy-button.copied { color: var(--accent); }
.install-card ol { margin: 0; padding: 0 24px 25px; list-style: none; }
.install-card li { min-height: 48px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.install-card li > span { width: 24px; height: 24px; border: 1px solid #414a43; border-radius: 50%; display: grid; place-items: center; color: var(--accent); font-size: 9px; }
.install-card li p { margin: 0; color: var(--muted); font-size: 12px; }

.final-cta { position: relative; overflow: hidden; min-height: 600px; padding: 90px 40px; border: 1px solid var(--line); border-radius: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 100%, rgb(var(--accent-rgb) / 9%), transparent 45%), #13171a; text-align: center; }
.final-cta > p:not(.kicker) { max-width: 570px; margin: 22px 0 0; color: var(--text-soft); font-size: 18px; }
.centered { justify-content: center; }
.cta-signal { position: absolute; inset: auto 0 0; height: 120px; display: flex; align-items: flex-end; justify-content: center; gap: 18px; opacity: .18; mask-image: linear-gradient(transparent, black); }
.cta-signal i { width: 2px; height: 40%; background: var(--accent); }
.cta-signal i:nth-child(2), .cta-signal i:nth-child(8) { height: 60%; }
.cta-signal i:nth-child(3), .cta-signal i:nth-child(7) { height: 82%; }
.cta-signal i:nth-child(4), .cta-signal i:nth-child(6) { height: 100%; }
.cta-signal i:nth-child(5) { height: 68%; }

.site-footer { margin-top: 110px; border-top: 1px solid var(--line); background: #0b0d0f; }
.footer-grid { min-height: 220px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 60px; }
.footer-grid > div:first-child p { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 24px; color: var(--text-soft); font-size: 12px; }
.footer-links a:hover { color: var(--text); }
.footer-meta { color: var(--muted); font-size: 11px; text-align: right; }
.footer-meta span { color: #5f6762; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-one { transition-delay: .08s; }
.reveal-delay-two { transition-delay: .16s; }

.error-page { min-height: 100vh; display: grid; place-items: center; text-align: center; }
.error-page main { width: min(560px, calc(100vw - 40px)); padding: 60px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.error-page img { margin: 0 auto 26px; }
.error-page h1 { margin: 0; font-size: clamp(38px, 8vw, 62px); letter-spacing: -.05em; }
.error-page p:not(.kicker) { margin: 18px 0 28px; color: var(--muted); }

@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgb(var(--accent-rgb) / 0%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -300; } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(780px, 100%); margin-inline: auto; }
  .privacy-panel { padding: 50px; grid-template-columns: 1fr; }
  .privacy-copy { max-width: 680px; }
  .install-grid { gap: 55px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .nav { height: 68px; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(1) { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(-3px) rotate(-45deg); }
  .nav-links { position: absolute; top: 68px; right: 16px; left: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; display: none; flex-direction: column; align-items: stretch; gap: 4px; background: rgb(18 21 24 / 98%); box-shadow: 0 24px 60px rgb(0 0 0 / 40%); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; }
  .nav-links .button { margin-top: 6px; }
  .hero { min-height: auto; padding-block: 72px 70px; gap: 70px; }
  .hero h1 { font-size: clamp(50px, 12vw, 72px); }
  .recording-preview { right: 18px; }
  .palette-strip { align-items: flex-start; flex-direction: column; }
  .palette-controls { width: 100%; }
  .palette-controls button { justify-content: center; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div { padding-left: 20px; border-bottom: 1px solid var(--line); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(3), .trust-strip div:nth-child(4) { border-bottom: 0; }
  .section { padding-block: 105px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-icon { margin-bottom: 28px; }
  .bento { grid-template-columns: 1fr; }
  .privacy-flow { margin-top: 15px; }
  .install-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { padding-block: 60px; grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); --radius: 20px; }
  body { background-size: 52px 52px; }
  .ambient-one { left: 0; width: 100vw; transform: none; }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-lede { font-size: 17px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .app-window { border-radius: 14px; transform: none; }
  .window-actions { grid-template-columns: repeat(3, 30px); }
  .recording-preview { right: 8px; bottom: -30px; padding-right: 8px; }
  .recording-preview img { width: 150px; height: auto; }
  .recording-preview span { display: none; }
  .trust-strip { margin-top: 30px; }
  .trust-strip div { padding: 18px 12px; }
  .trust-strip div:first-child { padding-left: 12px; }
  .section h2, .final-cta h2 { font-size: clamp(37px, 12vw, 52px); }
  .section-heading > p:last-child { font-size: 16px; }
  .step { padding-inline: 24px; }
  .bento-card { min-height: 390px; padding: 28px; }
  .bento-card h3 { font-size: 27px; }
  .bento-language { min-height: 550px; }
  .language-orbit { right: 50%; bottom: -65px; width: 320px; height: 320px; transform: translateX(50%); }
  .language-orbit .lang-en { left: 24px; }
  .language-orbit .lang-sl { right: 24px; }
  .language-orbit b { bottom: 80px; }
  .bento-private { padding-top: 190px; }
  .privacy-lock { top: 30px; right: 30px; width: 112px; height: 112px; }
  .bento-tools { min-height: 780px; }
  .interface-showcase { margin-top: 44px; border-radius: 20px; }
  .interface-tabs { grid-template-columns: 1fr; }
  .interface-stage { padding: 10px 10px 0; }
  .shot-window { border-radius: 10px 10px 0 0; }
  .interface-caption { grid-template-columns: 1fr; gap: 5px; }
  .palette-controls { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; }
  .privacy-panel { padding: 36px 24px; gap: 45px; }
  .privacy-flow { grid-template-columns: 1fr; gap: 16px; }
  .flow-node { height: 112px; }
  .flow-node.featured { transform: none; }
  .flow-line { width: 2px; height: 30px; margin-inline: auto; }
  .flow-line i { top: auto; right: -2px; bottom: 0; transform: rotate(135deg); }
  .flow-line span { top: 7px; left: 14px; transform: none; }
  .install-section { padding-bottom: 110px; }
  .terminal-line { font-size: 11px; }
  .final-cta { min-height: 560px; padding-inline: 22px; }
  .footer-links { flex-wrap: wrap; }
  .error-page main { padding: 45px 24px; }
}

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

@media (prefers-contrast: more) {
  :root { --line: #56605a; --muted: #b7beb9; }
  .button-ghost { border-color: var(--text-soft); }
}
