:root {
  color-scheme: light;
  --ink: #08234a;
  --muted: #526173;
  --navy: #062f5f;
  --navy-2: #031d3b;
  --teal: #087a78;
  --teal-soft: #e8f8f7;
  --amber: #b96809;
  --amber-soft: #fff6e4;
  --coral: #bc4d42;
  --coral-soft: #fff0ee;
  --line: #d8e2ef;
  --surface: #ffffff;
  --surface-2: #f6f9fc;
  --shadow: 0 18px 45px rgba(8, 35, 74, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(216, 226, 239, .42) 1px, transparent 1px),
    linear-gradient(rgba(216, 226, 239, .36) 1px, transparent 1px),
    #fbfdff;
  background-size: 56px 56px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(3, 29, 59, .18);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  flex: 0 0 auto;
}

.brand-mark svg,
.nav-toggle svg,
.trust-inner svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .86);
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(122, 231, 218, .78);
  border-radius: var(--radius);
  background: rgba(8, 122, 120, .68);
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(16px);
}

.trust-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #19385e;
  font-size: 14px;
}

.trust-inner p {
  margin: 0;
}

.trust-inner svg {
  color: var(--teal);
  flex: 0 0 auto;
}

.hero {
  padding: 78px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 58px;
  align-items: start;
}

.plain-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #29415f;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 122, 120, .22);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

.button.full {
  width: 100%;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-row span {
  min-height: 74px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-size: 13px;
}

.proof-row strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.checker-card,
.info-panel,
.checklist-panel,
.timeline-list,
details,
.source-grid a,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.checker-card {
  padding: 22px;
}

.card-header,
.result-topline,
.plan-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.status-chip,
.tag,
.result-state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.status-chip,
.result-state,
.tag.teal {
  background: var(--teal-soft);
  color: #03615f;
  border: 1px solid #b7dfdc;
}

.tag.amber {
  background: var(--amber-soft);
  color: var(--amber);
  border: 1px solid #f1d49c;
}

.tag.coral {
  background: var(--coral-soft);
  color: var(--coral);
  border: 1px solid #f1beb8;
}

.checker-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  color: #203957;
  font-weight: 800;
  font-size: 14px;
}

.choice {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  cursor: pointer;
}

.choice input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  accent-color: var(--teal);
  flex: 0 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input:not([type="radio"]),
select {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  border: 1px solid #c9d5e4;
  border-radius: var(--radius);
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
}

small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.result-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #bfd8d6;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7fffe, #fff);
}

.result-topline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.result-panel h3 {
  margin-top: 18px;
  color: var(--teal);
  font-size: 24px;
}

.result-panel p {
  margin: 10px 0 0;
  color: #38516c;
}

.timeline-meter {
  height: 8px;
  margin: 20px 0 14px;
  border-radius: 999px;
  background: #dce7f3;
  overflow: hidden;
}

.timeline-meter span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #0c9f9c);
  transition: width .35s ease;
}

.date-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.date-row span {
  font-size: 12px;
  color: var(--muted);
}

.date-row strong,
.date-row em {
  display: block;
  font-style: normal;
}

.date-row strong {
  color: #213b5b;
}

.notice-box {
  margin-top: 16px;
  border: 1px solid #efd09a;
  border-radius: var(--radius);
  padding: 12px;
  background: var(--amber-soft);
  color: #6d440c;
  font-size: 14px;
  font-weight: 700;
}

.comparison,
.split-section,
.dates-section,
.faq-section,
.sources-section {
  padding: 58px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:not(.plain-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  padding: 20px;
  box-shadow: 0 14px 34px rgba(8, 35, 74, .08);
}

.plan-card {
  border-top: 3px solid var(--teal);
}

.plan-card.amber {
  border-top-color: var(--amber);
}

.plan-card.coral {
  border-top-color: var(--coral);
}

.price {
  margin: 24px 0 8px;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #28425f;
}

li + li {
  margin-top: 7px;
}

.split-grid,
.dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.info-panel,
.checklist-panel {
  padding: 24px;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.steps-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.steps-list p {
  margin: 0;
  color: #344d69;
}

.check-row {
  width: 100%;
  min-height: 64px;
  margin-top: 12px;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.check-row:hover,
.check-row:focus,
.check-row.is-done {
  transform: translateX(3px);
  border-color: #9dcfcb;
  background: #f7fffe;
}

.check-row span,
.check-row small {
  display: block;
}

.check-row span {
  color: var(--ink);
  font-weight: 850;
}

.link-button {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 850;
  cursor: pointer;
  padding: 0;
}

.timeline-list {
  padding: 12px 22px;
  box-shadow: 0 14px 34px rgba(8, 35, 74, .08);
}

.timeline-list article {
  position: relative;
  padding: 18px 0 18px 28px;
  border-left: 2px solid #c7d9e9;
}

.timeline-list article::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 24px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px #c7d9e9;
}

.timeline-list time {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.timeline-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

details {
  padding: 16px 18px;
  box-shadow: none;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.source-grid a {
  min-height: 86px;
  padding: 17px;
  text-decoration: none;
  box-shadow: none;
  transition: border-color .18s ease, transform .18s ease;
  font-weight: 850;
}

.source-grid a:hover,
.source-grid a:focus {
  transform: translateY(-2px);
  border-color: #9dcfcb;
}

.source-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.footer-grid strong {
  color: #fff;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid a {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .65s ease forwards;
}

.delay-1 {
  animation-delay: .12s;
}

.delay-2 {
  animation-delay: .22s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    background: var(--navy-2);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .checker-card {
    order: -1;
  }

  .plan-grid,
  .source-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .nav-wrap {
    width: min(100% - 28px, var(--max));
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .trust-inner {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px 0;
  }

  h1 {
    font-size: 43px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .proof-row,
  .form-grid,
  .plan-grid,
  .faq-grid,
  .source-grid,
  .date-row {
    grid-template-columns: 1fr;
  }

  .card-header,
  .result-topline,
  .plan-title,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .comparison,
  .split-section,
  .dates-section,
  .faq-section,
  .sources-section {
    padding: 42px 0;
  }
}
