:root {
  color-scheme: light;
  --ink: #142329;
  --muted: #52656c;
  --paper: #f5f3ed;
  --surface: #fffefa;
  --teal: #006c67;
  --teal-dark: #004b48;
  --mint: #cde8dd;
  --mint-light: #e6f2ec;
  --amber: #e6a84b;
  --border: #d9ded9;
  --shadow: 0 18px 60px rgba(20, 35, 41, 0.09);
  --radius-large: 28px;
  --radius-medium: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 5%, rgba(205, 232, 221, 0.65), transparent 26rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid rgba(20, 35, 41, 0.1);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.eyebrow,
.card-label,
.timeline-time {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 12vw, 9rem);
}

.hero-copy,
.page-intro {
  max-width: 780px;
}

.page-intro {
  padding-block: clamp(4rem, 10vw, 7.5rem) 2rem;
}

.page-intro h1 {
  max-width: 12ch;
}

.kicker {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border: 2px solid var(--teal);
  border-radius: 999px;
  color: white;
  background: var(--teal);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.back-link:focus-visible,
.brand:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.button-full {
  width: 100%;
}

.summary-card {
  padding: 2.25rem;
  border: 1px solid rgba(0, 108, 103, 0.18);
  border-radius: var(--radius-large);
  background: var(--mint-light);
  box-shadow: var(--shadow);
}

.summary-card strong,
.summary-card p {
  display: block;
}

.summary-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.summary-number {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.95;
}

.section {
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-heading-wide {
  max-width: 760px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.resource-card,
.step-card,
.legal-note {
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.resource-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.resource-card > div {
  max-width: 680px;
}

.resource-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link,
.back-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-underline-offset: 0.3em;
}

.back-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.step-card-accent {
  color: white;
  border-color: var(--teal);
  background: var(--teal);
}

.step-card-accent .card-label,
.step-card-accent .email-address {
  color: rgba(255, 255, 255, 0.76);
}

.step-card-accent .button {
  color: var(--teal-dark);
  border-color: white;
  background: white;
}

.step-card-accent .button:hover {
  background: var(--mint-light);
}

.step-index {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: rgba(20, 35, 41, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.5rem;
  line-height: 1;
}

.step-card-accent .step-index {
  color: rgba(255, 255, 255, 0.1);
}

.ordered-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  gap: 0.8rem;
}

.subject-line {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.08);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.email-address {
  margin: 0.85rem 0 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid #e7c27f;
  border-radius: var(--radius-medium);
  background: #fff5df;
}

.notice h2 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 800;
}

.notice p {
  margin-bottom: 0;
}

.notice-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #3d2a06;
  background: var(--amber);
  font-weight: 900;
}

.timeline {
  display: grid;
  margin-left: 0.65rem;
  border-left: 2px solid var(--mint);
}

.timeline-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.timeline-dot {
  position: absolute;
  top: 0.25rem;
  left: -0.62rem;
  width: 1.15rem;
  height: 1.15rem;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}

.legal-note {
  margin-top: 2rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.legal-note h2 {
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 800;
}

.legal-note p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer a {
  color: white;
  overflow-wrap: anywhere;
  text-underline-offset: 0.25em;
}

@media (max-width: 760px) {
  .eyebrow {
    display: none;
  }

  .hero,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    gap: 2.5rem;
  }

  .summary-card {
    max-width: 420px;
  }

  .resource-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-card {
    gap: 1.5rem;
  }

  .footer-inner {
    justify-content: center;
    padding-block: 1.5rem;
  }
}

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

  .button {
    transition: none;
  }
}
