:root {
  --wash: #F7F9FA;     /* cool whitewash */
  --ink: #0E2A47;      /* deep Aegean */
  --blue: #1F5FA8;     /* working blue */
  --spray: #D6E6EF;    /* sea spray */
  --pumice: #5E6B78;   /* secondary text */
  --display: "Anybody", "Arial Narrow", sans-serif;
  --text: "Public Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--text);
}

.wrap { max-width: 44rem; margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--blue); text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

/* Hero: the one bold moment. Wide type pushed by the wind. */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--spray); }
.wind { position: absolute; inset: 0; width: 100%; height: 100%; }
.wind path {
  fill: none;
  stroke: var(--spray);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 180 60;
  animation: blow 14s linear infinite;
}
.wind path:nth-child(2) { animation-duration: 18s; stroke-dasharray: 260 90; }
.wind path:nth-child(3) { animation-duration: 11s; stroke-dasharray: 120 70; }
.wind path:nth-child(4) { animation-duration: 21s; stroke-dasharray: 300 110; }
@keyframes blow { to { stroke-dashoffset: -960; } }

.hero .wrap { position: relative; }
.brand { font: 600 1rem/1 var(--text); color: var(--pumice); margin: 0 0 1.5rem; }
h1 {
  font-family: var(--display);
  font-variation-settings: "wdth" 150;
  font-weight: 750;
  font-size: clamp(1.9rem, 8.2vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
}
.lede { font-size: 1.2rem; max-width: 34rem; margin: 0; }

/* Sections: quiet and disciplined. */
main { padding-top: 1rem; }
section { padding: 2.5rem 0 0.5rem; }
h2 {
  font-family: var(--display);
  font-variation-settings: "wdth" 115;
  font-weight: 650;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
h3 { font: 600 1.25rem/1.3 var(--text); margin: 0 0 0.25rem; }
.item { padding: 1.25rem 0 1.5rem; border-top: 1px solid var(--spray); }
.item p { margin: 0 0 0.75rem; }
.price { color: var(--pumice); font-style: italic; }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem; margin-top: 1rem; }
.button {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
}
.button:hover { background: var(--ink); }

.plain { list-style: none; padding: 0; margin: 0; }
.plain li { margin: 0 0 1rem; }

.foot { padding-top: 3rem; padding-bottom: 3rem; color: var(--pumice); font-size: 0.95rem; }

.dash li { position: relative; padding-left: 1.25rem; }
.dash li::before { content: ""; position: absolute; left: 0; top: 0.8em; width: 0.7rem; height: 2px; background: var(--blue); }
.steps { padding-left: 1.4rem; margin: 0; }
.steps li { margin: 0 0 1rem; padding-left: 0.3rem; }
.steps li::marker { font-family: var(--display); font-weight: 700; color: var(--blue); }
.doc .brand { margin-top: 3rem; }
.doc h1 { font-size: clamp(2rem, 6vw, 3rem); }
.doc h2 { font-size: 1.3rem; margin-top: 2rem; }
.doc p, .doc li { max-width: 38rem; }

@media (prefers-reduced-motion: reduce) {
  .wind path { animation: none; }
}
