:root {
  --bg: #fffaf0;
  --paper: #fffdf8;
  --ink: #0b2118;
  --muted: #556058;
  --green: #123c2b;
  --green-2: #1f6a47;
  --coral: #f05a42;
  --coral-dark: #d9422d;
  --sand: #efe8d8;
  --line: #d8d1c1;
  --blue: #d9e7e7;
  --shadow: 0 18px 50px rgba(32, 42, 33, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 253, 248, 0.98)),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -3rem;
  z-index: 20;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(216, 209, 193, 0.72);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: #fff9ef;
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  color: var(--coral);
  display: block;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.site-nav a {
  color: #20342a;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.nav-cta,
.button.primary {
  background: var(--coral);
  color: #fffdf8;
  box-shadow: 0 12px 26px rgba(240, 90, 66, 0.22);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(18, 60, 43, 0.07);
  border: 1px solid rgba(18, 60, 43, 0.18);
  color: var(--green);
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  max-width: var(--max);
  overflow: hidden;
  padding: clamp(1.8rem, 4.5vw, 3.5rem) clamp(1rem, 4vw, 3rem) clamp(1.6rem, 4vw, 2.8rem);
  margin: 0 auto;
}

.hero-copy {
  align-self: center;
}

.pilot-line,
.section-kicker {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 4.9vw, 4.25rem);
  max-width: 680px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.hero-lede {
  color: #29392f;
  font-size: clamp(1.04rem, 2vw, 1.26rem);
  margin: 1.3rem 0 0;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.7rem 0 1.4rem;
}

.trust-list,
.check-list {
  display: grid;
  gap: 0.72rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li,
.check-list li {
  align-items: start;
  display: grid;
  gap: 0.62rem;
  grid-template-columns: 20px 1fr;
}

.trust-list li::before,
.check-list li::before {
  align-items: center;
  border: 1px solid var(--green-2);
  border-radius: 50%;
  color: var(--green-2);
  content: "✓";
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.check-list.negative li::before {
  border-color: rgba(240, 90, 66, 0.4);
  color: var(--coral);
  content: "x";
}

.hero-visual {
  align-self: center;
  min-height: 400px;
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius);
  height: min(50vh, 560px);
  min-height: 380px;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.reply-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(18, 60, 43, 0.16);
  border-radius: 8px;
  bottom: 5%;
  box-shadow: var(--shadow);
  max-width: 360px;
  padding: 1.05rem;
  position: absolute;
  right: 4%;
}

.reply-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stars {
  color: #de9a2f;
  letter-spacing: 0;
}

.stars span {
  color: #d7cfc0;
}

.review-text {
  color: #243129;
  font-weight: 700;
  margin: 0.7rem 0;
}

.draft-label {
  color: var(--green-2);
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

section:not(.hero) {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

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

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.plain-panel,
.price-card,
.waitlist-form,
.audit-form,
.legal-card {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.plain-panel p {
  color: var(--muted);
}

.solution-panel {
  background:
    linear-gradient(135deg, rgba(217, 231, 231, 0.66), rgba(255, 253, 248, 0.92)),
    var(--paper);
}

.evidence-band {
  align-items: start;
  background: var(--green);
  color: #fffaf0;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  max-width: none;
}

.evidence-band > * {
  max-width: var(--max);
}

.evidence-band .section-kicker {
  color: #ffc4b8;
}

.evidence-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-grid article {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
}

.evidence-grid span {
  color: #ffd0c5;
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.evidence-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.evidence-grid p {
  color: rgba(255, 250, 240, 0.78);
  margin-bottom: 0;
}

.steps,
.segment-grid {
  display: grid;
  gap: 1rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article,
.segment-grid article {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.steps span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fffaf0;
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 36px;
}

.steps p,
.segment-grid p,
.pricing p,
.smile p,
.faq p,
.final-cta p {
  color: var(--muted);
}

.segment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.segment-grid span {
  color: var(--green-2);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.comparison {
  background:
    linear-gradient(180deg, rgba(217, 231, 231, 0.42), rgba(255, 253, 248, 0)),
    transparent;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

caption {
  color: var(--muted);
  margin-bottom: 0.7rem;
  text-align: left;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(18, 60, 43, 0.07);
  color: var(--green);
  font-size: 0.88rem;
}

.pricing {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr) minmax(260px, 0.52fr);
}

.price-copy {
  padding-top: 1rem;
}

.price-card {
  border-color: rgba(18, 60, 43, 0.35);
  box-shadow: var(--shadow);
}

.price-top span {
  color: var(--green-2);
  display: block;
  font-weight: 900;
}

.price-top strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.6rem;
}

.price-top small,
.fine-print,
.privacy-note,
.consent-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.text-link {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-card .check-list {
  margin: 1.2rem 0 1.35rem;
}

.waitlist-form,
.audit-form {
  display: grid;
  gap: 0.95rem;
}

.form-info-card p,
.form-launch-card p {
  margin: 0;
}

.form-launch-card {
  grid-template-columns: 1fr;
}

.form-requirements {
  margin: 0.2rem 0;
}

.consent-note {
  background: rgba(217, 231, 231, 0.52);
  border: 1px solid rgba(18, 60, 43, 0.16);
  border-radius: 7px;
  padding: 0.8rem;
}

label {
  color: #26372d;
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.35rem;
}

input,
select,
textarea {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  min-height: 44px;
  padding: 0.75rem 0.82rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(240, 90, 66, 0.32);
  outline-offset: 3px;
}

.form-status {
  color: var(--green-2);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
  min-height: 1.4rem;
}

.form-status.status-warning {
  color: var(--coral-dark);
}

.smile {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(239, 232, 216, 0.74), rgba(217, 231, 231, 0.72)),
    var(--sand);
  border-radius: 8px;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.8fr) minmax(0, 0.8fr);
}

.warmth-tool {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(18, 60, 43, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
}

.warmth-labels {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.warmth-labels span {
  color: var(--muted);
  font-size: 0.82rem;
}

.warmth-slider {
  --warmth-position: 50%;
  background: linear-gradient(90deg, #d9e7e7, #f8c6a6);
  border: 1px solid rgba(18, 60, 43, 0.2);
  border-radius: 999px;
  cursor: pointer;
  height: 28px;
  position: relative;
  width: 100%;
}

.warmth-slider span {
  background: var(--green-2);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(18, 60, 43, 0.24);
  display: block;
  height: 34px;
  left: var(--warmth-position);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 160ms ease;
  width: 34px;
}

.warmth-tool p {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #26372d;
  margin: 1rem 0 0;
  padding: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  margin: 0 auto;
  max-width: 820px;
}

details {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.final-cta {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
}

.audit-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audit-form.form-launch-card {
  grid-template-columns: 1fr;
}

.audit-form .wide,
.audit-form button,
.audit-form .form-status {
  grid-column: 1 / -1;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.6rem clamp(1rem, 4vw, 3rem);
}

.site-footer a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.legal-page h1 {
  font-size: clamp(2.3rem, 5.8vw, 4rem);
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  margin-top: 2rem;
}

.legal-card {
  margin-top: 1.4rem;
}

.legal-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .evidence-band,
  .pricing,
  .smile,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    overflow: hidden;
  }

  h1 {
    font-size: clamp(2.45rem, 8vw, 3.9rem);
    max-width: 100%;
  }

  .hero-copy {
    align-self: end;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    height: 400px;
    min-height: 0;
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 0.65rem 0.9rem;
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .pilot-line {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    height: 285px;
    object-position: center right;
  }

  .reply-card {
    bottom: auto;
    left: auto;
    max-width: none;
    position: relative;
    right: auto;
    top: auto;
    margin: -1rem 0 0;
  }

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

  .audit-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
