:root {
  --ink: #131c19;
  --ink-soft: #25342d;
  --muted: #5f6d66;
  --line: #dbe3de;
  --line-soft: #e8eee9;
  --surface: #ffffff;
  --surface-soft: #f5f8f6;
  --surface-cream: #faf6ee;
  --green: #0f6b4b;
  --green-dark: #084a35;
  --green-deep: #14302a;
  --green-deeper: #0a201b;
  --coral: #d85d4b;
  --coral-soft: #f6dcd6;
  --blue: #2f6f8f;
  --yellow: #f2bf58;
  --yellow-warm: #f6d27b;
  --rose: #f9eee9;
  --mauve: #b88d8a;
  --shadow-sm: 0 6px 18px rgba(19, 33, 29, 0.08);
  --shadow: 0 24px 70px rgba(19, 33, 29, 0.18);
  --shadow-deep: 0 30px 80px rgba(8, 32, 27, 0.32);
  --serif: "Iowan Old Style", "Palatino Linotype", "Palatino", "URW Palladio L", Georgia, serif;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 3px solid var(--yellow);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 21, 17, 0.78), rgba(10, 21, 17, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f6d27b 0 40%, transparent 41%),
    linear-gradient(45deg, var(--green) 0 52%, var(--coral) 53%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-links {
  gap: clamp(16px, 2.4vw, 28px);
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.88;
}

.button-header {
  background: var(--yellow);
  color: var(--green-deep);
  padding: 10px 16px;
  min-height: 40px;
  font-size: 14px;
  border-radius: 8px;
}

.button-header:hover {
  background: #fad07a;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  background-image: url("https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 16, 0.9) 0%, rgba(7, 22, 16, 0.66) 45%, rgba(7, 22, 16, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 22, 16, 0.78) 0%, rgba(7, 22, 16, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 8vh, 86px) clamp(18px, 7vw, 92px);
  padding-top: 124px;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: #f6d27b;
}

.hero h1 {
  margin: 16px 0 18px;
  max-width: 920px;
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.012em;
}

.hero-h1-line {
  display: block;
}

.hero-h1-accent {
  font-style: italic;
  color: var(--yellow-warm);
  font-weight: 500;
}

.hero-flourish {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: clamp(-40px, 3vw, 60px);
  width: clamp(180px, 18vw, 280px);
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.hero-copy {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(15, 107, 75, 0.26);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button-tertiary {
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 8px;
}

.button-tertiary:hover {
  background: #fad07a;
}

.hero-capture {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  width: min(880px, 100%);
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-capture-slim {
  grid-template-columns: minmax(220px, 1fr) auto;
  max-width: 560px;
}

.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;
}

.hero-capture label {
  color: #fff;
}

.hero-capture input {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-capture input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.hero-capture .form-message {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
}

.hero-capture .form-message[data-state="success"] {
  color: #bcebd0;
}

.hero-capture .form-message[data-state="error"] {
  color: #ffd2ca;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.proof-strip div {
  padding: 16px;
  background: rgba(10, 21, 17, 0.46);
}

.proof-strip dt {
  font-size: 22px;
  font-weight: 850;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-microcopy-link {
  color: var(--yellow-warm);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 800;
}

.hero-microcopy-link:hover {
  color: #fff;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-trust::before {
  content: "\1F512";
  font-size: 13px;
}

.made-with-band {
  background: var(--green-deep);
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.made-with-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.made-with-band p {
  flex: 1 1 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.5;
}

.made-with-band p strong {
  color: var(--yellow-warm);
  font-weight: 800;
}

.made-with-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--yellow-warm) 0 40%, transparent 41%),
    linear-gradient(45deg, var(--green) 0 52%, var(--coral) 53%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.reality-check {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.reality-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.reality-stat {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.01em;
}

.reality-label {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.reality-source {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

.trust-strip {
  padding: 20px 0;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.trust-strip-label {
  margin: 0 0 14px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip-list li {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  opacity: 0.78;
}

.tariff-band {
  background: linear-gradient(160deg, #281c14 0%, #3a261b 100%);
  color: #fff;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tariff-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.tariff-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.tariff-copy {
  flex: 1 1 360px;
}

.tariff-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.55;
}

.tariff-band p strong {
  color: var(--yellow-warm);
  font-weight: 800;
}

.tariff-sub {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-style: italic;
  font-size: 14px !important;
}

.tariff-cta {
  flex: 0 0 auto;
}

.pricing-anti-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.scarcity-band {
  background: var(--rose);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.scarcity-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.scarcity-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scarcity-band p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.scarcity-band p strong {
  color: var(--green-dark);
}

.section {
  padding: clamp(64px, 10vw, 116px) 0;
}

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

.intro-band,
.profit-band,
.stack-section,
.calculator-section,
.faq-section,
.timeline-section,
.pricing-band {
  background: var(--surface-soft);
}

.three-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.section-kicker {
  color: var(--coral);
}

h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

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

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

.section-heading p {
  margin-top: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: tl;
}

.timeline li {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline li::before {
  position: absolute;
  top: -16px;
  left: 24px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  content: counter(tl);
  counter-increment: tl;
  font-size: 14px;
  font-weight: 850;
}

.timeline-time {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline h3 {
  margin-bottom: 8px;
}

.timeline p {
  margin: 0;
}

.stack-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.stack-points,
.faq-grid,
.audience-grid {
  display: grid;
  gap: 16px;
}

.stack-points article,
.faq-grid article,
.audience-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stack-points h3,
.faq-grid h3,
.audience-grid h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.stack-points p,
.faq-grid p,
.audience-grid p {
  margin-bottom: 0;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.benefit-grid article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step-label {
  display: inline-flex;
  width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.feature-card p,
.benefit-grid p {
  margin-bottom: 0;
}

.sample-section {
  background: #fff;
}

.audience-section {
  background: #fff;
}

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

.audience-icon {
  display: inline-flex;
  min-width: 68px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.sample-copy p {
  max-width: 560px;
}

.sample-copy .button {
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.product-preview {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: #eef4f1;
  box-shadow: var(--shadow);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  background: #fff;
}

.preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.preview-toolbar em {
  margin-left: 12px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.email-meta {
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  background: #fff;
}

.email-meta-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  font-size: 13px;
}

.email-meta-row span {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
  align-self: center;
}

.email-meta-row strong {
  color: var(--ink);
  font-weight: 750;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
  padding: 16px;
}

.proposal-panel,
.margin-panel {
  min-height: 460px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.mini-label {
  color: var(--blue);
  font-size: 11px;
}

.proposal-panel h3 {
  margin: 10px 0 14px;
  font-size: 25px;
}

.proposal-image {
  height: 190px;
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
}

.proposal-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.proposal-lines span {
  height: 12px;
  border-radius: 8px;
  background: #e6eee9;
}

.proposal-lines span:nth-child(2) {
  width: 80%;
}

.proposal-lines span:nth-child(3) {
  width: 58%;
}

.package-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.package-tag {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--rose);
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.metric-row strong {
  color: var(--green);
}

.metric-row.warning strong {
  color: var(--coral);
}

.shopping-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.shopping-list span {
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  background: #f4f0e6;
  font-size: 13px;
  font-weight: 750;
}

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

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(19, 33, 29, 0.1);
}

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

.calculator-results {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-deep);
}

.calculator-results div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.calculator-results span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
}

.calculator-results strong {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1;
}

.calculator-results [data-total-upside] {
  color: var(--yellow);
}

.comparison-section {
  background: #fff;
}

.compare-grid {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(6, minmax(120px, 1fr));
  min-width: 880px;
}

.compare-row span {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.compare-row span + span {
  border-left: 1px solid var(--line);
}

.compare-row:last-child span {
  border-bottom: 0;
}

.compare-head span {
  color: var(--ink);
  background: var(--surface-soft);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.compare-row span.self {
  background: rgba(15, 107, 75, 0.06);
  color: var(--green-dark);
  font-weight: 800;
}

.compare-head span.self {
  background: var(--green);
  color: #fff;
}

.compare-row span.yes {
  color: var(--green-dark);
  font-weight: 750;
}

.compare-row span.no {
  color: #b04848;
  font-weight: 750;
}

.compare-row span.partial {
  color: #8a6f1c;
  font-weight: 750;
}

.compare-footnote {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.compare-footnote a {
  color: var(--green-dark);
  font-weight: 700;
}

.quotes-section {
  background: #fff;
}

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

.quote-card {
  margin: 0;
  padding: 26px 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  position: relative;
  display: grid;
  gap: 14px;
}

.quote-tag {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.quote-card-pain {
  background: var(--rose);
  border-color: var(--coral-soft);
}

.quote-card-pain .quote-tag {
  color: var(--coral);
}

.quote-card::before {
  display: none;
  content: "";
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.quote-card figcaption {
  display: grid;
  gap: 2px;
  font-size: 14px;
}

.quote-card figcaption strong {
  color: var(--ink);
}

.quote-card figcaption span {
  color: var(--muted);
}

.quotes-footnote {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.pricing-band .pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  gap: 12px;
}

.pricing-card.highlight {
  border-color: var(--green);
  box-shadow: 0 18px 40px rgba(15, 107, 75, 0.16);
}

.pricing-tag {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
}

.pricing-card h3 {
  font-size: 22px;
}

.pricing-price {
  margin: 0;
  font-size: 38px;
  font-weight: 850;
  color: var(--ink);
  line-height: 1;
}

.pricing-price em {
  font-style: normal;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 6px 0 14px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14.5px;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.pricing-card li::after {
  position: absolute;
  left: 4px;
  top: 7px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.pricing-card .button {
  width: 100%;
  margin-top: 4px;
}

.cost-compare {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-cream) 0%, #fff 100%);
}

.cost-compare-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cost-compare ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cost-compare li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}

.cost-compare li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cost-compare li span {
  color: var(--ink);
  font-weight: 700;
}

.cost-compare li strong {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 850;
}

.cost-compare-foot {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

.pricing-footnote {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-footnote a {
  color: var(--green-dark);
  font-weight: 700;
}

.builders-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.builders-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.builders-mark {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #f6d27b 0 40%, transparent 41%),
    linear-gradient(45deg, var(--green) 0 52%, var(--coral) 53%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.builders-mark span {
  color: #fff;
  font-size: 38px;
  font-weight: 850;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.builders-band p {
  margin: 12px 0 0;
}

.fit-section {
  background: var(--surface-soft);
}

.fit-layout {
  display: grid;
  gap: 36px;
}

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

.fit-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.fit-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.fit-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.fit-yes {
  border-color: rgba(15, 107, 75, 0.35);
  box-shadow: 0 14px 36px rgba(15, 107, 75, 0.14);
}

.fit-yes h3 {
  color: var(--green-dark);
}

.fit-yes li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.fit-yes li::after {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.fit-no h3 {
  color: var(--coral);
}

.fit-no li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(216, 93, 75, 0.18);
  content: "";
}

.fit-no li::after {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(45deg, transparent 45%, var(--coral) 45% 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--coral) 45% 55%, transparent 55%);
  content: "";
}

.guarantee-band {
  background: var(--green-deep);
  color: #fff;
}

.guarantee-band .section-kicker,
.guarantee-band h2,
.guarantee-band p {
  color: #fff;
}

.guarantee-inner {
  display: grid;
  gap: 26px;
}

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

.guarantee-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.guarantee-grid h3 {
  color: #fff;
  margin-bottom: 10px;
}

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

.bestof-section {
  background: var(--surface-cream);
  position: relative;
}

.bestof-section::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--line);
  content: "";
}

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

.bestof-card {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: grid;
  gap: 10px;
  align-content: start;
}

.bestof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bestof-from {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bestof-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}

.bestof-card p:not(.bestof-from) {
  margin: 0;
}

.bestof-card-self {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 100%);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow-deep);
}

.bestof-card-self .bestof-from {
  color: var(--yellow-warm);
}

.bestof-card-self h3,
.bestof-card-self p {
  color: #fff;
}

.bestof-card-self::after {
  position: absolute;
  top: 18px;
  right: 18px;
  content: "\2605";
  color: var(--yellow-warm);
  font-size: 22px;
  line-height: 1;
}

.audit-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 75, 0.1);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.audit-stamp-tick {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.audit-stamp-tick::after {
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.package-tag-active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 107, 75, 0.28);
}

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

.pricing-card {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-card.highlight {
  border-color: var(--green);
  box-shadow: 0 22px 46px rgba(15, 107, 75, 0.22);
  transform: translateY(-6px);
  background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.pricing-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 107, 75, 0.32);
}

.magnet-section {
  background: var(--surface-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.magnet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}

.magnet-copy h2 {
  margin-top: 12px;
}

.magnet-copy p {
  margin-top: 12px;
}

.magnet-bullets {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.magnet-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.magnet-bullets li::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--green);
  content: "";
}

.magnet-bullets li::after {
  position: absolute;
  left: 4px;
  top: 7px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.magnet-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.magnet-form-title {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signup-section {
  background: linear-gradient(160deg, var(--green-deeper) 0%, var(--green-deep) 100%);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .section,
  .reality-card,
  .timeline li,
  .bestof-card,
  .pricing-card,
  .quote-card,
  .fit-card,
  .guarantee-grid article,
  .magnet-form {
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 700ms ease-out forwards;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@supports not (animation-timeline: view()) {
  .section,
  .reality-card,
  .timeline li,
  .bestof-card,
  .pricing-card,
  .quote-card,
  .fit-card,
  .guarantee-grid article,
  .magnet-form {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.signup-section h2,
.signup-section p,
.signup-section .section-kicker {
  color: #fff;
}

.privacy-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.signup-deliverables {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.signup-deliverables li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.92);
}

.signup-deliverables li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(4, 11, 8, 0.25);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9d3;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 107, 75, 0.14);
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-message[data-state="success"] {
  color: var(--green);
}

.form-message[data-state="error"] {
  color: var(--coral);
}

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

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  padding: 26px 0;
  background: #0c1a15;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.footer-inner span:first-child {
  color: #fff;
  font-weight: 850;
}

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

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #fff;
}

.bottom-cta {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.bottom-cta span {
  font-size: 13px;
  opacity: 0.85;
  font-weight: 750;
}

.bottom-cta strong {
  font-size: 15px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    margin-left: 16px;
  }

  .proof-strip,
  .three-columns,
  .stack-layout,
  .workflow-grid,
  .audience-grid,
  .benefit-grid,
  .sample-layout,
  .calculator-layout,
  .calculator,
  .signup-layout,
  .preview-grid,
  .timeline,
  .pricing-cards,
  .pricing-cards-three,
  .pricing-band .pricing-layout,
  .quotes-grid,
  .faq-grid,
  .reality-inner,
  .builders-layout,
  .fit-grid,
  .guarantee-grid,
  .bestof-grid,
  .magnet-layout {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlight {
    transform: none;
  }

  .hero-flourish {
    display: none;
  }

  .builders-mark {
    width: 64px;
    height: 64px;
  }

  .builders-mark span {
    font-size: 28px;
  }

  .feature-card,
  .benefit-grid article {
    min-height: auto;
  }

  .step-label {
    margin-bottom: 24px;
  }

  .proposal-panel,
  .margin-panel {
    min-height: auto;
  }

  .hero-capture {
    grid-template-columns: 1fr;
  }

  .compare-row {
    min-width: 720px;
  }

  .bottom-cta {
    display: flex;
  }

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

  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 96vh;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-actions,
  .calculator-inputs,
  .form-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .button-header {
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
  }

  .section {
    padding: 58px 0;
  }

  .scarcity-inner,
  .tariff-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .scarcity-band p,
  .tariff-band p {
    flex: 1 1 auto;
  }

  .scarcity-band .button,
  .tariff-band .button {
    width: 100%;
  }
}
