:root {
  --green: #cdebd1;
  --green-deep: #2f6d4d;
  --green-soft: #edf8ee;
  --beige: #f2eadf;
  --beige-strong: #ded0bf;
  --white: #ffffff;
  --ink: #17201b;
  --muted: #67716b;
  --line: rgba(23, 32, 27, 0.1);
  --shadow: 0 24px 80px rgba(47, 109, 77, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 11px;
  letter-spacing: 0;
}

.brand-symbol {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.brand-wordmark {
  color: #123a2d;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-brand {
  gap: 10px;
  color: #123a2d;
}

.footer-symbol {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green-soft);
}

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

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: center;
  min-height: 0;
  padding: 64px 0 80px;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(23, 32, 27, 0.14);
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--beige);
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(23, 32, 27, 0.1);
}

.product-stage::after {
  content: none;
}

.product-stage picture {
  width: 100%;
  height: 100%;
}

.product-image {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  mix-blend-mode: normal;
}

.problem-band {
  width: 100%;
  background: var(--white);
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 96px;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 128px;
}

.problem-copy {
  max-width: 650px;
}

.problem-copy h2 {
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.04;
}

.problem-copy h2 span {
  display: block;
}

.problem-copy h2 span + span {
  margin-top: 22px;
}

.problem-body {
  max-width: 590px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.problem-body p {
  margin-bottom: 20px;
}

.problem-body p:last-child {
  margin-bottom: 0;
}

.problem-note {
  margin: 64px 0 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
}

.problem-image {
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--beige);
}

.problem-image picture,
.problem-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.problem-image img {
  object-fit: cover;
}

.solution-band {
  width: 100%;
  background: var(--beige);
}

.solution {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 88px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
}

.solution-visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

.solution-visual svg {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.solution-copy {
  max-width: 540px;
}

.solution-lead {
  margin: 24px 0 38px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.solution-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 32, 27, 0.14);
}

.solution-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 32, 27, 0.14);
}

.solution-list span {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.solution-list p {
  margin: 0;
  line-height: 1.5;
}

.section-heading p + h2 {
  max-width: 620px;
}

.centered {
  max-width: 740px;
  margin: 0 auto 44px;
  text-align: center;
}

.how {
  padding-top: 128px;
  padding-bottom: 132px;
}

.how .centered {
  margin-bottom: 64px;
}

.how-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

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

.how-step {
  min-width: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.step-media {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--beige);
}

.step-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  display: block;
  margin-bottom: 16px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.how-step h3 {
  min-height: 48px;
}

.how-step p,
.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.why-band {
  width: 100%;
  background: var(--green-soft);
}

.why {
  padding-top: 116px;
  padding-bottom: 120px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0 auto;
}

.feature-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 27, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 109, 77, 0.28);
}

.feature-mark {
  display: block;
  margin-bottom: 54px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-grid h3 {
  max-width: 200px;
}

.ritual {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--beige);
}

.ritual picture,
.ritual img {
  display: block;
  width: 100%;
}

.ritual img {
  min-height: 560px;
  object-fit: cover;
}

.ritual-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.ritual-copy {
  max-width: 440px;
}

.ritual-copy h2 {
  margin-bottom: 24px;
}

.ritual-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 96px;
  padding-top: 128px;
  padding-bottom: 128px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 16px;
  height: 1.5px;
  background: var(--green-deep);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 48px 26px 0;
  color: var(--muted);
  line-height: 1.65;
}

.signup-band {
  width: 100%;
  background: var(--beige);
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 88px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
}

.signup-copy > p:last-child {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form label {
  font-size: 14px;
  font-weight: 800;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  font: inherit;
}

input {
  width: 100%;
  padding: 0 20px;
  color: var(--ink);
  background: var(--white);
  outline: 1px solid rgba(23, 32, 27, 0.14);
}

input:focus {
  outline-color: rgba(47, 109, 77, 0.36);
}

button {
  padding: 0 24px;
  color: #ffffff;
  background: var(--green-deep);
  font-weight: 800;
  cursor: pointer;
}

.signup-form p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

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

  .solution {
    gap: 52px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .solution-copy {
    order: -1;
    max-width: 650px;
  }

  .problem {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

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

  .problem-image {
    width: min(100%, 620px);
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 36px;
  }

  .product-stage {
    width: min(100%, 620px);
    min-height: 390px;
    justify-self: center;
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

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

  .signup {
    gap: 48px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.82);
  }

  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 27px;
    height: 27px;
  }

  .brand-wordmark {
    font-size: 17px;
  }

  .nav-links {
    gap: 0;
    font-size: 13px;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .nav-links a:last-child {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--green-deep);
    background: var(--green-soft);
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 38px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.02;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  h3 {
    font-size: 18px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .button,
  .input-row {
    width: 100%;
  }

  .button,
  .input-row button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    font-size: 15px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 0;
    aspect-ratio: 1;
  }

  .product-stage picture,
  .product-image {
    width: 100%;
    height: 100%;
  }

  .product-image {
    object-fit: cover;
    mix-blend-mode: normal;
  }

  .problem {
    gap: 48px;
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .problem-copy h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .problem-copy h2 span + span {
    margin-top: 18px;
  }

  .problem-body {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .problem-note {
    margin-top: 42px;
  }

  .solution {
    gap: 38px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .solution-lead {
    margin: 20px 0 30px;
    font-size: 17px;
  }

  .solution-list li {
    padding: 15px 0;
  }

  .solution-visual svg {
    width: min(100%, 420px);
  }

  .how {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .centered {
    margin-bottom: 28px;
  }

  .how-grid,
  .feature-grid {
    gap: 12px;
  }

  .feature-grid article {
    padding: 20px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how .centered {
    margin-bottom: 44px;
  }

  .how-step h3 {
    min-height: 0;
  }

  .step-media {
    margin-bottom: 26px;
  }

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

  .why {
    padding: 60px 0;
  }

  .feature-grid {
    width: 100%;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-mark {
    margin-bottom: 34px;
  }

  .ritual img {
    min-height: 0;
    height: 360px;
    object-position: 68% center;
  }

  .ritual-content {
    position: static;
    padding-top: 64px;
    padding-bottom: 72px;
    pointer-events: auto;
  }

  .ritual-copy > p:last-child {
    font-size: 17px;
  }

  .signup {
    gap: 24px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .signup-copy > p:last-child {
    margin-top: 18px;
    font-size: 16px;
  }

  .faq {
    gap: 36px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .faq-list summary {
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 17px;
  }

  .faq-list details p {
    margin-right: 28px;
  }

  input,
  button {
    min-height: 54px;
    font-size: 16px;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
    padding: 26px 0 32px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 36px;
  }

  .brand-wordmark {
    font-size: 16px;
  }

  .nav-links a:last-child {
    padding: 0 12px;
  }
}

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

  .button,
  .feature-grid article,
  .faq-list summary::before,
  .faq-list summary::after {
    transition: none;
  }
}
