@font-face {
  font-family: "Playfair Display";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/playfair-400.woff2?v=9232a8246a") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("/fonts/playfair-italic-400.woff2?v=9232a8246a") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dmsans-400.woff2?v=9232a8246a") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dmsans-500.woff2?v=9232a8246a") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/dmsans-600.woff2?v=9232a8246a") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jetbrainsmono-400.woff2?v=9232a8246a") format("woff2");
}

:root {
  color-scheme: light;
  --ground: #f8f9f7;
  --ground-deep: #eef1ef;
  --surface: #ffffff;
  --midnight: #111c2c;
  --card-on-ink: #1b2839;
  --heading: #111c2c;
  --fg: #23303f;
  --fg-dim: #4f5d6b;
  --hair: #d7dddb;
  --hair-strong: #7c8886;
  --action: #07525a;
  --action-hover: #06464d;
  --action-pressed: #053a40;
  --on-action: #ffffff;
  --action-tint: rgba(7, 82, 90, 0.08);
  --accent: #c5a36b;
  --accent-deep: #9c7935;
  --on-ink: #e8ecea;
  --on-ink-muted: #a3afb9;
  --action-on-ink: #6fc5cc;
  --line-ink: rgba(232, 236, 234, 0.14);
  --success: #2f6a2b;
  --success-tint: rgba(32, 101, 76, 0.12);
  --danger: #93302a;
  --danger-tint: rgba(147, 48, 42, 0.1);
  --focus: #227ab0;
  --shadow-panel: 0 3px 18px rgb(17 28 44 / 4%);
  --maxw: 1140px;
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background: var(--ground);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
p {
  margin: 0;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }
}
.skip {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: 100;
  background: var(--surface);
  color: var(--fg);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--hair);
}
.skip:focus {
  top: 12px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--heading);
  text-wrap: balance;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(34px, 5.4vw, 58px);
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
}
h3 {
  font-size: clamp(20px, 2.3vw, 24px);
  letter-spacing: -.01em;
}
.mono {
  font-family: var(--mono);
  letter-spacing: -.01em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action);
  font-weight: 600;
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow-row::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-deep);
  flex: none;
}
.lead {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 64ch;
}
.lead--gap {
  margin-top: 16px;
}
.stack > * + * {
  margin-top: 16px;
}
.stack > .eyebrow-row + h2 {
  margin-top: 0;
}
.narrow {
  max-width: 760px;
}
.plain {
  list-style: none;
  padding: 0;
  margin: 0;
}
.after {
  margin-top: 24px;
}
.text-link {
  color: var(--action);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.text-link:hover {
  color: var(--action-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn-primary {
  background: var(--action);
  color: var(--on-action);
}
.btn-primary:hover {
  background: var(--action-hover);
}
.btn-primary:active {
  background: var(--action-pressed);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--hair-strong);
}
.btn-ghost:hover {
  border-color: var(--action);
  color: var(--action);
}
.btn[disabled] {
  opacity: 0.65;
  cursor: progress;
}
.band-ink .btn-ghost {
  color: var(--on-ink);
  border-color: var(--line-ink);
}
.band-ink .btn-ghost:hover {
  border-color: var(--action-on-ink);
  color: var(--on-ink);
}
.band-ink .btn-primary {
  background: var(--on-ink);
  color: var(--midnight);
}
.band-ink .btn-primary:hover {
  background: #ffffff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 247, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
  text-decoration: none;
  border-radius: 8px;
}
.brand img {
  width: 184px;
  height: auto;
}
.nav__links {
  display: flex;
  gap: 4px;
  margin: 0 0 0 16px;
  list-style: none;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-dim);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--heading);
  background: var(--action-tint);
}
.nav__link[aria-current="page"] {
  color: var(--heading);
  background: var(--action-tint);
}
.nav__spacer {
  flex: 1;
}
.nav__cta {
  padding: 8px 16px;
  min-height: 44px;
  white-space: nowrap;
}
.nav__menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--hair-strong);
  background: var(--surface);
  color: var(--heading);
  cursor: pointer;
  flex: none;
  padding: 0;
}
.nav__menu svg {
  width: 24px;
  height: 24px;
}
.nav__menu .icon-close {
  display: none;
}
.nav__menu[aria-expanded="true"] .icon-open {
  display: none;
}
.nav__menu[aria-expanded="true"] .icon-close {
  display: block;
}
.menu {
  border-top: 1px solid var(--hair);
  background: var(--ground);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
}
.menu[hidden] {
  display: none;
}
.menu__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 24px 24px;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 4px;
  border-bottom: 1px solid var(--hair);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading);
}
.menu__link[aria-current="page"] {
  color: var(--action);
}
.menu__link[aria-current="page"]::after {
  content: "Current page";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.menu__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.menu__actions .btn {
  width: 100%;
}
@media (max-width: 1079px) {
  .nav__links,
  .nav__signin {
    display: none;
  }
  .nav__menu {
    display: inline-flex;
  }
}
@media (min-width: 1080px) {
  .menu {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .nav__in {
    padding: 8px 16px;
    gap: 8px;
    min-height: 64px;
  }
  .brand img {
    width: 128px;
  }
  .nav__cta {
    padding: 8px 12px;
    font-size: 14px;
  }
  .menu__in {
    padding: 8px 16px 24px;
  }
}
@media (max-width: 340px) {
  .nav__cta {
    display: none;
  }
}

.sec {
  padding: clamp(64px, 8vw, 96px) 0;
}
.sec--tight {
  padding: clamp(48px, 6vw, 64px) 0;
}
.band-white {
  background: var(--surface);
}
.band-deep {
  background: var(--ground-deep);
}
.band-ink {
  background: var(--midnight);
  color: var(--on-ink);
}
.band-ink h2,
.band-ink h3 {
  color: var(--on-ink);
}
.band-ink .lead {
  color: var(--on-ink-muted);
}
.band-ink .eyebrow {
  color: var(--accent);
}
.sec__head {
  max-width: 64ch;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.sec__head h2 {
  margin-bottom: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ground);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, #000, transparent 75%);
}
.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px) clamp(48px, 6vw, 80px);
}
.hero h1 {
  margin: 16px 0 24px;
}

.hero .accent {
  color: inherit;
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: var(--accent-deep);
  text-decoration-thickness: .06em;
  text-underline-offset: .14em;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero__facts {
  display: flex;
  gap: 16px 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
@media (min-width: 881px) {
  .hero__facts {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
  }
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.fact__k {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.fact__l {
  font-size: 14px;
  color: var(--fg-dim);
}
.hero__fig {
  position: relative;
  margin: 0;
}
.hero__fig img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-panel);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__cap {
  position: absolute;
  left: 12px;
  right: auto;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(17, 28, 44, 0.78);
  color: #ffffff;
  font: 600 12px / 1.35 var(--sans);
  letter-spacing: .04em;
}
@media (max-width: 880px) {
  .hero__in {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__fig img {
    aspect-ratio: 16 / 11;
    object-position: center 42%;
  }
}
@media (max-width: 480px) {
  .hero__cta .btn {
    flex: 1 1 100%;
  }
}

.phero {
  background: var(--ground);
  border-bottom: 1px solid var(--hair);
}
.phero__in {
  padding-block: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 48px);
}
.phero h1 {
  max-width: 20ch;
}
.phero .lead {
  margin-top: 16px;
}
.phero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-panel);
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  color: var(--fg-dim);
  font-size: 16px;
}
.card p + p {
  margin-top: 12px;
}
.card__tag {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.card .btn {
  margin-top: 16px;
}
.band-ink .card {
  background: var(--card-on-ink);
  border-color: var(--line-ink);
  box-shadow: none;
}
.band-ink .card p {
  color: var(--on-ink-muted);
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split--top {
  align-items: start;
}
@media (max-width: 860px) {
  .grid-2,
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }
}

.cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}
.cats li {
  font-size: 14px;
  color: var(--fg);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 4px 12px;
  background: var(--surface);
}

.deeper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.deeper a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  box-shadow: var(--shadow-panel);
  transition: border-color .2s var(--ease);
}
.deeper a:hover {
  border-color: var(--action);
}
.deeper b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.deeper b::after {
  content: "\2192";
  font-family: var(--sans);
  color: var(--action);
}
.deeper span {
  color: var(--fg-dim);
  font-size: 15px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-panel);
}
.step__n {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--action);
  font-weight: 600;
}
.step h3 {
  font-size: 20px;
  margin: 8px 0;
}
.step p {
  color: var(--fg-dim);
  font-size: 16px;
}
@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.moves {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.moves .card {
  padding: 16px 24px;
}

.gates {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gate {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px 24px;
}
.gate__n {
  font-size: 15px;
  color: var(--action);
  font-weight: 600;
  grid-row: span 2;
}
.gate__t {
  font-weight: 600;
  color: var(--heading);
}
.gate__w {
  color: var(--fg-dim);
  font-size: 15px;
}

.shot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-panel);
  max-width: 100%;
}
.shot--pharmacies {
  width: 578px;
}
.shot--review {
  width: 554px;
}
.shot__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hair);
  background: var(--ground);
}
.shot__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hair);
  flex: none;
}
.shot__title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  margin-left: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot img {
  width: 100%;
  height: auto;
}
.shot-row {
  display: flex;
  justify-content: center;
}
.cap {
  font-size: 14px;
  color: var(--fg-dim);
  margin-top: 16px;
  line-height: 1.55;
  max-width: 64ch;
}
.cap b {
  color: var(--fg);
  font-weight: 600;
}
.cap--center {
  margin-inline: auto;
  text-align: center;
}

@media (max-width: 640px) {
  .shot--pharmacies {
    width: 316px;
  }
  .shot--review {
    width: 292px;
  }
}

.states {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.state {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line-ink);
  border-radius: 12px;
  padding: 16px;
  background: var(--card-on-ink);
}
.state__k {
  font-size: 15px;
  color: var(--on-ink);
  font-weight: 600;
}
.state__v {
  font-size: 15px;
  color: var(--on-ink-muted);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 4px 8px;
  white-space: nowrap;
  border: 1px solid currentColor;
}
.badge svg {
  width: 14px;
  height: 14px;
  flex: none;
}
.badge--yes {
  color: var(--action-on-ink);
}
.badge--no {
  color: var(--on-ink-muted);
}
@media (max-width: 760px) {
  .state {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .badge {
    justify-self: start;
  }
}

.msgs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}
.msg {
  border: 1px solid var(--line-ink);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-on-ink);
}
.msg__h {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action-on-ink);
}
.msg__b {
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-ink);
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.msg__b .sub {
  display: block;
  color: var(--on-ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.msg__f {
  padding: 0 16px 16px;
  font-size: 14px;
  color: var(--on-ink-muted);
}
@media (max-width: 760px) {
  .msgs {
    grid-template-columns: 1fr;
  }
}

.spec {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.spec li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-panel);
}
.spec svg {
  width: 20px;
  height: 20px;
  color: var(--action);
  margin-top: 4px;
}
.spec b {
  display: block;
  color: var(--heading);
  font-weight: 600;
}
.spec span {
  color: var(--fg-dim);
  font-size: 15px;
}

.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: none;
}
.flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--ground);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px;
}
.flow__step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--action);
  font-weight: 600;
  background: var(--surface);
  line-height: 1;
  padding: 2px 0;
}
.flow__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--midnight);
  color: var(--on-ink);
  font-size: 13px;
  font-weight: 600;
}
.flow__step b {
  color: var(--heading);
  font-weight: 600;
  margin-top: 4px;
}
.flow__step span:last-child {
  color: var(--fg-dim);
  font-size: 15px;
}
@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
  }
  .flow__step:not(:last-child)::after {
    content: "\2193";
    right: auto;
    left: 24px;
    top: auto;
    bottom: -14px;
    transform: none;
    padding: 0 2px;
  }
}

.note {
  margin-top: 24px;
  padding: 16px 24px;
  border-left: 2px solid var(--accent-deep);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  color: var(--fg-dim);
}
.note b {
  color: var(--heading);
  font-weight: 600;
}
.note--action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.note--action p {
  flex: 1 1 420px;
}

.finale {
  text-align: center;
}
.finale h2 {
  max-width: 22ch;
  margin: 0 auto 12px;
}
.finale .lead {
  margin: 0 auto 24px;
}
.finale__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .finale__cta .btn {
    flex: 1 1 100%;
  }
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
  }
}
.form-aside {
  position: sticky;
  top: 96px;
}
@media (max-width: 900px) {
  .form-aside {
    position: static;
  }
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow-panel);
}
.form-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}
.form-intro {
  color: var(--fg-dim);
  font-size: 15px;
  margin-bottom: 24px;
}
.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
  min-width: 0;
}
.fieldset > legend {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action);
  font-weight: 600;
  padding: 0;
  margin-bottom: 16px;
}
.fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field--full {
  grid-column: 1 / -1;
}
fieldset.field {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
fieldset.field legend {
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 560px) {
  .fields {
    grid-template-columns: 1fr;
  }
}
.field label,
.field .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
}
.optional {
  font-weight: 400;
  color: var(--fg-dim);
  font-size: 14px;
}
.field__hint {
  font-size: 14px;
  color: var(--fg-dim);
}
.input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--hair-strong);
  border-radius: 8px;
  padding: 12px;
  min-height: 48px;
  transition: border-color .2s var(--ease);
}
.input:hover {
  border-color: var(--fg-dim);
}
.input:focus {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--action);
}
textarea.input {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}
select.input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.field--invalid .input {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px var(--danger);
}
.field__error {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--danger);
  font-weight: 600;
}
.field__error[hidden] {
  display: none;
}
.field__error svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
}
.choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 560px) {
  .choices {
    grid-template-columns: 1fr;
  }
}
.choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding: 12px;
  border: 1px solid var(--hair);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  font-size: 15px;
  font-weight: 400 !important;
}
.choice input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--action);
  flex: none;
}
.choice:has(input:checked) {
  border-color: var(--action);
  background: var(--action-tint);
}
.states-picker {
  border: 1px solid var(--hair-strong);
  border-radius: 8px;
  background: var(--surface);
}
.states-picker summary {
  cursor: pointer;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  font-size: 15px;
  list-style: none;
}
.states-picker summary::-webkit-details-marker {
  display: none;
}
.states-picker summary::after {
  content: "+";
  font-size: 20px;
  color: var(--action);
}
.states-picker[open] summary::after {
  content: "\2212";
}
.states-picker__count {
  color: var(--fg-dim);
  font-size: 14px;
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px;
  padding: 4px 12px 12px;
  margin: 0;
  list-style: none;
}
.state-grid .choice {
  justify-content: center;
  padding: 8px 4px;
  font-size: 14px;
  align-items: center;
}
.state-grid .choice input {
  margin: 0;
}
.hp {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__phi {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--ground-deep);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 24px;
}
.form__phi svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: var(--action);
}
.form__phi b {
  color: var(--heading);
}
.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 8px;
}
.form__actions .btn {
  min-width: 180px;
}
@media (max-width: 480px) {
  .form__actions .btn {
    width: 100%;
  }
}
.form__fine {
  font-size: 14px;
  color: var(--fg-dim);
}
.alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 24px;
}
.alert[hidden] {
  display: none;
}
.alert svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
}
.alert--error {
  background: var(--danger-tint);
  color: var(--danger);
  border: 1px solid currentColor;
}
.alert--error a {
  color: inherit;
  font-weight: 600;
}
.success__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-tint);
  color: var(--success);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.success__badge svg {
  width: 16px;
  height: 16px;
}
.success h2 {
  outline: none;
}
.success p {
  color: var(--fg-dim);
  margin-top: 12px;
}
.success .ref {
  font-family: var(--mono);
  color: var(--heading);
}
.turnstile {
  margin: 4px 0 16px;
}

.routes {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.routes a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-panel);
}
.routes a:hover {
  border-color: var(--action);
}
.routes b {
  display: block;
  color: var(--heading);
  font-weight: 600;
}
.routes span {
  color: var(--fg-dim);
  font-size: 15px;
}

.foot {
  background: var(--midnight);
  color: var(--on-ink-muted);
  padding: 64px 0 32px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.foot__brand img {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}
.foot__tag {
  font-size: 15px;
  max-width: 34ch;
}
.foot h2 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--action-on-ink);
  margin: 0 0 8px;
  font-weight: 600;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--on-ink);
  text-decoration: none;
  font-size: 15px;
}
.foot a:hover {
  text-decoration: underline;
}
.foot__legal {
  border-top: 1px solid var(--line-ink);
  padding-top: 24px;
  font-size: 13px;
  color: var(--on-ink-muted);
  line-height: 1.65;
  max-width: 92ch;
}
@media (max-width: 860px) {
  .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .foot__grid {
    grid-template-columns: 1fr;
  }
}

.nf {
  min-height: 52vh;
  display: flex;
  align-items: center;
}
.nf .deeper {
  margin-top: 32px;
}
