﻿:root {
  --bg: oklch(98.8% 0.006 235);
  --surface: oklch(100% 0 0);
  --fg: oklch(22% 0.035 247);
  --muted: oklch(48% 0.026 247);
  --border: oklch(90% 0.010 235);
  --accent: oklch(75.8% 0.072 66.4);

  --accent-soft: color-mix(in oklch, var(--accent) 18%, transparent);
  --fg-soft: color-mix(in oklch, var(--fg) 7%, transparent);
  --blue-soft: color-mix(in oklch, var(--fg) 4%, var(--surface));

  --font-display: 'Iowan Old Style', 'Cormorant Garamond', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --fs-h1: clamp(46px, 6vw, 82px);
  --fs-h2: clamp(32px, 4vw, 52px);
  --fs-h3: 24px;
  --fs-lead: 19px;
  --fs-body: 16px;
  --fs-meta: 13px;

  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --gap-2xl: 96px;
  --container: 1180px;
  --gutter: clamp(18px, 4vw, 36px);

  --radius: 10px;
  --radius-lg: 16px;
}

*,
*::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%;
}

img {
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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(58px, 8vw, var(--gap-2xl));
}

.section+.section {
  border-top: 1px solid var(--border);
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack>*+* {
  margin-top: 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, minmax(0, 1fr));
  gap: var(--gap-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 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;
}

@media (max-width: 920px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-1,
  .grid-1-2 {
    grid-template-columns: 1fr;
  }
}

.h1,
h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0;
}

.h2,
h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

.h3,
h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--gap-md);
}

.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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--surface);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.topnav.is-scrolled {
  background: color-mix(in oklch, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  color: var(--fg);
  box-shadow: 0 12px 34px color-mix(in oklch, var(--fg) 6%, transparent);
}

.topnav.is-menu-open {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--surface);
  box-shadow: none;
}

.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 126px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.topnav.is-scrolled .brand-logo-light {
  display: none;
}

.topnav.is-scrolled .brand-logo-dark {
  display: block;
}

.topnav.is-menu-open .brand-logo-light {
  display: block;
}

.topnav.is-menu-open .brand-logo-dark {
  display: none;
}

.topnav nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
}

.topnav nav a {
  font-size: 14px;
  color: currentColor;
  opacity: 0.86;
}

.topnav nav a:hover {
  opacity: 1;
}

.pagefoot {
  padding-block: var(--gap-xl);
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.pagefoot .row-between {
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: color-mix(in oklch, var(--accent) 86%, white);
}

.topnav .btn-primary {
  background: transparent;
  color: currentColor;
  border-color: color-mix(in oklch, currentColor 42%, transparent);
}

.topnav .btn-primary:hover {
  border-color: currentColor;
  background: color-mix(in oklch, currentColor 9%, transparent);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: color-mix(in oklch, var(--fg) 22%, transparent);
}

.btn-secondary:hover {
  border-color: var(--fg);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: transparent;
  padding-inline: 8px;
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-arrow::after {
  content: "->";
  transition: transform 0.15s ease;
}

.btn-arrow:hover::after {
  transform: translateX(2px);
}

.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;
}

.feature .feature-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  margin-bottom: var(--gap-md);
}

.feature .feature-mark svg {
  width: 18px;
  height: 18px;
}

.feature h3 {
  margin-bottom: 8px;
}

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

.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  font-weight: 600;
}

.stat .stat-label {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  max-width: 24ch;
}

.stat .stat-unit {
  font-size: 0.5em;
  opacity: 0.7;
  margin-left: 2px;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 28ch;
}

.quote-author {
  color: var(--muted);
  font-size: 14px;
  margin-top: var(--gap-md);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: -28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--fg-soft);
  color: var(--fg);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
  font-size: 15px;
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.textarea {
  min-height: 98px;
  resize: vertical;
  line-height: 1.55;
}

.ds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ds-table th,
.ds-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.ds-table th {
  color: var(--muted);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ds-table tbody tr:hover {
  background: var(--fg-soft);
}

.ds-table .num-col {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.ph-img {
  background: linear-gradient(135deg, var(--accent-soft), var(--fg-soft)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ph-img.square {
  aspect-ratio: 1 / 1;
}

.ph-img.portrait {
  aspect-ratio: 3 / 4;
}

.ph-img.wide {
  aspect-ratio: 16 / 9;
}

.rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.rule-strong {
  border: 0;
  border-top: 1px solid var(--fg);
  margin: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid color-mix(in oklch, currentColor 42%, transparent);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 25;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 92px var(--gutter) 42px;
  background: var(--fg);
  color: var(--surface);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-panel {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 36px;
  text-align: center;
}

.mobile-nav-logo {
  width: 150px;
  height: auto;
}

.mobile-nav-links {
  display: grid;
  gap: 22px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 54px);
  line-height: 1;
  color: var(--surface);
}

.mobile-nav .btn-primary {
  background: var(--accent);
  color: var(--fg);
  border-color: var(--accent);
}

body.nav-open {
  overflow: hidden;
}

.cover {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 0;
  border-top: 0;
  background: var(--fg);
  overflow: hidden;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 25%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 0%));
}

.cover img {
  width: 100%;
  height: 100svh;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.cover-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vh, 54px);
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--fg);
  background: white;
  transform: translateX(-50%);
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.cover-scroll:hover {
  background: color-mix(in oklch, white 88%, var(--accent));
  transform: translateX(-50%) translateY(2px);
}

.cover-scroll svg {
  width: 22px;
  height: 22px;
}

.hero {
  padding-block: clamp(66px, 9vw, 126px);
}

.hero-center {
  text-align: center;
  max-width: 32ch;
  margin-inline: auto;
}

.hero h1 {
  margin-bottom: var(--gap-md);
}

.hero .lead {
  margin-bottom: var(--gap-lg);
}

.hero-cta {
  display: inline-flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

.hero-center .hero-cta {
  justify-content: center;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.log-row {
  display: grid;
  grid-template-columns: 120px 1fr 110px;
  gap: var(--gap-lg);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}

.log-row .meta {
  color: var(--muted);
}

.log-row h3 {
  font-size: 22px;
}

.log-row .pull {
  text-align: right;
}

.brand-band {
  background: var(--fg);
  color: var(--surface);
}

.brand-band .lead,
.brand-band .meta,
.brand-band .quote-author,
.brand-band .feature p {
  color: color-mix(in oklch, var(--surface) 74%, transparent);
}

.brand-band .eyebrow {
  color: var(--accent);
}

.brand-band .btn-secondary {
  color: var(--surface);
  border-color: color-mix(in oklch, var(--surface) 34%, transparent);
}

.brand-band .card {
  background: color-mix(in oklch, var(--surface) 7%, transparent);
  border-color: color-mix(in oklch, var(--surface) 16%, transparent);
}

.brand-band .tag {
  border-color: color-mix(in oklch, var(--surface) 24%, transparent);
  color: color-mix(in oklch, var(--surface) 78%, transparent);
}

.photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero-photo {
  min-height: clamp(330px, 42vw, 540px);
  box-shadow: 0 26px 80px color-mix(in oklch, var(--fg) 14%, transparent);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-copy {
  padding: 24px;
}

.product-copy .meta {
  margin-bottom: 10px;
}

.section-head {
  max-width: 680px;
  margin-bottom: var(--gap-xl);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.catalog-card .meta {
  margin-top: auto;
  padding-top: var(--gap-md);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.process-list .num {
  color: var(--fg);
}

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.route-map {
  min-height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 28% 28%, var(--accent-soft), transparent 26%),
    linear-gradient(145deg, color-mix(in oklch, var(--fg) 7%, var(--surface)), var(--surface));
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.route-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.route-line::before,
.route-line::after {
  content: "";
  height: 1px;
  background: var(--border);
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-note {
  display: none;
  margin: 14px 0 0;
  color: var(--fg);
  font-weight: 600;
}

.form-note.is-visible {
  display: block;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--gap-xl);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--fg);
  text-align: left;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  border-color: var(--accent);
  color: var(--fg);
  background: var(--accent-soft);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

.faq-answer p {
  margin: 0;
}

.faq-answer[hidden] {
  display: none;
}

.private-label {
  min-height: 230px;
  border-radius: var(--radius-lg);
  border: 1px dashed color-mix(in oklch, var(--fg) 28%, transparent);
  padding: 22px;
  display: grid;
  align-content: space-between;
  background: color-mix(in oklch, var(--surface) 88%, var(--fg-soft));
}

.client-stub {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--surface);
}

.client-line {
  height: 10px;
  border-radius: 999px;
  background: var(--border);
  margin-top: 10px;
}

.client-line.short {
  width: 58%;
}

@media (max-width: 920px) {

  .hero-split,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .topnav nav {
    display: none;
  }

  .topnav-inner {
    gap: 14px;
  }

  .brand-logo {
    width: 112px;
  }

  .nav-toggle {
    display: grid;
  }

  .topnav>.container>.btn {
    display: none;
  }

  .log-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .log-row .pull {
    text-align: left;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {

  .hero-cta,
  .hero-cta .btn {
    width: 100%;
  }

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

  .faq-question {
    padding-inline: 18px;
  }

  .faq-answer {
    padding-inline: 18px;
  }

  .card {
    padding: 22px;
  }

  .photo {
    min-height: 260px;
  }

  .cover,
  .cover img {
    min-height: 100svh;
  }
}