:root {
  --bg: oklch(97% 0.006 105);
  --surface: oklch(100% 0 0);
  --fg: oklch(17% 0.012 120);
  --muted: oklch(46% 0.012 120);
  --border: oklch(88% 0.006 120);
  --accent: oklch(70% 0.18 142);
  --accent-soft: color-mix(in oklch, var(--accent) 12%, transparent);
  --fg-soft: color-mix(in oklch, var(--fg) 5%, transparent);
  --dark: oklch(16% 0.012 120);
  --font-display: 'Ubuntu', 'Barlow Semi Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Barlow Semi Condensed', 'Work Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  --fs-h1: clamp(44px, 6vw, 80px);
  --fs-h2: clamp(31px, 4vw, 48px);
  --fs-h3: 23px;
  --fs-lead: 20px;
  --fs-body: 17px;
  --fs-meta: 13px;
  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --gap-2xl: 96px;
  --container: 1180px;
  --gutter: 28px;
  --radius: 3px;
  --radius-lg: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(52px, 8vw, var(--gap-2xl)); }
.section + .section { border-top: 1px solid var(--border); }
.stack { display: flex; flex-direction: column; gap: var(--gap-md); }
.row { display: flex; align-items: center; gap: var(--gap-md); }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-xl); align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap-xl); align-items: start; }

.h1, h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0;
  font-weight: 800;
}
.h2, h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0;
  font-weight: 800;
}
.h3, h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.01em;
  margin: 0;
}
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--muted); max-width: 60ch; margin: 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--gap-md);
  font-weight: 800;
}
.meta { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.topnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topnav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); }
.logo-lockup { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.logo-lockup img { width: 78px; height: auto; }
.logo-text { display: flex; flex-direction: column; gap: 1px; font-family: var(--font-display); font-weight: 800; line-height: 1; }
.logo-text small { font-family: var(--font-mono); color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.topnav nav { display: flex; gap: clamp(14px, 2vw, 28px); align-items: center; }
.topnav nav a { font-size: 15px; font-weight: 700; color: var(--muted); }
.topnav nav a:hover, .topnav nav a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--fg); border-color: var(--accent); }
.btn-primary:hover { filter: brightness(.92); }
.btn-secondary { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-secondary:hover { background: var(--fg); color: var(--surface); }
.btn-ghost { background: transparent; color: var(--fg); border-color: transparent; padding-inline: 4px; }
.btn-ghost:hover { color: var(--accent); }
.btn-arrow::after { content: '->'; font-family: var(--font-mono); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-flat { background: transparent; border: 0; padding: 0; }
.card-rule { background: transparent; border: 0; border-top: 1px solid var(--fg); padding: 24px 0 0; border-radius: 0; }

.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--gap-xl); align-items: center; padding-block: clamp(44px, 7vw, 92px); }
.hero h1, .hero-split h1 { margin-bottom: var(--gap-md); }
.hero .lead, .hero-split .lead { margin-bottom: var(--gap-lg); }
.hero-cta { display: flex; gap: var(--gap-sm); flex-wrap: wrap; }
.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--fg);
}
.hero-media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, color-mix(in oklch, var(--fg) 72%, transparent));
}
.hero-proof-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  border: 1px solid color-mix(in oklch, var(--surface) 36%, transparent);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(14px);
}
.hero-proof-card strong { display: block; font-family: var(--font-display); font-size: 28px; line-height: 1; margin-bottom: 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill, .tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.pill { background: var(--fg-soft); color: var(--fg); border-color: var(--border); }

.trust-strip { background: var(--fg); color: var(--surface); padding-block: 18px; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; }
.trust-item { padding-inline: 18px; border-left: 1px solid color-mix(in oklch, var(--surface) 18%, transparent); }
.trust-item:first-child { border-left: 0; }
.trust-item strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.trust-item span { display: block; color: color-mix(in oklch, var(--surface) 68%, transparent); font-size: 13px; }

.feature .feature-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  margin-bottom: var(--gap-md);
}
.feature .feature-mark svg { width: 20px; height: 20px; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--muted); font-size: 16px; }
.service-card { min-height: 100%; display: flex; flex-direction: column; gap: 18px; }
.service-card .btn { align-self: flex-start; margin-top: auto; }

.image-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--fg);
  border: 1px solid var(--border);
}
.image-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.spec-list { display: grid; gap: 1px; border: 1px solid var(--border); background: var(--border); }
.spec-list div { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 16px; background: var(--surface); }
.spec-list dt { font-family: var(--font-mono); color: var(--muted); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.spec-list dd { margin: 0; font-weight: 700; }

.quote {
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 27ch;
  margin: 0;
}
.quote-author { color: var(--muted); font-size: 15px; margin-top: var(--gap-md); }
.quote-mark { font-family: var(--font-display); font-size: 120px; line-height: .65; color: var(--fg); opacity: .16; margin-bottom: -20px; }

.log-row { display: grid; grid-template-columns: 150px 1fr 130px; gap: var(--gap-lg); padding: 22px 0; border-top: 1px solid var(--border); align-items: baseline; }
.log-row h3 { font-size: 21px; }
.log-row .pull { text-align: right; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 700; }
.input, .textarea, .select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
  font-size: 16px;
}
.textarea { min-height: 118px; resize: vertical; line-height: 1.55; }

.logo-cloud { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); align-items: center; }
.logo-cloud figure { margin: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: grid; place-items: center; min-height: 110px; }
.logo-cloud img { max-height: 54px; width: auto; object-fit: contain; }

.pagefoot { background: var(--fg); color: var(--surface); padding-block: var(--gap-xl); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: var(--gap-lg); }
.pagefoot a { color: color-mix(in oklch, var(--surface) 72%, transparent); }
.pagefoot a:hover { color: var(--accent); }
.pagefoot .meta { color: color-mix(in oklch, var(--surface) 58%, transparent); }
.footer-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin: 0 0 14px; }
.footer-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.mobile-sticky {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.mobile-sticky a { border-radius: 0; min-height: 54px; }

@media (max-width: 1060px) {
  .topnav nav { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust-item:nth-child(odd) { border-left: 0; }
}
@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2, .hero-split, .footer-grid { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 420px; }
  .logo-cloud { grid-template-columns: repeat(2, 1fr); }
  .log-row { grid-template-columns: 1fr; gap: 8px; }
  .log-row .pull { text-align: left; }
  .nav-actions .btn-secondary { display: none; }
  .mobile-sticky { display: grid; }
  body { padding-bottom: 54px; }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .topnav-inner { min-height: 68px; }
  .logo-lockup img { width: 58px; }
  .logo-text span { font-size: 14px; }
  .nav-actions .btn-primary { padding-inline: 12px; font-size: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid color-mix(in oklch, var(--surface) 18%, transparent); padding-top: 12px; }
  .trust-item:first-child { border-top: 0; }
  .spec-list div { grid-template-columns: 1fr; gap: 5px; }
}
