:root {
  --bg: #f3f0e8;
  --band: #f7f4ed;
  --surface: #fffcf8;
  --footer: #eae4d8;
  --ink: #142033;
  --ink-soft: #2f3e50;
  --muted: #3e4d5f;
  --line: rgba(20, 32, 51, 0.1);
  --line-strong: rgba(20, 32, 51, 0.16);
  --green: #0b5a40;
  --green-ink: #084832;
  --green-soft: #e5f2eb;
  --gold: #8a6232;
  --gold-ink: #5c4318;
  --gold-soft: #f4ecdf;
  --on-green: #f4faf6;
  --shadow: 0 1px 2px rgba(20, 32, 51, 0.04), 0 16px 40px rgba(20, 32, 51, 0.06);
  --shadow-sm: 0 1px 2px rgba(20, 32, 51, 0.04), 0 8px 24px rgba(20, 32, 51, 0.045);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --wrap: 70rem;
  --gutter: 1.25rem;
  --radius: 1.25rem;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p,
ul,
ol,
fieldset,
legend {
  margin: 0;
}

h1,
h2,
p,
li {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 12em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

button,
input {
  font: inherit;
}

abbr[title] {
  text-decoration: none;
  cursor: help;
}

a {
  color: var(--green-ink);
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--green-ink);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--on-green);
  border-radius: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link:focus {
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
}

main:focus {
  outline: none;
}

.wrap {
  width: min(var(--wrap), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand status"
    "nav nav";
  align-items: center;
  gap: 0.15rem 1rem;
  min-height: 4.25rem;
  padding-block: 0.7rem;
}

.wordmark {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark-mark {
  flex: none;
  color: var(--green);
}

.status-pill {
  grid-area: status;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  margin: 0;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(138, 98, 50, 0.28);
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-ink);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ink-soft);
  font-size: 0.975rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.hero {
  padding-top: clamp(2rem, 4.5vw, 3.25rem);
  padding-bottom: clamp(3.25rem, 6vw, 4.75rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  min-width: 0;
}

.status-indicator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.975rem;
}

.status-copy {
  min-width: 0;
}

.status-indicator strong {
  color: var(--ink);
  font-weight: 600;
}

.status-sep {
  color: var(--muted);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.lede {
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.125rem;
  line-height: 1.6;
}

.preview {
  width: 100%;
  min-width: 0;
  container-type: inline-size;
  padding: 1.25rem 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(20, 32, 51, 0.04), 0 20px 48px rgba(20, 32, 51, 0.07);
}

.preview-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.preview-kicker {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.preview-state {
  flex: none;
  color: var(--gold-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field {
  margin-top: 1.1rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.field > .field-label {
  display: block;
  margin-bottom: 0.45rem;
}

.field-label,
.delivery legend,
.fact-label,
.contact-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-tag {
  color: var(--gold-ink);
  font-size: 0.75rem;
  font-weight: 600;
}

.field-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem 0.85rem;
}

.place {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.amount,
.country-value {
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.amount {
  font-size: clamp(1.85rem, 4vw, 2.2rem);
}

.country-value {
  font-size: 1.55rem;
}

.code {
  flex: none;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.delivery {
  min-width: 0;
  margin-top: 1.1rem;
  padding-top: 1.05rem;
  border: 0;
  border-top: 1px solid var(--line);
}

.delivery legend {
  padding: 0;
  margin-bottom: 0.6rem;
}

.choices {
  display: grid;
  gap: 0.5rem;
}

@container (min-width: 26rem) {
  .choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.8rem;
  background: #fff;
  cursor: pointer;
  line-height: 1.3;
}

.choice input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.choice input:focus-visible {
  outline: none;
}

.choice::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  flex: none;
  border: 1.5px solid #8b8174;
  border-radius: 50%;
  background: #fff;
}

.choice:hover {
  border-color: #c4baae;
}

.choice:has(:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.choice:has(:checked)::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 2.5px #fff;
}

.choice:has(input:focus-visible) {
  outline: 2px solid var(--green-ink);
  outline-offset: 3px;
}

.field-hint,
.preview-note {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.field-hint {
  margin-top: 0.65rem;
}

.btn,
.mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0.8rem;
  background: var(--green);
  color: var(--on-green);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.011em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn {
  width: 100%;
  margin-top: 1.15rem;
}

.btn:hover,
.mail-btn:hover {
  background: var(--green-ink);
}

.btn:focus-visible,
.mail-btn:focus-visible {
  outline-color: var(--ink);
}

.coming-soon {
  margin-top: 0.85rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(138, 98, 50, 0.28);
  border-radius: 0.8rem;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 0.975rem;
  line-height: 1.45;
}

.preview-note {
  margin-top: 0.85rem;
}

.section {
  padding-block: clamp(4.25rem, 8vw, 6.5rem);
}

.band {
  background: var(--band);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--green-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-lede,
.prose {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.steps,
.spec-list,
.fact-list,
.trust-list,
.model-flow {
  list-style: none;
  padding: 0;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step,
.fact-list,
.trust-panel {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step {
  padding: 1.3rem 1.2rem 1.4rem;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.step h3 {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.step p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.spec-list {
  display: grid;
  gap: 0.85rem;
}

.spec-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
  padding: 1.2rem 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.spec-mark {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin-bottom: 0.35rem;
  background: var(--green);
}

.spec-list p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.corridor-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.corridor-grid .section-head {
  margin-bottom: 0;
}

.fact-list {
  padding: 0.35rem 1.15rem;
}

.fact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.fact-list li:last-child {
  border-bottom: 0;
}

.fact-value {
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.4;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.mail-btn {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.model {
  margin-top: 2.75rem;
}

.model h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.model-intro {
  max-width: 36rem;
  margin-top: 0.45rem;
  color: var(--ink-soft);
}

.model-flow {
  display: grid;
  gap: 0;
  margin-top: 1.35rem;
}

.model-flow li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  min-width: 0;
  padding: 0 0 1.35rem;
  line-height: 1.35;
}

.model-flow li::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: 1.7rem;
  bottom: 0;
  width: 1px;
  background: rgba(11, 90, 64, 0.35);
}

.model-flow li:last-child {
  padding-bottom: 0;
}

.model-flow li:last-child::before {
  display: none;
}

.model-index {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--bg);
  color: var(--green-ink);
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.model-label {
  padding-top: 0.15rem;
}

.trust {
  border-top: 1px solid var(--line);
}

.trust-panel {
  max-width: 44rem;
  padding: 0.2rem 1.2rem;
}

.trust-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}

.trust-list li:last-child {
  border-bottom: 0;
}

.site-footer {
  background: var(--footer);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 1.15rem;
  padding-block: 2.4rem 2rem;
}

.footer-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-category,
.footer-meta,
.disclosure {
  color: var(--ink-soft);
}

.footer-category,
.footer-meta {
  font-size: 0.975rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.email-link {
  overflow-wrap: anywhere;
  text-underline-offset: 0.18em;
}

.disclosure {
  margin-top: 0.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.55;
}

.disclosure strong {
  color: var(--ink);
  font-weight: 600;
}

@media (min-width: 768px) {
  :root {
    --gutter: 1.75rem;
  }

  html {
    scroll-padding-top: 4.75rem;
  }

  .header-bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand nav status";
    gap: 1.5rem;
    padding-block: 0.45rem;
  }

  .nav {
    justify-self: end;
  }

  .step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1rem;
    row-gap: 0.25rem;
    align-items: start;
  }

  .step-no {
    grid-row: 1 / span 2;
  }

  .step h3,
  .step p {
    margin-top: 0;
  }

  .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corridor-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand meta"
      "disclosure disclosure";
    align-items: start;
  }

  .footer-brand {
    grid-area: brand;
  }

  .footer-meta {
    grid-area: meta;
    text-align: right;
  }

  .disclosure {
    grid-area: disclosure;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(16rem, 0.82fr) minmax(28rem, 1.18fr);
    gap: 2.5rem 3.25rem;
    align-items: center;
  }

  .preview {
    padding: 1.45rem 1.4rem 1.35rem;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .step {
    display: block;
  }

  .step h3 {
    margin-top: 0.9rem;
  }

  .step p {
    margin-top: 0.6rem;
  }

  .spec-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .spec-list li:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .spec-list li:nth-child(n + 4) {
    grid-column: span 3;
  }

  .model-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
  }

  .model-flow li {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    height: 100%;
    padding: 1rem 0.85rem 1.05rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
  }

  .model-flow li::before {
    display: none;
  }

  .model-flow li:last-child {
    padding-bottom: 1.05rem;
  }

  .model-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.95rem;
    width: 0.42rem;
    height: 0.42rem;
    border-top: 1.5px solid var(--green-ink);
    border-right: 1.5px solid var(--green-ink);
    transform: translateY(-50%) rotate(45deg);
  }

  .model-index {
    background: var(--green-soft);
  }

  .model-label {
    padding-top: 0;
  }
}

@media (forced-colors: active) {
  .preview,
  .step,
  .spec-list li,
  .model-flow li,
  .fact-list,
  .trust-panel,
  .choice,
  .btn,
  .mail-btn,
  .status-pill,
  .coming-soon {
    border: 1px solid CanvasText;
  }

  .status-dot,
  .choice::before {
    background: CanvasText;
    forced-color-adjust: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .btn,
  .mail-btn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
  }
}
