@font-face {
  font-family: "Geologica";
  src: url("/assets/geologica-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --canvas: #f7f9fc;
  --surface: #ffffff;
  --ink: #0c1d35;
  --ink-soft: #50627a;
  --accent: #2157e8;
  --accent-strong: #1545c9;
  --accent-pale: #eaf1ff;
  --line: #cad7e6;
  --night: #0b2744;
  --orange: #f07a3e;
  --success: #097456;
  --success-bg: #ddf7ec;
  --shadow: 0 24px 60px rgba(12, 40, 75, .11);
  --radius: 5px;
  --container: 1200px;
  --section-space: clamp(112px, 9vw, 140px);
  --section-space-compact: clamp(84px, 7vw, 108px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Geologica", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }
img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid #78a5ff;
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(202, 215, 230, .9);
  background: rgba(247, 249, 252, .96);
  backdrop-filter: blur(10px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  flex: none;
  color: #0a1830;
  font-size: clamp(22px, 2.1vw, 29px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1;
  text-decoration: none;
}
.brand .biz {
  margin-left: .06em;
  background: linear-gradient(90deg, #285add 5%, #477adf 47%, #ee7d3d 53%, #ee7d3d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 42px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav-links a,
.mobile-nav a {
  font-size: 14px;
  font-weight: 540;
  text-decoration: none;
}
.nav-links a:hover { color: var(--accent); }

.locale-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
}
.locale-switch a { text-decoration: none; }
.locale-switch a[aria-current="true"] { color: var(--accent); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  color: #fff;
  background: var(--accent);
  box-shadow: none;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.2;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover {
  background: var(--accent-strong);
}
.button:active { filter: brightness(.88); }
.button-outline {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}
.button-outline:hover { color: #fff; }
.button-ghost {
  border-color: transparent;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}
.button-ghost:hover { background: var(--accent-pale); }
.button-light {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}
.button .arrow { font-size: 1.15em; transform: translateY(-1px); }

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.menu-button svg { width: 23px; }
.menu-button:active { background: var(--accent-pale); }
.menu-button .close-icon,
.menu-button[aria-expanded="true"] .menu-icon { display: none; }
.menu-button[aria-expanded="true"] .close-icon { display: block; }

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  padding: 24px;
  background: var(--canvas);
  border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-inner { display: grid; gap: 4px; }
.mobile-nav a:not(.button) {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.mobile-nav .locale-switch { margin: 22px 0; font-size: 15px; }

main { overflow: hidden; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 90px 0 96px;
  border-bottom: 1px solid var(--line);
}
.hero::after { display: none; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: #51657e;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-transform: none;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  flex: none;
  background: #76acff;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  letter-spacing: -.052em;
  line-height: 1.04;
}
h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.35vw, 76px);
  font-weight: 720;
}
.headline-accent { margin-inline-start: .08em; color: var(--accent); }
.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  color: #344860;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.microcopy {
  margin: 24px 0 0;
  color: #6a7b92;
  font-size: 14px;
}

.workflow {
  position: relative;
  width: min(100%, 600px);
  min-height: 630px;
  margin-inline: auto;
  isolation: isolate;
}
.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .48;
  background-image: radial-gradient(#9ec2fa 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 86%, transparent 100%);
}
.workflow::after { display: none; }
.workflow-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: #31435a;
  background: rgba(235,243,252,.92);
  font-size: 12px;
  font-weight: 700;
}
.workflow-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3782ed;
  box-shadow: none;
}
.flow-card {
  position: absolute;
  border: 1px solid #e1e8f1;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(20, 47, 82, .09);
}
.voice-card { top: 50px; left: 50%; width: 67%; padding: 18px; transform: translateX(-50%); }
.progress-card { top: 210px; right: 3.5%; width: 68%; padding: 18px; }
.output-card {
  bottom: 8px;
  width: 47%;
  height: 184px;
  min-height: 184px;
  overflow: hidden;
  padding: 17px 17px 40px;
}
.blog-card { left: 0; }
.social-card { right: 0; }
.flow-card-title {
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 690;
}
.voice-row { display: flex; align-items: center; gap: 12px; }
.play {
  width: 38px;
  height: 38px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
}
.waveform {
  height: 30px;
  flex: 1;
  background: repeating-linear-gradient(90deg, #71a2ff 0 2px, transparent 2px 6px);
  clip-path: polygon(0 43%, 4% 20%, 8% 73%, 12% 28%, 16% 55%, 20% 12%, 24% 80%, 28% 40%, 32% 64%, 36% 18%, 40% 73%, 44% 28%, 48% 58%, 52% 8%, 56% 75%, 60% 33%, 64% 65%, 68% 18%, 72% 74%, 76% 37%, 80% 67%, 84% 20%, 88% 72%, 92% 34%, 96% 57%, 100% 42%, 100% 58%, 0 58%);
}
.time { color: #6c7e94; font-size: 11px; }
.voice-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0 48px;
  color: #5c6c82;
  font-size: 11px;
  line-height: 1.4;
}
.mini-file {
  width: 27px;
  height: 27px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: #f2f6fb;
}
.progress-heading { display: flex; align-items: center; gap: 10px; }
.progress-heading .flow-card-title { margin-bottom: 0; }
.sparkle { color: var(--accent); font-size: 20px; }
.progress-line {
  height: 6px;
  margin: 12px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf3;
}
.progress-line span { display: block; width: 70%; height: 100%; background: var(--accent); }
.progress-meta { display: flex; justify-content: flex-end; color: #6b7c91; font-size: 11px; }
.progress-bullets { color: #6b7c91; font-size: 11px; line-height: 1.5; }
.progress-bullets span { display: block; }
.progress-bullets span::before { content: "•"; margin-right: 7px; color: #86b3f9; }
.connector {
  position: absolute;
  z-index: -1;
  border-color: #2871ed;
  border-style: solid;
}
.connector-one {
  top: 147px;
  right: 7%;
  width: 62px;
  height: 77px;
  border-width: 2px 2px 0 0;
  border-radius: 0 20px 0 0;
}
.connector-two {
  top: 270px;
  left: 24%;
  width: 8%;
  height: 160px;
  border-width: 2px 0 0 2px;
  border-radius: 18px 0 0 0;
}
.connector-three {
  top: 332px;
  left: 73%;
  width: 0;
  height: 98px;
  border-width: 0 0 0 2px;
}
.connector::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #2871ed;
  border-bottom: 2px solid #2871ed;
  transform: rotate(45deg);
}
.connector-one::after { right: -5px; bottom: -1px; }
.connector-two::after { left: -5px; bottom: -1px; }
.connector-three::after { left: -5px; bottom: -1px; }
.doc-thumb {
  height: 50px;
  margin-bottom: 6px;
  border-radius: 5px;
  background:
    linear-gradient(150deg, transparent 52%, rgba(23,63,110,.3) 53%),
    linear-gradient(25deg, #9bc6ef 0 48%, #deecfa 49% 100%);
}
.text-line { height: 5px; margin-top: 7px; border-radius: 99px; background: #d9e0e9; }
.text-line { display: block; border-radius: 0; }
.text-line.short { width: 66%; }
.output-card .flow-card-title { margin-bottom: 8px; }
.output-card .text-line { margin-top: 6px; }
.social-row { display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: center; margin: 3px 0; }
.social-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 5px; color: #fff; font-size: 10px; font-weight: 800; }
.social-icon.in { background: #1978b6; }
.social-icon.x { background: #121926; }
.social-icon.ig { background: linear-gradient(135deg, #6a35cb, #e5397d, #f7a238); }
.ready {
  position: absolute;
  left: 17px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 99px;
  color: var(--success);
  background: var(--success-bg);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}
.ready::before { content: "✓"; margin-right: 5px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section { padding: var(--section-space) 0; }
.section-tight { padding: var(--section-space-compact) 0; }
.section-white { background: #fff; }
.section-heading { max-width: 810px; margin-bottom: clamp(54px, 5vw, 70px); }
.section-heading h2,
.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.25vw, 58px);
  font-weight: 690;
}
.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(56px, 9vw, 128px);
  align-items: start;
}
.spotlight-copy h2 { margin-bottom: 20px; font-size: clamp(40px, 4.15vw, 58px); font-weight: 680; }
.spotlight-copy > p { color: var(--ink-soft); font-size: 19px; }
.benefit-list { display: grid; gap: 25px; margin: 34px 0; }
.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
}
.benefit-icon,
.step-icon,
.service-icon {
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-pale);
  border-radius: 50%;
}
.benefit-icon { width: 42px; height: 42px; }
.benefit svg, .service svg, .process-step svg { width: 23px; height: 23px; }
.benefit h3 { margin: 1px 0 5px; font-size: 18px; letter-spacing: -.02em; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.input-output-panel {
  padding: 0;
  border: 0;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 640;
  letter-spacing: 0;
  text-transform: none;
}
.panel-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.io-row { padding: 24px 4px; border-top: 1px solid var(--line); }
.io-row:first-of-type { border-top: 0; padding-top: 0; }
.io-row h3 { margin-bottom: 8px; font-size: 18px; }
.io-row p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.io-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.chip { padding: 6px 10px; border-radius: 99px; color: #35506e; background: #edf3f9; font-size: 12px; font-weight: 650; }

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.example-card {
  position: relative;
  min-height: 360px;
  padding: 38px;
  border: 1px solid var(--line);
  background: #fff;
}
.example-card:first-child { border-radius: 3px 0 0 3px; }
.example-card:last-child { margin-left: -23px; margin-top: 23px; border-radius: 0 3px 3px 0; border-top: 3px solid var(--accent); }
.example-kicker { color: var(--accent); font-size: 13px; font-weight: 620; letter-spacing: 0; text-transform: none; }
.example-card h3 { margin: 17px 0; font-size: 26px; }
.example-quote {
  margin: 0;
  color: #334a65;
  font-size: 18px;
  line-height: 1.65;
}
.example-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}
.honesty-note {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 15px 18px;
  border-left: 3px solid #79a9f5;
  color: #4f6279;
  background: #f1f6fc;
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  min-height: 260px;
  padding: 8px clamp(24px, 4vw, 60px) 0;
  border-left: 1px solid var(--line);
}
.service:first-child { padding-left: 18px; border-left: 0; }
.service:last-child { padding-right: 18px; }
.service-number { margin-bottom: 18px; color: #6c7f96; font-size: 12px; font-weight: 600; }
.service-icon { width: 56px; height: 56px; margin-bottom: 26px; border-radius: 3px; }
.service h3 { margin-bottom: 12px; font-size: 23px; }
.service p { color: var(--ink-soft); font-size: 16px; }
.text-link { color: var(--accent); font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link { padding-bottom: 3px; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--accent-strong); }

.process-section {
  padding: clamp(104px, 8vw, 124px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255,255,255,.045) 1px) 0 0 / 96px 100%,
    var(--night);
}
.process-section .eyebrow { color: #d5e4f5; }
.process-section h2 { max-width: 940px; margin-bottom: 52px; font-size: clamp(40px, 4.3vw, 60px); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.process-step { min-height: 180px; padding: 0 34px; border-left: 1px solid rgba(205,224,244,.26); }
.process-step:first-child { padding-left: 0; border-left: 0; }
.process-step-number { margin-bottom: 14px; color: #d9e6f4; font-size: 14px; }
.process-step-main { display: grid; grid-template-columns: 62px 1fr; gap: 20px; }
.step-icon { width: 62px; height: 62px; border: 1px solid rgba(154,192,235,.32); border-radius: 3px; color: #fff; background: rgba(129,178,235,.09); }
.process-step h3 { margin: 6px 0 10px; color: #fff; font-size: 20px; letter-spacing: -.02em; }
.process-step p { margin: 0; color: #c7d6e6; font-size: 14px; }
.process-note { max-width: 750px; margin: 44px 0 0; padding-top: 26px; border-top: 1px solid rgba(205,224,244,.2); color: #c7d6e6; font-size: 15px; }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.portrait-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    linear-gradient(rgba(33,87,232,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,87,232,.08) 1px, transparent 1px),
    #eff4fb;
  background-size: 28px 28px;
}
.portrait-mark {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid #c8daf0;
  border-radius: 3px;
  color: var(--accent);
  font-size: 42px;
  font-weight: 800;
}
.about-copy h2 { margin-bottom: 20px; font-size: clamp(36px, 4vw, 52px); }
.about-copy p { color: var(--ink-soft); font-size: 18px; }
.principles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.faq-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; }
.faq-intro h2 { font-size: clamp(38px, 4vw, 54px); }
.faq-intro p { color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 28px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; margin: -3px 0 24px; padding-right: 44px; color: var(--ink-soft); font-size: 15px; }

.cta-section { padding: clamp(84px, 7vw, 108px) 0; border-top: 1px solid var(--line); background: #fff; }
.cta-section { position: relative; }
.cta-section::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 7px; background: var(--accent); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 44px; }
.cta-grid h2 { margin-bottom: 10px; font-size: clamp(38px, 4.5vw, 58px); }
.cta-grid p { margin: 0; color: var(--ink-soft); font-size: 18px; }
.config-note { max-width: 580px; margin-top: 16px !important; color: #76521e !important; font-size: 13px !important; }

.site-footer { padding: 58px 0 26px; color: #d8e4f1; background: #091c32; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; gap: 60px; }
.site-footer .brand { color: #fff; }
.footer-brand p { max-width: 410px; margin: 18px 0 0; color: #aebfd2; font-size: 15px; }
.footer-title { margin: 0 0 15px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #bbcada; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(214,229,243,.15); color: #8498ae; font-size: 12px; }

.page-hero { padding: 100px 0 80px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .65fr; gap: 90px; align-items: end; }
.page-hero p { max-width: 700px; color: var(--ink-soft); font-size: 20px; }
.page-aside {
  padding: 26px;
  border-left: 3px solid var(--accent);
  background: #fff;
}
.page-aside strong { display: block; margin-bottom: 8px; }
.page-aside p { margin: 0; font-size: 15px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.content-prose h2 { margin-bottom: 20px; font-size: clamp(34px, 3.4vw, 48px); }
.content-prose h3 { margin: 30px 0 10px; font-size: 23px; }
.content-prose p, .content-prose li { color: var(--ink-soft); }
.content-prose ul { padding-left: 21px; }
.content-prose li { margin: 8px 0; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.scope-card { padding: 34px; border: 1px solid var(--line); border-radius: 3px; background: #fff; }
.scope-card-accent { border-top: 4px solid var(--accent); }
.scope-number { color: var(--accent); font-size: 13px; font-weight: 800; }
.scope-card h3 { margin: 16px 0 12px; font-size: 25px; }
.scope-card p, .scope-card li { color: var(--ink-soft); font-size: 15px; }
.scope-card ul { margin: 18px 0 0; padding-left: 20px; }
.boundary-table { width: 100%; border-collapse: collapse; background: #fff; }
.boundary-table th, .boundary-table td { padding: 20px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.boundary-table th { color: var(--ink); background: #eff5fb; font-size: 14px; }
.boundary-table td { color: var(--ink-soft); font-size: 15px; }
.legal-page { max-width: 820px; }
.legal-page h1 { font-size: clamp(42px, 5vw, 64px); }
.legal-page h2 { margin: 44px 0 12px; font-size: 27px; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-callout { margin: 34px 0; padding: 22px; border: 1px solid #f1d3a8; border-radius: 8px; color: #704b16; background: #fff9ef; }
.not-found { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 60px 0; text-align: center; }
.not-found-code { color: var(--accent); font-size: 14px; font-weight: 800; letter-spacing: .14em; }
.not-found h1 { margin: 18px 0; font-size: clamp(50px, 7vw, 82px); }
.not-found p { max-width: 550px; margin: 0 auto 30px; color: var(--ink-soft); }

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.hero .hero-copy { animation: hero-arrive .55s cubic-bezier(.2,.7,.2,1) both; }
.hero .hero-grid > div:last-child { animation: hero-arrive .65s .1s cubic-bezier(.2,.7,.2,1) both; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 40px; }
  h1 { font-size: clamp(45px, 5.4vw, 60px); }
  .workflow { transform: scale(.92); transform-origin: center; }
  .process-step { padding-inline: 22px; }
  .process-step-main { grid-template-columns: 52px 1fr; gap: 14px; }
  .step-icon { width: 52px; height: 52px; }
}

@media (max-width: 899px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; }
  .workflow { width: min(100%, 580px); margin-inline: auto; transform: none; }
  .section { padding: 104px 0; }
  .section-tight { padding: 84px 0; }
  .process-section { padding: 96px 0; }
  .spotlight-grid,
  .about-grid,
  .faq-wrap,
  .page-hero-grid,
  .split-grid { grid-template-columns: 1fr; gap: 46px; }
  .services-grid { grid-template-columns: 1fr; }
  .service,
  .service:first-child,
  .service:last-child { min-height: 0; padding: 30px 0; border-left: 0; border-top: 1px solid var(--line); }
  .service:first-child { border-top: 0; padding-top: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:first-child { min-height: 0; padding: 26px 0; border-left: 0; border-top: 1px solid rgba(205,224,244,.22); }
  .process-step:first-child { border-top: 0; padding-top: 0; }
  .about-grid { grid-template-columns: .8fr 1.2fr; }
  .faq-wrap { gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { padding-top: 72px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav-shell { min-height: 72px; }
  .mobile-nav { inset-block-start: 72px; }
  .hero { padding: 52px 0 58px; }
  .hero-grid { gap: 35px; }
  h1 { font-size: clamp(39px, 11.5vw, 49px); }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-ghost { width: auto; padding-left: 0; }
  .workflow { min-height: 620px; width: calc(100% + 8px); margin-left: -4px; }
  .workflow-label { left: 50%; }
  .voice-card { left: 50%; width: 82%; }
  .progress-card { top: 218px; right: 4%; width: 82%; }
  .output-card { bottom: 4px; width: 48.5%; height: 184px; min-height: 184px; padding: 13px 13px 40px; }
  .flow-card-title { font-size: 12px; }
  .connector-two { left: 10%; width: 8%; }
  .connector-three { left: 73%; }
  .section { padding: 88px 0; }
  .section-tight { padding: 72px 0; }
  .section-heading { margin-bottom: 44px; }
  .section-heading p { font-size: 17px; }
  .input-output-panel { padding: 24px; }
  .example-grid,
  .scope-grid { grid-template-columns: 1fr; }
  .example-card { min-height: auto; padding: 26px; }
  .example-card:first-child,
  .example-card:last-child { border-radius: 10px; }
  .example-card:last-child { margin: 0; border-radius: 3px; }
  .process-section { padding: 88px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-placeholder { max-width: 420px; }
  .faq-wrap { gap: 18px; }
  summary { font-size: 16px; }
  .cta-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { padding: 62px 0 54px; }
  .page-hero p { font-size: 17px; }
  .boundary-table, .boundary-table tbody, .boundary-table tr, .boundary-table td { display: block; }
  .boundary-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .boundary-table tr { margin-bottom: 14px; border: 1px solid var(--line); }
  .boundary-table td { border: 0; border-bottom: 1px solid var(--line); }
  .boundary-table td:last-child { border-bottom: 0; }
  .boundary-table td::before { content: attr(data-label); display: block; margin-bottom: 5px; color: var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .site-footer, .cta-section { display: none; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 30px 0; }
}
