:root {
  --brand-green: #3B7B3B;
  --forest-950: #0b2721;
  --forest-900: #11372e;
  --forest-800: #194b3e;
  --forest-700: #286454;
  --cream-50: #fffdf8;
  --cream-100: #f7f1e6;
  --cream-200: #ede2cf;
  --wheat-200: #eedba9;
  --wheat-300: #dec58f;
  --wheat-400: #cba65d;
  --rust-500: #b84f31;
  --rust-600: #953b24;
  --ink: #18231f;
  --muted: #626c66;
  --line: rgba(17, 55, 46, 0.17);
  --white-line: rgba(255, 253, 248, 0.18);
  --shadow: 0 24px 70px rgba(16, 43, 35, 0.14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --container: 1240px;
  --announcement-height: 34px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--forest-950);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

::selection {
  color: var(--cream-50);
  background: var(--rust-500);
}

:focus-visible {
  outline: 3px solid var(--wheat-400);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--cream-50);
  background: var(--forest-950);
  border-radius: 2px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 11vw, 160px) 0;
}

.section-index {
  color: var(--rust-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--forest-700);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--cream-50);
  background: var(--rust-500);
}

.button-primary:hover {
  background: var(--rust-600);
}

.button-dark {
  color: var(--cream-50);
  background: var(--forest-950);
}

.button-dark:hover {
  background: var(--forest-800);
}

.button-block {
  width: 100%;
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  color: var(--cream-50);
  border-bottom: 1px solid rgba(255, 253, 248, 0.48);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.text-action:hover {
  gap: 25px;
  color: var(--wheat-300);
}

.text-action-dark {
  color: var(--forest-900);
  border-bottom-color: var(--forest-900);
}

.text-action-dark:hover {
  color: var(--rust-500);
}

.announcement {
  position: relative;
  z-index: 101;
  color: var(--cream-100);
  background: var(--forest-950);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-inner p {
  margin: 0;
}

.announcement-mark {
  width: 6px;
  height: 6px;
  background: var(--wheat-400);
  border-radius: 50%;
}

.announcement a {
  margin-left: 8px;
  color: var(--wheat-300);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--forest-950);
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.985);
  box-shadow: 0 12px 34px rgba(11, 39, 33, 0.09);
}

.header-inner {
  width: min(calc(100% - 48px), 1440px);
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  width: 180px;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.brand img {
  height: auto;
  object-fit: contain;
}

.brand .brand-mark {
  width: 22%;
}

.brand .brand-wordmark {
  width: 75%;
}

.primary-nav {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.primary-nav a {
  position: relative;
  padding: 11px 0;
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--rust-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  color: var(--cream-50);
  background: var(--forest-900);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: var(--cream-50);
  background: var(--rust-500);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  position: relative;
  min-height: clamp(660px, calc(100svh - var(--announcement-height) - var(--header-height)), 860px);
  display: flex;
  overflow: hidden;
  align-items: center;
  color: var(--cream-50);
  background:
    radial-gradient(circle at 76% 42%, rgba(203, 166, 93, 0.12), transparent 32%),
    linear-gradient(118deg, #3B7B3B 0%, var(--brand-green) 58%, #3B7B3B 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  mix-blend-mode: soft-light;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1440px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 5.4vw, 84px);
  padding-top: 42px;
  padding-bottom: 22px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 740px;
}

.hero h1 {
  max-width: 740px;
  margin: 0 0 28px;
  color: var(--cream-50);
  font-size: clamp(4.35rem, 5.4vw, 5.35rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--wheat-300);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-lead,
.hero-copy > .hero-actions {
  animation: hero-copy-arrive 720ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-copy > h1 {
  animation-delay: 70ms;
}

.hero-copy > .hero-lead {
  animation-delay: 130ms;
}

.hero-copy > .hero-actions {
  animation-delay: 190ms;
}

.hero .button-primary {
  color: var(--forest-950);
  background: var(--cream-100);
  border-color: rgba(255, 253, 248, 0.72);
}

.hero .button-primary:hover {
  background: var(--wheat-300);
}

.hero-visual {
  position: relative;
  align-self: center;
  height: clamp(550px, calc(100svh - var(--announcement-height) - var(--header-height) - 54px), 680px);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 18%;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(11, 39, 33, 0.06), rgba(11, 39, 33, 0.38)),
    url("images/natural-stone-hero.webp");
  background-position: 51% center;
  background-size: cover;
  border-radius: 240px 240px 4px 4px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  animation: hero-window-arrive 900ms 90ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(222, 197, 143, 0.28);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(7, 31, 25, 0.2);
}

.hero-arch-outline {
  position: absolute;
  z-index: -1;
  top: -14px;
  right: 18px;
  bottom: 18px;
  left: calc(18% - 14px);
  border: 1px solid rgba(222, 197, 143, 0.36);
  border-radius: 250px 250px 4px 4px;
}

.hero-product {
  position: absolute;
  z-index: 3;
  bottom: -36px;
  left: -2%;
  width: clamp(320px, 27vw, 400px);
  isolation: isolate;
  animation: hero-product-arrive 900ms 180ms cubic-bezier(0.18, 0.76, 0.25, 1) both;
}

.hero-product > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.42));
}

.hero-product-halo {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 48%;
  width: 112%;
  aspect-ratio: 1;
  border: 1px solid rgba(222, 197, 143, 0.56);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-product-halo::before,
.hero-product-halo::after {
  display: none;
}

.hero-origin-seal {
  position: absolute;
  z-index: 4;
  top: 21%;
  right: -14px;
  width: 94px;
  height: 94px;
  display: grid;
  place-content: center;
  padding: 12px;
  color: var(--cream-50);
  background: var(--rust-500);
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 50%;
  outline: 1px solid rgba(222, 197, 143, 0.45);
  outline-offset: 5px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.hero-origin-seal span,
.hero-origin-seal strong {
  display: block;
}

.hero-origin-seal span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-origin-seal strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.02;
}

@keyframes hero-window-arrive {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-copy-arrive {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-product-arrive {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-rail {
  position: relative;
  z-index: 2;
  color: var(--cream-50);
  background: var(--forest-950);
  border-top: 1px solid rgba(222, 197, 143, 0.3);
  border-bottom: 1px solid rgba(222, 197, 143, 0.16);
}

.proof-grid {
  width: min(calc(100% - 48px), 1440px);
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.proof-item {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px clamp(14px, 1.7vw, 26px);
  border-left: 1px solid rgba(255, 253, 248, 0.14);
}

.proof-item:last-child {
  border-right: 1px solid rgba(255, 253, 248, 0.14);
}

.proof-mark {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid var(--wheat-300);
  transform: rotate(45deg);
}

.proof-item p {
  margin: 0;
  line-height: 1.2;
}

.proof-item strong {
  display: block;
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-weight: 500;
}

.daily-section {
  overflow: hidden;
  background: var(--cream-50);
}

.daily-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 76%;
  pointer-events: none;
  background: url("images/atulyash-village.webp") center top / cover no-repeat;
  opacity: 0.08;
}

.daily-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(30px, 6vw, 86px);
}

.daily-heading h2 {
  max-width: 760px;
  margin: 0;
}

.daily-copy {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 1.03rem;
}

.daily-copy .statement {
  margin: 34px 0 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.1;
}

.daily-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.daily-prompts li {
  padding: 9px 12px;
  color: var(--forest-900);
  background: rgba(222, 197, 143, 0.28);
  border: 1px solid rgba(17, 55, 46, 0.12);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grain-orbit {
  position: absolute;
  top: 50%;
  right: -170px;
  width: 390px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
}

.grain-orbit::after {
  content: "";
  position: absolute;
  top: 35%;
  left: -7px;
  width: 13px;
  height: 20px;
  background: var(--wheat-400);
  border-radius: 80% 20% 80% 20%;
  transform: rotate(36deg);
}

.questions-section {
  background: var(--cream-100);
  border-top: 1px solid var(--line);
}

.questions-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 9vw, 120px);
  margin-bottom: 90px;
}

.veer-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--cream-50);
  isolation: isolate;
}

.veer-card::before {
  content: "VEER";
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  color: rgba(17, 55, 46, 0.07);
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 1;
  transform: translateX(-50%);
}

.veer-card > img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  object-position: center;
}

.veer-investigation-card {
  background:
    radial-gradient(circle at 74% 22%, rgba(222, 197, 143, 0.35), transparent 31%),
    linear-gradient(145deg, var(--cream-50), #f2e8d6);
}

.veer-investigation-card::after {
  content: "?";
  position: absolute;
  z-index: 1;
  top: 17%;
  right: 7%;
  color: rgba(17, 55, 46, 0.055);
  font-family: var(--serif);
  font-size: clamp(13rem, 25vw, 20rem);
  line-height: 0.75;
}

.veer-investigation-card > img {
  right: auto;
  bottom: 9px;
  left: 0;
  width: 76%;
  height: 92%;
  object-fit: contain;
  object-position: center bottom;
  transform-origin: 48% 92%;
}

.veer-clue-stage {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 22px;
  width: min(54%, 220px);
  height: 92px;
  pointer-events: none;
}

.veer-clue-stage::before,
.veer-clue-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: var(--forest-900);
  border: 3px solid var(--cream-50);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(11, 39, 33, 0.12);
}

.veer-clue-stage::before {
  bottom: -16px;
  left: 30px;
  width: 13px;
  height: 13px;
}

.veer-clue-stage::after {
  bottom: -32px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-width: 2px;
}

.veer-clue {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 14px 17px;
  opacity: 0;
  color: var(--cream-50);
  background: var(--forest-900);
  border: 1px solid rgba(255, 253, 248, 0.2);
  box-shadow: 0 15px 36px rgba(11, 39, 33, 0.2);
  transform: translateY(10px) scale(0.97);
}

.veer-clue span,
.veer-clue strong {
  display: block;
}

.veer-clue span {
  margin-bottom: 4px;
  color: var(--wheat-300);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.veer-clue strong {
  font-family: var(--serif);
  font-size: clamp(1.03rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.08;
}

.veer-finding {
  opacity: 1;
  color: var(--forest-950);
  background: var(--wheat-300);
  border-color: rgba(17, 55, 46, 0.12);
  transform: none;
}

.veer-finding span {
  color: var(--rust-600);
}

.veer-investigation-card.is-motion-ready .veer-finding {
  opacity: 0;
  transform: translateY(10px) scale(0.97);
}

.veer-investigation-card.is-investigating > img {
  animation: veer-thinks 4.55s cubic-bezier(0.22, 0.7, 0.25, 1) both;
}

.veer-investigation-card.is-investigating .veer-clue-one {
  animation: veer-clue-cycle 1.3s 0.15s both;
}

.veer-investigation-card.is-investigating .veer-clue-two {
  animation: veer-clue-cycle 1.3s 1.35s both;
}

.veer-investigation-card.is-investigating .veer-clue-three {
  animation: veer-clue-cycle 1.3s 2.55s both;
}

.veer-investigation-card.is-investigating .veer-finding {
  animation: veer-finding-in 0.75s 3.78s forwards;
}

@keyframes veer-clue-cycle {
  0%, 100% {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  16%, 76% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes veer-finding-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes veer-thinks {
  0%, 12%, 100% {
    transform: translateY(0) rotate(0);
  }

  28% {
    transform: translateY(-5px) rotate(-0.8deg);
  }

  52% {
    transform: translateY(-2px) rotate(0.7deg);
  }

  76% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

.veer-sun {
  position: absolute;
  z-index: 3;
  top: 15%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 55, 46, 0.2);
  border-radius: 50%;
  transform: translateX(-50%);
}

.veer-label {
  position: absolute;
  z-index: 6;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 15px 17px;
  color: var(--forest-950);
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(9px);
}

.veer-label span,
.veer-label strong {
  display: block;
}

.veer-label span {
  color: var(--rust-500);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.veer-label strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.25;
}

.questions-heading h2 {
  max-width: 790px;
  margin: 0 0 32px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.questions-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.questions-heading .section-index {
  margin-bottom: 46px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.question-card {
  min-height: 280px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.question-card:hover {
  z-index: 2;
  color: var(--cream-50);
  background: var(--forest-900);
  transform: translateY(-5px);
}

.question-card > span {
  color: var(--rust-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.question-card h3 {
  margin: 55px 0 20px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  transition: color 220ms ease;
}

.question-card p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.question-card:hover h3,
.question-card:hover p {
  color: var(--cream-50);
}

.question-card-accent {
  background: var(--wheat-300);
}

.way-section {
  overflow-x: clip;
  color: rgba(255, 253, 248, 0.78);
  background: var(--forest-950);
}

.way-section h2,
.way-section h3 {
  color: var(--cream-50);
}

.way-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--white-line);
}

.way-header .section-index,
.truth-header .section-index,
.film-copy .section-index {
  margin-bottom: 45px;
  color: var(--wheat-400);
}

.way-header h2 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
}

.way-header > p {
  margin: 0 0 12px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.02rem;
}

.orbit-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 95px);
  padding: 78px 0 90px;
  border-bottom: 1px solid var(--white-line);
}

.orbit-copy {
  max-width: 420px;
}

.orbit-kicker {
  margin-bottom: 22px;
  color: var(--wheat-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orbit-copy h3 {
  margin: 0 0 26px;
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
}

.orbit-copy > p:not(.orbit-kicker) {
  color: rgba(255, 253, 248, 0.64);
}

.orbit-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 10px 16px;
  color: var(--cream-50);
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.34);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.orbit-toggle:hover {
  color: var(--forest-950);
  background: var(--wheat-300);
  border-color: var(--wheat-300);
}

.orbit-toggle-icon {
  width: 18px;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
}

.orbit-stage {
  position: relative;
  width: 620px;
  max-width: 100%;
  aspect-ratio: 1;
  justify-self: end;
  isolation: isolate;
  background:
    radial-gradient(circle at center, rgba(222, 197, 143, 0.12) 0 18%, transparent 18.5%),
    radial-gradient(circle at center, rgba(255, 253, 248, 0.035) 0 48%, transparent 48.5%);
}

.orbit-stage::before,
.orbit-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(222, 197, 143, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-stage::before {
  width: 92%;
  height: 92%;
}

.orbit-stage::after {
  width: 64%;
  height: 64%;
}

.orbit-ring {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(222, 197, 143, 0.34);
  border-radius: 50%;
  transform-origin: center;
}

.orbit-ring-outer {
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  animation: orbit-spin 34s linear infinite;
}

.orbit-ring-inner {
  width: 330px;
  height: 330px;
  margin: -165px 0 0 -165px;
  animation: orbit-spin-reverse 25s linear infinite;
}

.orbit-node {
  --radius: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateX(var(--radius));
}

.orbit-ring-inner .orbit-node {
  --radius: 165px;
}

.orbit-node span {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--forest-950);
  background: var(--cream-50);
  border: 1px solid rgba(11, 39, 33, 0.18);
  border-radius: 40px;
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
  animation: orbit-counter-spin 34s linear infinite;
}

.orbit-ring-inner .orbit-node span {
  animation-name: orbit-counter-spin-reverse;
  animation-duration: 25s;
}

.orbit-node-accent span {
  color: var(--cream-50);
  background: var(--rust-500);
  border-color: var(--rust-500);
}

.orbit-node-wheat span {
  background: var(--wheat-300);
  border-color: var(--wheat-300);
}

.orbit-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  overflow: hidden;
  background: var(--cream-50);
  border: 2px solid var(--wheat-300);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(222, 197, 143, 0.08), 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.orbit-core-glow {
  position: absolute;
  z-index: 2;
  inset: 15%;
  border: 1px solid rgba(17, 55, 46, 0.16);
  border-radius: 50%;
}

.orbit-core img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  object-position: center 20%;
}

.orbit-core p {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 13px;
  left: 16px;
  margin: 0;
  padding: 7px 10px;
  color: var(--forest-950);
  background: rgba(247, 241, 230, 0.94);
  line-height: 1.1;
  text-align: center;
}

.orbit-core p span,
.orbit-core p strong {
  display: block;
}

.orbit-core p span {
  margin-bottom: 2px;
  color: var(--rust-500);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.orbit-core p strong {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
}

.orbit-mobile-list {
  display: none;
}

.orbit-showcase.is-paused .orbit-ring,
.orbit-showcase.is-paused .orbit-node span,
.orbit-showcase.is-page-hidden .orbit-ring,
.orbit-showcase.is-page-hidden .orbit-node span {
  animation-play-state: paused;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes orbit-counter-spin {
  from { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))); }
  to { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle) - 360deg)); }
}

@keyframes orbit-counter-spin-reverse {
  from { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))); }
  to { transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle) + 360deg)); }
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 110px minmax(260px, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 52px 0;
  border-bottom: 1px solid var(--white-line);
}

.process-marker {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--wheat-300);
  border: 1px solid rgba(222, 197, 143, 0.48);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.process-marker::after {
  content: "";
  position: absolute;
  right: -45px;
  width: 45px;
  height: 1px;
  background: rgba(222, 197, 143, 0.24);
}

.process-title small {
  display: block;
  margin-bottom: 8px;
  color: var(--rust-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-title h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.process-step > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
}

.stone-story {
  overflow-x: clip;
  background: var(--cream-200);
}

.stone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.stone-media {
  position: relative;
}

.stone-media img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stone-caption {
  position: absolute;
  right: -24px;
  bottom: 32px;
  padding: 18px 24px;
  color: var(--cream-50);
  background: var(--rust-500);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.stone-caption span {
  margin-right: 7px;
}

.stone-copy .section-index {
  margin-bottom: 45px;
}

.stone-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(3.2rem, 5.8vw, 5.6rem);
}

.stone-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.tick-list {
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest-900);
  font-weight: 600;
}

.tick-list span {
  color: var(--rust-500);
}

.comparison-section {
  background: var(--cream-50);
}

.comparison-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.comparison-header h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.4rem);
}

.comparison-header > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.comparison-card {
  min-height: 590px;
  padding: clamp(34px, 5vw, 64px);
}

.comparison-mass {
  background: var(--cream-100);
  border: 1px solid var(--line);
}

.comparison-atulyash {
  color: var(--cream-50);
  background: var(--forest-900);
}

.comparison-kicker {
  margin-bottom: 80px;
  color: var(--rust-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-atulyash .comparison-kicker {
  color: var(--wheat-300);
}

.comparison-card h3 {
  margin: 0 0 50px;
  font-size: clamp(3.5rem, 6vw, 6.1rem);
}

.comparison-atulyash h3 {
  color: var(--cream-50);
}

.comparison-card dl {
  margin: 0;
}

.comparison-card dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.comparison-atulyash dl div {
  border-color: var(--white-line);
}

.comparison-card dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-atulyash dt {
  color: rgba(255, 253, 248, 0.5);
}

.comparison-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.comparison-vs {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--forest-950);
  background: var(--wheat-300);
  border: 8px solid var(--cream-50);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  transform: translate(-50%, -50%);
}

.value-section {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--wheat-300);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
}

.value-statement h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6.8vw, 6.8rem);
}

.value-statement h2 em {
  color: var(--rust-600);
  font-weight: 400;
}

.value-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(11, 39, 33, 0.25);
  border-left: 1px solid rgba(11, 39, 33, 0.25);
}

.value-reason {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid rgba(11, 39, 33, 0.25);
  border-bottom: 1px solid rgba(11, 39, 33, 0.25);
}

.value-reason > span {
  color: var(--rust-600);
  font-family: var(--serif);
  font-size: 1rem;
}

.value-reason h3 {
  margin: 44px 0 10px;
  font-size: 1.8rem;
}

.value-reason p {
  margin: 0;
  color: rgba(11, 39, 33, 0.7);
  font-size: 0.82rem;
}

.film-section {
  overflow-x: clip;
  color: rgba(255, 253, 248, 0.72);
  background: var(--rust-600);
}

.film-section h2 {
  color: var(--cream-50);
}

.film-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.film-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(3.4rem, 6.2vw, 6rem);
}

.film-copy > p:not(.eyebrow) {
  max-width: 500px;
}

.transcript {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 253, 248, 0.25);
  border-bottom: 1px solid rgba(255, 253, 248, 0.25);
}

.transcript summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--cream-50);
  font-weight: 600;
}

.transcript p {
  padding: 0 0 18px;
  margin: 0;
}

.film-frame {
  position: relative;
  padding: 20px 20px 0 0;
}

.film-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 70%;
  border-top: 1px solid rgba(255, 253, 248, 0.3);
  border-right: 1px solid rgba(255, 253, 248, 0.3);
}

.film-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--forest-950);
  box-shadow: 0 30px 80px rgba(61, 16, 7, 0.28);
}

.film-stamp {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  color: var(--forest-950);
  background: var(--wheat-300);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
}

.weekly-section {
  background: var(--cream-100);
}

.weekly-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: start;
  gap: clamp(42px, 6vw, 88px);
}

.weekly-copy h2 {
  max-width: 800px;
  margin: 0 0 32px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.weekly-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
}

.weekly-copy .section-index {
  margin-bottom: 45px;
}

.weekly-steps {
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.weekly-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--forest-900);
  font-weight: 600;
}

.weekly-steps span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cream-50);
  background: var(--rust-500);
  border-radius: 50%;
  font-size: 0.7rem;
}

.calculator {
  position: relative;
  padding: clamp(34px, 5vw, 56px);
  background: var(--cream-50);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.calculator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 4px;
  background: var(--rust-500);
}

.calculator-tag {
  margin-bottom: 18px;
  color: var(--rust-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator h3 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.calculator-intro {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.calculator-roti-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  background:
    linear-gradient(105deg, rgba(222, 197, 143, 0.18), rgba(255, 253, 248, 0.72)),
    var(--cream-100);
  border: 1px solid rgba(17, 55, 46, 0.14);
  box-shadow: inset 3px 0 0 var(--rust-500);
}

.calculator-roti-copy label,
.calculator-roti-copy strong,
.calculator-roti-copy small {
  display: block;
}

.calculator-roti-copy label {
  color: var(--rust-500);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator-roti-copy strong {
  margin-top: 3px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.calculator-roti-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.4;
}

.calculator-roti-stepper {
  display: grid;
  grid-template-columns: 44px 104px 44px;
  align-items: center;
  gap: 4px;
  width: 210px;
  min-height: 56px;
  padding: 5px;
  background: var(--cream-50);
  border: 1px solid rgba(17, 55, 46, 0.18);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(7, 31, 25, 0.08);
}

.calculator-roti-stepper > button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--forest-950);
  background: var(--cream-100);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font: 500 1.15rem var(--sans);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.calculator-roti-stepper > button:hover:not(:disabled) {
  color: var(--cream-50);
  background: var(--forest-900);
  transform: translateY(-1px);
}

.calculator-roti-stepper > button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.calculator-roti-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.calculator-roti-stepper input {
  width: 72px;
  padding: 0;
  color: var(--forest-950);
  background: transparent;
  border: 0;
  outline: 0;
  font: 600 1.85rem var(--serif);
  line-height: 0.94;
  text-align: center;
  -moz-appearance: textfield;
}

.calculator-roti-stepper input::-webkit-inner-spin-button,
.calculator-roti-stepper input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.calculator-roti-value > span {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calculator-roti-stepper:focus-within {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(222, 197, 143, 0.48);
}

.calculator-buffer {
  padding: 20px 0 0;
  margin: 0;
  border: 0;
}

.calculator-buffer legend {
  float: left;
  width: 100%;
  padding: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
}

.calculator-buffer > p {
  clear: both;
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.calculator-buffer-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.calculator-buffer-options label {
  position: relative;
  cursor: pointer;
}

.calculator-buffer-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.calculator-buffer-options label > span {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: var(--forest-900);
  background: var(--cream-100);
  border: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.calculator-buffer-options strong,
.calculator-buffer-options small {
  display: block;
}

.calculator-buffer-options strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.calculator-buffer-options small {
  color: inherit;
  font-size: 0.62rem;
  line-height: 1.35;
  opacity: 0.74;
}

.calculator-buffer-options input:checked + span {
  color: var(--cream-50);
  background: var(--forest-900);
  border-color: var(--forest-900);
  transform: translateY(-2px);
}

.calculator-buffer-options input:focus-visible + span {
  outline: 3px solid var(--wheat-400);
  outline-offset: 3px;
}

.range-labels,
.range-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.range-labels {
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.range-labels output {
  color: var(--rust-500);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.calculator input[type="range"] {
  width: 100%;
  height: 7px;
  margin: 12px 0;
  appearance: none;
  background: linear-gradient(90deg, var(--rust-500) 0 var(--range-progress, 20%), var(--cream-200) var(--range-progress, 20%) 100%);
  border-radius: 20px;
  cursor: pointer;
}

.calculator input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  appearance: none;
  background: var(--cream-50);
  border: 7px solid var(--forest-900);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(11, 39, 33, 0.24);
}

.calculator input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--cream-50);
  border: 7px solid var(--forest-900);
  border-radius: 50%;
}

.range-scale {
  color: var(--muted);
  font-size: 0.7rem;
}

.weekly-result {
  position: relative;
  overflow: hidden;
  margin: 24px 0 18px;
  padding: 26px;
  color: var(--cream-50);
  background:
    radial-gradient(circle at 92% 12%, rgba(222, 197, 143, 0.18), transparent 34%),
    var(--forest-950);
  border: 1px solid rgba(17, 55, 46, 0.24);
  box-shadow: 0 18px 42px rgba(7, 31, 25, 0.13);
  text-align: left;
}

.calculator-result-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
}

.calculator-result-primary > span {
  display: block;
  color: var(--wheat-300);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.calculator-result-value {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 5px;
  white-space: nowrap;
}

.calculator-result-value strong {
  color: var(--cream-50);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.4vw, 4.35rem);
  font-weight: 500;
  line-height: 0.92;
}

.calculator-result-value em {
  color: var(--cream-100);
  font: 700 0.78rem var(--sans);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.calculator-result-method {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(222, 197, 143, 0.18);
}

.calculator-result-method small {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.62rem;
  line-height: 1.45;
}

.calculator-result-method .calculator-plan-band-note {
  display: block;
  color: var(--wheat-300);
}

.calculator-formula-card {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  color: var(--forest-950);
  background: var(--cream-50);
  border: 1px solid rgba(222, 197, 143, 0.58);
  border-left: 4px solid var(--wheat-400);
}

.calculator-formula-label {
  color: var(--rust-500);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.calculator-formula-card .calculator-formula {
  margin: 0;
  color: var(--forest-950);
  font: 700 clamp(0.92rem, 1.5vw, 1.1rem) var(--sans);
  letter-spacing: 0.01em;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.calculator-formula-card .calculator-formula-note {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.calculator-result-method .calculator-result-disclaimer {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.68rem;
  line-height: 1.45;
}

.discipline-section {
  background: var(--cream-50);
}

.discipline-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 10vw, 140px);
}

.discipline-heading h2 {
  margin: 0 0 30px;
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.discipline-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.discipline-heading .section-index {
  margin-bottom: 45px;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 16px;
}

.discipline-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--cream-100);
  border: 1px solid var(--line);
}

.discipline-card:nth-child(2) {
  min-height: 450px;
  color: var(--cream-50);
  background: var(--forest-900);
}

.discipline-card:nth-child(3) {
  min-height: 520px;
  background: var(--wheat-300);
}

.discipline-card > span {
  margin-bottom: auto;
  color: var(--rust-500);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.discipline-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.discipline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.discipline-card:nth-child(2) h3,
.discipline-card:nth-child(2) p {
  color: var(--cream-50);
}

.truth-section {
  color: rgba(255, 253, 248, 0.7);
  background: var(--forest-950);
}

.truth-section h2,
.truth-section h3 {
  color: var(--cream-50);
}

.truth-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.truth-header h2 {
  margin: 0;
}

.truth-header > p {
  margin: 0 0 10px;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.truth-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  transition: background 200ms ease, transform 200ms ease;
}

.truth-card:hover {
  z-index: 2;
  background: var(--forest-800);
  transform: translateY(-5px);
}

.truth-no {
  color: var(--wheat-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.truth-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 55px 0 auto;
  color: var(--wheat-300);
  border: 1px solid rgba(222, 197, 143, 0.38);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.8rem;
}

.truth-card h3 {
  margin: 60px 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.truth-card p {
  min-height: 58px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.88rem;
}

.truth-card a {
  color: var(--wheat-300);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.start-section {
  overflow-x: clip;
  padding-top: clamp(64px, 7vw, 110px);
  padding-bottom: 70px;
  background: var(--cream-200);
}

.start-card {
  width: min(calc(100% - 48px), 1600px);
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.65fr);
  overflow: hidden;
  color: var(--forest-950);
  background: var(--wheat-300);
  box-shadow: 0 32px 90px rgba(11, 39, 33, 0.12);
}

.start-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
}

.start-copy h2 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.start-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(11, 39, 33, 0.72);
}

.start-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.start-copy > small {
  display: block;
  margin-top: 20px;
  color: rgba(11, 39, 33, 0.58);
  font-size: 0.7rem;
}

.start-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: var(--forest-900);
}

.start-visual img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: auto;
  max-width: 390px;
  filter: drop-shadow(0 30px 26px rgba(0, 0, 0, 0.35));
}

.start-ring {
  position: absolute;
  width: 115%;
  aspect-ratio: 1;
  border: 1px solid rgba(222, 197, 143, 0.32);
  border-radius: 50%;
}

.start-ring::before,
.start-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(222, 197, 143, 0.18);
  border-radius: 50%;
}

.start-ring::before {
  inset: 12%;
}

.start-ring::after {
  inset: 25%;
}

.start-visual p {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 25px;
  margin: 0;
  color: var(--cream-50);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.start-visual p span,
.start-visual p strong {
  display: block;
}

.start-visual p span {
  color: var(--wheat-300);
  font-style: italic;
  font-weight: 400;
}

.faq-section {
  padding-top: 90px;
  background: var(--cream-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(60px, 12vw, 160px);
}

.faq-heading .section-index {
  margin-bottom: 45px;
}

.faq-heading h2 {
  margin: 0 0 28px;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--forest-950);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--rust-500);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 50px 28px 0;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 253, 248, 0.68);
  background: var(--forest-950);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) 0.55fr 0.8fr 1fr;
  gap: 50px;
  padding-top: 84px;
  padding-bottom: 70px;
}

.footer-logo-lockup {
  width: 220px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  padding: 10px 12px;
  background: var(--cream-50);
  text-decoration: none;
}

.footer-logo-lockup .brand-mark {
  width: 23%;
  height: auto;
}

.footer-logo-lockup .brand-wordmark {
  width: 74%;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  font-size: 0.85rem;
}

.footer-col h2 {
  margin: 0 0 24px;
  color: var(--wheat-300);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--wheat-300);
}

.footer-belief {
  padding-left: 30px;
  border-left: 1px solid var(--white-line);
}

.footer-belief span {
  color: var(--wheat-300);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-belief p {
  margin: 25px 0 0;
  color: var(--cream-50);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 0.76rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(4.05rem, 6vw, 4.8rem);
  }

  .hero-product {
    width: clamp(300px, 29vw, 350px);
  }

  .hero-origin-seal {
    right: -8px;
    width: 90px;
    height: 90px;
  }

  .daily-layout {
    grid-template-columns: 110px 1fr;
  }

  .daily-copy {
    grid-column: 2;
    max-width: 650px;
  }

  .questions-intro {
    grid-template-columns: minmax(270px, 0.6fr) 1fr;
    gap: 55px;
  }

  .veer-card {
    min-height: 550px;
  }

  .orbit-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .orbit-stage {
    justify-self: center;
  }

  .discipline-layout {
    grid-template-columns: 1fr;
  }

  .discipline-heading {
    max-width: 740px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--forest-950);
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 2;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header-height));
    display: none;
    align-items: stretch;
    padding: 18px;
    overflow-y: auto;
    background: var(--cream-50);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(11, 39, 33, 0.16);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.4rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 720px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 50px;
    padding-bottom: 0;
  }

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

  .hero-visual {
    width: min(100%, 720px);
    height: clamp(440px, 52vw, 480px);
    justify-self: end;
  }

  .hero-backdrop {
    left: 31%;
    border-radius: 260px 260px 4px 4px;
  }

  .hero-arch-outline {
    left: calc(31% - 12px);
  }

  .hero-product {
    right: auto;
    bottom: -22px;
    left: 4%;
    width: clamp(240px, 32vw, 290px);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--forest-950);
    background: transparent;
    border: 1px solid var(--line);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 2;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header-height));
    display: none;
    align-items: stretch;
    padding: 18px;
    overflow-y: auto;
    background: var(--cream-50);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(11, 39, 33, 0.16);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.4rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .questions-intro,
  .way-header,
  .stone-layout,
  .comparison-header,
  .value-layout,
  .film-layout,
  .weekly-layout,
  .truth-header,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .questions-intro {
    gap: 65px;
  }

  .veer-card {
    width: min(100%, 520px);
    justify-self: center;
  }

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

  .process-step {
    grid-template-columns: 85px minmax(220px, 0.7fr) 1fr;
  }

  .stone-media img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

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

  .comparison-header,
  .truth-header {
    gap: 25px;
  }

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

  .calculator {
    width: min(100%, 650px);
  }

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

  .truth-card {
    min-height: 400px;
  }

  .truth-icon {
    margin-top: 40px;
  }

  .start-card {
    grid-template-columns: 1fr 300px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 253, 248, 0.14);
  }

  .proof-item:nth-child(even) {
    border-right: 1px solid rgba(255, 253, 248, 0.14);
  }

  .proof-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  :root {
    --announcement-height: 48px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .start-section {
    padding-bottom: 48px;
  }

  .faq-section {
    padding-top: 70px;
  }

  .announcement-inner {
    justify-content: flex-start;
    min-height: 48px;
    padding-block: 6px;
    overflow: visible;
    white-space: normal;
    line-height: 1.35;
  }

  .announcement-mark {
    flex: 0 0 auto;
  }

  .announcement-inner a {
    display: none;
  }

  .brand {
    width: 120px;
  }

  .header-cta {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    gap: 12px;
    padding-top: 42px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 14.8vw, 4.55rem);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-product {
    right: auto;
    bottom: 0;
    left: -2%;
    width: clamp(205px, 45vw, 250px);
    opacity: 1;
  }

  .hero-visual {
    width: 100%;
    height: clamp(360px, 90vw, 420px);
  }

  .hero-backdrop {
    left: 28%;
    border-radius: 210px 210px 4px 4px;
  }

  .hero-arch-outline {
    left: calc(28% - 10px);
  }

  .hero-origin-seal {
    right: -8px;
    width: 86px;
    height: 86px;
  }

  .proof-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .proof-item {
    min-height: 82px;
  }

  .daily-layout {
    grid-template-columns: 1fr;
  }

  .daily-copy {
    grid-column: 1;
  }

  .daily-heading h2,
  .questions-heading h2,
  .stone-copy h2,
  .comparison-header h2,
  .film-copy h2,
  .weekly-copy h2,
  .discipline-heading h2,
  .start-copy h2,
  .faq-heading h2 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .questions-intro {
    margin-bottom: 60px;
  }

  .veer-card {
    min-height: 500px;
  }

  .veer-investigation-card > img {
    width: 72%;
    height: 88%;
  }

  .veer-clue-stage {
    top: 20px;
    right: 14px;
    width: min(53%, 190px);
    height: 82px;
  }

  .veer-clue {
    padding: 12px 14px;
  }

  .veer-clue strong {
    font-size: 1rem;
  }

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

  .question-card {
    min-height: 230px;
  }

  .question-card h3 {
    margin-top: 36px;
  }

  .way-header {
    gap: 30px;
    padding-bottom: 50px;
  }

  .way-header h2 {
    font-size: clamp(4.1rem, 19vw, 6.1rem);
  }

  .orbit-showcase {
    padding: 52px 0 65px;
  }

  .orbit-copy h3 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .orbit-toggle {
    display: none;
  }

  .orbit-stage {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    aspect-ratio: auto;
    background: none;
  }

  .orbit-stage::before,
  .orbit-stage::after,
  .orbit-ring {
    display: none;
  }

  .orbit-core {
    position: relative;
    top: auto;
    left: auto;
    width: 230px;
    height: 230px;
    margin: 8px auto 34px;
    transform: none;
  }

  .orbit-mobile-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .orbit-mobile-list li {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    color: var(--forest-950);
    background: var(--wheat-300);
    border-radius: 2px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .orbit-mobile-list li:last-child {
    grid-column: 1 / -1;
    color: var(--cream-50);
    background: var(--rust-500);
  }

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .process-marker {
    width: 54px;
    height: 54px;
  }

  .process-marker::after {
    display: none;
  }

  .process-step > p {
    grid-column: 2;
  }

  .stone-caption {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

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

  .value-layout {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: auto;
  }

  .comparison-vs {
    top: 50%;
    width: 72px;
    height: 72px;
  }

  .comparison-card dl div {
    grid-template-columns: 110px 1fr;
  }

  .value-reasons {
    grid-template-columns: 1fr;
  }

  .film-frame {
    padding: 10px 10px 0 0;
  }

  .film-stamp {
    right: -6px;
    bottom: -30px;
    width: 88px;
    height: 88px;
    font-size: 0.95rem;
  }

  .weekly-steps li {
    align-items: flex-start;
  }

  .calculator {
    padding: 30px 22px;
  }

  .weekly-result strong {
    font-size: 3.4rem;
  }

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

  .discipline-card,
  .discipline-card:nth-child(2),
  .discipline-card:nth-child(3) {
    min-height: 270px;
  }

  .truth-card {
    min-height: 380px;
  }

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

  .start-copy {
    padding: 50px 26px;
  }

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

  .start-visual {
    min-height: 400px;
  }

  .start-visual img {
    width: min(72%, 280px);
  }

  .faq-layout {
    gap: 55px;
  }

  .faq-list summary {
    min-height: 78px;
    padding: 15px 0;
    line-height: 1.18;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-belief {
    padding: 30px 0 0;
    border-top: 1px solid var(--white-line);
    border-left: 0;
  }

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

@media (max-width: 520px) {
  .hero-layout {
    padding-top: 42px;
  }

  .hero-visual {
    height: clamp(360px, 100vw, 410px);
  }

  .hero-origin-seal {
    display: none;
  }

}

@media (max-width: 390px) {
  .header-cta span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.5vw, 3.65rem);
  }

  .veer-card {
    min-height: 450px;
  }

  .veer-clue-stage {
    width: 52%;
  }

  .comparison-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Reviewer revision — keep the hero message calm and move the decision
   actions into their own clear horizontal next step. */
.hero-journey {
  position: relative;
  z-index: 3;
  padding: 24px 0;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(17, 55, 46, 0.12);
}

.hero-journey-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hero-journey p {
  margin: 0 0 5px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.hero-journey small {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-journey .hero-actions-client {
  justify-content: flex-end;
}

.hero-journey .button-primary {
  color: var(--cream-50);
  background: var(--forest-900);
  border-color: var(--forest-900);
}

.hero-journey .text-action {
  color: var(--forest-800);
}

@media (max-width: 780px) {
  .hero-journey-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-journey .hero-actions-client {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero-journey {
    padding: 21px 0;
  }

  .hero-journey .hero-actions-client {
    gap: 13px;
  }

  .hero-journey .hero-actions-client .button,
  .hero-journey .hero-actions-client .text-action {
    width: 100%;
    justify-content: space-between;
  }

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

@media (max-width: 360px) {
  .header-cta {
    display: none;
  }

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

  .proof-item,
  .proof-item:nth-child(even),
  .proof-item:last-child {
    min-height: 70px;
    grid-column: auto;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 253, 248, 0.14);
    border-right: 1px solid rgba(255, 253, 248, 0.14);
  }

  .proof-item:first-child {
    border-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-backdrop,
  .hero-product,
  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-lead,
  .hero-copy > .hero-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .orbit-ring,
  .orbit-node span {
    animation: none !important;
  }

  .veer-investigation-card > img,
  .veer-investigation-card .veer-clue {
    animation: none !important;
  }

  .veer-investigation-card.is-motion-ready .veer-clue {
    display: none;
  }

  .veer-investigation-card.is-motion-ready .veer-finding {
    display: flex;
    opacity: 1;
    transform: none;
  }

  .orbit-toggle {
    display: none;
  }
}

/* Atulyash cursor halo */

.atulyash-cursor {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  display: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 150ms ease;
}

.atulyash-cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(11, 39, 33, 0.68);
  border-radius: 50%;
  box-shadow: 0 4px 13px rgba(11, 39, 33, 0.1);
  transform: translate(-50%, -50%) scale(1);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, transform 140ms ease;
}

.atulyash-cursor-grain {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 5px;
  height: 9px;
  background: var(--wheat-400);
  border: 1px solid rgba(11, 39, 33, 0.7);
  border-radius: 82% 18% 76% 24%;
  box-shadow: 0 3px 8px rgba(11, 39, 33, 0.18);
  transform: rotate(38deg);
  transition: background 180ms ease, transform 180ms ease;
}

.atulyash-cursor-label {
  position: absolute;
  top: 0;
  left: 29px;
  min-width: max-content;
  padding: 5px 8px;
  opacity: 0;
  color: var(--cream-50);
  background: var(--forest-950);
  border: 1px solid rgba(255, 253, 248, 0.32);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-5px, -50%);
  transition: opacity 160ms ease, transform 180ms ease;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-ready .atulyash-cursor {
    display: block;
  }

  .cursor-ready .atulyash-cursor.is-visible {
    opacity: 1;
    will-change: transform;
  }

  .atulyash-cursor.is-interactive .atulyash-cursor-ring {
    width: 32px;
    height: 32px;
    border-color: var(--rust-500);
    transform: translate(-50%, -50%) scale(1.04);
  }

  .atulyash-cursor.is-interactive .atulyash-cursor-grain {
    background: var(--rust-500);
    transform: rotate(64deg) scale(1.08);
  }

  .atulyash-cursor.is-branded .atulyash-cursor-ring {
    width: 42px;
    height: 42px;
    border-color: var(--wheat-400);
  }

  .atulyash-cursor.is-branded .atulyash-cursor-label {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .atulyash-cursor.is-pressed .atulyash-cursor-ring {
    transform: translate(-50%, -50%) scale(0.82);
  }

  .cursor-ready .atulyash-cursor.is-hidden-zone {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .atulyash-cursor {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .atulyash-cursor {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  html.cursor-ready body {
    cursor: url("images/cursor-atulyash.svg") 3 3, auto;
  }

  html.cursor-ready :is(a, button, summary, select, label[for], input[type="range"]),
  html.cursor-ready :is(a, button, summary, select, label[for]) * {
    cursor: url("images/cursor-atulyash-action.svg") 3 3, pointer;
  }

  html.cursor-ready :is(p, h1, h2, h3, h4, li, dt, dd, small),
  html.cursor-ready :is(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea) {
    cursor: text;
  }

  html.cursor-ready :is(video, iframe) {
    cursor: auto;
  }

  html.cursor-ready [data-cursor-hide],
  html.cursor-ready [data-cursor-hide] * {
    cursor: auto;
  }

  html.cursor-ready [data-cursor-hide] button {
    cursor: pointer;
  }

  html.cursor-ready [data-cursor-hide] input {
    cursor: text;
  }
}

/* Client revision — 12 July */

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(5rem, 7.1vw, 7.2rem);
  line-height: 0.9;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  line-height: 1.28;
}

.hero-support {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--wheat-300);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions-client {
  max-width: 720px;
  gap: 18px 24px;
}

.hero-actions-client .button {
  padding-inline: 20px;
  font-size: 0.72rem;
}

.hero-actions-client .text-action {
  font-size: 0.76rem;
}

.hero-subscribe {
  flex-basis: max-content;
}

.hero-product {
  width: clamp(330px, 28vw, 420px);
}

.proof-item {
  min-height: 112px;
}

.proof-item strong {
  font-size: clamp(0.9rem, 1.12vw, 1.04rem);
  line-height: 1.28;
}

.signature-orbit-section {
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: clamp(92px, 9vw, 142px) 0;
  background:
    radial-gradient(circle at 50% 53%, rgba(222, 197, 143, 0.1), transparent 36%),
    linear-gradient(145deg, #3B7B3B, var(--brand-green) 56%, #3B7B3B);
}

.signature-orbit-wrap {
  position: relative;
}

.signature-orbit-heading {
  position: relative;
  z-index: 8;
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
}

.signature-orbit-heading .section-index {
  margin-bottom: 22px;
  color: var(--wheat-400);
}

.signature-orbit-heading .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.signature-orbit-heading h2 {
  margin: 0;
  color: var(--cream-50);
  font-size: clamp(4rem, 7vw, 6.7rem);
}

.signature-orbit-heading h2 span {
  display: block;
}

.signature-orbit-heading > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.orbit-showcase-signature {
  position: relative;
  display: block;
  padding: 18px 0 0;
  border: 0;
}

.orbit-showcase-signature .orbit-toggle {
  position: absolute;
  z-index: 12;
  top: 42px;
  right: 0;
  margin: 0;
}

.signature-orbit-stage {
  width: min(100%, 780px);
  justify-self: auto;
  margin-inline: auto;
}

.signature-orbit-stage .orbit-ring-outer {
  width: 620px;
  height: 620px;
  margin: -310px 0 0 -310px;
  animation-duration: 48s;
}

.signature-orbit-stage .orbit-ring-inner {
  width: 430px;
  height: 430px;
  margin: -215px 0 0 -215px;
  animation-name: orbit-spin;
  animation-duration: 48s;
}

.signature-orbit-stage .orbit-ring-outer .orbit-node {
  --radius: 310px;
}

.signature-orbit-stage .orbit-ring-inner .orbit-node {
  --radius: 215px;
}

.signature-orbit-stage .orbit-node span {
  width: 168px;
  min-height: 48px;
  padding: 10px 16px;
  animation-duration: 48s;
  font-size: 0.7rem;
}

.signature-orbit-stage .orbit-ring-inner .orbit-node span {
  animation-name: orbit-counter-spin;
  animation-duration: 48s;
}

.orbit-core-veer {
  width: 286px;
  height: 286px;
  border-width: 3px;
  box-shadow: 0 0 0 18px rgba(222, 197, 143, 0.08), 0 32px 82px rgba(0, 0, 0, 0.4);
}

.orbit-core-veer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.orbit-core-veer p {
  right: 22px;
  bottom: 18px;
  left: 22px;
  padding: 9px 12px;
}

.orbit-core-veer p strong {
  font-size: 1.02rem;
}

.weekly-copy h2 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6vw, 5.9rem);
}

.weekly-copy > p:not(.eyebrow) {
  font-size: 1.04rem;
}

.weekly-steps-four li {
  align-items: flex-start;
  padding: 15px 0;
}

.delivery-day-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.delivery-day-field label {
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 700;
}

.delivery-day-field select {
  min-width: 150px;
  min-height: 46px;
  padding: 9px 38px 9px 13px;
  color: var(--forest-950);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 0;
  font: 600 0.82rem var(--sans);
}

.awareness-section {
  overflow: hidden;
  color: rgba(255, 253, 248, 0.72);
  background:
    radial-gradient(circle at 16% 18%, rgba(184, 79, 49, 0.15), transparent 28%),
    var(--forest-950);
}

.awareness-section h2,
.awareness-section h3,
.awareness-section h4 {
  color: var(--cream-50);
}

.awareness-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.2fr) minmax(310px, 0.72fr);
  align-items: start;
  gap: clamp(38px, 6vw, 84px);
}

.awareness-index {
  color: var(--wheat-400);
}

.awareness-statement .eyebrow {
  color: var(--wheat-300);
}

.awareness-statement h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.6rem, 6.6vw, 6.8rem);
}

.awareness-body {
  padding: 12px 0 12px clamp(28px, 4vw, 54px);
  border-left: 1px solid var(--white-line);
}

.awareness-body > p {
  margin-bottom: 28px;
}

.awareness-close {
  margin-bottom: 0;
  color: var(--wheat-300);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.28;
}

.dainik-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 384px);
  align-items: center;
  gap: clamp(38px, 8vw, 128px);
  max-width: 1120px;
  padding-top: clamp(64px, 9vw, 112px);
  margin-top: clamp(64px, 9vw, 112px);
  border-top: 1px solid var(--white-line);
}

.dainik-story-copy {
  max-width: 560px;
}

.dainik-story-copy .eyebrow {
  color: var(--wheat-300);
}

.dainik-story-copy h3 {
  max-width: 540px;
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 0.96;
}

.dainik-story-copy > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.dainik-story-copy .dainik-story-disclaimer {
  max-width: 500px;
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.78rem;
  line-height: 1.6;
}

.dainik-story-disclaimer strong {
  color: var(--wheat-300);
}

.dainik-story-video {
  width: min(100%, 384px);
  margin: 0;
}

.dainik-story-video-frame {
  overflow: hidden;
  background: #050d0a;
  border: 1px solid rgba(222, 197, 143, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.dainik-story-video video {
  display: block;
  width: 100%;
  aspect-ratio: 384 / 848;
  background: #050d0a;
}

.dainik-story-video figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-context {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: 46px;
  border-top: 1px solid var(--white-line);
}

.news-context-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.news-context-head .eyebrow {
  margin: 0;
  color: var(--wheat-300);
}

.news-context-head h3 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-align: right;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.news-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 42px);
  background: rgba(255, 253, 248, 0.035);
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.news-card > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--wheat-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card h4 {
  margin: 58px 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.news-card p {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.83rem;
}

.news-card a {
  margin-top: auto;
  color: var(--wheat-300);
  font-size: 0.72rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.news-card-flour {
  background: rgba(222, 197, 143, 0.1);
}

.news-disclaimer {
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.42);
  font-size: 0.68rem;
}

.questions-heading > p:last-child {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.38;
}

.question-card h3 {
  margin-top: 52px;
}

.question-card p {
  font-size: 0.94rem;
}

.compromises-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.94)),
    url("images/atulyash-village.webp") center top / 1600px auto repeat-y;
}

.compromises-header {
  max-width: 1080px;
  margin-bottom: clamp(58px, 8vw, 96px);
}

.compromises-header .section-index {
  margin-bottom: 42px;
}

.compromises-header h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3.8rem, 7.4vw, 7.6rem);
}

.compromise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(17, 55, 46, 0.2);
}

.compromise-card {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4.8vw, 62px);
  background: rgba(255, 253, 248, 0.98);
}

.compromise-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 70px;
  color: var(--rust-500);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compromise-card header span {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.compromise-card header p {
  margin: 0;
  text-align: right;
}

.compromise-card h3 {
  max-width: 590px;
  margin: 0 0 30px;
  font-size: clamp(2.45rem, 3.8vw, 4rem);
  line-height: 0.98;
}

.compromise-card > p {
  max-width: 610px;
  margin-bottom: 45px;
  color: var(--muted);
  font-size: 0.94rem;
}

.way-answer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.way-answer span {
  display: block;
  margin-bottom: 12px;
  color: var(--rust-500);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.way-answer p {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  line-height: 1.3;
}

.compromise-card-featured {
  background: var(--wheat-300);
}

.compromise-card-featured > p {
  color: rgba(11, 39, 33, 0.68);
}

.compromise-card-featured .way-answer {
  border-top-color: rgba(11, 39, 33, 0.2);
}

.compromise-card-dark {
  color: rgba(255, 253, 248, 0.72);
  background: var(--forest-900);
}

.compromise-card-dark h3,
.compromise-card-dark .way-answer p {
  color: var(--cream-50);
}

.compromise-card-dark > p {
  color: rgba(255, 253, 248, 0.62);
}

.compromise-card-dark .way-answer {
  border-top-color: var(--white-line);
}

.compromise-card-dark header,
.compromise-card-dark .way-answer span {
  color: var(--wheat-300);
}

.start-copy h2 {
  font-size: clamp(3.6rem, 6.3vw, 6rem);
}

.start-actions .text-action {
  font-size: 0.78rem;
}

.start-visual img {
  width: 82%;
  max-width: 420px;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(4.5rem, 7vw, 5.8rem);
  }

  .signature-orbit-stage {
    width: 700px;
  }

  .signature-orbit-stage .orbit-ring-outer {
    width: 560px;
    height: 560px;
    margin: -280px 0 0 -280px;
  }

  .signature-orbit-stage .orbit-ring-inner {
    width: 390px;
    height: 390px;
    margin: -195px 0 0 -195px;
  }

  .signature-orbit-stage .orbit-ring-outer .orbit-node {
    --radius: 280px;
  }

  .signature-orbit-stage .orbit-ring-inner .orbit-node {
    --radius: 195px;
  }

  .awareness-layout {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .awareness-body {
    grid-column: 2;
    padding: 36px 0 0;
    border-top: 1px solid var(--white-line);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .hero-actions-client {
    max-width: 620px;
  }

  .hero-product {
    width: clamp(250px, 34vw, 300px);
  }

  .signature-orbit-section {
    min-height: auto;
  }

  .signature-orbit-stage {
    width: 650px;
  }

  .signature-orbit-stage .orbit-ring-outer {
    width: 520px;
    height: 520px;
    margin: -260px 0 0 -260px;
  }

  .signature-orbit-stage .orbit-ring-inner {
    width: 360px;
    height: 360px;
    margin: -180px 0 0 -180px;
  }

  .signature-orbit-stage .orbit-ring-outer .orbit-node {
    --radius: 260px;
  }

  .signature-orbit-stage .orbit-ring-inner .orbit-node {
    --radius: 180px;
  }

  .orbit-core-veer {
    width: 250px;
    height: 250px;
  }

  .awareness-layout {
    grid-template-columns: 1fr;
  }

  .awareness-body {
    grid-column: 1;
  }

  .news-context-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-context-head h3 {
    text-align: left;
  }

  .news-grid,
  .compromise-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 300px;
  }

  .compromise-card {
    min-height: 540px;
  }

  .dainik-story {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(3.9rem, 15.8vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1.2rem;
  }

  .hero-support {
    margin-bottom: 26px;
    font-size: 0.7rem;
  }

  .hero-actions-client {
    gap: 14px;
  }

  .hero-actions-client .button {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .hero-actions-client .text-action {
    font-size: 0.72rem;
  }

  .hero-visual {
    margin-top: 0;
  }

  .hero-product {
    width: clamp(215px, 58vw, 240px);
  }

  .proof-item strong {
    font-size: 0.88rem;
  }

  .proof-item {
    min-height: 96px;
  }

  .signature-orbit-section {
    padding-block: 82px;
  }

  .signature-orbit-heading h2 {
    font-size: clamp(3.8rem, 17vw, 5rem);
  }

  .orbit-showcase-signature {
    padding-top: 28px;
  }

  .signature-orbit-stage {
    width: min(100%, 360px);
    min-height: 360px;
    display: block;
    aspect-ratio: 1;
    background:
      radial-gradient(circle at center, rgba(222, 197, 143, 0.16) 0 22%, transparent 22.5%),
      radial-gradient(circle at center, rgba(255, 253, 248, 0.045) 0 50%, transparent 50.5%);
  }

  .signature-orbit-stage::before,
  .signature-orbit-stage::after {
    display: block;
  }

  .signature-orbit-stage .orbit-ring {
    display: block;
  }

  .signature-orbit-stage .orbit-ring-outer {
    width: 296px;
    height: 296px;
    margin: -148px 0 0 -148px;
    animation-duration: 42s;
  }

  .signature-orbit-stage .orbit-ring-inner {
    width: 208px;
    height: 208px;
    margin: -104px 0 0 -104px;
    animation-duration: 30s;
  }

  .signature-orbit-stage .orbit-ring-outer .orbit-node {
    --radius: 148px;
  }

  .signature-orbit-stage .orbit-ring-inner .orbit-node {
    --radius: 104px;
  }

  .signature-orbit-stage .orbit-node span {
    width: 92px;
    min-height: 34px;
    padding: 6px 7px;
    border-radius: 24px;
    font-size: 0.48rem;
    letter-spacing: 0.025em;
    animation-duration: 42s;
  }

  .signature-orbit-stage .orbit-ring-inner .orbit-node span {
    animation-duration: 30s;
  }

  .orbit-core-veer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 166px;
    height: 166px;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .signature-orbit-stage .orbit-mobile-list {
    display: none;
  }

  .orbit-veer-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 300px);
    max-width: none;
    margin: 0;
    transform: translate(-50%, 124px);
    font-size: 0.92rem;
  }

  .signature-orbit-stage .orbit-mobile-list li:last-child {
    grid-column: 1 / -1;
  }

  .weekly-copy h2,
  .awareness-statement h2,
  .compromises-header h2 {
    font-size: clamp(3.3rem, 14.2vw, 4.5rem);
  }

  .delivery-day-field {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .delivery-day-field select {
    width: 100%;
  }

  .awareness-body {
    padding-top: 28px;
  }

  .dainik-story {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 54px;
    padding-top: 54px;
  }

  .dainik-story-video {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .news-card {
    min-height: 310px;
    padding: 30px 24px;
  }

  .news-card h4 {
    margin-top: 42px;
  }

  .compromise-card {
    min-height: 0;
    padding: 40px 26px;
  }

  .compromise-card header {
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .compromise-card h3 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .way-answer {
    margin-top: 24px;
  }

  .start-copy h2 {
    font-size: clamp(3.3rem, 14vw, 4.5rem);
  }

  .start-visual img {
    width: min(72%, 280px);
  }
}

/* Compact desktop guard for Windows laptops using 125% display scaling. */
@media (min-width: 681px) and (max-width: 1280px) {
  .film-stamp {
    right: 0;
    bottom: -24px;
    width: 96px;
    height: 96px;
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(3.5rem, 16.5vw, 4rem);
  }

  .news-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .compromise-card header {
    flex-direction: column;
  }

  .compromise-card header p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Premium motion system */

.motion-ready .reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.hero-visual {
  --hero-pointer-x: 50%;
  --hero-pointer-y: 50%;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  perspective: 1200px;
  perspective-origin: 52% 48%;
}

.hero-product-depth {
  position: relative;
  width: 100%;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0)
    rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-visual.is-depth-active .hero-product-depth {
  will-change: transform;
  transition-duration: 120ms;
}

.hero-product-depth > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.42));
  transform: translateZ(34px);
}

.hero-product-depth .hero-product-halo {
  transform: translateX(-50%) translateZ(-26px) scale(1.025);
}

.hero-product-depth .hero-origin-seal {
  transform: translateZ(64px);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -28%;
  bottom: -28%;
  left: -62%;
  width: 34%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 218, 0.2), transparent);
  transform: skewX(-14deg) translateX(0);
  animation: hero-light-sweep 1350ms 900ms cubic-bezier(0.2, 0.7, 0.25, 1) both;
}

.hero-copy > .hero-support {
  animation: hero-copy-arrive 720ms 170ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-copy > .hero-actions {
  animation-delay: 240ms;
}

.hero-grains {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: hero-grains-arrive 760ms 720ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-grains span {
  position: absolute;
  width: 9px;
  height: 18px;
  background: linear-gradient(145deg, #efd99e, #b88635);
  border: 1px solid rgba(255, 245, 218, 0.36);
  border-radius: 80% 20% 76% 24%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 18px) rotate(var(--grain-rotate));
  transition: transform 180ms ease-out;
}

.hero-grains span:nth-child(1) { top: 17%; left: 11%; --grain-rotate: 28deg; }
.hero-grains span:nth-child(2) { top: 29%; right: 4%; --grain-rotate: -38deg; }
.hero-grains span:nth-child(3) { top: 48%; left: 3%; --grain-rotate: 54deg; }
.hero-grains span:nth-child(4) { right: 10%; bottom: 27%; --grain-rotate: 14deg; }
.hero-grains span:nth-child(5) { bottom: 13%; left: 18%; --grain-rotate: -24deg; }

@keyframes hero-light-sweep {
  0% { opacity: 0; transform: skewX(-14deg) translateX(0); }
  18% { opacity: 1; }
  72% { opacity: 0.72; }
  100% { opacity: 0; transform: skewX(-14deg) translateX(520%); }
}

@keyframes hero-grains-arrive {
  to { opacity: 0.62; transform: translate3d(0, 0, 0); }
}

.motion-ready .motion-heading {
  opacity: 0;
  clip-path: inset(0 0 32% 0);
  transform: translateY(24px);
  transition: opacity 720ms ease, clip-path 820ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 820ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.motion-ready .motion-heading.is-heading-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.motion-ready [data-motion-sequence] > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 560ms ease, transform 680ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--sequence-delay, 0ms);
}

.motion-ready [data-motion-sequence].is-inview > * {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .proof-grid .proof-mark {
  transform: rotate(45deg) scale(0.58);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.25, 1);
  transition-delay: var(--sequence-delay, 0ms);
}

.motion-ready .proof-grid.is-inview .proof-mark {
  transform: rotate(45deg) scale(1);
}

.weekly-steps-four {
  position: relative;
}

.weekly-steps-four::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 28px;
  bottom: 28px;
  left: 13px;
  width: 1px;
  background: rgba(184, 79, 49, 0.32);
  transform: scaleY(1);
  transform-origin: top;
}

.motion-ready .weekly-steps-four::before {
  transform: scaleY(0);
  transition: transform 900ms 120ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.motion-ready .weekly-steps-four.is-inview::before {
  transform: scaleY(1);
}

.weekly-steps-four li,
.weekly-steps-four li span {
  position: relative;
  z-index: 1;
}

.orbit-showcase-signature {
  perspective: 1250px;
}

.motion-ready .orbit-showcase-signature .signature-orbit-stage {
  opacity: 0.72;
  transform: rotateX(5deg) scale(0.975);
  transform-style: preserve-3d;
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.motion-ready .orbit-showcase-signature.is-visible .signature-orbit-stage {
  opacity: 1;
  transform: rotateX(0deg) scale(1);
}

.orbit-core-veer {
  transform: translate(-50%, -50%) translateZ(34px);
}

.calculator {
  transform-style: preserve-3d;
  transition: transform 280ms ease;
}

.start-card {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.motion-ready [data-motion-scene] .start-visual img {
  opacity: 0;
  transform: translate3d(0, 44px, 34px) rotateY(-7deg) scale(0.97);
  transition: opacity 720ms 180ms ease, transform 1050ms 180ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.motion-ready [data-motion-scene].is-inview .start-visual img {
  opacity: 1;
  transform: translate3d(0, 0, 34px) rotateY(0deg) scale(1);
}

.motion-ready [data-motion-scene] .start-ring {
  opacity: 0;
  transform: scale(0.84) rotate(-12deg);
  transition: opacity 760ms ease, transform 1200ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.motion-ready [data-motion-scene].is-inview .start-ring {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media (hover: hover) and (pointer: fine) {
  .motion-ready .calculator.reveal.is-visible:hover,
  .motion-ready .calculator.reveal.is-visible:focus-within {
    transform: perspective(1000px) translateY(-4px) rotateX(0.7deg);
  }

  .motion-ready .question-card.reveal.is-visible:hover,
  .motion-ready .news-card.reveal.is-visible:hover {
    transform: perspective(900px) translateY(-7px) rotateX(1deg);
  }
}

@media (max-width: 900px) {
  .hero-product-depth,
  .hero-product-depth > img,
  .hero-product-depth .hero-origin-seal {
    transform: none;
  }

  .hero-product-depth .hero-product-halo {
    transform: translateX(-50%);
  }
}

@media (max-width: 680px) {
  .hero-grains {
    display: none;
  }

  .motion-ready .orbit-showcase-signature .signature-orbit-stage,
  .motion-ready .orbit-showcase-signature.is-visible .signature-orbit-stage,
  .orbit-core-veer {
    opacity: 1;
    transform: none;
  }

  .motion-ready [data-motion-sequence] > * {
    transition-delay: 0ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-backdrop::before,
  .hero-grains {
    display: none;
    animation: none;
  }

  .hero-copy > .hero-support,
  .hero-product-depth,
  .motion-ready .motion-heading,
  .motion-ready .motion-heading.is-heading-visible,
  .motion-ready [data-motion-sequence] > *,
  .motion-ready [data-motion-sequence].is-inview > *,
  .motion-ready [data-motion-scene] .start-visual img,
  .motion-ready [data-motion-scene].is-inview .start-visual img,
  .motion-ready [data-motion-scene] .start-ring,
  .motion-ready [data-motion-scene].is-inview .start-ring,
  .motion-ready .orbit-showcase-signature .signature-orbit-stage,
  .motion-ready .orbit-showcase-signature.is-visible .signature-orbit-stage {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
    animation: none;
  }

  .motion-ready .weekly-steps-four::before {
    transform: scaleY(1);
    transition: none;
  }

  .motion-ready .calculator.reveal.is-visible:hover,
  .motion-ready .calculator.reveal.is-visible:focus-within,
  .motion-ready .question-card.reveal.is-visible:hover,
  .motion-ready .news-card.reveal.is-visible:hover {
    transform: none;
  }
}

/* Client observations — 23 July 2026 */

.hero {
  background:
    radial-gradient(circle at 76% 40%, rgba(222, 197, 143, 0.16), transparent 34%),
    linear-gradient(118deg, #3B7B3B 0%, #3B7B3B 56%, #3B7B3B 100%);
}

.hero-lead {
  padding-left: 18px;
  color: rgba(255, 253, 248, 0.9);
  border-left: 2px solid var(--wheat-300);
}

.hero-support {
  color: var(--wheat-300);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 28px;
  padding: 0;
  list-style: none;
}

.hero-proof-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(255, 253, 248, 0.045);
  border: 1px solid rgba(222, 197, 143, 0.2);
  font-size: 0.65rem;
  font-weight: 700;
}

.hero-proof-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--wheat-300);
  transform: rotate(45deg);
}

.hero-actions-client {
  row-gap: 18px;
}

.hero-actions-client .button {
  min-height: 52px;
}

.hero-actions-client .text-action {
  min-height: 44px;
  align-items: center;
}

/* Preserve sharp source pixels until the pointer-driven depth effect is active. */
.hero-product-depth {
  transform: none;
}

.hero-product-depth > img,
.hero-product-depth .hero-origin-seal {
  transform: none;
}

.hero-product-depth .hero-product-halo {
  transform: translateX(-50%);
}

.hero-visual.is-depth-active .hero-product-depth {
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0)
    rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
}

.hero-visual.is-depth-active .hero-product-depth > img {
  transform: translateZ(24px);
}

.hero-visual.is-depth-active .hero-product-depth .hero-origin-seal {
  transform: translateZ(42px);
}

.hero-visual.is-depth-active .hero-product-depth .hero-product-halo {
  transform: translateX(-50%) translateZ(-18px) scale(1.018);
}

.signature-orbit-heading {
  max-width: 980px;
}

.signature-orbit-heading h2 {
  font-size: clamp(3.8rem, 6.2vw, 6rem);
  line-height: 0.94;
}

.signature-orbit-heading > p:last-child {
  color: var(--wheat-300);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.motion-ready .orbit-showcase-signature.is-visible .signature-orbit-stage {
  transform: none;
}

.orbit-core-veer {
  width: 312px;
  height: 312px;
  transform: translate(-50%, -50%);
}

.orbit-core-veer img {
  width: 96%;
  height: 96%;
  max-width: none;
  object-position: center bottom;
}

.orbit-veer-caption {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  width: max-content;
  max-width: min(360px, 80%);
  padding: 10px 18px;
  margin: 0;
  color: var(--wheat-300);
  background: rgba(7, 31, 25, 0.88);
  border: 1px solid rgba(222, 197, 143, 0.32);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, 174px);
}

.calculator-plan-field {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.calculator-plan-field label {
  color: var(--forest-900);
  font-size: 0.72rem;
  font-weight: 700;
}

.calculator-plan-field select {
  width: 100%;
  min-height: 56px;
  padding: 12px 42px 12px 14px;
  color: var(--forest-950);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 0;
  font: 600 0.84rem var(--sans);
}

.calculator-plan-field select:focus-visible {
  outline: 3px solid var(--wheat-400);
  outline-offset: 2px;
}

.calculator-wallet-output {
  display: block;
  max-width: 154px;
  padding: 10px 12px;
  margin: 0;
  color: var(--forest-950);
  background: var(--wheat-300);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.calculator-result-method .calculator-formula {
  margin: 0;
  font-weight: 700;
}

.calculator-dates-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  margin-top: 10px;
  color: var(--forest-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font: 700 0.7rem var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculator-dates-button:focus-visible {
  outline: 3px solid var(--wheat-400);
  outline-offset: 3px;
}

.calculator-delivery-dates {
  padding: 14px;
  margin-top: 12px;
  background: rgba(222, 197, 143, 0.18);
  border: 1px solid var(--line);
}

.calculator-delivery-dates ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-delivery-dates li {
  padding: 8px 9px;
  color: var(--forest-900);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
}

.calculator-delivery-dates small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.45;
}

.calculator-delivery-dates[hidden] {
  display: none;
}

.news-disclaimer {
  max-width: 1040px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.76rem;
  line-height: 1.55;
}

.news-disclaimer strong {
  color: var(--wheat-300);
}

.veer-investigation-card > img {
  bottom: 0;
  left: -2%;
  width: 92%;
  height: 88%;
  object-position: left bottom;
}

.way-answer span {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--cream-50);
  background: var(--forest-900);
  border: 1px solid rgba(255, 253, 248, 0.2);
  font-family: var(--sans);
  line-height: 1.2;
  text-shadow: none;
}

.compromise-card-dark .way-answer span {
  color: var(--forest-950);
  background: var(--wheat-300);
  border-color: rgba(222, 197, 143, 0.3);
}

/* Make the brand's answer the visual payoff of every compromise card. */
.compromise-card .way-answer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: auto;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(222, 197, 143, 0.34);
  background:
    radial-gradient(circle at 100% 0, rgba(222, 197, 143, 0.2), transparent 38%),
    linear-gradient(135deg, #3B7B3B 0%, var(--brand-green) 100%);
  box-shadow: 0 18px 42px rgba(6, 38, 31, 0.14);
}

.compromise-card .way-answer::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 92px;
  height: 4px;
  background: linear-gradient(90deg, var(--rust-500), var(--wheat-300));
}

.compromise-card .way-answer::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -54px;
  right: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(222, 197, 143, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(222, 197, 143, 0.045);
}

.compromise-card .way-answer span {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  padding: 0;
  color: var(--wheat-300);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-transform: none;
}

.compromise-card .way-answer span::after {
  content: "";
  min-width: 36px;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(222, 197, 143, 0.65), transparent);
}

.compromise-card .way-answer p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: var(--cream-50);
  font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  line-height: 1.38;
}

.compromise-card-dark .way-answer {
  border-color: rgba(11, 39, 33, 0.14);
  background:
    radial-gradient(circle at 100% 0, rgba(184, 75, 45, 0.13), transparent 40%),
    linear-gradient(135deg, var(--cream-50) 0%, #ead39c 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.compromise-card-dark .way-answer::after {
  border-color: rgba(11, 39, 33, 0.12);
  box-shadow: 0 0 0 22px rgba(11, 39, 33, 0.035);
}

.compromise-card-dark .way-answer span {
  color: var(--forest-950);
  background: transparent;
  border: 0;
}

.compromise-card-dark .way-answer span::after {
  background: linear-gradient(90deg, rgba(11, 39, 33, 0.5), transparent);
}

.compromise-card-dark .way-answer p {
  color: var(--forest-950);
}

@media (max-width: 680px) {
  .compromise-card .way-answer {
    padding: 24px 22px 26px;
    box-shadow: 0 14px 30px rgba(6, 38, 31, 0.13);
  }

  .compromise-card .way-answer span {
    margin-bottom: 13px;
    font-size: 1.38rem;
  }

  .compromise-card .way-answer p {
    font-size: 1.12rem;
  }
}

.faq-heading h2 {
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.start-actions {
  align-items: flex-start;
}

.start-visual p {
  right: 26px;
  bottom: 28px;
  padding: 12px 14px;
  background: rgba(7, 31, 25, 0.82);
  border: 1px solid rgba(222, 197, 143, 0.25);
  backdrop-filter: blur(7px);
}

@media (max-width: 900px) {
  .orbit-core-veer {
    width: 270px;
    height: 270px;
  }
}

@media (max-width: 680px) {
  .hero-lead {
    padding-left: 14px;
  }

  .hero-actions-client .text-action {
    width: 100%;
    justify-content: space-between;
  }

  .signature-orbit-heading h2 {
    font-size: clamp(3.3rem, 14vw, 4.5rem);
  }

  .orbit-core-veer {
    width: 166px;
    height: 166px;
    transform: translate(-50%, -50%);
  }

  .orbit-veer-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 300px);
    max-width: none;
    margin: 0;
    transform: translate(-50%, 124px);
    font-size: 0.92rem;
  }

  .veer-investigation-card > img {
    width: 96%;
    height: 84%;
  }

  .calculator-plan-field select,
  .delivery-day-field select {
    min-width: 0;
    font-size: 1rem;
  }

  .calculator-buffer-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .calculator-buffer-options label > span {
    min-height: 68px;
    padding: 10px;
  }

  .calculator-roti-control {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .calculator-roti-stepper {
    width: 210px;
    grid-template-columns: 44px 104px 44px;
    justify-self: start;
  }

  .calculator-roti-stepper input {
    width: 72px;
    font-size: 1.75rem;
  }

  .weekly-result {
    padding: 22px;
  }

  .calculator-result-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .calculator-wallet-output {
    max-width: none;
    width: fit-content;
    text-align: left;
  }

  .calculator-result-value strong {
    font-size: 2.65rem;
  }

  .start-visual p {
    right: 14px;
    bottom: 16px;
  }
}

@media (max-width: 390px) {
  .calculator-buffer-options small {
    display: none;
  }

  .calculator-buffer-options label > span {
    min-height: 54px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .calculator-buffer-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-buffer-options label:last-child {
    grid-column: 1 / -1;
  }

  .calculator-buffer-options label > span {
    min-height: 72px;
  }
}

/* Single brand background for the hero and other dark surfaces. */
.hero {
  --hero-accent: var(--wheat-300);
  --hero-seal: var(--rust-500);
  background: var(--brand-green);
}

.hero h1 em,
.hero-support {
  color: var(--hero-accent);
}

.hero-origin-seal {
  background: var(--hero-seal);
}

@media (max-width: 780px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-layout {
    padding-top: 24px;
  }
}
