*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a2b2a;
  --ink-soft: #3d524f;
  --muted: #5f746f;
  --paper: #fffaf4;
  --mint: #e7f6f3;
  --warm: #fff1e4;
  --teal: #0d9488;
  --teal-deep: #0a7a71;
  --coral: #e86a4a;
  --coral-soft: #ffd8cc;
  --white: #ffffff;
  --line: rgba(26, 43, 42, 0.1);
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Nunito", "Avenir Next", sans-serif;
  --radius: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(26, 43, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 1.125rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 200;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

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

.eyebrow {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

.eyebrow--on-dark {
  color: #9ee8df;
}

.pill {
  display: inline-block;
  background: var(--coral-soft);
  color: #9a3412;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.lede {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  margin-bottom: 1rem;
  max-width: 22ch;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

/* Buttons — deliberately large */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--solid {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 106, 74, 0.35);
}

.btn--solid:hover {
  background: #d45536;
}

.btn--soft {
  background: var(--white);
  color: var(--ink);
  border: 2px solid rgba(26, 43, 42, 0.12);
}

.btn--soft:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.btn--xl {
  min-height: 3.75rem;
  padding: 0.95rem 1.75rem;
  font-size: 1.15rem;
}

.btn--nav {
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.top__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 28px;
  width: auto;
}

.top__nav {
  display: none;
  gap: 1.35rem;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 1rem;
}

.top__nav a:hover {
  color: var(--teal-deep);
}

@media (min-width: 860px) {
  .top__nav {
    display: flex;
  }
}

/* Hero — full-bleed one composition */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #d8efe9;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.88) 38%, rgba(255, 250, 244, 0.35) 62%, rgba(255, 250, 244, 0.08) 100%),
    linear-gradient(0deg, rgba(255, 250, 244, 0.75) 0%, transparent 42%);
}

.hero__stage {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.25rem;
  animation: float-in 0.75s var(--ease) both;
}

.hero__sovereign {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.55rem;
  max-width: 28rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--teal-deep);
  margin-bottom: 0.85rem;
}

.hero h1 {
  max-width: 14ch;
}

.hero__accent {
  color: var(--coral);
  font-style: italic;
}

.hero__lede {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.hero__ban {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink);
  max-width: 32rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.85rem 1rem;
  background: rgba(232, 106, 74, 0.12);
  border-left: 4px solid var(--coral);
  border-radius: 0 0.75rem 0.75rem 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero__bg img {
    object-position: 70% 35%;
    min-height: 280px;
  }

  .hero__fade {
    background:
      linear-gradient(180deg, transparent 0%, rgba(255, 250, 244, 0.55) 28%, rgba(255, 250, 244, 0.97) 52%, var(--paper) 100%);
  }

  .hero__stage {
    padding-top: 12rem;
  }

  .hero h1 {
    max-width: none;
  }
}

/* Sections */
.band {
  padding: 3.5rem 1.25rem;
}

.band--warm {
  background: var(--warm);
}

.band--mint {
  background: var(--mint);
}

.band--faq {
  background: linear-gradient(180deg, var(--paper), #f0faf8);
}

.band__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.compare,
.steps-art,
.score-art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  margin-top: 0.5rem;
}

.compare img,
.steps-art img,
.score-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 1024;
  object-fit: contain;
  object-position: center;
}

.compare-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.85rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.benefits {
  display: grid;
  gap: 1rem;
  text-align: left;
  margin: 2rem 0 1.5rem;
}

@media (min-width: 720px) {
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits li {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.benefits li:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.35);
}

.benefits__icon {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  margin-bottom: 0.35rem;
}

.benefits strong {
  font-size: 1.2rem;
  color: var(--ink);
}

.benefits span:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.score-flow {
  display: grid;
  gap: 1rem;
  text-align: left;
  margin: 2rem 0 1.75rem;
}

@media (min-width: 800px) {
  .score-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

.score-flow li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  border: 2px solid var(--line);
  display: grid;
  gap: 0.45rem;
}

.score-flow__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
}

.score-flow strong {
  font-size: 1.25rem;
}

.score-flow span:last-child {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 1rem;
  text-align: left;
  margin: 2rem 0 1.75rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
  display: grid;
  gap: 0.45rem;
}

.steps__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
}

.steps strong {
  font-size: 1.3rem;
}

.steps span:last-child {
  color: var(--muted);
}

.why {
  text-align: left;
}

.why h2 {
  max-width: 18ch;
}

.why__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 800px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why__grid > div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  border: 2px solid var(--line);
}

.why__grid p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* CTA */
.cta {
  padding: 3.75rem 1.25rem;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(158, 232, 223, 0.35), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(232, 106, 74, 0.25), transparent 45%),
    linear-gradient(145deg, #0f3f3b, #165e57 55%, #1a6f66);
  color: var(--white);
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta__lede {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 1.75rem;
  max-width: 34rem;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

@media (min-width: 640px) {
  .cta__form {
    flex-direction: row;
    align-items: stretch;
  }
}

.cta__form input {
  flex: 1;
  min-height: 3.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}

.cta__form input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.cta__form .btn {
  white-space: nowrap;
}

.cta__fine {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.cta__fine a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.form-success,
.form-error {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.form-success {
  color: #bbf7d0;
}

.form-error {
  color: #fecaca;
}

/* FAQ */
.faq {
  text-align: left;
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.faq > div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 2px solid var(--line);
}

.faq dt {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.faq dd {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* Footer */
.foot {
  padding: 2.5rem 1.25rem 3rem;
  background: #122826;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.foot__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.foot img {
  height: 24px;
  width: auto;
  opacity: 0.95;
}

.foot a {
  color: #9ee8df;
  font-weight: 700;
}

.foot__addr {
  font-size: 0.95rem;
  opacity: 0.8;
}

.foot__links {
  font-size: 0.95rem;
}

.foot__links a {
  color: #9ee8df;
  font-weight: 700;
}

.foot__seo {
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.85;
}

.sovereign {
  text-align: left;
  background: linear-gradient(135deg, #e7f6f3, #fff);
  border: 2px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin: 0 0 2rem;
}

.sovereign h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--teal-deep);
}

.sovereign p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.sovereign p:last-child {
  margin-bottom: 0;
}

.sovereign a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.about p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.about__lede {
  font-size: 1.2rem !important;
}

.about__contact {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--line);
}

.about__contact a {
  color: var(--teal-deep);
  font-weight: 700;
}

.cta__privacy {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.cta__privacy a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.legal__updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.legal__list {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.legal__list li {
  margin-bottom: 0.55rem;
}

.legal a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq dd a {
  color: var(--teal-deep);
  font-weight: 700;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__stage {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
