:root {
  --ink: #142326;
  --muted: #5b6a6d;
  --line: #dce4e4;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --teal: #0b6b66;
  --teal-deep: #0b3b3c;
  --yellow: #f6c453;
  --red: #d85c4a;
  --shadow: 0 18px 50px rgba(20, 35, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img,
.footer img {
  width: 142px;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-button {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 59, 60, 0.2);
}

.nav-cta:hover,
.primary-button:hover {
  background: #092f30;
  transform: translateY(-1px);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.secondary-button:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(20, 35, 38, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5.4vw, 68px) clamp(20px, 4vw, 56px) 26px;
  background: linear-gradient(180deg, #fbfcfb 0%, #fff 46%, #eef4f1 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  hyphens: manual;
}

h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
}

.hero-outcome {
  border: 1px solid var(--line);
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(20, 35, 38, 0.08);
}

.hero-outcome .eyebrow {
  margin-bottom: 12px;
}

.hero-outcome ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-outcome li {
  color: var(--muted);
}

.hero-outcome strong {
  color: var(--ink);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  background: #fff;
  padding: 24px clamp(20px, 4vw, 56px);
}

.proof-band strong {
  display: block;
  margin-bottom: 6px;
}

.proof-band span {
  color: var(--muted);
}

.section,
.split-section,
.pricing-section,
.final-cta,
.lead-strip {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 56px);
}

.lead-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.lead-strip h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.lead-strip p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.pain-section {
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pain-card {
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--soft);
  padding: 20px;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
}

.outcome-section {
  background: var(--teal-deep);
  color: #fff;
}

.outcome-section .eyebrow {
  color: var(--yellow);
}

.outcome-section p,
.outcome-section .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.outcome-section .check-list li {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.outcome-section .check-list li::before {
  border-color: var(--yellow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-card {
  padding: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--yellow);
  color: #2a220d;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.split-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 50px;
  padding: 15px 18px 15px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.sprint-section {
  background: #fff;
}

.sprint-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sprint-step;
}

.sprint-steps li {
  position: relative;
  min-height: 66px;
  padding: 16px 18px 16px 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}

.sprint-steps li::before {
  counter-increment: sprint-step;
  content: counter(sprint-step);
  position: absolute;
  left: 18px;
  top: 16px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--teal-deep);
  color: #fff;
  font-weight: 900;
}

.sprint-steps strong {
  color: var(--ink);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.price-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.price-card {
  border-top: 6px solid var(--yellow);
  padding: 26px;
  box-shadow: var(--shadow);
}

.price-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-header span {
  font-weight: 900;
}

.price-header strong {
  color: var(--teal-deep);
  font-size: 2.4rem;
  white-space: nowrap;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding-left: 20px;
}

.price-card li::marker {
  color: var(--red);
}

.full {
  width: 100%;
}

.small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  background: var(--teal-deep);
  color: #fff;
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 24px;
}

.final-cta .primary-button {
  background: var(--yellow);
  color: #1d2518;
  box-shadow: none;
}

.final-cta .primary-button:hover {
  background: #f2b92e;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.content-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 90px) 20px;
}

.content-hero {
  max-width: 830px;
  margin-bottom: 34px;
}

.content-hero h1,
.article-page h1 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
}

.content-hero p,
.article-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.checklist-panel,
.inline-offer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checklist-panel {
  padding: clamp(22px, 4vw, 42px);
}

.number-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding-left: 22px;
}

.number-list li {
  padding-left: 4px;
  color: var(--ink);
  font-weight: 700;
}

.inline-offer {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--soft);
}

.inline-offer h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.inline-offer p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}

.compact {
  padding-right: 0;
  padding-left: 0;
}

.article-page {
  max-width: 920px;
}

.article-page h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.article-page p,
.article-page li {
  color: var(--muted);
}

.article-page ul {
  padding-left: 22px;
}

button.secondary-button {
  border: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
}

.legal-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 64px 20px 90px;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.placeholder {
  border-left: 4px solid var(--red);
  background: #fff5f3;
  padding: 14px 16px;
  color: var(--ink);
}

@media (max-width: 940px) {
  .hero,
  .split-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 122px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    width: auto;
    min-height: 42px;
    margin-left: auto;
    padding: 10px 14px;
  }

  .hero {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.04;
  }

  .lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 20px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .trust-row {
    display: none;
  }

  .hero-media img {
    max-height: 132px;
    aspect-ratio: 16 / 5.4;
  }

  .hero-outcome {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .price-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-strip .secondary-button {
    width: 100%;
  }

  .number-list {
    grid-template-columns: 1fr;
  }
}

@media print {
  .topbar,
  .footer,
  .hero-actions,
  .inline-offer {
    display: none;
  }

  body {
    background: #fff;
  }

  .content-page {
    max-width: none;
    padding: 0;
  }

  .checklist-panel {
    border: 0;
    padding: 0;
  }
}
