:root {
  --acid: #b7ff38;
  --acid-bright: #c9ff6d;
  --bg: #0a0a0a;
  --bg-soft: #11110f;
  --surface: #151513;
  --surface-light: #edede6;
  --ink: #f1f1eb;
  --ink-dark: #11110f;
  --muted: #a1a19a;
  --muted-dark: #62625e;
  --line: rgba(241, 241, 235, 0.16);
  --line-strong: rgba(241, 241, 235, 0.3);
  --error: #ff8e8e;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: min(1320px, calc(100% - 64px));
  --radius: 0;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}

[id] { scroll-margin-top: 92px; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
body *::selection { background: var(--acid); color: var(--ink-dark); }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.work a:focus-visible,
.process a:focus-visible,
.process summary:focus-visible,
.faq a:focus-visible,
.faq summary:focus-visible { outline-color: var(--ink-dark); }

.closing-action a:focus-visible { outline-color: #fff; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(7rem, 12vw, 11rem) 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  background: var(--acid);
  color: var(--ink-dark);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 82px;
  padding: 0 max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: min-height 200ms ease, background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: var(--line);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  text-decoration: none;
}

.brand-logo { display: block; width: 120px; height: auto; }

.desktop-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--acid);
  transition: transform 200ms ease;
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  padding: 0.8rem 0.9rem 0.8rem 1.15rem;
  justify-self: end;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--acid);
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(183,255,56,0.24);
  color: var(--ink-dark);
  font-size: 0.79rem;
  font-weight: 780;
  letter-spacing: 0.02em;
  text-decoration: none;
  animation: cta-breathe 2.8s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.header-cta .cta-arrow { display: grid; width: 30px; height: 30px; place-items: center; background: var(--ink-dark); color: var(--acid); font-size: 1rem; transition: transform 180ms ease; }
.header-cta:hover { transform: translateY(-2px); background: var(--acid-bright); box-shadow: 0 12px 32px rgba(183,255,56,0.2); }
.header-cta:hover .cta-arrow { transform: rotate(45deg); }

.menu-button, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 78px 78px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 24%, transparent 77%, var(--bg) 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: -15rem;
  right: -8rem;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,255,56,0.16), rgba(183,255,56,0.04) 38%, transparent 68%);
  filter: blur(15px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 82px - 62px);
  padding: clamp(4rem, 8vh, 7rem) 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
}

.eyebrow, .kicker {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow { display: flex; max-width: 37rem; align-items: center; gap: 0.8rem; }
.eyebrow span { flex: 0 0 28px; height: 1px; background: var(--acid); }
.kicker { color: var(--acid); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(4.1rem, 7.1vw, 7.4rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

h1 em, h2 span, .lead-copy h2 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}
h1 em { white-space: nowrap; }

.hero-lead {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: #c3c3bd;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.hero-actions { display: flex; margin-top: 2.4rem; align-items: center; gap: 1.6rem; }
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0.95rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border: 1px solid var(--acid);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button-primary { background: var(--acid); color: var(--ink-dark); }
.button-primary:hover { transform: translateY(-2px); background: var(--acid-bright); box-shadow: 0 12px 38px rgba(183,255,56,0.13); }

.text-link {
  display: inline-flex;
  padding: 0.4rem 0;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}
.text-link span { color: var(--acid); }
.text-link:hover { border-color: var(--acid); color: var(--acid); }

.hero-guarantee {
  position: relative;
  display: grid;
  max-width: 39rem;
  margin-top: 1.35rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(183,255,56,0.82);
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
  background: linear-gradient(110deg, rgba(183,255,56,0.11), rgba(17,17,15,0.94) 46%);
  box-shadow: 0 0 0 1px rgba(183,255,56,0.08), 0 18px 46px rgba(0,0,0,0.3), inset 0 0 34px rgba(183,255,56,0.035);
}
.hero-guarantee::after { position: absolute; top: 0; right: 0; width: 34%; height: 2px; content: ""; background: linear-gradient(90deg, transparent, var(--acid)); }
.hero-guarantee-mark { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(183,255,56,0.45); background: rgba(183,255,56,0.1); color: var(--acid); font-size: 1rem; font-weight: 800; }
.hero-capacity-status { display: flex; margin-bottom: 0.48rem; align-items: center; gap: 0.48rem; color: var(--acid); font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.075em; text-transform: uppercase; }
.hero-capacity-status i { position: relative; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px rgba(183,255,56,0.9); animation: capacity-led 1.7s ease-in-out infinite; }
.hero-capacity-status i::after { position: absolute; inset: -5px; border: 1px solid rgba(183,255,56,0.45); border-radius: 50%; content: ""; animation: capacity-ring 1.7s ease-out infinite; }
.hero-guarantee strong { display: block; margin-bottom: 0.38rem; font-size: 1rem; letter-spacing: -0.025em; line-height: 1.25; }
.hero-guarantee strong em { color: var(--acid); font-style: normal; }
.hero-guarantee p { margin: 0; color: #b8b8b1; font-size: 0.76rem; line-height: 1.55; }
.hero-guarantee small { display: block; margin-top: 0.8rem; padding-top: 0.68rem; border-top: 1px solid rgba(183,255,56,0.18); color: #a9a9a2; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.025em; line-height: 1.5; text-transform: uppercase; }
.hero-guarantee small b { margin-right: 0.38rem; color: var(--ink); font-weight: 700; }

.promise-note {
  max-width: 37rem;
  margin: 1.6rem 0 0;
  color: #9a9a93;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.55;
}
.promise-note span { color: var(--acid); }

.hero-visual { position: relative; width: 100%; max-width: 560px; min-height: 570px; justify-self: end; }
.hero-art { isolation: isolate; opacity: 0.88; }
.hero-art::before { position: absolute; z-index: -1; inset: 4% -18% -4% 0; content: ""; background: radial-gradient(circle at 62% 48%, rgba(183,255,56,0.12), transparent 53%); filter: blur(4px); }
.hero-art-grid { position: absolute; inset: 8% -8% 4% 0; opacity: 0.23; background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at 58% 48%, #000 8%, transparent 67%); }
.hero-art-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-art-orbit-outer { top: 1%; right: -30%; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,0.07); }
.hero-art-orbit-inner { top: 14%; right: -14%; width: 440px; height: 440px; border: 1px solid rgba(183,255,56,0.22); box-shadow: inset 0 0 55px rgba(183,255,56,0.025); }
.hero-art-lines { position: absolute; z-index: 2; top: 25%; right: -8%; display: grid; width: 92%; gap: 18px; transform: rotate(-34deg); transform-origin: center; }
.hero-art-lines i { display: block; height: 1px; justify-self: end; background: linear-gradient(90deg, transparent, rgba(183,255,56,0.2) 22%, rgba(183,255,56,0.76)); box-shadow: 18px 0 22px rgba(183,255,56,0.12); }
.hero-art-lines i:nth-child(1) { width: 54%; }
.hero-art-lines i:nth-child(2) { width: 68%; }
.hero-art-lines i:nth-child(3) { width: 82%; }
.hero-art-lines i:nth-child(4) { width: 96%; }
.hero-art-lines i:nth-child(5) { width: 72%; }
.hero-art-node { position: absolute; z-index: 3; top: 45%; right: 29%; width: 68px; height: 68px; border: 1px solid rgba(183,255,56,0.68); background: rgba(10,10,10,0.46); box-shadow: 0 0 45px rgba(183,255,56,0.1); backdrop-filter: blur(5px); }
.hero-art-node::before, .hero-art-node::after { position: absolute; top: 50%; left: 50%; content: ""; background: var(--acid); transform: translate(-50%, -50%); }
.hero-art-node::before { width: 24px; height: 1px; }
.hero-art-node::after { width: 1px; height: 24px; }
.visual-index { position: absolute; right: 0; bottom: 8%; color: #62625d; font-family: var(--mono); font-size: 0.57rem; letter-spacing: 0.12em; }

.trust-strip { position: relative; z-index: 3; height: 62px; overflow: hidden; border-top: 1px solid var(--line); background: #0d0d0c; }
.ticker-track { display: flex; width: max-content; height: 100%; align-items: center; color: #a2a29b; font-family: var(--mono); font-size: 0.64rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; animation: ticker 28s linear infinite; }
.ticker-set { display: flex; height: 100%; padding-right: 2.3rem; align-items: center; gap: 2.3rem; }
.ticker-track i { width: 5px; height: 5px; flex: 0 0 auto; transform: rotate(45deg); background: var(--acid); }
.trust-strip:hover .ticker-track { animation-play-state: paused; }

.section-heading { display: grid; margin-bottom: clamp(3.5rem, 7vw, 6.5rem); grid-template-columns: 1.4fr 0.6fr; gap: 3rem; align-items: end; }
h2 { margin-bottom: 0; font-size: clamp(3.5rem, 6.2vw, 6.5rem); font-weight: 700; letter-spacing: -0.075em; line-height: 0.92; }
.heading-copy { max-width: 28rem; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }

.work { background: var(--surface-light); color: var(--ink-dark); }
.work .kicker { color: #50504c; }
.work .heading-copy { color: var(--muted-dark); }
.work h2 span { color: #6a6a65; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.project { position: relative; overflow: hidden; border: 1px solid rgba(17,17,15,0.3); border-radius: 12px; }
.project-md { background: #071a31; color: var(--ink); }
.project-economy { background: #f4bc2e; color: var(--ink-dark); }
.project-meta { position: relative; z-index: 2; display: flex; min-height: 54px; padding: 0 1.35rem; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.055em; text-transform: uppercase; }
.project-md .project-meta { color: #a9bdd0; background: #061529; }
.project-economy .project-meta { color: #594717; background: #f6c642; }
.project-stage { position: relative; aspect-ratio: 1.1; overflow: hidden; }
.project-stage::before { content: ""; position: absolute; inset: 0; opacity: 0.32; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(135deg, #000, transparent 78%); }
.project-md .project-stage { background: radial-gradient(circle at 28% 24%, #1c5f9b, transparent 42%), linear-gradient(145deg, #123f70, #07172c 72%); }
.project-economy .project-stage { background: radial-gradient(circle at 25% 18%, #ffe274, transparent 38%), linear-gradient(145deg, #f9cc36, #d69311 78%); }
.project-monitor { position: absolute; z-index: 1; top: 10%; left: 6%; width: 84%; padding: 10px 10px 24px; aspect-ratio: 1.6; border-radius: 11px 11px 5px 5px; background: linear-gradient(145deg, #272725, #070707 55%, #343431); box-shadow: 0 30px 55px rgba(0,0,0,0.38); }
.project-monitor::before { content: ""; position: absolute; z-index: -1; bottom: -26px; left: 46%; width: 8%; height: 27px; background: linear-gradient(90deg, #5e5e5b, #c2c2bd 48%, #464643); }
.project-monitor::after { content: ""; position: absolute; z-index: -1; bottom: -32px; left: 34%; width: 32%; height: 8px; border-radius: 50% 50% 2px 2px; background: linear-gradient(90deg, #4b4b48, #bcbcb7 45%, #42423f); box-shadow: 0 8px 15px rgba(0,0,0,0.22); }
.project-canvas { position: relative; overflow: hidden; }
.project-screenshot { width: 100%; height: 100%; border-radius: 3px; background: #11110f; }
.project-screenshot::before { content: attr(data-domain); position: absolute; z-index: 3; top: 0; right: 0; left: 0; display: flex; height: 24px; padding: 0 48px; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(circle at 11px 50%, #ff6258 0 2.5px, transparent 3px), radial-gradient(circle at 21px 50%, #ffc04a 0 2.5px, transparent 3px), radial-gradient(circle at 31px 50%, #31c84b 0 2.5px, transparent 3px), #171715; color: #8c8c86; font-family: var(--mono); font-size: 0.45rem; letter-spacing: 0.045em; white-space: nowrap; }
.project-screenshot::after { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(10,10,10,0.35); }
.project-screenshot img { position: absolute; top: 24px; left: 0; width: 100%; height: calc(100% - 24px); object-fit: cover; object-position: center top; }
.project-scroll-status { position: absolute; right: 7px; bottom: 7px; z-index: 3; display: flex; height: 22px; padding: 0 8px; align-items: center; gap: 6px; background: rgba(10,10,9,0.84); color: #d4d4ce; font-family: var(--mono); font-size: 0.43rem; letter-spacing: 0.045em; text-transform: uppercase; backdrop-filter: blur(5px); }
.project-scroll-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 7px rgba(183,255,56,0.55); }
.project-phone { position: absolute; z-index: 2; right: 5%; bottom: 7%; width: 27%; padding: 6px; aspect-ratio: 390 / 844; transform: rotate(7deg); border: 1px solid #494946; border-radius: 24px; background: #080808; box-shadow: 0 24px 38px rgba(0,0,0,0.45); }
.project-phone::before { content: ""; position: absolute; z-index: 2; top: 9px; left: 50%; width: 34%; height: 8px; transform: translateX(-50%); border-radius: 10px; background: #080808; }
.project-phone > div { width: 100%; height: 100%; border-radius: 18px; background-position: center top; background-repeat: no-repeat; background-size: cover; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }
.project-md .project-phone > div { background-image: url("./assets/md-ventures-mobile-live.jpg"); }
.project-economy .project-phone > div { background-image: url("./assets/ekonomicky-servis-mobile-live.jpg"); }
.project-stage-index { position: absolute; z-index: 2; bottom: 1rem; left: 1.2rem; color: rgba(255,255,255,0.72); font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.08em; }
.project-economy .project-stage-index { color: rgba(17,17,15,0.7); }
.project-case { display: grid; min-height: 430px; padding: 1.7rem 1.5rem 1.4rem; grid-template-rows: 1fr auto auto; gap: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); }
.project-md .project-case { background: #061529; }
.project-economy .project-case { border-color: rgba(17,17,15,0.22); background: #f6c642; }
.project-case-label { display: block; margin-bottom: 0.65rem; font-family: var(--mono); font-size: 0.68rem; font-weight: 650; letter-spacing: 0.055em; text-transform: uppercase; }
.project-md .project-case-label { color: var(--acid); }
.project-economy .project-case-label { color: #5d4710; }
.project-case h3 { margin: 0 0 0.8rem; overflow-wrap: anywhere; font-size: clamp(1.65rem, 2.4vw, 2.45rem); letter-spacing: -0.055em; }
.mini-case { display: grid; margin: 1.25rem 0 0; gap: 0; }
.mini-case div { display: grid; padding: 0.82rem 0; border-top: 1px solid currentColor; grid-template-columns: 4.8rem 1fr; gap: 0.8rem; opacity: 0.92; }
.mini-case dt { font-family: var(--mono); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.055em; text-transform: uppercase; }
.mini-case dd { margin: 0; font-size: 0.83rem; line-height: 1.5; }
.project-md .mini-case div { border-color: rgba(255,255,255,0.19); }
.project-md .mini-case dt { color: var(--acid); }
.project-md .mini-case dd { color: #c3cfda; }
.project-economy .mini-case div { border-color: rgba(17,17,15,0.24); }
.project-economy .mini-case dt { color: #56420e; }
.project-economy .mini-case dd { color: #3f3212; }
.project-tags { display: flex; margin: 0; padding: 0; flex-wrap: wrap; gap: 0.45rem; list-style: none; }
.project-tags li { padding: 0.5rem 0.65rem; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.04em; text-transform: uppercase; }
.project-md .project-tags li { border: 1px solid rgba(255,255,255,0.28); color: #c5d0da; }
.project-economy .project-tags li { border: 1px solid rgba(17,17,15,0.32); color: #4f3d0d; }
.project-link { display: flex; min-height: 50px; padding: 0 0.95rem; align-items: center; justify-content: space-between; font-size: 0.76rem; font-weight: 760; text-decoration: none; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease; }
.project-md .project-link { border: 1px solid rgba(255,255,255,0.42); color: var(--ink); }
.project-economy .project-link { border: 1px solid rgba(17,17,15,0.52); color: var(--ink-dark); }
.project-md .project-link:hover { transform: translateY(-2px); border-color: var(--acid); background: var(--acid); color: var(--ink-dark); }
.project-economy .project-link:hover { transform: translateY(-2px); border-color: var(--ink-dark); background: var(--ink-dark); color: var(--ink); }
.project-link span { font-size: 1rem; transition: transform 180ms ease; }
.project-link:hover span { transform: rotate(45deg); }

.services { background: var(--bg); }
.offer-facts { display: grid; margin-bottom: 1.25rem; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-strong); }
.offer-facts article { display: grid; min-height: 205px; padding: clamp(1.35rem, 2.6vw, 2.4rem); align-content: start; background: #141412; }
.offer-facts span { color: var(--acid); font-family: var(--mono); font-size: 0.68rem; font-weight: 650; letter-spacing: 0.07em; text-transform: uppercase; }
.offer-facts strong { margin-top: auto; padding-top: 2.4rem; font-size: clamp(1.35rem, 2.1vw, 2rem); letter-spacing: -0.045em; }
.offer-facts p { margin: 0.7rem 0 0; color: #a7a7a0; font-size: 0.78rem; line-height: 1.55; }
.service-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-strong); }
.service-path { display: flex; min-height: 570px; padding: clamp(1.6rem, 3.4vw, 3.5rem); flex-direction: column; background: #141412; }
.service-path-new { background: var(--acid); color: var(--ink-dark); }
.service-path-top { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; }
.service-path-top i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid currentColor; font-family: var(--sans); font-size: 1.2rem; font-style: normal; }
.service-path-copy { margin: clamp(6rem, 9vw, 9rem) 0 3rem; }
.service-path-copy h3 { max-width: 9ch; margin-bottom: 1.3rem; font-size: clamp(2.9rem, 5vw, 5.2rem); font-weight: 620; letter-spacing: -0.07em; line-height: 0.9; }
.service-path-copy p { max-width: 34rem; margin: 0; color: var(--muted); line-height: 1.65; }
.service-path-new .service-path-copy p { color: #393935; }
.service-includes { display: flex; margin: auto 0 2rem; padding: 0; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.service-includes li { padding: 0.65rem 0.8rem; border: 1px solid var(--line-strong); color: #b1b1aa; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; }
.service-path-new .service-includes li { border-color: rgba(10,10,10,0.25); color: #30302d; }
.service-path-cta { display: flex; min-height: 58px; padding: 0 1rem; align-items: center; justify-content: space-between; border: 1px solid var(--line-strong); color: var(--ink); font-size: 0.85rem; font-weight: 740; text-decoration: none; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.service-path-cta span { font-size: 1.05rem; }
.service-path-cta:hover { transform: translateY(-2px); border-color: var(--acid); background: var(--acid); color: var(--ink-dark); }
.service-path-new .service-path-cta { border-color: var(--ink-dark); background: var(--ink-dark); color: var(--ink); }
.service-path-new .service-path-cta:hover { background: #242421; color: var(--acid); }
.offer-condition { max-width: 74rem; margin: 1.3rem 0 0; color: #989891; font-family: var(--mono); font-size: 0.64rem; line-height: 1.65; }

.why { background: #151513; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.why-sticky { position: static; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr); grid-template-areas: "kicker kicker" "title copy" "title cta"; column-gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.why-sticky .kicker { grid-area: kicker; }
.why-sticky h2 { grid-area: title; font-size: clamp(3.7rem, 5.4vw, 6rem); }
.why-sticky > p:not(.kicker) { max-width: 34rem; margin: 0 0 1.6rem; grid-area: copy; color: var(--muted); line-height: 1.7; }
.why-sticky > .text-link { width: max-content; grid-area: cta; }
.benefit-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.benefit-card { display: flex; min-height: 390px; padding: clamp(2rem, 3vw, 3rem); flex-direction: column; background: #191917; }
.benefit-card > span { display: inline-block; margin-bottom: auto; color: var(--acid); font-family: var(--mono); font-size: 0.65rem; }
.benefit-card h3 { max-width: 13ch; margin: 3rem 0 1rem; font-size: clamp(1.9rem, 2.5vw, 3rem); font-weight: 600; letter-spacing: -0.06em; line-height: 0.98; }
.benefit-card p { max-width: 34rem; margin-bottom: 0; color: var(--muted); line-height: 1.65; }

.founder-panel {
  position: relative;
  display: grid;
  min-height: 650px;
  margin-top: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: #10100f;
}
.founder-panel::before { content: ""; position: absolute; z-index: 1; top: -70px; right: -25px; width: 310px; height: 190px; transform: rotate(-18deg); opacity: 0.18; background: repeating-linear-gradient(180deg, var(--acid) 0 1px, transparent 1px 18px); pointer-events: none; }
.founder-media { position: relative; min-height: 650px; margin: 0; overflow: hidden; border-right: 1px solid var(--line-strong); background: #080808; }
.founder-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), inset 0 -150px 120px -85px rgba(0,0,0,0.86); }
.founder-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.founder-media figcaption { position: absolute; z-index: 2; right: 1.4rem; bottom: 1.25rem; left: 1.4rem; display: flex; padding-top: 0.85rem; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.32); color: #c5c5bf; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }
.founder-media figcaption span:first-child { color: var(--acid); }
.founder-copy { position: relative; z-index: 1; display: flex; padding: clamp(2.2rem, 4.5vw, 4.8rem); flex-direction: column; justify-content: center; color: var(--ink); }
.founder-copy::after { content: "03"; position: absolute; z-index: -1; top: -1.5rem; right: 1rem; color: rgba(255,255,255,0.035); font-size: clamp(9rem, 18vw, 17rem); font-weight: 800; letter-spacing: -0.1em; line-height: 1; pointer-events: none; }
.founder-copy .kicker { margin-bottom: 1.25rem; color: var(--acid); }
.founder-heading h3 { margin: 0; font-size: clamp(3.4rem, 6vw, 6.4rem); font-weight: 720; letter-spacing: -0.075em; line-height: 0.9; }
.founder-heading h3 em { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.06em; white-space: nowrap; }
.founder-heading > p { width: max-content; max-width: 100%; margin: 1.1rem 0 0; padding: 0.55rem 0.7rem; background: var(--acid); color: var(--ink-dark); font-family: var(--mono); font-size: clamp(0.7rem, 1vw, 0.82rem); letter-spacing: 0.04em; text-transform: uppercase; }
.founder-rule { width: min(190px, 34%); height: 1px; margin: clamp(2rem, 3vw, 2.8rem) 0; background: linear-gradient(90deg, var(--acid), transparent); }
.founder-lead { max-width: 42rem; margin: 0; color: var(--ink); font-size: clamp(1.2rem, 1.8vw, 1.65rem); font-weight: 650; letter-spacing: -0.025em; line-height: 1.42; }
.founder-body { max-width: 42rem; margin: 1.35rem 0 0; color: #aaa9a3; line-height: 1.65; }
.founder-points { display: grid; margin: 1.8rem 0 0; padding: 0; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: founder-point; }
.founder-points li { display: grid; min-height: 82px; padding: 0.8rem; align-content: space-between; border: 1px solid var(--line-strong); border-right: 0; color: #b8b8b2; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.04em; line-height: 1.4; text-transform: uppercase; counter-increment: founder-point; }
.founder-points li:last-child { border-right: 1px solid var(--line-strong); }
.founder-points li::before { content: "0" counter(founder-point); color: var(--acid); font-weight: 760; }
.founder-cta { width: max-content; margin-top: 1.8rem; border-color: var(--acid); background: var(--acid); color: var(--ink-dark); }
.founder-cta:hover { transform: translateY(-2px); background: var(--acid-bright); color: var(--ink-dark); box-shadow: 0 12px 38px rgba(183,255,56,0.16); }

.process { background: var(--surface-light); color: var(--ink-dark); }
.process .kicker { color: #4e4e49; }
.process h2 span { color: #696963; }
.process-intro { margin-bottom: clamp(4rem, 8vw, 7rem); }
.process-grid { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #3b3b37; list-style: none; }
.process-card { display: flex; min-height: 390px; padding: clamp(1.5rem, 2.3vw, 2.4rem); flex-direction: column; background: #151513; color: var(--ink); }
.process-card:first-child, .process-card:last-child { background: #10100f; }
.process-number { color: var(--acid); font-family: var(--mono); font-size: 0.64rem; }
.process-icon { display: grid; width: 56px; height: 56px; margin: auto 0 3rem; place-items: center; border: 1px solid var(--acid); color: var(--acid); font-size: 1.4rem; }
.process-card:nth-child(2) .process-icon { border-color: var(--acid); background: transparent; }
.process-card h3 { max-width: 11ch; margin-bottom: 1rem; font-size: clamp(1.75rem, 2.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.06em; line-height: 0.98; }
.process-card p { max-width: 25rem; margin: 0; color: #aaa9a3; line-height: 1.6; }
.process-card-accent { background: #10100f; }
.process-card-accent .process-icon { border-color: var(--acid); background: var(--acid); color: var(--ink-dark); font-size: 1.5rem; font-weight: 760; }
.process-card-accent p { color: #aaa9a3; }
.process-note { max-width: 70rem; margin: 1.5rem 0 0; color: #555550; font-size: 0.78rem; line-height: 1.65; }

.lead-section { position: relative; overflow: hidden; background: #0b0b0a; }
.lead-grid-bg { position: absolute; inset: 0; opacity: 0.7; background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 90%); }
.lead-layout { position: relative; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(4rem, 9vw, 10rem); align-items: center; }
.lead-copy h2 { max-width: 9ch; font-size: clamp(4.2rem, 6.4vw, 7rem); }
.lead-copy > p:not(.kicker) { max-width: 30rem; margin: 2rem 0 0; color: var(--muted); line-height: 1.7; }
.lead-promise { display: flex; margin-top: 3.2rem; align-items: flex-end; gap: 1.4rem; }
.lead-promise strong { color: var(--acid); font-size: 4.4rem; letter-spacing: -0.08em; line-height: 0.8; }
.lead-promise span { color: #787873; font-family: var(--mono); font-size: 0.62rem; line-height: 1.55; text-transform: uppercase; }

.form-shell { position: relative; min-height: 640px; padding: 8px; scroll-margin-top: 88px; border: 1px solid var(--acid); background: var(--acid); box-shadow: 0 42px 110px rgba(0,0,0,0.5), 0 0 55px rgba(183,255,56,0.12); }
.form-invite { display: flex; min-height: 82px; padding: 0.9rem 1rem 0.9rem 1.3rem; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink-dark); }
.form-invite > div { display: grid; gap: 0.25rem; }
.form-invite > div span { font-family: var(--mono); font-size: 0.68rem; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.form-invite > div strong { font-size: clamp(1.15rem, 2vw, 1.65rem); letter-spacing: -0.04em; }
.form-invite-arrow { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; background: var(--ink-dark); color: var(--acid); font-size: 1.25rem; animation: form-nudge 1.9s ease-in-out infinite; }
.form-surface { min-height: 540px; padding: clamp(1.5rem, 3.6vw, 3.1rem); border: 1px solid rgba(10,10,10,0.85); background: #11110f; }
.form-topline { display: flex; margin-bottom: 1.2rem; justify-content: space-between; color: #b2b2ab; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; }
.form-topline div { display: flex; align-items: center; gap: 0.45rem; color: var(--acid); }
.preview-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.form-progress { display: grid; margin-bottom: clamp(3rem, 7vw, 5rem); grid-template-columns: repeat(4, 1fr); gap: 5px; }
.form-progress i { height: 3px; background: #393935; }
.form-progress i.is-active { background: var(--acid); box-shadow: 0 0 10px rgba(183,255,56,0.35); }
#lead-form { position: relative; }
.form-step { animation: step-in 260ms ease both; }
.form-step[hidden] { display: none; }
.form-question { display: block; margin-bottom: 2rem; color: var(--ink); font-size: clamp(2rem, 3.4vw, 3.5rem); font-weight: 580; letter-spacing: -0.06em; line-height: 1; }
.form-question span { color: #a4a49d; font-size: 0.45em; font-weight: 450; letter-spacing: -0.02em; }
.form-question .form-question-hint { display: block; margin-top: 0.75rem; color: var(--acid); font-family: var(--mono); font-size: 0.22em; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.choice-card { position: relative; display: grid; min-height: 225px; padding: 1.25rem; overflow: hidden; cursor: pointer; border: 1px solid #d2d1c8; background: #f3f2e9; color: var(--ink-dark); box-shadow: inset 0 4px 0 var(--acid); text-align: left; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.choice-card.is-selected { transform: translateY(-4px); border-color: var(--acid); background: var(--acid); box-shadow: 0 16px 34px rgba(0,0,0,0.2), inset 0 4px 0 var(--ink-dark); }
.choice-card:focus-visible { outline: 2px solid var(--ink-dark); outline-offset: -6px; box-shadow: 0 0 0 3px var(--acid), inset 0 4px 0 var(--ink-dark); }
.choice-icon { display: grid; width: 42px; height: 42px; place-items: center; background: var(--ink-dark); color: var(--acid); font-size: 1.1rem; }
.choice-card strong { align-self: end; margin-top: 2rem; font-size: 1.2rem; letter-spacing: -0.03em; }
.choice-card small { margin-top: 0.4rem; color: #595954; line-height: 1.4; }
.choice-select { display: flex; margin-top: 1.2rem; padding-top: 0.85rem; align-items: center; justify-content: space-between; border-top: 1px solid #b8b8b0; font-family: var(--mono); font-size: 0.68rem; font-weight: 720; letter-spacing: 0.06em; text-transform: uppercase; }
.choice-select i { font-family: var(--sans); font-size: 1rem; font-style: normal; transition: transform 180ms ease; }
.choice-card.is-selected .choice-select { border-color: rgba(10,10,10,0.35); }
.choice-card.is-selected .choice-select i { transform: rotate(45deg); }
.form-input { width: 100%; height: 74px; padding: 0 0.3rem; border: 0; border-bottom: 1px solid #686862; border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: clamp(1.35rem, 2.5vw, 2.2rem); letter-spacing: -0.035em; transition: border-color 160ms ease, box-shadow 160ms ease; }
.form-input::placeholder { color: #8b8b85; }
.form-input:focus { border-color: var(--acid); box-shadow: 0 1px 0 var(--acid); }
.field-hint { margin: 0.7rem 0 0; color: #979790; font-size: 0.72rem; }
.field-error { min-height: 1.2rem; margin: 0.65rem 0 0; color: var(--error); font-size: 0.72rem; }
.form-actions { display: flex; margin-top: 2.4rem; align-items: center; justify-content: space-between; gap: 1rem; }
.back-button, .next-button { min-height: 50px; cursor: pointer; }
.back-button { padding: 0; border: 0; border-bottom: 1px solid #50504b; background: transparent; color: #8b8b85; font-size: 0.75rem; }
.back-button:hover { color: var(--ink); border-color: var(--ink); }
.next-button { padding: 0.8rem 1.2rem; border: 1px solid var(--acid); background: var(--acid); color: var(--ink-dark); font-size: 0.78rem; font-weight: 760; }
.next-button:disabled { cursor: wait; opacity: 0.55; }
.success-step { padding-top: 0.5rem; }
.success-mark { display: grid; width: 62px; height: 62px; margin-bottom: 2rem; place-items: center; background: var(--acid); color: var(--ink-dark); font-size: 1.4rem; }
.success-step .form-question { margin-bottom: 1rem; }
.success-step p:not(.form-question) { max-width: 35rem; color: var(--muted); line-height: 1.65; }
.success-step code { color: var(--acid); }
.reset-button { margin-top: 2rem; }
.form-guarantee { margin: 2.4rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); color: #c5c5be; font-size: 0.72rem; line-height: 1.55; }
.form-guarantee span { margin-right: 0.55rem; color: var(--acid); font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.privacy-note { margin: 3.2rem 0 0; color: #aaa9a3; font-size: 0.75rem; line-height: 1.55; }
.privacy-note a { color: var(--ink); text-underline-offset: 0.2em; }
.form-guarantee + .privacy-note { margin-top: 1rem; }
.honeypot { position: absolute; left: -10000px; opacity: 0; }

.testimonials { background: #0a0a0a; color: var(--ink); }
.testimonials .kicker { color: var(--acid); }
.testimonials h2 span { color: var(--acid); }
.testimonials .heading-copy { color: #bbbcb5; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--acid); }
.testimonial-card { display: flex; min-height: 410px; padding: clamp(1.6rem, 3.4vw, 3.2rem); flex-direction: column; background: #151513; color: var(--ink); }
.quote-mark { color: var(--acid); font-family: Georgia, serif; font-size: 5.5rem; line-height: 0.7; }
.testimonial-placeholder { max-width: 19ch; margin: auto 0 3rem; color: var(--ink); font-family: Georgia, serif; font-size: clamp(1.55rem, 2.5vw, 2.5rem); letter-spacing: -0.04em; line-height: 1.14; }
.testimonial-author { display: grid; padding-top: 1.2rem; border-top: 1px solid var(--line); grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.testimonial-author strong { font-size: 0.85rem; }
.testimonial-author span { color: var(--acid); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.04em; text-align: right; text-transform: uppercase; }
.testimonial-cta { display: grid; min-height: 310px; padding: clamp(1.6rem, 3.4vw, 3.2rem); grid-column: 1 / -1; grid-template-columns: 0.45fr 1fr auto; gap: 3rem; align-items: center; background: var(--acid); color: var(--ink-dark); }
.testimonial-cta > span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; }
.testimonial-cta h3 { max-width: 13ch; margin: 0; font-size: clamp(2.4rem, 4.1vw, 4.5rem); font-weight: 620; letter-spacing: -0.065em; line-height: 0.94; }
.testimonial-cta .button { width: max-content; border-color: var(--ink-dark); background: var(--ink-dark); color: var(--ink); }
.testimonial-cta .button:hover { background: #242421; box-shadow: none; }

.faq { background: var(--surface-light); color: var(--ink-dark); }
.faq .kicker { color: #51514c; }
.faq-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(4rem, 10vw, 11rem); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { font-size: clamp(3.8rem, 5.2vw, 5.8rem); }
.faq-intro > p:not(.kicker) { max-width: 23rem; margin-top: 2rem; color: #666660; line-height: 1.6; }
.faq-intro a { text-underline-offset: 0.25em; }
.accordion { border-top: 1px solid #a5a59e; }
.accordion details { border-bottom: 1px solid #b5b5ae; }
.accordion summary { display: grid; min-height: 104px; padding: 1.7rem 0; cursor: pointer; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 580; letter-spacing: -0.025em; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #a4a49d; color: #555550; font-size: 1.1rem; transition: transform 220ms ease, background 220ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); background: var(--acid); }
.accordion details div { overflow: hidden; }
.accordion details p { max-width: 45rem; margin: 0; padding: 0 4rem 2rem 0; color: #61615c; line-height: 1.7; }

.closing-section { padding: 0 0 clamp(5rem, 9vw, 8rem); background: var(--surface-light); color: var(--ink-dark); }
.closing-panel { display: grid; min-height: 520px; overflow: hidden; border: 1px solid var(--ink-dark); grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.7fr) minmax(290px, 0.78fr); gap: 1px; background: var(--ink-dark); }
.closing-heading { display: flex; padding: clamp(2rem, 4vw, 4rem); flex-direction: column; justify-content: center; background: #151513; color: var(--ink); }
.closing-eyebrow { margin: 0 0 auto; font-family: var(--mono); font-size: 0.7rem; font-weight: 650; letter-spacing: 0.07em; text-transform: uppercase; }
.closing-eyebrow span { padding: 0.35rem 0.5rem; background: var(--acid); color: var(--ink-dark); }
.closing-heading h2 { margin: clamp(3rem, 7vw, 6rem) 0 1.5rem; font-size: clamp(3.2rem, 5.2vw, 5.7rem); }
.closing-heading > p:last-child { max-width: 34rem; margin: 0; color: #aaa9a3; line-height: 1.65; }
.closing-facts { display: grid; margin: 0; gap: 1px; background: var(--ink-dark); }
.closing-facts > div { display: flex; padding: clamp(1.5rem, 3vw, 2.7rem); flex-direction: column; justify-content: space-between; background: #fffef7; }
.closing-facts dt { color: #5a5a55; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; }
.closing-facts dd { margin: 2rem 0 0; font-size: clamp(1.5rem, 2.2vw, 2.25rem); font-weight: 700; letter-spacing: -0.055em; line-height: 1; }
.closing-action { display: flex; padding: clamp(2rem, 3.5vw, 3.5rem); flex-direction: column; justify-content: center; background: #11110f; color: var(--ink); }
.closing-action > span { color: var(--acid); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; }
.closing-action h3 { max-width: 10ch; margin: auto 0 1.2rem; font-size: clamp(2.25rem, 3.5vw, 3.6rem); font-weight: 620; letter-spacing: -0.065em; line-height: 0.94; }
.closing-action p { margin: 0 0 1.8rem; color: #aaa9a3; font-size: 0.86rem; line-height: 1.65; }
.closing-action .button { width: 100%; }
.closing-action small { margin-top: 1rem; color: #a3a39d; font-family: var(--mono); font-size: 0.68rem; line-height: 1.5; }

.mobile-lead-panel { display: none; }

.site-footer { padding: 6rem 0 2rem; background: #0a0a0a; }
.footer-main { display: grid; padding-bottom: 6rem; grid-template-columns: 1.6fr repeat(3, 0.8fr); gap: 3rem; }
.footer-brand .brand-logo { width: 178px; }
.footer-brand p { max-width: 21rem; margin: 1.6rem 0 0; color: #989891; line-height: 1.6; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.footer-column h3 { margin: 0 0 0.7rem; color: #93938c; font-family: var(--mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-column a, .footer-column > span, .footer-column address { color: #a2a29c; font-size: 0.77rem; line-height: 1.5; text-decoration: none; transition: color 160ms ease; }
.footer-column address { margin: 0; font-style: normal; }
.footer-column a:hover { color: var(--acid); }
.footer-contact .footer-cta { margin-top: 1rem; padding-bottom: 0.35rem; border-bottom: 1px solid var(--acid); color: var(--acid); }
.footer-bottom { display: flex; padding-top: 1.5rem; justify-content: space-between; border-top: 1px solid var(--line); color: #a4a49d; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 1.5rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom button { padding: 0; cursor: pointer; border: 0; background: transparent; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-bottom a:hover, .footer-bottom button:hover { color: var(--acid); }

.consent-banner { position: fixed; z-index: 180; right: 18px; bottom: 18px; display: grid; width: min(680px, calc(100% - 36px)); padding: 1.3rem; border: 1px solid var(--acid); grid-template-columns: 1fr auto; gap: 2rem; align-items: end; background: rgba(17,17,15,0.98); box-shadow: 0 24px 70px rgba(0,0,0,0.55); backdrop-filter: blur(18px); }
.consent-banner[hidden] { display: none; }
.consent-label { margin: 0 0 0.55rem; color: var(--acid); font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.consent-banner h2 { margin: 0; font-size: 1.55rem; letter-spacing: -0.045em; line-height: 1.05; }
.consent-banner p:not(.consent-label) { max-width: 43rem; margin: 0.8rem 0 0.65rem; color: #bbbcb5; font-size: 0.82rem; line-height: 1.55; }
.consent-banner a { color: var(--ink); font-size: 0.75rem; text-underline-offset: 0.2em; }
.consent-actions { display: grid; min-width: 170px; gap: 0.55rem; }
.consent-button { min-height: 44px; padding: 0.65rem 0.85rem; cursor: pointer; border: 1px solid #7d7d76; background: transparent; color: var(--ink); font-size: 0.74rem; font-weight: 720; }
.consent-button { background: var(--ink); color: var(--ink-dark); }
.consent-button-primary { border-color: var(--acid); background: var(--acid); color: var(--ink-dark); }

.legal-page { background: var(--surface-light); color: var(--ink-dark); }
.legal-header { position: absolute; grid-template-columns: 1fr auto; background: var(--bg); }
.legal-back { color: var(--ink); font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.legal-back:hover { color: var(--acid); }
.legal-main { padding: 10rem 0 6rem; }
.legal-document { max-width: 900px; }
.legal-document > header { padding-bottom: 3rem; border-bottom: 1px solid #a9a9a2; }
.legal-document > header h1 { max-width: 12ch; margin: 1.2rem 0 0; font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: -0.075em; line-height: 0.92; }
.legal-updated { margin: 1.5rem 0 0; color: #62625e; font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; }
.legal-document section { padding: 2.3rem 0; border-bottom: 1px solid #c0c0b9; scroll-margin-top: 2rem; }
.legal-document section h2 { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.045em; line-height: 1.05; }
.legal-document section p { max-width: 72ch; margin: 0.7rem 0 0; color: #4f4f4a; font-size: 1rem; line-height: 1.75; }
.legal-document section a { color: var(--ink-dark); text-underline-offset: 0.22em; }
.legal-document code { padding: 0.15rem 0.3rem; background: #d9d9d1; font-size: 0.88em; }
.legal-consent-button { margin-top: 1.2rem; min-height: 48px; padding: 0.75rem 1rem; cursor: pointer; border: 1px solid var(--ink-dark); background: var(--ink-dark); color: var(--ink); font-weight: 750; }
.legal-footer { padding-top: 2rem; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 650ms cubic-bezier(.2,.65,.25,1), transform 650ms cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes cta-breathe { 0%,100% { box-shadow: 0 0 0 0 rgba(183,255,56,0.17); } 50% { box-shadow: 0 0 0 7px rgba(183,255,56,0); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes step-in { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes form-nudge { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
@keyframes capacity-led { 0%, 100% { opacity: 0.62; transform: scale(0.82); box-shadow: 0 0 5px rgba(183,255,56,0.55); } 50% { opacity: 1; transform: scale(1); box-shadow: 0 0 16px rgba(183,255,56,1); } }
@keyframes capacity-ring { 0% { opacity: 0; transform: scale(0.55); } 38% { opacity: 0.75; } 100% { opacity: 0; transform: scale(1.45); } }

@media (hover: hover) {
  .choice-card:hover { transform: translateY(-4px); border-color: var(--acid); background: var(--acid); box-shadow: 0 16px 34px rgba(0,0,0,0.2), inset 0 4px 0 var(--ink-dark); }
  .choice-card:hover .choice-select { border-color: rgba(10,10,10,0.35); }
  .choice-card:hover .choice-select i { transform: rotate(45deg); }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 3rem; }
  .hero-visual { min-height: 500px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 5rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  :root { --container: min(720px, calc(100% - 40px)); }
  .site-header { padding-inline: 20px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; width: 44px; height: 44px; padding: 0; cursor: pointer; border: 1px solid var(--line); background: rgba(10,10,10,0.7); place-content: center; gap: 6px; }
  .menu-button > span:not(.visually-hidden) { display: block; width: 18px; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 68px; right: 0; left: 0; display: grid; padding: 1.4rem 20px 1.8rem; border-bottom: 1px solid var(--line); background: rgba(10,10,10,0.98); gap: 1rem; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { padding: 0.7rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; text-decoration: none; }
  .hero { padding-top: 76px; }
  .hero-grid { min-height: auto; padding: 7rem 0 6rem; grid-template-columns: 1fr; gap: 6rem; }
  .hero-copy { max-width: 700px; }
  .hero-visual { display: none; }
  .section-heading, .why-grid, .lead-layout, .faq-layout { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .section-heading .heading-copy { max-width: 38rem; }
  .project-grid { grid-template-columns: 1fr; }
  .offer-facts { grid-template-columns: 1fr 1fr 1fr; }
  .service-paths { grid-template-columns: 1fr; }
  .service-path { min-height: 510px; }
  .service-path-copy { margin-top: 5rem; }
  .why-sticky { grid-template-columns: 1fr; grid-template-areas: "kicker" "title" "copy" "cta"; gap: 0; }
  .why-sticky > p:not(.kicker) { margin: 2rem 0; }
  .benefit-stack { grid-template-columns: 1fr; }
  .why-sticky, .faq-intro { position: static; }
  .why-grid, .faq-layout { gap: 5rem; }
  .founder-panel { min-height: 0; grid-template-columns: 1fr; }
  .founder-media { min-height: 0; aspect-ratio: 1.35; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .founder-media img { object-position: center 38%; }
  .founder-copy { padding: 3rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 340px; }
  .lead-copy h2 { max-width: 11ch; }
  .closing-panel { grid-template-columns: 1fr; }
  .closing-heading { min-height: 470px; }
  .closing-facts { grid-template-columns: repeat(3, 1fr); }
  .closing-action { min-height: 390px; }
  .mobile-lead-panel:not([hidden]) { position: fixed; z-index: 110; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); left: 12px; display: grid; min-height: 68px; padding: 7px; grid-template-columns: auto 1fr; gap: 10px; align-items: center; border: 1px solid rgba(183,255,56,0.65); background: rgba(13,13,12,0.96); box-shadow: 0 18px 50px rgba(0,0,0,0.45); backdrop-filter: blur(14px); }
  .mobile-lead-panel > div { display: grid; min-width: 108px; padding-left: 0.55rem; gap: 0.16rem; }
  .mobile-lead-panel > div span { color: #b8b8b1; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; }
  .mobile-lead-panel > div strong { color: var(--acid); font-size: 1rem; letter-spacing: -0.035em; }
  .mobile-lead-panel > a { display: flex; min-height: 52px; padding: 0 0.9rem; align-items: center; justify-content: space-between; background: var(--acid); color: var(--ink-dark); font-size: 0.76rem; font-weight: 780; text-decoration: none; }
  .mobile-lead-panel > a span { font-size: 1rem; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2; }
  .consent-banner { grid-template-columns: 1fr; gap: 1.2rem; }
  .consent-actions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 4.75rem 0; }
  .site-header { padding-inline: 14px; }
  .hero-grid { padding: 4.25rem 0 3.5rem; gap: 2.8rem; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  h1 em { white-space: normal; }
  h2 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-guarantee { margin-top: 1.15rem; padding: 0.9rem; }
  .hero-guarantee small { align-items: flex-start; }
  .button { width: 100%; }
  .trust-strip { height: 54px; }
  .ticker-set { padding-right: 1.5rem; gap: 1.5rem; }
  .section-heading { margin-bottom: 2.8rem; gap: 1.6rem; }
  .project { padding: 0; border-radius: 8px; }
  .project-meta { min-height: 46px; padding-inline: 1rem; font-size: 0.65rem; }
  .project-stage { aspect-ratio: 1.06; }
  .project-monitor { top: 11%; left: 5%; width: 86%; padding: 6px 6px 16px; border-radius: 7px 7px 3px 3px; }
  .project-monitor::before { bottom: -18px; height: 19px; }
  .project-monitor::after { bottom: -23px; height: 6px; }
  .project-screenshot { aspect-ratio: auto; }
  .project-screenshot::before { height: 18px; padding-inline: 36px; font-size: 0.38rem; }
  .project-screenshot img { top: 18px; height: calc(100% - 18px); animation: none; object-position: center top; }
  .project-scroll-status { display: none; }
  .project-phone { right: 4%; bottom: 6%; width: 27%; padding: 4px; border-radius: 17px; }
  .project-phone::before { top: 6px; height: 5px; }
  .project-phone > div { border-radius: 13px; }
  .project-stage-index { bottom: 0.75rem; left: 0.9rem; }
  .project-case { min-height: 0; padding: 1.3rem; gap: 1rem; }
  .project-case h3 { margin-bottom: 0.55rem; font-size: 1.65rem; }
  .mini-case { margin-top: 1rem; }
  .mini-case div { padding: 0.7rem 0; grid-template-columns: 4rem 1fr; }
  .mini-case dd { font-size: 0.8rem; }
  .offer-facts { grid-template-columns: 1fr; }
  .offer-facts article { min-height: 0; padding: 1rem; grid-template-columns: 6.2rem 1fr; gap: 0.35rem 0.8rem; align-items: start; }
  .offer-facts span { padding-top: 0.2rem; grid-row: 1 / 3; }
  .offer-facts strong { margin: 0; padding: 0; font-size: 1.25rem; }
  .offer-facts p { max-width: 30rem; margin-top: 0.2rem; font-size: 0.72rem; }
  .service-path { min-height: 365px; padding: 1.35rem; }
  .service-path-copy { margin: 3.5rem 0 1.3rem; }
  .service-path-copy h3 { margin-bottom: 1rem; font-size: 2.75rem; }
  .service-includes { margin-bottom: 1.35rem; }
  .why-grid, .faq-layout { gap: 3rem; }
  .benefit-card { min-height: 205px; padding: 1.35rem; }
  .benefit-card > span { margin-bottom: 1.7rem; }
  .founder-panel { margin-top: 3rem; border-width: 1px; }
  .founder-media { aspect-ratio: 1.45; }
  .founder-media figcaption { right: 1rem; bottom: 0.9rem; left: 1rem; }
  .founder-copy { padding: 1.5rem; }
  .founder-copy .kicker { margin-bottom: 1rem; }
  .founder-heading h3 { font-size: 3.1rem; }
  .founder-heading > p { margin-top: 0.7rem; font-size: 0.82rem; }
  .founder-rule { margin: 1.5rem 0; }
  .founder-lead { font-size: 1.12rem; }
  .founder-body { margin-top: 1rem; font-size: 0.88rem; line-height: 1.6; }
  .founder-points { display: grid; grid-template-columns: 1fr; }
  .founder-points li { min-height: 48px; padding: 0.65rem 0.75rem; grid-template-columns: 32px 1fr; align-content: center; align-items: center; border-right: 1px solid var(--line-strong); border-bottom: 0; }
  .founder-points li:last-child { border-bottom: 1px solid var(--line-strong); }
  .founder-cta { width: 100%; margin-top: 1.5rem; }
  .process-intro { margin-bottom: 2.8rem; }
  .process-card { display: grid; min-height: 0; padding: 1.25rem; grid-template-columns: 42px 1fr; grid-template-areas: "number title" "icon copy"; gap: 1rem 0.85rem; }
  .process-number { grid-area: number; padding-top: 0.2rem; }
  .process-icon { width: 40px; height: 40px; margin: 0; grid-area: icon; font-size: 1rem; }
  .process-card h3 { margin: 0; grid-area: title; font-size: 1.75rem; }
  .process-card p { grid-area: copy; font-size: 0.88rem; line-height: 1.55; }
  .process-card-accent .process-icon { font-size: 1.15rem; }
  .process-note { font-size: 0.72rem; }
  .lead-layout { gap: 2.2rem; }
  .lead-copy > p:not(.kicker), .lead-promise { display: none; }
  .lead-promise { align-items: center; }
  .form-shell { min-height: 0; padding: 6px; scroll-margin-top: 76px; }
  .form-invite { min-height: 70px; padding: 0.75rem 0.7rem 0.75rem 0.9rem; }
  .form-invite > div strong { font-size: 1.05rem; }
  .form-invite-arrow { width: 42px; height: 42px; }
  .form-surface { min-height: 500px; padding: 1rem; }
  .form-progress { margin-bottom: 2.2rem; }
  .form-guarantee { margin-top: 1.8rem; }
  .form-question { font-size: 2.15rem; }
  .form-question .form-question-hint { margin-top: 0.65rem; font-size: 0.27em; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 158px; grid-template-columns: 45px 1fr; gap: 0 0.75rem; align-items: center; }
  .choice-icon { grid-row: 1 / 3; }
  .choice-card strong { align-self: center; margin: 0; }
  .choice-card small { grid-column: 2; margin: 0; }
  .choice-select { grid-column: 1 / -1; margin-top: 0.8rem; padding-top: 0.7rem; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .next-button { width: 100%; }
  .back-button { width: max-content; align-self: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 330px; }
  .testimonial-cta { min-height: 250px; }
  .testimonial-cta { grid-column: auto; grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-cta .button { width: 100%; }
  .testimonial-author { grid-template-columns: 1fr; }
  .testimonial-author span { text-align: left; }
  .accordion summary { min-height: 80px; padding-block: 1.25rem; }
  .accordion details p { padding-right: 1rem; }
  .closing-section { padding-bottom: 4.75rem; }
  .closing-heading { min-height: 0; padding: 1.5rem; }
  .closing-eyebrow { margin-bottom: 3rem; }
  .closing-heading h2 { margin: 0 0 1.2rem; font-size: 3.35rem; }
  .closing-heading > p:last-child { font-size: 0.88rem; }
  .closing-facts { grid-template-columns: 1fr; }
  .closing-facts > div { display: grid; min-height: 88px; padding: 1.1rem 1.25rem; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
  .closing-facts dd { margin: 0; font-size: 1.35rem; text-align: right; }
  .closing-action { min-height: 0; padding: 1.5rem; }
  .closing-action > span { margin-bottom: 3rem; }
  .closing-action h3 { margin: 0 0 1rem; font-size: 2.65rem; }
  .closing-action p { font-size: 0.82rem; }
  .footer-main { padding-bottom: 4rem; grid-template-columns: 1fr 1fr; gap: 3rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .footer-bottom div { flex-wrap: wrap; gap: 0.8rem 1.2rem; }
  .site-footer { padding-top: 4.5rem; }
  .consent-banner { right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); width: calc(100% - 20px); padding: 1rem; }
  .consent-actions { grid-template-columns: 1fr; }
  .legal-header { min-height: 68px; }
  .legal-header .brand-logo { width: 118px; }
  .legal-back { font-size: 0.7rem; }
  .legal-main { padding: 7.5rem 0 4rem; }
  .legal-document > header h1 { font-size: 3.3rem; }
  .legal-document section { padding: 1.8rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .project-screenshot img { animation: none !important; object-position: center top; }
  .reveal { opacity: 1; transform: none; }
}
