:root,
[data-theme='dark'] {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.6rem, 1.2rem + 4.5vw, 6.8rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --font-display: 'Cabinet Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  --color-bg: #101214;
  --color-surface: #171a1d;
  --color-surface-2: #202429;
  --color-surface-offset: #252a30;
  --color-divider: rgba(241, 224, 169, 0.14);
  --color-border: rgba(241, 224, 169, 0.18);
  --color-text: #f4f0e5;
  --color-text-muted: #b9b2a0;
  --color-text-faint: #776f62;
  --color-text-inverse: #121314;
  --color-gold: #d6a83c;
  --color-gold-strong: #f1d57b;
  --color-red: #d31414;
  --color-steel: #82909e;
  --color-steel-dark: #3a424b;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.26);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.38);
  --content-narrow: 680px;
  --content-default: 980px;
  --content-wide: 1240px;
}

[data-theme='light'] {
  --color-bg: #f4f1ea;
  --color-surface: #fffaf0;
  --color-surface-2: #ebe5d7;
  --color-surface-offset: #ddd4c3;
  --color-divider: rgba(39, 35, 28, 0.12);
  --color-border: rgba(39, 35, 28, 0.16);
  --color-text: #201d18;
  --color-text-muted: #665e52;
  --color-text-faint: #9a9285;
  --color-text-inverse: #fffaf0;
  --color-gold: #a87910;
  --color-gold-strong: #c89428;
  --color-red: #bd1414;
  --color-steel: #53606d;
  --color-steel-dark: #d4cdbc;
  --shadow-sm: 0 1px 2px rgba(34, 28, 18, 0.06);
  --shadow-md: 0 10px 28px rgba(34, 28, 18, 0.1);
  --shadow-lg: 0 24px 80px rgba(34, 28, 18, 0.13);
}

body {
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: '';
  background:
    linear-gradient(125deg, rgba(214, 168, 60, 0.07), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(211, 20, 20, 0.11), transparent 24rem),
    var(--color-bg);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  opacity: 0.1;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(214, 168, 60, 0.24) 46% 46.35%, transparent 46.35% 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(130, 144, 158, 0.14) 58% 61%, transparent 61% 100%);
  background-size: 42rem 42rem, 34rem 34rem;
  background-position: 100% -8rem, -10rem 8rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-inverse);
  background: var(--color-gold);
  border-radius: var(--radius-full);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - var(--space-8)), var(--content-wide));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-divider);
  background: color-mix(in oklab, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: max-content;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-emblem {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text span:first-child {
  color: var(--color-red);
}

.brand-text span:last-child {
  color: var(--color-text);
}

.official-logo {
  display: block;
  width: auto;
  height: 96px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  place-items: center;
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-full);
}

.btn-primary {
  color: #121314;
  background: var(--color-gold-strong);
  box-shadow: 0 12px 28px rgba(214, 168, 60, 0.18);
}

.btn-primary:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(var(--space-8), 7vw, var(--space-20));
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-gold-strong);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: '';
  background: currentColor;
}

h1 {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero-copy {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.metric {
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.quote-card {
  position: relative;
  min-height: 560px;
  padding: var(--space-6);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 78%, #fff 3%), var(--color-surface-2)),
    var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.quote-card::before {
  position: absolute;
  inset: var(--space-5);
  pointer-events: none;
  content: '';
  border: 1px solid color-mix(in oklab, var(--color-gold) 42%, transparent);
}

.system-lines {
  position: absolute;
  inset: 0;
  opacity: 0.24;
}

.quote-inner {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  min-height: 500px;
  align-content: space-between;
}

.quote-label {
  max-width: 16ch;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-title {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.quote-title span {
  color: var(--color-red);
}

.quote-list {
  display: grid;
  gap: var(--space-3);
}

.quote-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-3);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
}

.quote-list b {
  color: var(--color-gold-strong);
}

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.audience-strip {
  padding-block: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: color-mix(in oklab, var(--color-surface) 72%, transparent);
  box-shadow: var(--shadow-md);
}

.audience-grid article {
  min-height: 240px;
  padding: var(--space-6);
  border-right: 1px solid var(--color-divider);
}

.audience-grid article:last-child {
  border-right: 0;
}

.audience-grid span {
  display: inline-block;
  margin-bottom: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold-strong);
  line-height: 1;
}

.audience-grid h2 {
  font-size: var(--text-lg);
}

.audience-grid p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-10);
}

.section-head h2 {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-head p {
  color: var(--color-text-muted);
}

.pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.path-card {
  display: grid;
  min-height: 420px;
  padding: var(--space-8);
  align-content: space-between;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: color-mix(in oklab, var(--color-surface) 88%, transparent);
  box-shadow: var(--shadow-md);
}

.path-card.featured {
  color: #171614;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 38%),
    var(--color-gold-strong);
}

.path-kicker {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path-card h3 {
  max-width: 13ch;
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.path-card p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
}

.path-card.featured p {
  color: rgba(18, 19, 20, 0.74);
}

.mini-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
}

.mini-list li {
  display: flex;
  gap: var(--space-3);
}

.mini-list li::before {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.6em;
  content: '';
  background: currentColor;
  border-radius: 50%;
}

.request-kit {
  padding-top: 0;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.kit-card {
  min-height: 220px;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface) 78%, transparent);
}

.kit-card h3 {
  font-size: var(--text-lg);
}

.kit-card p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.kit-card.accent {
  color: #171614;
  background: var(--color-gold-strong);
  border-color: transparent;
}

.kit-card.accent p {
  color: rgba(18, 19, 20, 0.74);
}

.calculation {
  padding-top: 0;
}

.calculation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: var(--space-8);
  align-items: stretch;
}

.calculation-copy {
  display: grid;
  align-content: space-between;
  min-height: 520px;
  padding: var(--space-8);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 92%, transparent), color-mix(in oklab, var(--color-surface-2) 82%, transparent)),
    radial-gradient(circle at 88% 8%, rgba(211, 20, 20, 0.18), transparent 18rem);
  box-shadow: var(--shadow-md);
}

.calculation-copy h2 {
  max-width: 13ch;
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.calculation-copy p {
  max-width: 58ch;
  color: var(--color-text-muted);
}

.calculation-board {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: color-mix(in oklab, var(--color-surface) 78%, transparent);
  box-shadow: var(--shadow-md);
}

.calc-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-5);
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}

.calc-row:last-child {
  border-bottom: 0;
}

.calc-row span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold-strong);
  line-height: 1;
}

.calc-row h3 {
  font-size: var(--text-lg);
}

.calc-row p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.directions {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

.direction {
  grid-column: span 4;
  min-height: 190px;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface) 86%, transparent);
  content-visibility: auto;
}

.direction.wide {
  grid-column: span 6;
}

.direction h3 {
  font-size: var(--text-lg);
}

.direction p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.process {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.process-panel {
  position: sticky;
  top: 108px;
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.process-panel h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.process-panel p {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.steps {
  display: grid;
  gap: var(--space-4);
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-5);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface) 70%, transparent);
}

.step-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold-strong);
  line-height: 1;
}

.step h3 {
  font-size: var(--text-lg);
}

.step p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.confidence {
  padding-top: 0;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.confidence-card {
  min-height: 280px;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface) 82%, transparent);
}

.confidence-card span {
  display: inline-block;
  margin-bottom: var(--space-8);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-gold-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.confidence-card h3 {
  font-size: var(--text-lg);
}

.confidence-card p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.confidence-card.priority {
  color: #171614;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 34%),
    var(--color-gold-strong);
  border-color: transparent;
}

.confidence-card.priority span,
.confidence-card.priority p {
  color: rgba(18, 19, 20, 0.76);
}

.crm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

.crm-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.crm-card h3 {
  font-size: var(--text-lg);
}

.crm-card p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.crm-table {
  width: 100%;
  margin-top: var(--space-6);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.crm-row {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.9fr;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  border-bottom: 1px solid var(--color-divider);
}

.crm-row:last-child {
  border-bottom: 0;
}

.crm-row.header {
  font-weight: 800;
  color: var(--color-gold-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--color-surface) 94%, transparent), color-mix(in oklab, var(--color-surface-2) 86%, transparent)),
    var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.form-copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.form-copy p {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.request-checklist {
  margin-top: var(--space-6);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-bg) 44%, transparent);
}

.request-checklist span {
  display: block;
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-gold-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-checklist ul {
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.request-checklist li {
  display: flex;
  gap: var(--space-3);
}

.request-checklist li::before {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  content: '';
  background: var(--color-gold-strong);
  border-radius: 50%;
}

.lead-form {
  display: grid;
  gap: var(--space-4);
}

.field {
  display: grid;
  gap: var(--space-2);
}

.field label {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  background: color-mix(in oklab, var(--color-bg) 72%, transparent);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-gold) 24%, transparent);
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.contact-card {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface) 70%, transparent);
}

.contact-card span {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.contact-card strong {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
}

.pulse-section {
  padding-top: 0;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.pulse-card {
  position: relative;
  min-height: 260px;
  padding: var(--space-6);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 84%, transparent), color-mix(in oklab, var(--color-surface-2) 68%, transparent));
  box-shadow: var(--shadow-md);
}

.pulse-card::before {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 56px;
  height: 56px;
  content: '';
  border: 1px solid color-mix(in oklab, var(--color-gold-strong) 48%, transparent);
  border-radius: 50%;
}

.pulse-card span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-gold-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse-card strong {
  display: block;
  max-width: 10ch;
  margin-top: var(--space-10);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.pulse-card p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pulse-card.featured {
  grid-column: span 1;
  color: #171614;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), transparent 36%),
    radial-gradient(circle at 86% 16%, rgba(229, 25, 25, 0.18), transparent 11rem),
    var(--color-gold-strong);
  border-color: transparent;
}

.pulse-card.featured span,
.pulse-card.featured p {
  color: rgba(18, 19, 20, 0.72);
}

.footer {
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-divider);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.footer .brand-logo {
  height: 82px;
}

.footer .official-logo {
  height: 92px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .calculation-grid,
  .process,
  .crm,
  .form-wrap,
  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    min-height: 440px;
  }

  .quote-inner {
    min-height: 380px;
  }

  .process-panel {
    position: static;
  }

  .direction,
  .direction.wide {
    grid-column: span 6;
  }

  .audience-grid,
  .kit-grid,
  .confidence-grid,
  .pulse-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calculation-copy {
    min-height: 420px;
  }

  .audience-grid article:nth-child(2) {
    border-right: 0;
  }

  .audience-grid article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-divider);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - var(--space-5)), var(--content-wide));
  }

  .nav {
    min-height: 74px;
  }

  .brand-logo {
    height: 58px;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 0.88rem;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-meta,
  .pathways,
  .contacts,
  .contact-actions,
  .audience-grid,
  .kit-grid,
  .confidence-grid,
  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
  }

  .audience-grid article,
  .audience-grid article:nth-child(2),
  .audience-grid article:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--color-divider);
  }

  .audience-grid article:first-child {
    border-top: 0;
  }

  .direction,
  .direction.wide {
    grid-column: span 12;
  }

  .path-card,
  .form-wrap {
    padding: var(--space-5);
  }

  .step {
    grid-template-columns: 1fr;
  }

  .calc-row {
    grid-template-columns: 1fr;
  }

  .crm-row {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: sticky;
    bottom: var(--space-3);
    z-index: 40;
    display: flex;
    justify-content: center;
    width: min(calc(100% - var(--space-5)), 520px);
    margin: 0 auto var(--space-3);
  }

.mobile-cta .btn {
    width: 100%;
    box-shadow: var(--shadow-lg);
  }
}

/* Build Tech v2 — premium engineering + монтажная коммерческая логика */

:root,
[data-theme='dark'] {
  --color-bg: #090b0e;
  --color-surface: #11161b;
  --color-surface-2: #182028;
  --color-surface-offset: #222b35;
  --color-divider: rgba(241, 213, 123, 0.13);
  --color-border: rgba(241, 213, 123, 0.2);
  --color-text: #f8f3e8;
  --color-text-muted: #b9af9c;
  --color-text-faint: #6f685d;
  --color-gold: #d49a23;
  --color-gold-strong: #ffe081;
  --color-red: #e51919;
  --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.48);
}

[data-theme='light'] {
  --color-bg: #f4efe5;
  --color-surface: #fff8e9;
  --color-surface-2: #e9deca;
  --color-surface-offset: #d6c8ad;
  --color-divider: rgba(39, 32, 22, 0.12);
  --color-border: rgba(39, 32, 22, 0.17);
  --color-text: #191815;
  --color-text-muted: #665b4b;
  --color-text-faint: #9a907e;
  --color-gold: #ad760e;
  --color-gold-strong: #d19516;
  --color-red: #c60f13;
}

body::before {
  background:
    radial-gradient(circle at 78% 14%, rgba(229, 25, 25, 0.2), transparent 26rem),
    radial-gradient(circle at 16% 8%, rgba(255, 224, 129, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(255, 224, 129, 0.04), transparent 28%),
    var(--color-bg);
}

body::after {
  opacity: 0.14;
  background-image:
    linear-gradient(135deg, transparent 0 43%, rgba(255, 224, 129, 0.24) 43% 43.25%, transparent 43.25% 100%),
    linear-gradient(135deg, transparent 0 57%, rgba(130, 144, 158, 0.16) 57% 59%, transparent 59% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48rem 48rem, 38rem 38rem, 7rem 7rem, 7rem 7rem;
  background-position: 100% -8rem, -10rem 7rem, center, center;
}

.site-header {
  background: color-mix(in oklab, var(--color-bg) 74%, transparent);
}

.brand-emblem {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand-glyph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 4px);
  gap: 3px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in oklab, var(--color-border) 70%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 224, 129, 0.12), transparent 54%),
    color-mix(in oklab, var(--color-surface) 48%, transparent);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.brand-glyph i {
  display: block;
  width: 4px;
  height: 17px;
  background: var(--color-red);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.brand-glyph i:nth-child(2),
.brand-glyph i:nth-child(4) {
  transform: translateY(3px);
}

.nav-links {
  padding: 0.5rem;
  border: 1px solid color-mix(in oklab, var(--color-border) 62%, transparent);
  border-radius: var(--radius-full);
  background: color-mix(in oklab, var(--color-surface) 34%, transparent);
}

.nav-links a {
  padding: 0.55rem 0.2rem;
}

.btn {
  min-height: 50px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 36%),
    var(--color-gold-strong);
  box-shadow: 0 18px 44px rgba(212, 154, 35, 0.24);
}

.btn-secondary {
  background: color-mix(in oklab, var(--color-surface) 34%, transparent);
  backdrop-filter: blur(14px);
}

.hero-v2 {
  padding-block: clamp(var(--space-14, 3.5rem), 7vw, var(--space-24));
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(var(--space-8), 6vw, var(--space-20));
  align-items: stretch;
}

.hero-shell::before {
  position: absolute;
  inset: -2rem -1rem auto 50%;
  height: 1px;
  pointer-events: none;
  content: '';
  background: linear-gradient(90deg, transparent, var(--color-gold-strong), transparent);
  opacity: 0.55;
}

.hero-content {
  display: grid;
  min-width: 0;
  align-content: center;
  min-height: clamp(640px, 76vh, 800px);
}

.hero-content h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 7.4vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero-content h1 span {
  display: block;
  color: var(--color-gold-strong);
}

.hero-copy {
  max-width: 760px;
  font-size: clamp(1.05rem, 1vw, 1.28rem);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin-top: var(--space-10);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: color-mix(in oklab, var(--color-surface) 54%, transparent);
  box-shadow: var(--shadow-md);
}

.hero-proof div {
  min-height: 138px;
  padding: var(--space-5);
  border-right: 1px solid var(--color-divider);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.deal-board {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: space-between;
  min-height: clamp(620px, 72vh, 760px);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--color-border) 84%, transparent);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(229, 25, 25, 0.18), transparent 14rem),
    linear-gradient(180deg, color-mix(in oklab, var(--color-surface) 92%, transparent), color-mix(in oklab, var(--color-surface-2) 92%, transparent));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.deal-board::before {
  position: absolute;
  inset: var(--space-5);
  z-index: -1;
  content: '';
  border: 1px solid rgba(255, 224, 129, 0.24);
  border-radius: 20px;
}

.deal-board::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  opacity: 0.34;
  background:
    linear-gradient(135deg, transparent 0 37%, rgba(255, 224, 129, 0.26) 37% 37.25%, transparent 37.25% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 4.8rem 4.8rem, 4.8rem 4.8rem;
}

.deal-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deal-board-top b {
  color: var(--color-gold-strong);
}

.deal-board-title p {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 5.4rem);
  font-weight: 800;
  color: var(--color-red);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.deal-board-title h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.25vw, 4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.scope-map {
  position: relative;
  min-height: 188px;
  margin-block: var(--space-8);
}

.scope-map::before,
.scope-map::after {
  position: absolute;
  inset: 50% 8% auto 8%;
  height: 1px;
  content: '';
  background: color-mix(in oklab, var(--color-gold-strong) 62%, transparent);
}

.scope-map::after {
  inset: 18% auto 18% 50%;
  width: 1px;
  height: auto;
}

.node {
  position: absolute;
  display: inline-flex;
  min-width: 112px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: color-mix(in oklab, var(--color-bg) 72%, transparent);
  backdrop-filter: blur(10px);
}

.node-main {
  top: 50%;
  left: 50%;
  color: #111315;
  background: var(--color-gold-strong);
  transform: translate(-50%, -50%);
}

.node:nth-child(2) {
  top: 0;
  left: 8%;
}

.node:nth-child(3) {
  top: 0;
  right: 4%;
}

.node:nth-child(4) {
  bottom: 0;
  left: 0;
}

.node:nth-child(5) {
  right: 8%;
  bottom: 0;
}

.deal-rows {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-bg) 36%, transparent);
}

.deal-rows li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
}

.deal-rows li:last-child {
  border-bottom: 0;
}

.deal-rows span {
  color: var(--color-text-muted);
}

.deal-rows b {
  color: var(--color-gold-strong);
  text-align: right;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: calc(var(--space-8) * -1);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: color-mix(in oklab, var(--color-surface) 76%, transparent);
  box-shadow: var(--shadow-md);
}

.signal-bar span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--color-divider);
}

.signal-bar span:last-child {
  border-right: 0;
}

.audience-grid,
.directions,
.pathways,
.kit-grid,
.calculation-grid,
.process,
.confidence-grid,
.crm,
.pulse-grid,
.form-wrap {
  position: relative;
}

.direction,
.path-card,
.kit-card,
.calc-row,
.step,
.confidence-card,
.crm-card,
.pulse-card,
.contact-card,
.lead-form,
.request-checklist {
  backdrop-filter: blur(14px);
}

.section-head h2 {
  max-width: 18ch;
}

.audience-strip {
  position: relative;
  margin-top: calc(var(--space-8) * -1);
  padding-bottom: var(--space-16);
}

.audience-grid {
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    color-mix(in oklab, var(--color-surface) 78%, transparent);
}

.audience-grid article {
  min-height: 270px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 224, 129, 0.035)),
    transparent;
}

.audience-grid h2 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-head {
  align-items: start;
}

.section-head p {
  max-width: 62ch;
  font-size: clamp(1rem, 1vw, 1.12rem);
}

.direction {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  padding: var(--space-7, 1.75rem);
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 84%, transparent), color-mix(in oklab, var(--color-surface-2) 74%, transparent));
}

.direction::before {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 54px;
  height: 54px;
  content: '';
  border: 1px solid color-mix(in oklab, var(--color-gold-strong) 48%, transparent);
  border-radius: 50%;
  opacity: 0.62;
}

.direction::after {
  position: absolute;
  right: -30px;
  bottom: -36px;
  width: 140px;
  height: 140px;
  content: '';
  background: radial-gradient(circle, rgba(255, 224, 129, 0.14), transparent 62%);
}

.direction.wide {
  min-height: 260px;
}

.direction.wide h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.direction h3,
.path-card h3,
.kit-card h3,
.step h3,
.confidence-card h3,
.crm-card h3 {
  letter-spacing: -0.025em;
}

.pathways {
  gap: var(--space-6);
}

.path-card {
  min-height: 500px;
  border-radius: 28px;
}

.path-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), transparent 38%),
    radial-gradient(circle at 82% 20%, rgba(229, 25, 25, 0.16), transparent 14rem),
    var(--color-gold-strong);
}

.path-card h3 {
  max-width: 11ch;
  font-size: clamp(2rem, 3.4vw, 4.4rem);
  line-height: 0.95;
}

.kit-grid {
  gap: var(--space-5);
}

.kit-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 84%, transparent), color-mix(in oklab, var(--color-surface-2) 66%, transparent));
}

.kit-card::before {
  display: block;
  margin-bottom: var(--space-8);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 800;
  color: color-mix(in oklab, var(--color-gold-strong) 78%, transparent);
  line-height: 1;
}

.kit-card:nth-child(1)::before {
  content: '01';
}

.kit-card:nth-child(2)::before {
  content: '02';
}

.kit-card:nth-child(3)::before {
  content: '03';
}

.kit-card:nth-child(4)::before {
  content: '→';
}

.calculation-copy,
.calculation-board,
.process-panel,
.crm-card,
.form-wrap {
  border-radius: 28px;
}

.calculation-copy {
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 90%, transparent), color-mix(in oklab, var(--color-surface-2) 80%, transparent)),
    radial-gradient(circle at 88% 8%, rgba(229, 25, 25, 0.2), transparent 18rem),
    radial-gradient(circle at 8% 86%, rgba(255, 224, 129, 0.1), transparent 16rem);
}

.calc-row {
  min-height: 150px;
  align-items: center;
}

.process-panel {
  overflow: hidden;
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 88%, transparent), color-mix(in oklab, var(--color-surface-2) 72%, transparent));
}

.process-panel::after {
  display: block;
  width: 100%;
  height: 220px;
  margin-top: var(--space-10);
  content: '';
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 224, 129, 0.32) 48% 48.4%, transparent 48.4% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 3.2rem 3.2rem, 3.2rem 3.2rem;
}

.step {
  min-height: 158px;
  align-items: center;
  background: color-mix(in oklab, var(--color-surface) 78%, transparent);
}

.confidence-card {
  border-radius: 22px;
}

.confidence-card.priority {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(229, 25, 25, 0.16), transparent 10rem),
    var(--color-gold-strong);
}

.crm-card {
  min-height: 420px;
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--color-surface) 88%, transparent), color-mix(in oklab, var(--color-surface-2) 72%, transparent));
}

.form-wrap {
  position: relative;
  overflow: hidden;
}

.form-wrap::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  background:
    radial-gradient(circle at 78% 20%, rgba(229, 25, 25, 0.16), transparent 16rem),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 224, 129, 0.18) 58% 58.25%, transparent 58.25% 100%);
}

.form-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding-top: var(--space-12);
  }

  .deal-board {
    min-height: 620px;
  }

  .hero-proof,
  .signal-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:nth-child(2),
  .signal-bar span:nth-child(2) {
    border-right: 0;
  }

  .hero-proof div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-divider);
  }
}

@media (max-width: 720px) {
  .hero-v2 {
    padding-top: var(--space-6);
  }

  .hero-content h1 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

  .hero-proof,
  .signal-bar {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .hero-proof div:nth-child(2),
  .hero-proof div:last-child,
  .signal-bar span,
  .signal-bar span:nth-child(2) {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--color-divider);
  }

  .hero-proof div:first-child,
  .signal-bar span:first-child {
    border-top: 0;
  }

  .deal-board {
    min-height: 580px;
    padding: var(--space-5);
    border-radius: 22px;
  }

  .deal-board-title p {
    font-size: clamp(2.3rem, 14vw, 4rem);
  }

  .deal-board-title h2 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .scope-map {
    min-height: 250px;
  }

  .node {
    min-width: 98px;
  }

  .deal-rows li {
    display: grid;
  }

  .deal-rows b {
    text-align: left;
  }
}
