/* Vizura Labs - Brand MRI */
@font-face { font-family: 'BDO Grotesk'; src: url('/assets/fonts/BDOGrotesk-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'BDO Grotesk'; src: url('/assets/fonts/BDOGrotesk-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'BDO Grotesk'; src: url('/assets/fonts/BDOGrotesk-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'BDO Grotesk'; src: url('/assets/fonts/BDOGrotesk-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }

:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-2: #0b0c10;
  --panel: rgba(14, 15, 20, 0.72);
  --panel-solid: #0d0e13;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --fg: #f4f5f7;
  --fg-2: #c9ccd3;
  --mute: #8b9099;
  --dim: #5c616b;
  --blue: #2f6bff;
  --blue-2: #7ea4ff;
  --blue-glow: rgba(47, 107, 255, 0.35);
  --ice: #d6e3ff;
  --pass: #7ea4ff;
  --warn: #f4c15d;
  --fail: #ff5d52;
  --r: 18px;
  --r-sm: 10px;
  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'BDO Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font); font-weight: 300;
  font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--blue); color: #fff; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
em { font-style: normal; }

/* ---------- Scene layers ---------- */
#scene { position: fixed; inset: 0; width: 100%; height: 100vh; z-index: 0; pointer-events: none; transition: opacity 0.8s var(--ease); }
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-3%,2%)} 40%{transform:translate(2%,-3%)} 60%{transform:translate(-2%,-1%)} 80%{transform:translate(3%,3%)} 100%{transform:translate(0,0)} }
main, .footer, .nav { position: relative; z-index: 2; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100; background: var(--bg); display: grid; grid-template-rows: auto 1fr auto auto;
  padding: var(--gutter); gap: 20px; transition: clip-path 1s var(--ease), visibility 0s 1s;
  clip-path: inset(0 0 0 0);
}
.loader.is-done { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader__row { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); font-weight: 500; }
.loader__count { align-self: end; font-size: clamp(96px, 22vw, 320px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.8; font-variant-numeric: tabular-nums; }
.loader__bar { height: 1px; background: var(--line); overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--blue); }

/* ---------- Cursor ---------- */
.cursor { opacity: 0; position: fixed; left: 0; top: 0; z-index: 90; pointer-events: none; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: var(--fg); mix-blend-mode: difference; transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), background 0.3s; display: grid; place-items: center; }
.cursor i { font-style: normal; font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #000; opacity: 0; transition: opacity 0.2s; }
.cursor.is-on { opacity: 1; }
.cursor.is-big { width: 74px; height: 74px; margin: -37px 0 0 -37px; background: #fff; }
.cursor.is-big i { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Type ---------- */
.label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg); }
.label--dim { color: var(--mute); }
.label--blue { color: var(--blue-2); }
.micro { font-size: 13px; color: var(--mute); margin: 12px 0 0; }
.accent { color: var(--blue-2); }
.big { font-size: clamp(40px, 6.6vw, 104px); line-height: 0.98; letter-spacing: -0.045em; font-weight: 500; margin: 0 0 28px; max-width: 16ch; text-wrap: balance; }
.mid { font-size: clamp(28px, 3.6vw, 52px); line-height: 1; letter-spacing: -0.035em; font-weight: 500; margin: 0 0 32px; max-width: 20ch; }
.lede { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.45; color: var(--fg-2); max-width: 46ch; margin: 0 0 48px; }
.source { font-size: 12px; color: var(--dim); margin-top: 28px; max-width: 70ch; }
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0.04em 0.02em 0.22em; margin: -0.04em -0.02em -0.22em; }
.split .w > span { display: inline-block; will-change: transform; }
.blink { animation: blink 1.1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

/* ---------- Buttons ---------- */
.btn {
  --h: 52px; position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: var(--h);
  padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap; transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, box-shadow 0.4s var(--ease);
  overflow: hidden; isolation: isolate;
}
.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--sm { --h: 40px; padding: 0 18px; font-size: 14px; }
.btn--xl { --h: 64px; padding: 0 34px; font-size: 17px; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 0 0 0 var(--blue-glow); }
.btn--blue:hover { box-shadow: 0 10px 40px -6px var(--blue-glow); background: #3c77ff; }
.btn--line { border-color: var(--line-2); color: var(--fg); background: rgba(255, 255, 255, 0.02); }
.btn--line:hover { border-color: var(--fg); background: var(--fg); color: #000; }
.btn--ghost { color: var(--fg-2); background: transparent; border-color: var(--line); }
.btn--ghost:hover { color: var(--fg); border-color: var(--line-2); }
.btn[disabled] { opacity: 0.55; pointer-events: none; }
.pill { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; border: 1px solid var(--blue); color: var(--blue-2); line-height: 1; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px var(--gutter); transition: transform 0.5s var(--ease), background 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled { background: rgba(5, 5, 7, 0.6); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand svg { height: 30px; width: auto; display: block; }
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--fg-2); }
.nav__links a { position: relative; transition: color 0.3s; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 960px) { .nav__links { display: none; } .nav__brand svg { height: 26px; } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(96px, 14vw, 200px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.sec-head { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 18px; margin-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto auto; padding: 96px var(--gutter) 28px; max-width: var(--maxw); margin: 0 auto; }
.hero__meta { display: flex; justify-content: space-between; gap: 16px; padding-top: 12px; }
.hero__title { align-self: end; margin: 0; font-size: clamp(50px, 9.4vw, 160px); line-height: 0.9; letter-spacing: -0.055em; font-weight: 500; }
.hero__title .line { position: relative; }
/* Line 2 sits above line 3: its descenders cut a clean knockout gap into the blue line where they overlap */
.hero__title .line:nth-child(2) { z-index: 2; }
.hero__title .line:nth-child(2) > span { text-shadow: 0.035em 0 0 var(--bg), -0.035em 0 0 var(--bg), 0 0.035em 0 var(--bg), 0 -0.035em 0 var(--bg), 0.025em 0.025em 0 var(--bg), -0.025em 0.025em 0 var(--bg), 0.025em -0.025em 0 var(--bg), -0.025em -0.025em 0 var(--bg); }
.hero__title .line:nth-child(3) { z-index: 1; }
.hero__title .accent { position: relative; display: inline-block; color: var(--blue-2);
  background: linear-gradient(100deg, var(--blue-2) 0%, var(--blue-2) 42%, #ffffff 49%, #dbe6ff 51%, var(--blue-2) 58%, var(--blue-2) 100%);
  background-size: 260% 100%; background-position: 100% 0; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: textScan 5.5s cubic-bezier(0.65, 0, 0.35, 1) 1.6s infinite; }
.hero__title .accent::after { content: ''; position: absolute; top: 8%; bottom: 4%; left: 0; width: 2px; background: #fff; box-shadow: 0 0 18px 4px rgba(47, 107, 255, 0.9), 0 0 60px 10px rgba(47, 107, 255, 0.45); opacity: 0; animation: beam 5.5s cubic-bezier(0.65, 0, 0.35, 1) 1.6s infinite; }
@keyframes textScan { 0% { background-position: 100% 0; } 45%, 100% { background-position: 0% 0; } }
@keyframes beam { 0% { left: 0; opacity: 0; } 4% { opacity: 1; } 41% { opacity: 1; } 45% { left: 100%; opacity: 0; } 100% { left: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero__title .accent, .hero__title .accent::after { animation: none; } }
.hero__title .line { display: block; overflow: hidden; padding: 0.02em 0.03em 0.16em; margin: -0.02em -0.03em -0.16em; }
.hero__title .line > span { display: inline-block; transform: translateY(105%); }
.hero__bottom { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-top: clamp(28px, 4vw, 56px); }
.hero__lead { margin: 0; max-width: 44ch; font-size: clamp(16px, 1.35vw, 19px); color: var(--fg-2); }
.hero__form .micro { text-align: right; }
.hero__foot { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.stat-inline { display: flex; align-items: center; gap: 14px; max-width: 520px; }
.stat-inline b { font-size: 34px; font-weight: 500; letter-spacing: -0.04em; color: var(--blue-2); }
.stat-inline span { font-size: 13px; color: var(--fg-2); line-height: 1.35; }
.stat-inline em { display: block; color: var(--dim); font-size: 11px; margin-top: 2px; }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.scroll-cue i { width: 1px; height: 40px; background: linear-gradient(var(--fg), transparent); animation: cue 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 860px) {
  .hero { padding-top: 88px; grid-template-rows: auto 1fr auto auto; }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__form .micro { text-align: left; }
  .scroll-cue { display: none; }
}

/* ---------- Fields ---------- */
.field { display: flex; align-items: center; gap: 0; height: 60px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(10, 11, 15, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0 6px 0 22px; transition: border-color 0.3s, box-shadow 0.4s var(--ease); }
.field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.18); }
.field input { flex: 1; min-width: 0; height: 100%; background: transparent; border: 0; outline: 0; font-size: 17px; color: var(--fg); padding: 0 8px 0 0; }
.field input::placeholder { color: var(--dim); }
.field__prefix { color: var(--dim); font-size: 17px; padding-right: 2px; user-select: none; }
.field--hero { height: 68px; padding-right: 7px; }
.field--hero .btn { --h: 54px; }
@media (max-width: 520px) {
  .field--hero { flex-wrap: wrap; height: auto; border-radius: 22px; padding: 8px; }
  .field--hero .field__prefix { padding-left: 12px; }
  .field--hero input { height: 50px; }
  .field--hero .btn { width: 100%; }
}

/* ---------- Marquee ---------- */
.marquee { position: relative; z-index: 2; overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; background: rgba(5, 5, 7, 0.4); backdrop-filter: blur(6px); }
.marquee__track { display: flex; gap: 36px; width: max-content; animation: marq 34s linear infinite; font-size: clamp(28px, 4vw, 56px); font-weight: 500; letter-spacing: -0.04em; color: var(--fg); }
.marquee__track i { font-style: normal; color: var(--blue); font-size: 0.6em; align-self: center; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Shift stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 36px 32px 8px 0; border-right: 1px solid var(--line); }
.stat + .stat { padding-left: 32px; }
.stat:last-child { border-right: 0; }
.stat__num { font-size: clamp(64px, 9vw, 150px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.9; margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.stat__num span { color: var(--fg); }
.stat p { color: var(--fg-2); max-width: 30ch; margin: 0; }
@media (max-width: 800px) {
  .stats { grid-template-columns: 1fr; }
  .stat, .stat + .stat { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- Hears ---------- */
.hears__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hears__col { position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3vw, 40px); background: var(--panel); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); overflow: hidden; }
.hears__col--after { border-color: rgba(47, 107, 255, 0.45); box-shadow: inset 0 0 80px -30px var(--blue-glow); }
.hears__col--after::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent); animation: sweep 3.2s var(--ease) infinite; }
@keyframes sweep { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(520px); opacity: 0; } }
.hears__quote { margin: 26px 0 32px; font-size: clamp(22px, 2.3vw, 34px); line-height: 1.12; letter-spacing: -0.03em; font-weight: 500; min-height: 3.4em; }
.tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.tag--fail { color: var(--fail); } .tag--pass { color: var(--blue-2); } .tag--warn { color: var(--warn); }
.readout { margin: 0; display: grid; border-top: 1px solid var(--line); }
.readout > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.readout dt { color: var(--mute); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 3px; }
.readout dd { margin: 0; font-weight: 500; }
.readout .bad { color: var(--fail); } .readout .good { color: var(--ice); }
@media (max-width: 860px) { .hears__grid { grid-template-columns: 1fr; } .readout > div { grid-template-columns: 110px 1fr; } }

/* ---------- How ---------- */
.steps { list-style: none; padding: 0; margin: 0 0 clamp(96px, 12vw, 160px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { padding: 28px 28px 0 0; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step__n { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--blue-2); }
.step h3 { font-size: clamp(28px, 2.6vw, 40px); font-weight: 500; letter-spacing: -0.035em; margin: 48px 0 14px; }
.step p { color: var(--fg-2); margin: 0; font-size: 15px; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(3) { padding-left: 0; border-left: 0; } .step { padding-bottom: 32px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step + .step { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); } .step h3 { margin-top: 20px; } }
.layers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.layer { background: rgba(8, 9, 12, 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 28px; min-height: 190px; display: flex; flex-direction: column; transition: background 0.4s; }
.layer:hover { background: rgba(20, 28, 52, 0.85); }
.layer__i { font-size: 12px; font-weight: 500; color: var(--blue-2); letter-spacing: 0.08em; }
.layer h4 { margin: auto 0 8px; font-size: 26px; font-weight: 500; letter-spacing: -0.03em; }
.layer p { margin: 0; color: var(--mute); font-size: 15px; }
@media (max-width: 1060px) { .layers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .layers { grid-template-columns: 1fr; } .layer { min-height: 140px; } }

/* ---------- Scanner console ---------- */
.scan__head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 960px) { .scan__head { grid-template-columns: 1fr; gap: 0; } }
.console { position: relative; border: 1px solid var(--line-2); border-radius: 24px; background: rgba(9, 10, 14, 0.82); backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%); box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(47, 107, 255, 0.08) inset; overflow: hidden; }
.console::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(800px 240px at 50% -10%, rgba(47, 107, 255, 0.14), transparent 70%); }
.console__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--line); }
.dots { display: flex; gap: 6px; } .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.intake { display: grid; grid-template-columns: 1fr 1fr; }
.intake__step { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 28px; border-bottom: 1px solid var(--line); }
.intake__step:nth-child(1) { border-right: 1px solid var(--line); }
.intake__step:nth-child(3) { grid-column: 1 / -1; }
.intake__n { font-size: 12px; font-weight: 500; color: var(--blue-2); letter-spacing: 0.08em; padding-top: 3px; }
.intake label, .label-like { display: block; font-size: 15px; font-weight: 500; margin-bottom: 12px; }
.intake label em, .label-like em { color: var(--mute); font-weight: 300; font-size: 13px; margin-left: 8px; }
.intake .field { height: 56px; padding-right: 20px; }
.intake .drop, .drop {
  position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 18px; row-gap: 4px; align-items: center;
  padding: 22px 24px; border: 1px dashed var(--line-2); border-radius: 16px; cursor: pointer; margin: 0 !important; font-weight: 300 !important;
  transition: border-color 0.3s, background 0.3s;
}
.drop:hover, .drop.is-over { border-color: var(--blue); background: rgba(47, 107, 255, 0.07); }
.drop.is-loaded { border-style: solid; border-color: rgba(126, 164, 255, 0.5); }
.drop__icon { grid-row: 1 / 3; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.04); color: var(--blue-2); }
.drop__icon svg { width: 28px; }
.drop__text { font-size: 15px; color: var(--fg-2); }
.drop__text b { color: var(--fg); font-weight: 500; }
.drop__note { font-size: 12px; color: var(--mute); }
.intake__go { grid-column: 1 / -1; padding: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.intake__go .micro { margin: 0; max-width: 46ch; }
.form-error { flex-basis: 100%; margin: 0; color: var(--fail); font-size: 14px; }
@media (max-width: 760px) {
  .intake { grid-template-columns: 1fr; }
  .intake__step { grid-template-columns: 1fr; gap: 10px; padding: 22px 18px; }
  .intake__step:nth-child(1) { border-right: 0; }
  .intake__go { padding: 22px 18px; } .intake__go .btn { width: 100%; }
  .intake .drop { grid-template-columns: 1fr; } .intake .drop .drop__icon { grid-row: auto; }
}

/* Run */
.run { display: grid; grid-template-columns: 320px 1fr; min-height: 420px; }
.run__visual { display: grid; place-items: center; align-content: center; gap: 18px; padding: 40px; border-right: 1px solid var(--line); }
.run__ring { position: relative; width: 200px; height: 200px; display: grid; place-items: center; }
.run__ring svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.run__ring circle { fill: none; stroke: var(--line); stroke-width: 2; }
.run__ring .run__arc { stroke: var(--blue); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 553; stroke-dashoffset: 553; transition: stroke-dashoffset 0.5s var(--ease); filter: drop-shadow(0 0 8px var(--blue)); }
.run__ring span { font-size: 44px; font-weight: 500; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.run__phase { margin: 0; color: var(--fg-2); font-size: 15px; text-align: center; min-height: 1.5em; }
.run__log { list-style: none; margin: 0; padding: 28px; font-size: 14px; font-variant-numeric: tabular-nums; display: flex; flex-direction: column; gap: 9px; max-height: 420px; overflow: hidden; mask-image: linear-gradient(transparent, #000 18%); -webkit-mask-image: linear-gradient(transparent, #000 18%); justify-content: flex-end; }
.run__log li { display: grid; grid-template-columns: 60px 18px 1fr; gap: 10px; color: var(--fg-2); animation: logIn 0.4s var(--ease) both; }
.run__log li time { color: var(--dim); }
.run__log li b { font-weight: 500; }
.run__log .ok b { color: var(--pass); } .run__log .warn b { color: var(--warn); } .run__log .fail b { color: var(--fail); }
@keyframes logIn { from { opacity: 0; transform: translateY(8px); } }
@media (max-width: 760px) { .run { grid-template-columns: 1fr; } .run__visual { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px; } .run__ring { width: 150px; height: 150px; } .run__log { max-height: 260px; padding: 20px 18px; font-size: 13px; } .run__log li { grid-template-columns: 50px 14px 1fr; } }

/* Result */
.res { padding: 0; }
.res__top { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(24px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.gauge { position: relative; width: clamp(150px, 16vw, 210px); aspect-ratio: 1; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge circle { fill: none; stroke-width: 6; }
.gauge .g-bg { stroke: var(--line); }
.gauge .g-arc { stroke: var(--blue); stroke-linecap: round; stroke-dasharray: 565.5; stroke-dashoffset: 565.5; transition: stroke-dashoffset 1.6s var(--ease); filter: drop-shadow(0 0 10px rgba(47, 107, 255, 0.6)); }
.gauge__num { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; }
.gauge__num b { font-size: clamp(52px, 5.6vw, 76px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.9; font-variant-numeric: tabular-nums; }
.gauge__num span { font-size: 12px; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }
.res__band .label { color: var(--blue-2); }
.res__band h3 { font-size: clamp(34px, 4vw, 60px); letter-spacing: -0.045em; line-height: 0.95; font-weight: 500; margin: 10px 0 12px; }
.res__band p { margin: 0; color: var(--fg-2); max-width: 48ch; }
.res__band .micro { margin-top: 12px; }
.res__actions { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 900px) { .res__top { grid-template-columns: auto 1fr; } .res__actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; } }
@media (max-width: 560px) { .res__top { grid-template-columns: 1fr; justify-items: start; } .gauge { width: 160px; } .res__actions .btn { flex: 1; } }

.res__grid { display: grid; grid-template-columns: 1.15fr 1fr; }
.res__grid > * { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.res__grid > *:nth-child(odd) { border-right: 1px solid var(--line); }
@media (max-width: 900px) { .res__grid { grid-template-columns: 1fr; } .res__grid > *:nth-child(odd) { border-right: 0; } }
.res h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin: 0 0 20px; display: flex; justify-content: space-between; gap: 12px; }

.mirror__quote { font-size: clamp(19px, 1.7vw, 24px); line-height: 1.3; letter-spacing: -0.02em; font-weight: 500; margin: 0 0 24px; color: var(--fg); }
.mirror__quote::before { content: '"'; color: var(--blue-2); }
.mirror__quote::after { content: '"'; color: var(--blue-2); }
.kv { display: grid; border-top: 1px solid var(--line); margin: 0; }
.kv > div { display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.kv dt { font-size: 12px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; padding-top: 3px; }
.kv dd { margin: 0; font-weight: 500; overflow-wrap: anywhere; }
.kv .none { color: var(--fail); font-weight: 400; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-size: 13px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--fg-2); }
.chip--fail { border-color: rgba(255, 93, 82, 0.4); color: #ffb0aa; }
.conf { margin-top: 22px; }
.conf__bar { height: 6px; border-radius: 6px; background: var(--line); overflow: hidden; margin-top: 8px; }
.conf__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-2)); transition: width 1.4s var(--ease); }
.reading { margin-top: 24px; padding: 18px 20px; border-radius: 14px; background: rgba(47, 107, 255, 0.08); border: 1px solid rgba(47, 107, 255, 0.3); }
.reading p { margin: 6px 0 0; }

.bars { display: grid; gap: 16px; }
.bar__row { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; }
.bar__row b { font-weight: 500; font-size: 16px; }
.bar__row span { font-size: 14px; color: var(--mute); font-variant-numeric: tabular-nums; }
.bar__row small { grid-column: 1 / -1; color: var(--dim); font-size: 13px; }
.bar { grid-column: 1 / -1; height: 8px; border-radius: 8px; background: var(--line); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: inherit; transition: width 1.3s var(--ease); }
.bar i.hi { background: linear-gradient(90deg, var(--blue), var(--blue-2)); }
.bar i.md { background: var(--warn); }
.bar i.lo { background: var(--fail); }

.bots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.bot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-radius: 12px; border: 1px solid var(--line); font-size: 14px; }
.bot small { display: block; color: var(--dim); font-size: 12px; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--pass { background: var(--pass); box-shadow: 0 0 10px var(--pass); } .dot--warn { background: var(--warn); box-shadow: 0 0 10px var(--warn); } .dot--fail { background: var(--fail); box-shadow: 0 0 10px var(--fail); }
.fw { margin-top: 12px; font-size: 14px; color: var(--fg-2); display: flex; gap: 10px; align-items: center; }
@media (max-width: 520px) { .bots { grid-template-columns: 1fr; } }

.fixes { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.fix { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.fix__n { font-size: 34px; font-weight: 500; letter-spacing: -0.05em; color: var(--blue-2); line-height: 1; }
.fix h5 { margin: 0 0 6px; font-size: 19px; font-weight: 500; letter-spacing: -0.02em; }
.fix p { margin: 0 0 8px; color: var(--fg-2); font-size: 15px; }
.fix .why { color: var(--mute); font-size: 14px; }
.fix .do { color: var(--fg); }
.fix .do::before { content: attr(data-label) '  '; color: var(--blue-2); font-weight: 500; }
.fix__lost { font-size: 13px; color: var(--fail); white-space: nowrap; }
@media (max-width: 560px) { .fix { grid-template-columns: 36px 1fr; } .fix__lost { grid-column: 2; } .fix__n { font-size: 24px; } }

.checks { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.checks__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
.check { display: grid; grid-template-columns: 14px 1fr auto; gap: 12px; align-items: start; padding: 13px 0; border-top: 1px solid var(--line); font-size: 14px; }
.check .dot { margin-top: 6px; }
.check b { font-weight: 500; display: block; font-size: 15px; }
.check span { color: var(--mute); display: block; margin-top: 2px; overflow-wrap: anywhere; }
.check .lock { font-size: 12px; color: var(--dim); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.check .lock svg { width: 12px; }
@media (max-width: 760px) { .checks__grid { grid-template-columns: 1fr; } }

.book { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 16px; }
.book > div { background: var(--panel-solid); padding: 16px; }
.book b { display: block; font-size: 26px; font-weight: 500; letter-spacing: -0.04em; }
.book span { font-size: 12px; color: var(--mute); }
@media (max-width: 560px) { .book { grid-template-columns: 1fr 1fr; } }

.probe { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.probe h3 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 500; letter-spacing: -0.035em; line-height: 1; margin: 0 0 14px; }
.probe p { color: var(--fg-2); margin: 0 0 20px; }
.probe__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.probe__prompt { font-size: 14px; color: var(--fg-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: rgba(255, 255, 255, 0.02); margin-bottom: 16px; }
.probe__self { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 18px; font-size: 14px; color: var(--fg-2); }
.seg { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; }
.seg button { border: 0; background: transparent; padding: 7px 14px; border-radius: 999px; cursor: pointer; font-size: 14px; color: var(--fg-2); }
.seg button.on { background: var(--fg); color: #000; }
@media (max-width: 860px) { .probe { grid-template-columns: 1fr; } }

.unlock { position: relative; padding: clamp(24px, 4vw, 52px); display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; background: linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(47, 107, 255, 0.02) 60%); }
.unlock h3 { font-size: clamp(30px, 3.4vw, 52px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.95; margin: 0 0 14px; }
.unlock p { color: var(--fg-2); margin: 0 0 16px; }
.unlock ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 15px; }
.unlock li::before { content: '→ '; color: var(--blue-2); }
.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lead .field { height: 54px; border-radius: 14px; padding: 0 16px; }
.lead .field input { font-size: 15px; }
.lead .full { grid-column: 1 / -1; }
.lead select { width: 100%; height: 54px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(10, 11, 15, 0.7); color: var(--fg); font: inherit; font-size: 15px; padding: 0 14px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mute) 50%), linear-gradient(135deg, var(--mute) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.lead select:focus { outline: 0; border-color: var(--blue); }
.lead .btn { width: 100%; }
.lead .micro { margin: 4px 0 0; }
.lead__ok { grid-column: 1 / -1; padding: 22px; border-radius: 16px; border: 1px solid rgba(126, 164, 255, 0.4); background: rgba(47, 107, 255, 0.08); }
.lead__ok b { font-size: 20px; font-weight: 500; display: block; margin-bottom: 6px; }
@media (max-width: 860px) { .unlock { grid-template-columns: 1fr; } .lead { grid-template-columns: 1fr; } }

.next { padding: clamp(22px, 3vw, 40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.next p { margin: 0; color: var(--fg-2); max-width: 60ch; }
.next b { color: var(--fg); font-weight: 500; }

/* ---------- Offers ---------- */
.offers__head { display: grid; justify-items: center; text-align: center; gap: 22px; margin-bottom: clamp(40px, 5vw, 64px); }
.offers__head .big { max-width: none; margin: 0; font-size: clamp(40px, 7.4vw, 120px); }
.offers__head .lede { margin: 0; max-width: 52ch; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 32px; border-radius: 22px; border: 1px solid var(--line); background: rgba(10, 11, 15, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: transform 0.5s var(--ease), border-color 0.4s; }
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan--feature { background: linear-gradient(180deg, rgba(47, 107, 255, 0.2), rgba(10, 11, 15, 0.9) 45%); border-color: rgba(47, 107, 255, 0.55); }
.plan.is-rec { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 30px 80px -30px var(--blue-glow); }
.plan__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 26px; }
.plan__tag { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.plan__rec { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--blue); color: #fff; padding: 5px 10px; border-radius: 999px; }
.plan__name { font-size: clamp(28px, 2.4vw, 36px); font-weight: 500; letter-spacing: -0.035em; line-height: 1; margin: 36px 0 10px; }
.plan__fit { color: var(--fg-2); margin: 0 0 28px; min-height: 3em; }
.plan__price { display: flex; align-items: baseline; gap: 6px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan__price b { font-size: clamp(44px, 4vw, 60px); font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.plan__price span, .plan__price small { color: var(--mute); font-size: 15px; }
.plan__time { font-size: 13px; color: var(--blue-2); margin: 8px 0 24px; }
.plan__list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; font-size: 15px; color: var(--fg-2); }
.plan__list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.plan__list li::before { content: ''; width: 14px; height: 14px; margin-top: 4px; border-radius: 50%; border: 1px solid var(--blue-2); background: radial-gradient(circle, var(--blue-2) 0 3px, transparent 3.5px); }
.plan__cta { margin-top: auto; width: 100%; }
@media (max-width: 1060px) { .plans { grid-template-columns: 1fr; max-width: 620px; } .plan__fit { min-height: 0; } }
.promise { margin-top: 16px; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding: 28px 32px; border-radius: 22px; border: 1px solid var(--line); background: rgba(10, 11, 15, 0.85); }
.promise__mark { font-size: clamp(54px, 6vw, 88px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.9; color: var(--blue-2); }
.promise h3 { margin: 0 0 6px; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.promise p { margin: 0; color: var(--fg-2); max-width: 62ch; }
.promise__slots { font-size: 14px; max-width: 26ch; border-left: 1px solid var(--line); padding-left: 28px; }
.promise__slots b { color: var(--fg); font-size: 20px; }
@media (max-width: 960px) { .promise { grid-template-columns: 1fr; gap: 14px; } .promise__slots { border-left: 0; padding-left: 0; max-width: none; } }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); }
.creds { list-style: none; padding: 0; margin: 0 0 40px; display: grid; border-top: 1px solid var(--line); }
.creds li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.creds b { font-size: 26px; font-weight: 500; letter-spacing: -0.04em; color: var(--blue-2); }
.creds span { color: var(--fg-2); }
.quote { margin: 0; padding: 28px; border-radius: 20px; border: 1px solid var(--line); background: rgba(10, 11, 15, 0.8); }
.quote blockquote { margin: 0 0 16px; font-size: 20px; line-height: 1.35; letter-spacing: -0.02em; font-weight: 500; }
.quote figcaption { color: var(--mute); font-size: 14px; }
@media (max-width: 960px) { .why__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__list { border-top: 1px solid var(--line); max-width: 1000px; margin-left: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; font-size: clamp(19px, 1.8vw, 26px); font-weight: 500; letter-spacing: -0.025em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { position: relative; width: 18px; height: 18px; flex: none; }
.qa summary i::before, .qa summary i::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; background: var(--fg); transition: transform 0.4s var(--ease); }
.qa summary i::after { transform: rotate(90deg); }
.qa[open] summary i::after { transform: rotate(0); }
.qa p { margin: 0 0 28px; color: var(--fg-2); max-width: 68ch; }

/* ---------- Footer ---------- */
.footer { padding: clamp(100px, 16vw, 220px) var(--gutter) 28px; max-width: var(--maxw); margin: 0 auto; }
.footer__cta { display: grid; gap: 28px; justify-items: start; margin-bottom: clamp(80px, 12vw, 160px); }
.giant { margin: 0; font-size: clamp(64px, 15vw, 250px); font-weight: 500; letter-spacing: -0.065em; line-height: 0.82; display: grid; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; padding-top: 28px; border-top: 1px solid var(--line); align-items: start; }
.footer__grid img { height: 36px; width: auto; }
.footer__grid nav { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 15px; color: var(--fg-2); }
.footer__grid nav a:hover { color: var(--fg); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal defaults (JS enhances) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); }
.reduced .reveal, .no-anim .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- Embed mode (scanner only, inside Framer) ---------- */
html:has(body.embed), .embed body, body.embed { background: transparent; }
body.embed #scene, body.embed .grain, body.embed .cursor, body.embed .nav, body.embed .marquee, body.embed .loader, body.embed .footer,
body.embed main > section:not(#scan) { display: none !important; }
body.embed .section.scan { padding: 0; max-width: none; }
body.embed .sec-head, body.embed .scan__head { display: none; }
body.embed .console { backdrop-filter: none; background: var(--bg-2); box-shadow: none; }

@media (prefers-reduced-motion: reduce) {
  .grain, .marquee__track, .hears__col--after::before, .scroll-cue i { animation: none; }
}

/* ---------- Phone polish ---------- */
@media (max-width: 560px) {
  .hero__title { font-size: clamp(46px, 13.2vw, 64px); line-height: 0.95; }
  .hero__title .accent::after { display: none; }
  .sec-head .label--dim, .hero__meta .label--dim { display: none; }
  .big { font-size: clamp(38px, 11vw, 52px); }
  .hears__quote { min-height: 0; }
  .marquee { padding: 16px 0; }
}

/* ---------- Layers extras ---------- */
.layer--os { background: linear-gradient(160deg, rgba(47, 107, 255, 0.22), rgba(8, 9, 12, 0.85) 70%); }
.layer--cta { background: var(--blue); color: #fff; }
.layer--cta:hover { background: #3c77ff; }
.layer--cta .layer__i, .layer--cta p { color: rgba(255, 255, 255, 0.8); }

/* ---------- What I build ---------- */
.build__head { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 960px) { .build__head { grid-template-columns: 1fr; gap: 0; } }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.duo__card { padding: clamp(26px, 3vw, 44px); border-radius: 22px; border: 1px solid var(--line); background: rgba(10, 11, 15, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.duo__card h3 { font-size: clamp(30px, 3.2vw, 48px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin: 18px 0 14px; }
.duo__card p { margin: 0; color: var(--fg-2); max-width: 44ch; }
.duo__card + .duo__card { border-color: rgba(47, 107, 255, 0.5); background: linear-gradient(160deg, rgba(47, 107, 255, 0.18), rgba(10, 11, 15, 0.88) 60%); }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cap { position: relative; display: flex; flex-direction: column; gap: 10px; min-height: 250px; padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: rgba(10, 11, 15, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); overflow: hidden; transition: border-color 0.4s, transform 0.5s var(--ease); }
.cap::after { content: ''; position: absolute; left: 0; right: 0; top: -2px; height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: 0; transition: opacity 0.4s; }
.cap:hover { border-color: rgba(47, 107, 255, 0.5); transform: translateY(-4px); }
.cap:hover::after { opacity: 1; animation: sweep 2.4s var(--ease) infinite; }
.cap--wide { grid-column: span 2; }
.cap--blue.cap--wide { grid-column: 1 / -1; }
.cap--blue { background: linear-gradient(135deg, rgba(47, 107, 255, 0.28), rgba(10, 11, 15, 0.9) 70%); border-color: rgba(47, 107, 255, 0.5); }
.cap__i { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--blue-2); }
.cap h4 { margin: auto 0 0; font-size: clamp(22px, 1.9vw, 28px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.cap p { margin: 0; color: var(--fg-2); font-size: 15px; max-width: 52ch; }
.cap .btn { align-self: flex-start; margin-top: 10px; }
.cap__tags { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cap__tags li { font-size: 12px; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--fg-2); }
@media (max-width: 1060px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .cap--wide { grid-column: auto; } .cap { min-height: 0; } .cap h4 { margin-top: 28px; } }
.outcome { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; padding: 28px 32px; border-radius: 22px; border: 1px solid var(--line); background: rgba(10, 11, 15, 0.85); }
.outcome p { margin: 0; max-width: 64ch; color: var(--fg-2); font-size: 17px; }
.outcome b { color: var(--fg); font-weight: 500; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
@media (max-width: 960px) { .contact__grid { grid-template-columns: 1fr; } }
.direct { display: grid; border-top: 1px solid var(--line); }
.direct__item { display: grid; grid-template-columns: 150px 1fr auto; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); transition: padding 0.4s var(--ease), color 0.3s; }
.direct__item b { font-size: clamp(18px, 1.6vw, 22px); font-weight: 500; letter-spacing: -0.02em; overflow-wrap: anywhere; }
.direct__item i { font-style: normal; color: var(--blue-2); transition: transform 0.4s var(--ease); }
.direct__item:hover { padding-left: 10px; }
.direct__item:hover i { transform: translate(3px, -3px); }
@media (max-width: 520px) { .direct__item { grid-template-columns: 1fr auto; } .direct__item .label { grid-column: 1 / -1; } }
.cform { display: grid; gap: 16px; padding: clamp(22px, 3vw, 36px); border-radius: 24px; border: 1px solid var(--line-2); background: rgba(9, 10, 14, 0.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.cform label, .cform legend { display: grid; gap: 8px; font-size: 14px; font-weight: 500; color: var(--fg-2); }
.cform .field { height: 54px; border-radius: 14px; padding: 0 16px; }
.cform .field input { font-size: 16px; }
.cform textarea { width: 100%; min-height: 120px; resize: vertical; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(10, 11, 15, 0.7); color: var(--fg); font: inherit; font-size: 16px; padding: 14px 16px; outline: 0; }
.cform textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.18); }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }
.chips-pick { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips-pick legend { margin-bottom: 8px; }
.chips-pick label { display: inline-flex; cursor: pointer; }
.chips-pick input { position: absolute; opacity: 0; pointer-events: none; }
.chips-pick span { padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line-2); font-weight: 400; color: var(--fg-2); transition: all 0.25s; }
.chips-pick input:checked + span { background: var(--fg); color: #000; border-color: var(--fg); }
.chips-pick input:focus-visible + span { box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.5); }
.cform .btn { width: 100%; }
.cform .form-ok { padding: 22px; border-radius: 16px; border: 1px solid rgba(126, 164, 255, 0.4); background: rgba(47, 107, 255, 0.08); }
.cform .form-ok b { display: block; font-size: 22px; font-weight: 500; margin-bottom: 6px; color: var(--fg); }

/* ---------- Result: blueprint, workflows, talk ---------- */
.blueprint { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.bp__intro { color: var(--fg-2); max-width: 70ch; margin: -6px 0 20px; }
.bp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bp__item { padding: 18px; border-radius: 14px; border: 1px solid var(--line); display: grid; gap: 6px; align-content: start; }
.bp__item b { font-weight: 500; font-size: 16px; display: flex; justify-content: space-between; gap: 10px; }
.bp__item span { font-size: 13px; color: var(--mute); }
.bp__st { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.bp__item.missing { border-color: rgba(255, 93, 82, 0.35); } .bp__item.missing .bp__st { color: var(--fail); }
.bp__item.partial { border-color: rgba(244, 193, 93, 0.35); } .bp__item.partial .bp__st { color: var(--warn); }
.bp__item.have .bp__st { color: var(--pass); }
@media (max-width: 900px) { .bp { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bp { grid-template-columns: 1fr; } }
.flows { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.flows__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.flow { position: relative; padding: 20px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); display: grid; gap: 8px; align-content: start; }
.flow b { font-weight: 500; font-size: 16px; }
.flow p { margin: 0; font-size: 14px; color: var(--fg-2); }
.flow .lock { font-size: 12px; color: var(--dim); display: flex; gap: 6px; align-items: center; margin-top: 6px; }
.flow .lock svg { width: 12px; }
@media (max-width: 1060px) { .flows__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .flows__grid { grid-template-columns: 1fr; } }
.talk { padding: clamp(22px, 3vw, 40px); border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.talk h3 { margin: 0 0 6px; font-size: clamp(24px, 2.4vw, 34px); font-weight: 500; letter-spacing: -0.03em; }
.talk p { margin: 0; color: var(--fg-2); }
.talk__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.table-note { font-size: 13px; color: var(--mute); }

/* ---------- Pain hook ---------- */
.pain .big { max-width: 20ch; }
.pain__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.pain__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.pain__list li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.35; color: var(--fg); }
.pain__list li span { font-size: 12px; font-weight: 500; color: var(--fail); letter-spacing: 0.08em; padding-top: 5px; }
.pain__turn { position: sticky; top: 110px; padding: clamp(24px, 3vw, 40px); border-radius: 22px; border: 1px solid rgba(47, 107, 255, 0.45); background: linear-gradient(160deg, rgba(47, 107, 255, 0.18), rgba(10, 11, 15, 0.9) 60%); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.pain__big { font-size: clamp(28px, 2.8vw, 42px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 18px; }
.pain__turn p:not(.pain__big) { color: var(--fg-2); margin: 0 0 24px; }
@media (max-width: 900px) { .pain__grid { grid-template-columns: 1fr; } .pain__turn { position: static; } }

/* ---------- Kit ---------- */
.kit__head { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 960px) { .kit__head { grid-template-columns: 1fr; gap: 0; } }
.kit__table { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(9, 10, 14, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.kit__row { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 24px; padding: 20px 28px; border-top: 1px solid var(--line); align-items: baseline; transition: background 0.3s; }
.kit__row:hover { background: rgba(47, 107, 255, 0.06); }
.kit__row b { font-weight: 500; font-size: 18px; letter-spacing: -0.02em; }
.kit__row span:nth-child(2) { color: var(--mute); text-decoration: line-through; text-decoration-color: rgba(255, 93, 82, 0.6); }
.kit__row span:nth-child(3) { color: var(--fg); }
.kit__row--head { border-top: 0; padding-top: 16px; padding-bottom: 16px; }
.kit__row--head span { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute) !important; text-decoration: none !important; }
.kit__row--head span:last-child { color: var(--blue-2) !important; }
@media (max-width: 760px) {
  .kit__row { grid-template-columns: 1fr; gap: 4px; padding: 18px 20px; }
  .kit__row--head { display: none; }
  .kit__row span:nth-child(2) { font-size: 14px; }
}
.guard { margin-top: 16px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding: 28px 32px; border-radius: 22px; border: 1px solid rgba(47, 107, 255, 0.45); background: rgba(10, 11, 15, 0.88); }
.guard__mark { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: rgba(47, 107, 255, 0.14); color: var(--blue-2); }
.guard__mark svg { width: 34px; }
.guard h3 { margin: 0 0 6px; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.guard p { margin: 0; color: var(--fg-2); max-width: 80ch; }
@media (max-width: 560px) { .guard { grid-template-columns: 1fr; } }

/* ---------- Proof ---------- */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(40px, 6vw, 72px); }
.proof .quote blockquote { font-size: 18px; }
@media (max-width: 960px) { .proof { grid-template-columns: 1fr; } }
.logos { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 14px 32px; }
.logos ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 32px; }
.logos li { font-size: clamp(17px, 1.5vw, 22px); font-weight: 500; letter-spacing: -0.02em; color: var(--fg-2); }

/* ---------- Language switcher (matches vizurastudio.hr EN / HR pills) ---------- */
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.lang a { padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--fg-2); transition: all 0.25s; }
.lang a:hover { border-color: var(--fg); color: var(--fg); }
.lang a.is-on { background: var(--fg); color: #000; border-color: var(--fg); }
.lang span { color: var(--dim); }
@media (max-width: 560px) { .nav__right .btn { display: none; } .lang a { padding: 4px 9px; } }
