:root {
  --paper: #e6e9ed;
  --paper-2: #d8dde3;
  --ink: #0e1216;
  --ink-soft: #3a434d;
  --line: #c2c8d0;
  --surface: #f2f4f6;
  --surface-2: #fafbfc;
  --accent: #0f6b5c;
  --accent-ink: #0a4a40;
  --signal: #d9772f;
  --warn: #b45309;
  --ok: #2f6b45;
  --dark: #0e1216;
  --dark-2: #161c22;
  --dark-3: #1e262e;
  --dark-line: #2c3640;
  --dark-text: #d5dbe2;
  --dark-muted: #8b96a3;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --font: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.mono-label {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--accent);
  font-weight: 500;
}

.sec-idx {
  font-family: var(--mono);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
}

.sec-idx.light {
  color: rgba(14, 18, 22, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-mail {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.nav-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.btn:hover {
  background: var(--accent-ink);
  transform: translateY(-2px);
}

.text-link {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

/* Hero */
.hero {
  position: relative;
  padding: 48px 0 80px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-meta {
  margin: 0 0 14px;
  color: rgba(14, 18, 22, 0.45);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.brand-line {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.h-line {
  display: block;
}

.h-accent {
  color: var(--accent-ink);
  font-style: italic;
}

.hero-lead {
  margin: 0;
  max-width: 40ch;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

/* UI */
.ui-stage {
  margin: 0;
  position: relative;
  transform: translateY(20px);
  animation: rise 1s var(--ease) 0.15s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(20px);
  }
}

.ui-tag {
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--signal);
  color: #1a1008;
  padding: 6px 10px;
  font-weight: 600;
}

.ui-window {
  background: var(--dark);
  color: var(--dark-text);
  border: 1px solid #05070a;
  box-shadow:
    0 30px 60px rgba(14, 18, 22, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.ui-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #12171d;
  border-bottom: 1px solid var(--dark-line);
  font-size: 12px;
  font-family: var(--mono);
}

.ui-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a5562;
}

.ui-bar em {
  margin-left: 8px;
  font-style: normal;
  color: var(--dark-muted);
  flex: 1;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(62, 207, 142, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 207, 142, 0);
  }
}

.ui-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 340px;
}

.ui-side {
  padding: 14px 10px;
  border-right: 1px solid var(--dark-line);
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-side strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 6px;
}

.ui-fake {
  border: 0;
  text-align: left;
  background: transparent;
  color: #b7c0ca;
  font: inherit;
  font-size: 13px;
  padding: 8px;
  cursor: default;
}

.ui-fake.active {
  background: #2c3642;
  color: #fff;
  border-left: 2px solid var(--signal);
}

.ui-main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket {
  background: var(--dark-3);
  border: 1px solid var(--dark-line);
  padding: 12px 14px;
  transition: border-color 0.25s ease;
}

.ticket.live {
  border-color: color-mix(in srgb, var(--signal) 55%, var(--dark-line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--signal) 20%, transparent);
}

.ticket.dim {
  opacity: 0.65;
}

.ticket header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 11px;
}

.t-id {
  color: var(--dark-muted);
}

.t-sla.warn {
  color: #e0a06a;
}

.t-sla.ok {
  color: #7db892;
}

.ticket h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #f0f3f6;
  font-family: var(--font);
}

.ticket p,
.ticket footer {
  margin: 0;
  font-size: 12px;
  color: var(--dark-muted);
  font-family: var(--mono);
}

.ticket footer {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--dark-line);
}

/* Map — WOW section */
.map-section {
  padding: 88px 0 100px;
  background:
    radial-gradient(900px 400px at 70% 20%, rgba(15, 107, 92, 0.18), transparent 55%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--dark-text);
  border-bottom: 1px solid #05070a;
  overflow: hidden;
}

.map-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 48px;
}

.map-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.map-section .mono-label {
  color: #5fd4b8;
}

.sys-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 360px;
  border: 1px dashed var(--dark-line);
  background:
    linear-gradient(var(--dark-line) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--dark);
  padding: 28px 24px;
  overflow: hidden;
}

.sys-wires {
  position: absolute;
  inset: 12% 8%;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.sys-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sys-core {
  align-items: center;
}

.sys-node {
  width: 100%;
  max-width: 220px;
  padding: 14px 16px;
  background: var(--dark-3);
  border: 1px solid var(--dark-line);
}

.sys-core .sys-node {
  max-width: 240px;
}

.sys-node.core {
  border-color: #0f6b5c;
  box-shadow: 0 0 0 1px rgba(15, 107, 92, 0.35), 0 20px 40px rgba(0, 0, 0, 0.35);
  background: #182028;
}

.sys-out {
  align-items: flex-end;
}

.n-code {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--dark-muted);
  margin-bottom: 8px;
}

.sys-node strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #f0f3f6;
}

.sys-node em {
  font-style: normal;
  font-size: 12px;
  color: var(--dark-muted);
  font-family: var(--mono);
}

.map-foot {
  margin: 28px 0 0;
  max-width: 58ch;
  color: var(--dark-muted);
  font-size: 16px;
}

/* Strip */
.strip {
  padding: 90px 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.mega-num {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.strip h2,
.scene-head h2,
.work-head h2,
.path-top h2,
.money-head h2,
.objections h2,
.start-copy h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.strip-body p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  max-width: 52ch;
}

.strip-body strong {
  color: var(--ink);
}

/* Scene */
.scene {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.scene-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
  max-width: 820px;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.flow-col {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
  position: relative;
}

.flow-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.flow-col h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 400;
}

.flow-col.before {
  border-top: 3px solid var(--warn);
}

.flow-col.after {
  border-top: 3px solid var(--accent);
  background: #eef6f3;
}

.flow-col ol {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.flow-col li + li {
  margin-top: 10px;
}

.flow-mid {
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 28px;
  color: var(--accent);
}

/* Catalog */
.work {
  padding: 88px 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.work-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.work-head p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 48ch;
}

.catalog {
  border-top: 2px solid var(--ink);
}

.cat-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.cat-row:hover {
  background: color-mix(in srgb, var(--accent) 4%, transparent);
}

.cat-num {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.cat-row h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-family: var(--serif);
  font-weight: 400;
}

.cat-price {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-ink);
}

.cat-text {
  margin: 0;
  color: var(--ink-soft);
  max-width: 52ch;
  padding-top: 28px;
}

.work-note {
  margin: 28px 0 0;
  max-width: 64ch;
  font-size: 15px;
  color: var(--ink-soft);
}

/* Path */
.path {
  padding: 88px 0;
  background: var(--dark);
  color: var(--dark-text);
  border-bottom: 1px solid #05070a;
}

.path-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.path .mono-label {
  color: #5fd4b8;
}

.path-top p {
  margin: 0;
  color: var(--dark-muted);
  max-width: 48ch;
}

.path-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--dark-line);
}

.path-track li {
  padding: 28px 24px;
  border-right: 1px solid var(--dark-line);
  position: relative;
}

.path-track li:last-child {
  border-right: 0;
}

.path-n {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: #5fd4b8;
  margin-bottom: 16px;
}

.path-track strong {
  display: block;
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 8px;
}

.path-meta {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--signal);
  margin-bottom: 12px;
}

.path-track p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 15px;
}

/* Money */
.money {
  padding: 88px 0;
  background: var(--ink);
  color: #e7ebef;
}

.money-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.money-head p {
  margin: 0;
  color: #9aa5b1;
}

.money .mono-label {
  color: #5fd4b8;
}

.money-table-wrap {
  overflow-x: auto;
  border: 1px solid #3a4552;
}

.money-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.money-table th,
.money-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #3a4552;
  font-size: 15px;
}

.money-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b96a3;
  font-weight: 500;
}

.money-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.money-table td strong {
  font-weight: 650;
  color: #f0f3f6;
  font-family: var(--mono);
  font-size: 14px;
}

.money-note {
  margin-top: 28px;
  max-width: 64ch;
  padding-top: 20px;
  border-top: 1px solid #3a4552;
}

.money-note h3 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c5ced6;
  font-family: var(--mono);
  font-weight: 600;
}

.money-note p {
  margin: 0 0 10px;
  color: #9aa5b1;
  font-size: 15px;
}

/* Objections */
.objections {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.objections-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
}

.objections dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.objections dl > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.objections dt {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}

.objections dd {
  margin: 0;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* Start */
.start {
  padding: 88px 0 100px;
  background: var(--surface-2);
}

.start-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.start-copy .mono-label {
  margin-top: 8px;
}

.start-mail {
  margin-top: 24px !important;
}

.start-mail a {
  font-family: var(--mono);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 18px;
}

.lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  padding: 24px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-color: var(--accent);
}

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

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 16px 0;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.switch {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 24px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  margin-top: 1px;
}

.knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--ink-soft);
  transition: transform 0.22s var(--ease), background 0.22s ease;
}

.consent input:checked + .switch {
  background: var(--accent);
  border-color: var(--accent-ink);
}

.consent input:checked + .switch .knob {
  transform: translateX(18px);
  background: #fff;
}

.consent a {
  color: var(--accent-ink);
}

.form-ok {
  color: var(--ok);
  font-size: 14px;
}

.form-err {
  color: #9b2f2f;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--paper);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

.footer-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-right: auto;
}

.footer-row a {
  color: var(--accent-ink);
}

@media (max-width: 980px) {
  .hero-layout,
  .strip-grid,
  .flow,
  .cat-row,
  .path-track,
  .objections-grid,
  .start-layout,
  .map-head,
  .scene-head,
  .work-head,
  .path-top,
  .money-head {
    grid-template-columns: 1fr;
  }

  .sys-map {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .sys-wires {
    display: none;
  }

  .sys-col,
  .sys-out,
  .sys-core {
    align-items: stretch;
  }

  .sys-node {
    max-width: none;
  }

  .sys-core .sys-node {
    max-width: none;
  }

  .path-track li {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .path-track li:last-child {
    border-bottom: 0;
  }

  .flow-mid span {
    transform: rotate(90deg);
    display: inline-block;
  }

  .ui-body {
    grid-template-columns: 1fr;
  }

  .ui-side {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-btn {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 14px 20px 18px;
    gap: 12px;
  }

  .site-nav.open {
    display: flex;
  }

  .header-mail {
    display: none;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
