:root {
  --paper: #f5f0e7;
  --paper-2: #ebe5d9;
  --ink: #171714;
  --muted: #625f57;
  --green: #176044;
  --green-deep: #10251b;
  --green-soft: #dfeadf;
  --amber: #e7a443;
  --white: #fff;
  --line: #d8d0c2;
  --danger: #a43c26;
  --shadow: 0 24px 70px rgba(21, 31, 25, 0.13);
  --radius: 22px;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body.has-sticky-cta {
  padding-bottom: 84px;
}

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

a {
  color: var(--green);
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  background: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
}

.narrow {
  margin: 0 auto;
  max-width: 780px;
}

.eyebrow {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--amber);
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 6.5vw, 76px);
}

h2 {
  font-size: clamp(34px, 4.8vw, 54px);
}

h3 {
  font-size: 23px;
}

.lede {
  color: #36342f;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.5;
}

.site-header {
  border-bottom: 1px solid rgba(96, 88, 74, 0.18);
  padding: 18px 0;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-decoration: none;
}

.brand-dot {
  color: var(--green);
}

.button {
  align-items: center;
  background: var(--green);
  border: 0;
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #0f4d35;
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.small {
  min-height: 44px;
  padding: 10px 17px;
}

.button.full {
  width: 100%;
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  overflow: hidden;
  padding: 58px 0 64px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
}

.hero-copy h1 {
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-copy .lede {
  max-width: 630px;
}

.benefit-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin-top: 27px;
}

.benefit-list li {
  align-items: flex-start;
  display: flex;
  font-weight: 700;
  gap: 11px;
}

.benefit-list li::before {
  background: var(--amber);
  border-radius: 999px;
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 8px;
  width: 10px;
}

.signup-card {
  background: var(--white);
  border: 1px solid rgba(84, 76, 62, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: 18px;
}

.signup-photo {
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.signup-body {
  padding: 26px;
}

.signup-body h2,
.signup-body h3 {
  font-size: 27px;
  margin-bottom: 7px;
}

.signup-intro {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 19px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.field input {
  background: var(--white);
  border: 1.5px solid #cfc7b9;
  border-radius: 10px;
  color: var(--ink);
  min-height: 53px;
  padding: 12px 14px;
  width: 100%;
}

.field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 96, 68, 0.13);
  outline: none;
}

.support {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  margin-top: 12px;
  text-align: center;
}

.form-error {
  color: var(--danger);
  display: none;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  text-align: center;
}

.trust-line {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
}

.honeypot {
  left: -10000px;
  position: absolute;
}

.rhythm-bar {
  background: var(--green-deep);
  color: var(--white);
  padding: 28px 0;
}

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

.rhythm-item {
  border-left: 3px solid var(--amber);
  padding-left: 18px;
}

.rhythm-item strong {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.rhythm-item span {
  color: #cad7cf;
  font-size: 15px;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 72px 0;
}

.section h2 {
  margin-bottom: 24px;
}

.section p + p {
  margin-top: 18px;
}

.reframe-grid {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 0.9fr;
}

.reframe-callout {
  background: var(--green-soft);
  border-radius: var(--radius);
  color: var(--green-deep);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.18;
  padding: 34px;
}

.how-section {
  background: var(--paper-2);
}

.section-heading {
  margin-bottom: 38px;
  max-width: 780px;
}

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

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.step-number {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-family: var(--display);
  height: 38px;
  justify-content: center;
  margin-bottom: 22px;
  width: 38px;
}

.step h3 {
  margin-bottom: 12px;
}

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

.deadline-section {
  background: var(--green-deep);
  color: var(--white);
  padding: 0;
}

.deadline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.deadline-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.deadline-copy {
  align-self: center;
  padding: 74px clamp(34px, 6vw, 84px);
}

.deadline-copy h2 {
  margin-bottom: 20px;
}

.deadline-copy p {
  color: #d7dfda;
}

.deadline-statement {
  color: var(--amber) !important;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 28px 0;
}

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

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 28px;
}

.quote-mark {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 0.8;
  margin-bottom: 18px;
}

.quote p {
  flex: 1;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  margin-top: 20px;
}

.proof-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 17px;
}

.about-section {
  background: var(--paper-2);
}

.about-grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 78px);
  grid-template-columns: 0.86fr 1.14fr;
}

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy p {
  color: #3e3b35;
  font-size: 18px;
}

.straight-answer {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--amber);
  border-radius: var(--radius);
  padding: 36px;
}

.straight-answer h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--display);
  font-size: 20px;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding: 22px 0;
}

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

.faq-list summary::after {
  color: var(--green);
  content: "+";
  flex: 0 0 auto;
  font-family: var(--body);
  font-size: 30px;
  font-weight: 500;
}

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

.faq-list details p {
  color: var(--muted);
  max-width: 720px;
  padding: 0 0 24px;
}

.final-cta {
  background: #244b3a;
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  margin: 0 auto 18px;
  max-width: 850px;
}

.final-cta p {
  color: #dce9e2;
  margin: 0 auto 28px;
  max-width: 680px;
}

.site-footer {
  background: var(--green-deep);
  color: #aebdb5;
  font-size: 13.5px;
  padding: 28px 0;
}

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

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

.site-footer a,
.link-button {
  color: #d9e4de;
}

.link-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.sticky-cta {
  background: rgba(245, 240, 231, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: none;
  left: 0;
  padding: 11px 16px;
  position: fixed;
  right: 0;
  transform: translateY(110%);
  transition: transform 180ms ease;
  z-index: 80;
}

.sticky-cta.show {
  transform: none;
}

.consent-banner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  bottom: 18px;
  box-shadow: var(--shadow);
  left: 18px;
  max-width: 590px;
  padding: 22px;
  position: fixed;
  z-index: 200;
}

.consent-banner h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.consent-banner p {
  color: var(--muted);
  font-size: 14px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.consent-actions .button {
  min-height: 44px;
  padding: 10px 16px;
}

.consent-actions .reject {
  background: var(--paper-2);
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 68px 0 90px;
}

.legal-main h1 {
  font-size: clamp(40px, 5vw, 58px);
  margin-bottom: 8px;
}

.legal-main h2 {
  font-family: var(--body);
  font-size: 23px;
  letter-spacing: -0.015em;
  margin: 40px 0 10px;
}

.legal-main p,
.legal-main li {
  color: #35332e;
}

.legal-main ul {
  margin: 12px 0 0 22px;
}

.legal-main li + li {
  margin-top: 8px;
}

.updated {
  color: var(--muted);
}

.thanks-page {
  align-items: center;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  min-height: 100vh;
  padding: 34px 0;
}

.thanks-card {
  margin: 0 auto;
  max-width: 720px;
}

.thanks-card h1 {
  margin-bottom: 18px;
}

.thanks-lede {
  color: #d9e4de;
  font-size: 21px;
  max-width: 620px;
}

.next-steps {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.next-step {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  padding: 18px 20px;
}

.next-step strong {
  color: var(--amber);
  display: block;
  margin-bottom: 3px;
}

.thanks-small {
  color: #aebdb5;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid,
  .reframe-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .signup-card {
    margin: 0 auto;
    max-width: 570px;
    width: 100%;
  }

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

  .quote {
    min-height: 0;
  }

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

  .deadline-image {
    height: min(58vw, 500px);
  }

  .about-grid {
    max-width: 720px;
  }

  .about-image {
    margin: 0 auto;
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16.5px;
  }

  .wrap {
    padding: 0 20px;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    max-width: 180px;
  }

  .header-inner .button {
    font-size: 14px;
    min-height: 42px;
    padding: 8px 13px;
  }

  .hero {
    padding: 42px 0 50px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
  }

  .benefit-list {
    margin-top: 21px;
  }

  .signup-body {
    padding: 22px 20px;
  }

  .rhythm-grid {
    gap: 19px;
    grid-template-columns: 1fr;
  }

  .section,
  .section.compact {
    padding: 64px 0;
  }

  .reframe-callout,
  .straight-answer {
    padding: 26px;
  }

  .step,
  .quote {
    padding: 24px;
  }

  .deadline-copy {
    padding: 55px 20px;
  }

  .deadline-image {
    height: 310px;
  }

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

  .sticky-cta {
    display: block;
  }

  .consent-banner {
    border-radius: 15px 15px 0 0;
    bottom: 0;
    left: 0;
    max-width: none;
    padding: 19px 20px;
    right: 0;
  }

  .consent-actions .button {
    flex: 1;
  }

  .legal-main {
    padding: 52px 0 75px;
  }
}

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

  .button,
  .sticky-cta {
    transition: none;
  }
}
