/* ============================================================
   Blaminhor Essentials — landing page styles
   Ported from the high-fidelity design handoff (dark + light).
   Tokens live on html[data-theme]; layout is shared by every locale.
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

:root {
  --head-font: "Space Grotesk";
  --accent: #3b82f6;
  --maxw: 1200px;
  --star: #f5b400;
}

/* ---------- THEME TOKENS ---------- */
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #06090f;
  --bg-2: #0b1019;
  --bg-3: #0f1726;
  --card: #0c121d;
  --card-hi: #111a2a;
  --border: rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.16);
  --text: #eef2f8;
  --text-2: #c2cce0;
  --muted: #8593ad;
  --tick: var(--accent);
  --grid-line: rgba(120,150,210,0.10);
  --glow: 0.55;
}
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f2f5fb;
  --bg-2: #ffffff;
  --bg-3: #eef2f9;
  --card: #ffffff;
  --card-hi: #ffffff;
  --border: rgba(15,23,42,0.10);
  --border-hi: rgba(15,23,42,0.18);
  --text: #0c1322;
  --text-2: #33405a;
  --muted: #5c6880;
  --tick: var(--accent);
  --grid-line: rgba(40,70,130,0.07);
  --glow: 0.28;
  --accent: #2a6fdb;
}

body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background-attachment: fixed;
}
html[data-theme="dark"] body {
  background:
    radial-gradient(1100px 600px at 78% -8%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(99,102,241,0.10), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}
html[data-theme="light"] body {
  background:
    radial-gradient(1000px 560px at 80% -10%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- TYPE ---------- */
h1, h2, h3 { font-family: var(--head-font), "Space Grotesk", sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.accent-text { color: var(--accent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Space Mono", monospace; font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-2);
}
.eyebrow.muted { color: var(--muted); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent); }
.eyebrow .line { width: 26px; height: 1px; background: var(--border-hi); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--head-font); font-weight: 600; font-size: 14.5px;
  padding: 11px 18px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 13px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 92%, white), var(--accent));
  box-shadow: 0 8px 24px -8px color-mix(in oklab, var(--accent) 70%, transparent), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px color-mix(in oklab, var(--accent) 75%, transparent), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost { color: var(--text); background: color-mix(in oklab, var(--card) 70%, transparent); border-color: var(--border-hi); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.btn .arrow { transition: transform .2s ease; }
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* ---------- LANGUAGE ALERT ---------- */
.language-alert {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 9px 44px 9px 18px; position: relative;
  background: color-mix(in oklab, var(--accent) 14%, var(--bg-2));
  border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text-2);
}
.language-alert__link { color: var(--accent); font-weight: 600; }
.language-alert__link:hover { text-decoration: underline; }
.language-alert__close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: var(--muted); font-size: 20px; line-height: 1; cursor: pointer; }
.language-alert__close:hover { color: var(--text); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 26px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark img { width: 30px; height: 30px; object-fit: contain; }
.brand-text { font-family: var(--head-font); font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; }
.brand-sub { color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 28px; margin-left: 12px; }
.nav-links a { font-size: 14.5px; color: var(--text-2); font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .2s ease; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.theme-toggle { display: grid; place-items: center; width: 38px; height: 38px; color: var(--text-2);
  background: none; border: 1px solid var(--border); border-radius: 9px; cursor: pointer; transition: border-color .2s ease, color .2s ease; }
.theme-toggle:hover { border-color: var(--border-hi); color: var(--text); }
.theme-toggle svg { width: 18px; height: 18px; }
html[data-theme="dark"] .theme-toggle__moon { display: none; }
html[data-theme="light"] .theme-toggle__sun { display: none; }

.lang { position: relative; }
.lang-btn { font-family: inherit; font-size: 13.5px; color: var(--text-2); background: none; border: 1px solid var(--border); border-radius: 9px; padding: 8px 11px; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.lang-btn:hover { border-color: var(--border-hi); color: var(--text); }
.lang-btn .caret { font-size: 9px; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); background: var(--card); border: 1px solid var(--border-hi); border-radius: 12px; padding: 6px; min-width: 178px; box-shadow: 0 20px 50px -14px rgba(0,0,0,0.6); display: none; gap: 1px; max-height: 70vh; overflow: auto; }
.lang.open .lang-menu { display: grid; }
.lang-item { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; font-family: inherit; font-size: 13.5px; color: var(--text-2); background: none; border: 0; padding: 9px 11px; border-radius: 8px; cursor: pointer; }
.lang-item:hover { background: var(--bg-3); color: var(--text); }
.lang-item.active { color: var(--text); font-weight: 600; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
}
.hero-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 26px clamp(56px, 7vw, 104px);
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-title { font-size: clamp(40px, 6.4vw, 76px); margin: 22px 0 0; }
.hero-lead { color: var(--text-2); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; margin-top: 22px; max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { display: flex; align-items: center; gap: 22px; margin-top: 40px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: var(--head-font); font-size: 26px; font-weight: 600; line-height: 1; }
.hero-stat span { font-size: 12.5px; color: var(--muted); margin-top: 5px; font-family: "Space Mono", monospace; letter-spacing: 0.04em; }
.hero-divider { width: 1px; height: 34px; background: var(--border); }

.hero-visual { position: relative; aspect-ratio: 1 / 1; max-width: 540px; margin-left: auto; width: 100%; }
.hero-glow {
  position: absolute; inset: -8%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 60%, transparent), transparent 62%);
  filter: blur(46px); opacity: var(--glow); z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: var(--glow); } 50% { transform: scale(1.06); opacity: calc(var(--glow) * 1.25); } }
.hero-frame {
  position: relative; z-index: 1; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: 0 40px 90px -34px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip {
  position: absolute; z-index: 2; font-family: "Space Mono", monospace; font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text); padding: 7px 12px; border-radius: 9px;
  background: color-mix(in oklab, var(--card) 78%, transparent); border: 1px solid var(--border-hi);
  backdrop-filter: blur(8px); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.6);
  animation: float 5s ease-in-out infinite;
}
.hero-chip::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 7px; vertical-align: middle; }
.chip-tl { top: 7%; left: -4%; } .chip-tr { top: 14%; right: -5%; animation-delay: .8s; }
.chip-bl { bottom: 16%; left: -6%; animation-delay: 1.6s; } .chip-br { bottom: 7%; right: -3%; animation-delay: 2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- SECTION HEADS ---------- */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section-title { font-size: clamp(30px, 4.4vw, 52px); margin: 16px 0 0; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 14px; max-width: 540px; }

/* ---------- VALUES ---------- */
.values { padding: clamp(60px, 8vw, 110px) 0 clamp(20px, 4vw, 40px); }
.values-grid { max-width: var(--maxw); margin: 44px auto 0; padding: 0 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 30px 26px 28px; overflow: hidden; transition: border-color .2s ease, transform .2s ease;
}
.value-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity .25s ease; }
.value-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.value-card:hover::before { opacity: 1; }
.value-k { font-family: "Space Mono", monospace; font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.value-card h3 { font-size: 21px; margin: 16px 0 10px; }
.value-card p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* ---------- FEATURES ---------- */
.features { padding: clamp(60px, 8vw, 110px) 0; }
.features-controls {
  max-width: var(--maxw); margin: 38px auto 0; padding: 0 26px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-family: inherit; font-size: 13.5px; font-weight: 500; color: var(--text-2);
  background: var(--card); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.chip:hover { border-color: var(--border-hi); color: var(--text); }
.chip.active { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--accent) 70%, transparent); }
.chip-count { font-family: "Space Mono", monospace; font-size: 11px; opacity: .7; }
.chip.active .chip-count { opacity: .9; }
.search { position: relative; display: flex; align-items: center; min-width: 230px; flex: 0 1 280px; }
.search .search-ico { position: absolute; left: 13px; width: 17px; height: 17px; color: var(--muted); pointer-events: none; }
.search input {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--card); border: 1px solid var(--border); border-radius: 11px;
  padding: 11px 34px 11px 38px; outline: none; transition: border-color .2s ease;
}
.search input::placeholder { color: var(--muted); }
.search input:focus { border-color: var(--accent); }
.search-clear { position: absolute; right: 10px; background: none; border: 0; color: var(--muted); font-size: 19px; cursor: pointer; line-height: 1; }
.search-clear:hover { color: var(--text); }

.features-grid {
  max-width: var(--maxw); margin: 26px auto 0; padding: 0 26px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 22px; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-hi); background: var(--card-hi); }
.feature-card.featured { border-color: color-mix(in oklab, var(--accent) 45%, var(--border)); background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 8%, var(--card)), var(--card)); }
.feature-top { display: flex; align-items: center; justify-content: space-between; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, transparent); border: 1px solid color-mix(in oklab, var(--accent) 28%, var(--border)); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-badge { font-family: "Space Mono", monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); padding: 4px 9px; border-radius: 999px; background: color-mix(in oklab, var(--accent) 14%, transparent); border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent); }
.feature-badge--beta { --beta: #8b5cf6; color: var(--beta); background: color-mix(in oklab, var(--beta) 14%, transparent); border-color: color-mix(in oklab, var(--beta) 32%, transparent); }
.feature-title { font-size: 18.5px; margin: 17px 0 6px; }
.feature-tag { color: var(--text-2); font-size: 14px; line-height: 1.5; }
.feature-points { list-style: none; margin: 16px 0 0; display: grid; gap: 8px; padding-top: 15px; border-top: 1px solid var(--border); }
.feature-points li { display: flex; gap: 9px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.feature-points .tick { color: var(--tick); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.feature-points .more { color: var(--accent); font-family: "Space Mono", monospace; font-size: 12px; padding-left: 1px; cursor: pointer; }
.feature-card[hidden] { display: none; }
.empty { max-width: var(--maxw); margin: 40px auto; padding: 0 26px; text-align: center; color: var(--muted); font-size: 16px; }

/* ---------- SCREENSHOTS ---------- */
.shots { padding: clamp(50px, 7vw, 96px) 0; }
.shots-stage {
  max-width: var(--maxw); margin: 44px auto 0; padding: 0 26px;
  display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: center;
}
.shots-viewer { position: relative; }
.shots-glow { position: absolute; inset: 6% 10%; background: radial-gradient(circle at 50% 40%, color-mix(in oklab, var(--accent) 55%, transparent), transparent 65%); filter: blur(58px); opacity: calc(var(--glow) * 0.8); z-index: 0; pointer-events: none; }
.browser {
  position: relative; z-index: 1; border-radius: 14px; overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--border-hi); background: var(--card);
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.browser:hover { transform: translateY(-4px); box-shadow: 0 52px 110px -38px rgba(0,0,0,0.7); }
.browser-bar { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: var(--bg-3); border-bottom: 1px solid var(--border); }
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-hi); }
.browser-bar .dots i:nth-child(1) { background: #ff5f57; } .browser-bar .dots i:nth-child(2) { background: #febc2e; } .browser-bar .dots i:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; display: flex; align-items: center; gap: 7px; font-family: "Space Mono", monospace; font-size: 12px; color: var(--muted); background: var(--card); border: 1px solid var(--border); border-radius: 7px; padding: 6px 11px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.url-lock { width: 13px; height: 13px; color: #28c840; flex-shrink: 0; }
.browser-zoom { font-family: "Space Mono", monospace; font-size: 11.5px; color: var(--text-2); white-space: nowrap; }
.browser-body { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #334155; }
.browser-body img { width: 100%; height: 100%; object-fit: contain; display: block; animation: shotin .5s ease; }
@keyframes shotin { from { opacity: 0; } to { opacity: 1; } }

.shots-side { display: flex; flex-direction: column; gap: 26px; }
.shots-step { font-family: "Space Mono", monospace; font-size: 12.5px; color: var(--accent); letter-spacing: 0.1em; }
.shots-caption h3 { font-size: clamp(22px, 2.4vw, 28px); margin: 12px 0 12px; }
.shots-caption p { color: var(--text-2); font-size: 15.5px; line-height: 1.65; }
.shots-thumbs { max-width: var(--maxw); margin: 30px auto 0; padding: 0 26px; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.thumb { display: flex; align-items: center; gap: 13px; text-align: left; cursor: pointer; padding: 9px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); transition: border-color .18s ease, background .18s ease; font-family: inherit; }
.thumb:hover { border-color: var(--border-hi); }
.thumb.active { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 8%, var(--card)); }
.thumb img { width: 84px; height: 52px; object-fit: cover; object-position: top center; border-radius: 7px; border: 1px solid var(--border); flex-shrink: 0; }
.thumb span { font-size: 13.5px; font-weight: 600; color: var(--text-2); font-family: var(--head-font); }
.thumb.active span { color: var(--text); }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(2,5,12,0.86); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 40px; cursor: zoom-out; animation: shotin .2s ease; }
.lightbox[hidden] { display: none; }
.lightbox-close { position: fixed; top: 22px; right: 28px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,0.16); }
.lightbox-fig { max-width: 1100px; width: 100%; max-height: 90vh; overflow: auto; cursor: default; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); }
.lightbox-fig img { width: 100%; display: block; }
.lightbox-fig figcaption { font-size: 14px; color: #cdd6e6; background: #0b1019; padding: 14px 18px; }

/* ---------- REVIEWS ---------- */
.reviews { padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 96px); }
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars .star { color: var(--star); }
.stars .star.empty { color: var(--border-hi); }
.stars--lg { font-size: 22px; }
.reviews-summary {
  max-width: var(--maxw); margin: 40px auto 0; padding: 18px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  width: calc(100% - 52px);
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  transition: border-color .2s ease;
}
.reviews-summary:hover { border-color: var(--border-hi); }
.reviews-summary__label { color: var(--text-2); font-size: 15px; }
.reviews-summary__cta { color: var(--accent); font-family: "Space Mono", monospace; font-size: 12.5px; letter-spacing: 0.04em; margin-left: auto; }
.reviews-grid {
  max-width: var(--maxw); margin: 18px auto 0; padding: 0 26px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.review-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.review-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.review-card .stars { font-size: 16px; }
.review-quote { color: var(--text-2); font-size: 15px; line-height: 1.6; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 10px; font-family: "Space Mono", monospace; font-size: 12.5px; color: var(--muted); }
.review-meta .review-author { color: var(--text); font-weight: 700; }
.review-meta .review-date { margin-left: auto; }

/* ---------- CTA ---------- */
.cta { padding: clamp(40px, 6vw, 80px) 26px clamp(60px, 8vw, 100px); }
.cta-card {
  position: relative; max-width: 900px; margin: 0 auto; text-align: center; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--border-hi); border-radius: 26px;
  padding: clamp(44px, 6vw, 72px) 30px;
}
.cta-glow { position: absolute; left: 50%; top: -40%; transform: translateX(-50%); width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 50%, transparent), transparent 60%); filter: blur(60px); opacity: var(--glow); pointer-events: none; }
.cta-card h2 { position: relative; font-size: clamp(28px, 4vw, 44px); }
.cta-card p { position: relative; color: var(--text-2); font-size: 17px; margin: 16px auto 30px; max-width: 460px; }
.cta-card .btn { position: relative; }
.cta-note { position: relative; margin-top: 18px; font-family: "Space Mono", monospace; font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); background: color-mix(in oklab, var(--bg-2) 60%, transparent); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 48px 26px 30px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin-top: 14px; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-links a { color: var(--text-2); font-size: 14.5px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 18px 26px 30px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; }
.footer-credit:hover { color: var(--accent); }
.footer-tag { font-family: "Space Mono", monospace; letter-spacing: 0.04em; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 8px auto 0; order: -1; }
  .values-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .shots-stage { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 8px 26px 18px; transform: translateY(-130%); transition: transform .25s ease; z-index: 49; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .features-controls { flex-direction: column; align-items: stretch; }
  .search { flex: 1 1 auto; }
  .hero-chip { display: none; }
  .reviews-summary__cta { margin-left: 0; width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }
