@font-face {
  font-family: "Nunito Local";
  src: url("assets/Nunito-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --navy: #183153;
  --navy-light: #264b76;
  --coral: #e76f51;
  --yellow: #f2b84b;
  --teal: #2a9d8f;
  --purple: #7667a8;
  --cream: #fff9f0;
  --paper: #ffffff;
  --text: #183153;
  --muted: #5d6878;
  --line: #dce3ea;
  --soft-teal: #effaf7;
  --soft-coral: #fff3ef;
  --shadow: 0 20px 60px rgba(24, 49, 83, 0.13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Nunito Local", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.staging-banner {
  padding: 8px 20px;
  background: #fff1c8;
  color: #63480f;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.staging-banner[hidden] {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 227, 234, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo-image {
  width: 176px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--coral);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  background: var(--navy);
  color: white;
  font-size: 14px;
}

.button-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 32px rgba(231, 111, 81, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d95f42;
  box-shadow: 0 18px 36px rgba(231, 111, 81, 0.34);
}

.button[aria-disabled="true"] {
  background: #788493;
  box-shadow: none;
  cursor: not-allowed;
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background: linear-gradient(145deg, #ffffff 0%, var(--cream) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 390px;
  height: 390px;
  right: -170px;
  top: -140px;
  background: rgba(242, 184, 75, 0.22);
}

.hero::after {
  width: 310px;
  height: 310px;
  left: -180px;
  bottom: -170px;
  background: rgba(42, 157, 143, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}

.product-lockup strong {
  color: var(--navy);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.05;
}

.product-lockup span {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--soft-teal);
  color: #18776d;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
}

.hero-lead,
.section-lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.feature-pills span {
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 7px 14px;
  background: white;
  font-size: 14px;
  font-weight: 900;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.hero-offer > div {
  display: grid;
}

.price-label,
.price-detail {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price {
  color: var(--navy);
  font-size: 36px;
  font-weight: 950;
  line-height: 1.05;
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.sample-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  font-size: 13px;
}

.sample-row a {
  color: var(--navy);
  font-weight: 950;
  text-underline-offset: 3px;
}

.sample-row span {
  color: var(--muted);
}

.hero-visual {
  margin: 0;
}

.hero-visual img,
.wide-preview,
.visual-grid figure img,
.preview-pair img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.section {
  padding: 104px 0;
}

.problem {
  background: var(--navy);
  color: white;
}

.problem .eyebrow {
  color: var(--yellow);
}

.problem h2 {
  margin-inline: auto;
}

.problem .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
  text-align: left;
}

.problem-grid article {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.problem-grid article > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.problem-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 19px;
}

.method {
  background: #f8fafc;
}

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

.method-card {
  min-height: 270px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
}

.method-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 28px;
  background: var(--accent);
  color: white;
  font-size: 20px;
  font-weight: 950;
}

.method-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.coral {
  --accent: var(--coral);
}

.yellow {
  --accent: var(--yellow);
}

.yellow > span {
  color: var(--navy);
}

.teal {
  --accent: var(--teal);
}

.purple {
  --accent: var(--purple);
}

.visual-section {
  background: var(--cream);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.visual-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.visual-grid figure {
  margin: 0;
}

.visual-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 950;
}

.included {
  background: white;
}

.wide-preview {
  width: 100%;
  margin-bottom: 45px;
}

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

.included-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  background: white;
}

.included-grid strong {
  color: var(--coral);
  font-size: 38px;
  font-weight: 950;
}

.included-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.routes {
  background: var(--soft-teal);
}

.route-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.route-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: 16px;
  padding: 16px 18px;
  background: white;
}

.route-list strong {
  min-width: 85px;
  color: var(--coral);
  font-size: 20px;
}

.route-list span {
  color: var(--muted);
  font-size: 15px;
}

.print-options {
  background: #f8fafc;
}

.preview-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.preview-pair figure {
  margin: 0;
}

.print-count {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.print-count div {
  display: grid;
  border-radius: 18px;
  padding: 24px;
  background: white;
  box-shadow: 0 10px 30px rgba(24, 49, 83, 0.07);
}

.print-count strong {
  font-size: 24px;
  font-weight: 950;
}

.print-count span {
  color: var(--muted);
  font-size: 14px;
}

.offer-section {
  background: var(--navy);
  color: white;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 90px;
}

.offer-copy .eyebrow {
  color: var(--yellow);
}

.offer-copy .check-list {
  columns: 2;
  column-gap: 40px;
}

.offer-copy .check-list li {
  break-inside: avoid;
  color: rgba(255, 255, 255, 0.82);
}

.price-card {
  border-radius: 28px;
  padding: 38px;
  background: white;
  color: var(--navy);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.price-card-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card-price {
  margin-top: 8px;
  font-size: 62px;
  font-weight: 950;
  line-height: 1;
}

.price-card-price small {
  font-size: 24px;
}

.price-card > p {
  color: var(--muted);
}

.price-card .brand-byline {
  margin-top: -8px;
  color: #18776d;
  font-size: 13px;
  font-weight: 900;
}

.price-card ul {
  margin: 26px 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
}

.checkout-notice {
  margin-top: 12px;
  border-radius: 12px;
  padding: 12px;
  background: #fff1c8;
  color: #63480f;
  font-size: 12px;
  font-weight: 750;
}

.checkout-notice[hidden] {
  display: none;
}

.legal-small {
  font-size: 11px;
  line-height: 1.45;
}

.faq {
  background: white;
}

.faq h2 {
  margin-bottom: 40px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 2px;
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding-right: 40px;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -4px;
  color: var(--coral);
  font-size: 30px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 62px 0 30px;
  background: #101f33;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-logo {
  color: white;
}

.footer-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a:not(.logo) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:not(.logo):hover {
  color: white;
}

.copyright {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero-grid,
  .visual-grid,
  .visual-grid.reverse,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 780px;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid {
    gap: 50px;
  }

  .price-card {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .seller-block {
    grid-column: 2 / 4;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 84px;
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header .button-small {
    display: none;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo {
    font-size: 15px;
  }

  .brand-logo-image {
    width: 150px;
  }

  .product-lockup strong {
    font-size: 24px;
  }

  .hero {
    padding: 62px 0 70px;
  }

  .hero-grid {
    gap: 44px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lead,
  .section-lead {
    font-size: 18px;
  }

  .hero-offer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .section {
    padding: 74px 0;
  }

  .problem-grid,
  .method-grid,
  .included-grid,
  .preview-pair,
  .print-count,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 34px;
  }

  .method-card {
    min-height: 0;
  }

  .offer-copy .check-list {
    columns: 1;
  }

  .price-card {
    padding: 28px;
  }

  .price-card-price {
    font-size: 54px;
  }

  .seller-block {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -12px 30px rgba(24, 49, 83, 0.12);
    backdrop-filter: blur(15px);
  }

  .mobile-cta > div {
    display: grid;
  }

  .mobile-cta strong {
    font-size: 20px;
    line-height: 1;
  }

  .mobile-cta span {
    color: var(--muted);
    font-size: 11px;
  }

  .mobile-cta .button {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

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

  .button {
    transition: none;
  }
}
