:root {
  --paper: #faf7f2;
  --paper-strong: #fffdf9;
  --ink: #181817;
  --muted: #6f6a63;
  --line: #ded7cf;
  --orange: #f05a24;
  --orange-dark: #c84518;
  --orange-soft: #ffe2d5;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(24, 24, 23, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(24, 24, 23, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.wordmark {
  position: relative;
  display: inline-block;
  padding-right: 0.56em;
  color: var(--ink);
  font-size: 1.52rem;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.wordmark::before {
  content: "";
  position: absolute;
  top: 0.015em;
  right: 0.65em;
  z-index: 1;
  width: 0.19em;
  height: 0.19em;
  border-radius: 50%;
  background: var(--orange);
}

.wordmark::after {
  content: "";
  position: absolute;
  top: 0.02em;
  right: 0;
  width: 0.43em;
  height: 0.38em;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43 38'%3E%3Cg fill='none' stroke='%23f05a24' stroke-width='6' stroke-linecap='round'%3E%3Cpath d='M3 12L25 3'/%3E%3Cpath d='M5 19H36'/%3E%3Cpath d='M3 26L25 35'/%3E%3C/g%3E%3C/svg%3E");
}

.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-actions a,
.footer-links a {
  color: #3e3a36;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 620;
}

.header-actions a:hover,
.footer-links a:hover { color: var(--orange-dark); }

.language-switch {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
}

.language-switch:hover { background: var(--paper-strong); }

.hero {
  padding: 118px 0 86px;
}

.eyebrow,
.kicker {
  color: var(--orange-dark);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 8.4vw, 7.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 760;
}

.hero-copy {
  max-width: 700px;
  margin: 0;
  color: #4c4843;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover { background: #fa6b34; }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.button-secondary:hover { border-color: #bcb2a7; background: var(--paper-strong); }
.button-paper { background: var(--paper-strong); color: var(--ink); white-space: nowrap; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #57514b;
  font-size: 0.92rem;
}

.trust-row i {
  color: var(--orange);
  font-style: normal;
  font-size: 0.7rem;
}

.trust-row b { font-weight: 650; }
.alpha-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading h2,
.statement-section h2,
.technical-section h2,
.download-section h2 {
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.wide-heading > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.34);
}

.step { padding: 28px; min-height: 250px; }
.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 800;
}
.step h3,
.feature-card h3 {
  margin: 54px 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}
.step p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.statement-section {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: start;
}
.kicker-light { color: #ff986e; }
.statement-copy { padding-top: 34px; }
.statement-copy p {
  margin: 0 0 24px;
  color: #d7d0c8;
  font-size: 1.2rem;
  line-height: 1.65;
}
.statement-copy .statement-emphasis {
  color: var(--paper);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card { padding: 28px; min-height: 260px; }
.feature-card h3 { margin-top: 36px; }
.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 850;
  font-size: 0.95rem;
}

.approval-panel {
  margin-top: 68px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: calc(var(--radius) + 4px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.approval-intro {
  max-width: 790px;
}

.approval-intro h3 {
  max-width: 700px;
  margin: 10px 0 20px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.approval-intro > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #cfc8bf;
  font-size: 1.05rem;
  line-height: 1.65;
}

.data-flow {
  margin-top: 46px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}

.flow-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.flow-node {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  line-height: 1.35;
}

.flow-node-accent {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.flow-arrow {
  color: #ff986e;
  font-size: 1.35rem;
}

.flow-boundary {
  margin: 20px 0 0;
  color: #aaa39a;
  font-size: .9rem;
  line-height: 1.6;
}

.approval-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.approval-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.approval-number {
  color: #ff986e;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.approval-steps h4,
.approval-docs h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.approval-steps p {
  margin: 0;
  color: #aaa39a;
  font-size: .92rem;
  line-height: 1.55;
}

.approval-docs {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) 1.3fr;
  gap: 38px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.approval-docs-heading p {
  margin: 0;
  color: #aaa39a;
  font-size: .9rem;
  line-height: 1.5;
}

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 14px 9px 16px;
  color: var(--paper);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

.doc-links a:hover {
  border-color: var(--orange);
  background: rgba(240,90,36,.1);
}

.doc-links i {
  color: #ff986e;
  font-style: normal;
}

.approval-status {
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #8f8981;
  font-size: .8rem;
  line-height: 1.55;
}

.technical-section {
  background: #f2ede7;
}
.technical-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.technical-list { margin: 0; }
.technical-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #d6cec5;
}
.technical-list dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.technical-list dd {
  margin: 0;
  font-weight: 650;
  line-height: 1.45;
}

.download-section {
  background: var(--orange);
  padding: 84px 0;
}
.download-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.download-inner h2 { font-size: clamp(2rem, 4vw, 4rem); }
.download-inner p { margin: 12px 0 0; font-size: 1.05rem; }
.download-inner .kicker { margin: 0; color: rgba(24,24,23,.65); }

.site-footer {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 900px) {
  .steps,
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .approval-steps { grid-template-columns: 1fr; }
  .approval-docs { grid-template-columns: 1fr; gap: 20px; }
  .statement-grid,
  .technical-grid { grid-template-columns: 1fr; gap: 36px; }
  .download-inner { grid-template-columns: auto 1fr; }
  .download-inner .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 680px) {
  .site-header { min-height: 72px; }
  .header-actions a { display: none; }
  .hero { padding: 82px 0 64px; }
  .section { padding: 82px 0; }
  .steps,
  .feature-grid { grid-template-columns: 1fr; }
  .step,
  .feature-card { min-height: auto; }
  .approval-panel { margin-top: 48px; }
  .flow-main { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .statement-section { padding: 84px 0; }
  .download-section { padding: 64px 0; }
  .download-inner { grid-template-columns: 1fr; }
  .download-inner .button { grid-column: auto; }
  .site-footer { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 36px; }
  .footer-links { flex-wrap: wrap; gap: 12px 20px; }
  .technical-list div { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
