  :root {
    --night: #10233a;      /* deep winter blue */
    --frost: #e6eef5;      /* pale frost */
    --ice: #b9cfe2;        /* muted ice line */
    --ember: #f28c28;      /* furnace glow */
    --ember-deep: #c7610a; /* pressed / text-safe ember */
    --paper: #ffffff;
    --ink: #1b2733;
    --muted: #55677a;
    --radius-lg: 18px;
    --radius-sm: 8px;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  *, *::before, *::after { box-sizing: inherit; }
  html { scroll-padding-top: env(safe-area-inset-top, 0px); }
  body {
    margin: 0;
    font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
    font-variation-settings: "wdth" 100;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    font-size: 1.0625rem;
  }
  a { color: var(--ember-deep); }
  :focus-visible { outline: 3px solid var(--ember); outline-offset: 2px; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

  /* Header */
  header { background: var(--night); color: var(--frost); }
  header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
  .logo { font-weight: 800; font-variation-settings: "wdth" 125; font-size: 1.35rem; letter-spacing: -0.01em; color: #fff; text-decoration: none; }
  .logo span { color: var(--ember); }
  header nav a { color: var(--frost); text-decoration: none; font-size: 0.95rem; margin-left: 1.25rem; }
  header nav a:hover { color: #fff; text-decoration: underline; }

  /* Hero */
  .hero { background: var(--night); color: var(--frost); padding: 3rem 0 4.5rem; position: relative; overflow: hidden; }
  .hero::after { /* the glow of a furnace burner, low and to the right */
    content: ""; position: absolute; right: -10%; bottom: -55%; width: 70%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(242,140,40,.35) 0%, rgba(242,140,40,0) 65%);
    pointer-events: none;
  }
  .hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: start; position: relative; z-index: 1; }
  .hero h1 {
    font-variation-settings: "wdth" 70; font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 0.98; letter-spacing: -0.02em;
    color: #fff; margin: 0.5rem 0 1.25rem;
  }
  .hero p.lead { font-size: 1.2rem; max-width: 34ch; color: var(--frost); margin: 0 0 1.75rem; }
  .assure { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
  .assure li { padding-left: 1.6rem; position: relative; }
  .assure li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--ember); }

  /* Lead form */
  .form-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: 0 24px 60px rgba(4,12,24,.45); }
  .form-card h2 { font-size: 1.35rem; margin: 0 0 0.25rem; font-variation-settings: "wdth" 90; }
  .progress { font-size: 0.9rem; color: var(--muted); margin: 0 0 1.25rem; }
  .step { display: none; }
  .step.active { display: block; }
  fieldset { border: 0; padding: 0; margin: 0; }
  legend { font-weight: 700; margin-bottom: 0.75rem; font-size: 1.05rem; }
  .choices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .choice input { position: absolute; opacity: 0; pointer-events: none; }
  .choice label {
    display: block; padding: 0.85rem 0.9rem; border: 2px solid var(--ice); border-radius: var(--radius-sm);
    cursor: pointer; font-weight: 600; line-height: 1.25; min-height: 100%;
  }
  .choice label small { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }
  .choice input:checked + label { border-color: var(--ember); background: #fff6ec; }
  .choice input:focus-visible + label { outline: 3px solid var(--ember); outline-offset: 2px; }
  .field { margin-bottom: 0.9rem; }
  .field label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.95rem; }
  .field input, .field select {
    width: 100%; font: inherit; padding: 0.7rem 0.8rem; border: 2px solid var(--ice); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
  }
  .field input:focus, .field select:focus { border-color: var(--night); outline: none; }
  .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .consent { font-size: 0.8rem; color: var(--muted); display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.5rem 0 1rem; }
  .consent input { margin-top: 0.2rem; flex: none; width: 1.1rem; height: 1.1rem; }
  .actions { display: flex; gap: 0.75rem; align-items: center; margin-top: 1.25rem; }
  .btn {
    font: inherit; font-weight: 700; border: 0; border-radius: var(--radius-sm); padding: 0.85rem 1.4rem;
    background: var(--ember); color: #1a0e02; cursor: pointer; font-size: 1.05rem;
  }
  .btn:hover { background: #ff9d3d; }
  .btn:active { background: var(--ember-deep); color: #fff; }
  .btn-link { background: none; border: 0; font: inherit; color: var(--muted); text-decoration: underline; cursor: pointer; padding: 0.5rem; }
  .error { color: #b3261e; font-size: 0.9rem; min-height: 1.2em; margin: 0.5rem 0 0; }
  .hp { position: absolute; left: -9999px; }
  .done { text-align: left; }
  .done h3 { font-size: 1.4rem; margin: 0 0 0.5rem; }

  /* Sections */
  section.band { padding: 4.5rem 0; }
  section.band.alt { background: var(--frost); }
  .band h2 { font-variation-settings: "wdth" 80; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 2rem; color: var(--night); max-width: 22ch; }
  .steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .steps li { counter-increment: s; }
  .steps li::before { content: counter(s); display: block; font-variation-settings: "wdth" 62; font-weight: 800; font-size: 3.5rem; line-height: 1; color: var(--ember); margin-bottom: 0.5rem; }
  .steps h3, .services h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
  .steps p, .services p { margin: 0; color: var(--muted); max-width: 40ch; }
  .services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.25rem 3rem; }
  .services article { border-top: 3px solid var(--night); padding-top: 1rem; }
  .faq { max-width: 760px; }
  .faq details { border-bottom: 1px solid var(--ice); padding: 1rem 0; }
  .faq summary { font-weight: 700; cursor: pointer; font-size: 1.05rem; }
  .faq details p { margin: 0.6rem 0 0; color: var(--muted); }
  .cta-band { background: var(--night); color: var(--frost); padding: 3.5rem 0; }
  .cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
  .cta-band p { font-size: 1.5rem; font-weight: 700; margin: 0; color: #fff; font-variation-settings: "wdth" 85; }
  .cta-band a.btn { text-decoration: none; display: inline-block; }

  footer { background: #0a1827; color: var(--ice); padding: 2.5rem 0; font-size: 0.875rem; }
  footer p { margin: 0 0 0.75rem; max-width: 80ch; }
  footer a { color: var(--frost); }

  @media (max-width: 860px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 2rem; }
    .steps { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr; }
    header nav { display: none; }
  }
  @media (max-width: 420px) {
    .choices, .row { grid-template-columns: 1fr; }
    .form-card { padding: 1.25rem; }
  }
  @media (prefers-reduced-motion: no-preference) {
    .step.active { animation: in .25s ease-out; }
    @keyframes in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  }

/* Inner pages: guides, legal, contact */
.page-hero { background: var(--night); color: var(--frost); padding: 3rem 0 2.75rem; }
.page-hero h1 {
  font-variation-settings: "wdth" 75; font-weight: 800; color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.02; letter-spacing: -0.015em;
  margin: 0 0 0.75rem; max-width: 20ch;
}
.page-hero p { margin: 0; max-width: 60ch; font-size: 1.1rem; }
.prose { max-width: 70ch; padding: 3rem 1.25rem 4rem; margin: 0 auto; }
.prose h2 { font-variation-settings: "wdth" 85; font-size: 1.6rem; line-height: 1.15; color: var(--night); margin: 2.5rem 0 0.75rem; }
.prose h3 { font-size: 1.15rem; margin: 1.75rem 0 0.4rem; }
.prose p, .prose li { color: var(--ink); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose .updated { color: var(--muted); font-size: 0.9rem; margin-top: 0; }
.callout { border-left: 4px solid var(--ember); background: #fff6ec; padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 2rem 0; }
.callout p { margin: 0; }
.cta-box { background: var(--frost); border-radius: var(--radius-lg); padding: 1.75rem; margin-top: 3rem; }
.cta-box h2 { margin-top: 0; }
.cta-box a.btn { text-decoration: none; display: inline-block; margin-top: 0.5rem; }
.guide-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.guide-list li { border-top: 3px solid var(--night); padding-top: 1rem; }
.guide-list a { font-weight: 700; font-size: 1.2rem; color: var(--night); }
.guide-list p { margin: 0.3rem 0 0; color: var(--muted); }
footer .foot-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; margin-bottom: 1.25rem; }
.prose > :first-child { margin-top: 0; }
