:root {
  --green: #0c8f45;
  --deep-green: #063f2c;
  --blue: #1f75b8;
  --sky: #dff3f7;
  --lemon: #efc84a;
  --mint: #eaf7e4;
  --paper: #fbfdf7;
  --ink: #122019;
  --muted: #667268;
  --white: #ffffff;
  --line: rgba(20, 32, 22, 0.14);
  --shadow: 0 26px 70px rgba(6, 63, 44, 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;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 255, 248, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 48px;
  object-fit: contain;
  object-position: left center;
  width: 164px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
}

nav a,
.header-cta,
.button,
.use-card {
  font-size: 0.92rem;
  font-weight: 800;
}

.header-cta {
  color: var(--deep-green);
  justify-self: end;
}

.hero {
  min-height: calc(100svh - 76px);
  overflow: hidden;
  position: relative;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 253, 247, 0.98), rgba(251, 253, 247, 0.7) 39%, rgba(251, 253, 247, 0.04)),
    radial-gradient(circle at 25% 42%, rgba(223, 243, 247, 0.46), transparent 24%),
    linear-gradient(0deg, rgba(6, 63, 44, 0.08), transparent 45%);
}

.balance-mark {
  border: 1px solid rgba(12, 143, 69, 0.16);
  border-radius: 50%;
  height: clamp(220px, 34vw, 470px);
  left: clamp(18px, 5vw, 74px);
  opacity: 0.42;
  position: absolute;
  top: clamp(110px, 18vw, 210px);
  width: clamp(220px, 34vw, 470px);
  z-index: 1;
}

.balance-mark::before,
.balance-mark::after {
  border-radius: 50%;
  content: "";
  position: absolute;
}

.balance-mark::before {
  background: linear-gradient(145deg, rgba(12, 143, 69, 0.2), rgba(31, 117, 184, 0.08));
  height: 52%;
  left: 12%;
  top: 8%;
  width: 52%;
}

.balance-mark::after {
  background: linear-gradient(145deg, rgba(31, 117, 184, 0.2), rgba(255, 255, 255, 0.18));
  bottom: 9%;
  height: 52%;
  right: 12%;
  width: 52%;
}

.hero-content {
  max-width: 710px;
  padding: clamp(92px, 13vw, 154px) clamp(20px, 6vw, 84px) 98px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(4rem, 9vw, 8.1rem);
  font-weight: 860;
  line-height: 0.9;
  margin-bottom: 28px;
  max-width: 9.2ch;
}

h2 {
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  font-weight: 840;
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-content p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  max-width: 580px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  color: var(--deep-green);
}

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

.proof-strip {
  background:
    radial-gradient(circle at 18% 12%, rgba(31, 117, 184, 0.2), transparent 28%),
    var(--deep-green);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 25px clamp(20px, 5vw, 64px);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 7px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

.lifestyle-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 243, 247, 0.7), transparent 24%),
    linear-gradient(180deg, var(--paper), #f1f9ee);
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.lifestyle-heading {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 1fr) minmax(280px, 0.45fr);
  margin-bottom: clamp(30px, 5vw, 56px);
}

.lifestyle-heading h2 {
  margin: 0;
  max-width: 860px;
}

.lifestyle-heading p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.lifestyle-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(220px, 0.62fr));
}

.lifestyle-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.lifestyle-card.tall {
  min-height: 560px;
}

.lifestyle-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.lifestyle-card::after {
  background: linear-gradient(0deg, rgba(6, 63, 44, 0.7), rgba(6, 63, 44, 0.08) 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.lifestyle-card div {
  bottom: 0;
  color: var(--white);
  padding: 24px;
  position: absolute;
  z-index: 1;
}

.lifestyle-card span {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 9px;
  opacity: 0.8;
  text-transform: uppercase;
}

.lifestyle-card h3 {
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  margin: 0;
}

.ritual-section {
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 200, 74, 0.18), transparent 22%),
    linear-gradient(135deg, var(--paper), #eef8f1);
  display: grid;
  gap: clamp(28px, 7vw, 86px);
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  overflow: hidden;
  position: relative;
}

.ritual-section > div:last-child {
  max-width: 820px;
}

.ritual-section p:last-child {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.75;
  max-width: 680px;
}

.ritual-logo {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 68% 22%, rgba(31, 117, 184, 0.16), transparent 30%),
    radial-gradient(circle at 24% 72%, rgba(12, 143, 69, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  max-width: 360px;
  padding: clamp(24px, 5vw, 48px);
}

.ritual-logo img {
  mix-blend-mode: multiply;
  object-fit: contain;
  width: 100%;
}

.visual-story {
  background: var(--paper);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.62fr) minmax(240px, 0.62fr);
  padding: 0 clamp(20px, 6vw, 84px) clamp(76px, 10vw, 128px);
}

.visual-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 63, 44, 0.1);
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  min-height: 420px;
  overflow: hidden;
}

.visual-card.wide {
  min-height: 500px;
}

.visual-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.visual-card:not(.wide) img {
  object-position: center;
}

.visual-card div {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 228, 0.78)),
    radial-gradient(circle at 85% 20%, rgba(31, 117, 184, 0.12), transparent 28%);
  padding: 22px;
}

.visual-card span {
  color: var(--green);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.visual-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.section-kicker {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  margin-bottom: clamp(34px, 6vw, 66px);
}

.section-kicker h2 {
  margin-bottom: 0;
  max-width: 980px;
}

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

.benefit-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 82% 16%, rgba(223, 243, 247, 0.7), transparent 28%);
  border: 1px solid var(--line);
  min-height: 300px;
  padding: 28px;
  position: relative;
}

.benefit-grid span {
  color: var(--blue);
  display: block;
  font-weight: 900;
  margin-bottom: 74px;
}

.benefit-grid p,
.product-copy p,
.label-section p,
.faq-list p,
.join-section p {
  color: var(--muted);
  line-height: 1.7;
}

.uses-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(239, 200, 74, 0.2), transparent 24%),
    linear-gradient(135deg, var(--mint), var(--sky));
}

.uses-section > div:first-child {
  max-width: 920px;
}

.use-board {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 34px 0 16px;
}

.use-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(6, 79, 42, 0.18);
  color: var(--deep-green);
  cursor: pointer;
  min-height: 96px;
}

.use-card.is-active {
  background: var(--deep-green);
  color: var(--white);
}

.use-panel {
  background: var(--white);
  border: 1px solid rgba(6, 79, 42, 0.16);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  margin-top: 18px;
  max-width: 820px;
  padding: clamp(22px, 4vw, 38px);
}

.use-panel p {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 840;
  line-height: 1.08;
  margin: 0;
}

.use-panel span {
  color: var(--muted);
  line-height: 1.6;
}

.product-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.product-image-wrap {
  background:
    radial-gradient(circle at 72% 18%, rgba(239, 200, 74, 0.38), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(31, 117, 184, 0.18), transparent 25%),
    linear-gradient(135deg, var(--sky), var(--mint));
  border: 1px solid var(--line);
  padding: clamp(18px, 4vw, 44px);
}

.product-image-wrap img {
  box-shadow: var(--shadow);
  height: min(640px, 70vw);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

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

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

.check-list li {
  border-top: 1px solid var(--line);
  font-weight: 760;
  padding-top: 14px;
}

.label-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 243, 247, 0.65), transparent 24%),
    var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
}

.label-section img {
  align-self: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 860;
}

details p {
  margin: 14px 0 0;
  max-width: 760px;
}

.join-section {
  align-items: center;
  background:
    radial-gradient(circle at 86% 24%, rgba(31, 117, 184, 0.22), transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(12, 143, 69, 0.24), transparent 22%),
    var(--deep-green);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  padding: clamp(76px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

.join-section .eyebrow,
.join-section p {
  color: rgba(255, 255, 255, 0.78);
}

.join-section h2 {
  margin-bottom: 18px;
  max-width: 820px;
}

form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

input {
  border: 0;
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 0 15px;
}

input:focus {
  outline: 3px solid rgba(243, 197, 31, 0.45);
}

#form-message {
  margin: 0;
  min-height: 1.5em;
}

footer {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 84px);
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(251, 253, 247, 0.96), rgba(251, 253, 247, 0.7));
  }

  .balance-mark {
    opacity: 0.32;
    top: 110px;
  }

  .proof-strip,
  .lifestyle-heading,
  .lifestyle-grid,
  .ritual-section,
  .visual-story,
  .section-kicker,
  .benefit-grid,
  .product-section,
  .label-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

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

  .lifestyle-card,
  .lifestyle-card.tall {
    min-height: 420px;
  }

  .visual-card,
  .visual-card.wide {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    height: 40px;
    width: 134px;
  }

  .header-cta {
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 4.8rem);
  }

  .balance-mark {
    height: 220px;
    left: 16px;
    width: 220px;
  }

  .use-board {
    grid-template-columns: 1fr;
  }

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

  .use-card {
    min-height: 64px;
  }

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