:root {
  --paper: #f7f0df;
  --paper-deep: #efe5cd;
  --ink: #17332f;
  --ink-soft: #3f4b45;
  --teal: #467c73;
  --teal-pale: #dce7de;
  --turmeric: #e3b341;
  --mango: #e8a33a;
  --rose: #c98772;
  --line: rgba(23, 51, 47, 0.18);
  --white: #fffdf7;
  --font-display: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--turmeric);
  color: var(--ink);
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  max-width: 1600px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 34px clamp(24px, 5vw, 76px);
}

.brand {
  position: relative;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand span {
  position: absolute;
  left: 1px;
  bottom: -17px;
  width: 76px;
  height: 3px;
  border-radius: 8px;
  background: var(--turmeric);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.4vw, 56px);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 560;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--mango);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

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

.header-cta {
  justify-self: end;
  border: 1.5px solid var(--ink);
  border-radius: 11px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 560;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  padding: 140px clamp(24px, 5vw, 76px) 76px;
  background:
    radial-gradient(circle at 90% 20%, rgba(227, 179, 65, 0.16), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(70, 124, 115, 0.08), transparent 31%),
    var(--paper);
}

.paper-grain {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    repeating-linear-gradient(
      15deg,
      transparent 0 13px,
      rgba(23, 51, 47, 0.026) 14px,
      transparent 15px 31px
    ),
    repeating-linear-gradient(
      105deg,
      transparent 0 23px,
      rgba(227, 179, 65, 0.035) 24px,
      transparent 25px 44px
    );
  mix-blend-mode: multiply;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 740px;
  padding-top: 16px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 5.4vw, 5.6rem);
  font-weight: 750;
  letter-spacing: -0.058em;
  line-height: 1.04;
}

h1 span {
  position: relative;
  display: block;
  width: fit-content;
}

h1 span::after {
  position: absolute;
  z-index: -1;
  right: 1%;
  bottom: 3px;
  left: 0;
  height: 9px;
  border-radius: 50%;
  background: rgba(227, 179, 65, 0.82);
  content: "";
  transform: rotate(-0.4deg);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

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

.primary-button {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 17px 20px 17px 24px;
  font-family: var(--font-display);
  font-weight: 650;
  box-shadow: 0 14px 30px rgba(23, 51, 47, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button span {
  font-size: 1.15rem;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--teal);
  box-shadow: 0 18px 36px rgba(23, 51, 47, 0.19);
  transform: translateY(-2px);
}

.hero-actions p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.sun-mark {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border: 2px solid var(--mango);
  border-radius: 50%;
  box-shadow:
    0 -9px 0 -7px var(--mango),
    0 9px 0 -7px var(--mango),
    9px 0 0 -7px var(--mango),
    -9px 0 0 -7px var(--mango);
}

.hero-pillars {
  display: grid;
  max-width: 570px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 44px;
}

.hero-pillars span {
  position: relative;
  padding-top: 23px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.81rem;
  font-weight: 580;
}

.hero-pillars span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--turmeric);
  content: "";
}

.hero-carousel {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  align-self: center;
  justify-self: end;
}

.hero-carousel::before {
  position: absolute;
  z-index: -2;
  inset: -20px 6% 46px;
  border: 1.4px solid rgba(23, 51, 47, 0.75);
  border-radius: 48% 48% 26px 26px / 28% 28% 26px 26px;
  content: "";
}

.hero-carousel::after {
  position: absolute;
  z-index: -3;
  right: -13%;
  bottom: -10%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      rgba(23, 51, 47, 0.075) 0 1px,
      transparent 1px 14px
    );
  content: "";
  mask-image: linear-gradient(to left, black, transparent 78%);
}

.carousel-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(23, 51, 47, 0.16);
  border-radius: 48% 48% 24px 24px / 25% 25% 24px 24px;
  background: var(--paper-deep);
  box-shadow: 0 28px 70px rgba(23, 51, 47, 0.18);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition:
    opacity 700ms ease,
    transform 1200ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

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

.carousel-slide::after {
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(to top, rgba(13, 38, 34, 0.88), transparent);
  content: "";
}

.carousel-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  color: var(--white);
}

.carousel-slide figcaption strong,
.carousel-slide figcaption span {
  display: block;
}

.carousel-slide figcaption strong {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.carousel-slide figcaption span {
  max-width: 470px;
  color: rgba(255, 253, 247, 0.86);
  font-size: 0.95rem;
  line-height: 1.45;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 48%;
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.52);
  border-radius: 50%;
  background: rgba(23, 51, 47, 0.72);
  color: var(--white);
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--ink);
  transform: translateY(-50%) scale(1.06);
}

.carousel-previous {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -34px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  cursor: pointer;
  border: 1px solid var(--ink);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.carousel-dots button.is-active {
  width: 27px;
  border-radius: 999px;
  background: var(--ink);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 5vw, 76px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}

.section-shell {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
}

.paradox {
  position: relative;
  overflow: hidden;
  padding-block: 132px;
  background:
    radial-gradient(circle at 7% 25%, rgba(201, 135, 114, 0.16), transparent 25%),
    linear-gradient(135deg, #fff8ea 0%, #f8eddd 100%);
}

#why,
#pillars,
#how,
#foundation {
  scroll-margin-top: 24px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-intro h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.section-intro > p:last-child {
  max-width: 600px;
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.8;
}

.section-intro + .section-video,
.how-heading + .section-video,
.foundation-header + .section-video {
  margin-top: 68px;
}

.mother-comparison {
  margin-top: 12px;
  border: 1px solid rgba(23, 51, 47, 0.16);
  border-radius: 54px 8px 54px 8px;
  padding: clamp(34px, 5vw, 70px);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 20px 55px rgba(75, 45, 35, 0.08);
}

.mother-comparison-intro {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 40px;
  align-items: start;
}

.mother-comparison-intro h3 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px 6px 28px 6px;
  margin-top: 52px;
  background: var(--white);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: stretch;
}

.comparison-head h4 {
  margin: 0;
  padding: 22px 25px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-head h4:last-child {
  background: var(--ink);
}

.comparison-head > span,
.comparison-row > span {
  display: grid;
  place-items: center;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
}

.comparison-head > span {
  background: var(--turmeric);
  color: var(--ink);
}

.comparison-row {
  border-bottom: 1px solid var(--line);
}

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

.comparison-row p {
  margin: 0;
  padding: 18px 25px;
  color: var(--ink-soft);
}

.comparison-row p:last-child {
  color: var(--ink);
  font-weight: 620;
}

.comparison-note {
  max-width: 850px;
  margin: 40px auto 0;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 650;
  text-align: center;
}

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

.paradox-grid article {
  min-height: 245px;
  padding: 36px clamp(22px, 3vw, 45px);
  border-right: 1px solid var(--line);
}

.paradox-grid article:first-child {
  padding-left: 0;
}

.paradox-grid article:last-child {
  border-right: 0;
}

.paradox-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.paradox-grid h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.paradox-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding-block: 125px 140px;
  background: var(--ink);
  color: var(--paper);
}

.trust-section::before {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 670px;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 240, 223, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(247, 240, 223, 0.025),
    0 0 0 180px rgba(247, 240, 223, 0.018);
  content: "";
}

.section-intro.centered {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.centered .eyebrow {
  color: var(--turmeric);
}

.centered h2 {
  margin-inline: auto;
}

.centered > p:last-child {
  margin: 25px auto 0;
  color: rgba(247, 240, 223, 0.7);
}

.pillar-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.pillar-card {
  min-height: 310px;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 4px 42px 4px 4px;
  padding: 34px 28px 31px;
  background: rgba(247, 240, 223, 0.035);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.pillar-card:hover {
  background: rgba(247, 240, 223, 0.07);
  transform: translateY(-4px);
}

.pillar-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(247, 240, 223, 0.35);
  border-radius: 50%;
  margin-bottom: 59px;
}

.pillar-symbol span {
  color: var(--turmeric);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pillar-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.pillar-card p {
  margin: 0;
  color: rgba(247, 240, 223, 0.68);
  font-size: 0.95rem;
}

.how-section {
  padding-block: 140px;
  background:
    linear-gradient(rgba(220, 231, 222, 0.92), rgba(220, 231, 222, 0.92)),
    repeating-linear-gradient(45deg, var(--teal) 0 1px, transparent 1px 18px);
}

.how-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  padding-bottom: 75px;
  border-bottom: 1px solid var(--line);
}

.how-heading h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(2.55rem, 4.4vw, 4.6rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.how-heading > p {
  align-self: end;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.steps {
  margin-top: 17px;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 38px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.step > div:last-child {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: 60px;
}

.step h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.step p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
}

.phygital-section {
  padding-block: 65px;
  background: var(--paper-deep);
}

.phygital-grid {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  gap: 26px;
  align-items: stretch;
}

.world {
  min-height: 480px;
  border: 1px solid var(--line);
  padding: 52px;
}

.world-digital {
  border-radius: 56px 8px 8px 8px;
  background:
    linear-gradient(rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.94)),
    repeating-linear-gradient(
      45deg,
      var(--teal) 0 1px,
      transparent 1px 13px
    );
}

.world-physical {
  border-radius: 8px 56px 8px 8px;
  background: var(--teal);
  color: var(--paper);
}

.world-label {
  margin-bottom: 55px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.world-physical .world-label {
  color: var(--turmeric);
}

.world h3 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.world > p:not(.world-label) {
  max-width: 500px;
  color: var(--ink-soft);
}

.world-physical > p:not(.world-label) {
  color: rgba(247, 240, 223, 0.8);
}

.experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}

.experience-list span,
.physical-scene span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
}

.trust-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.bridge-ring {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--turmeric);
  box-shadow: 0 0 0 10px var(--paper-deep);
}

.bridge-ring span {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.trust-bridge p {
  max-width: 110px;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.physical-scene {
  position: relative;
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 8px;
  margin-top: 27px;
}

.physical-scene::before {
  position: absolute;
  right: 5%;
  bottom: -8px;
  left: 4%;
  height: 55px;
  border: 1px dashed rgba(247, 240, 223, 0.3);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
}

.physical-scene span {
  position: relative;
  border-color: rgba(247, 240, 223, 0.3);
  background: rgba(247, 240, 223, 0.07);
}

.not-control {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  padding-block: 140px;
}

.not-control-copy h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 4.4vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.not-control-copy > p:last-child {
  max-width: 710px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.trust-promise {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px 70px 6px 6px;
  padding: 45px;
  background: rgba(255, 253, 247, 0.52);
}

.trust-promise::before {
  position: absolute;
  top: -14px;
  left: 40px;
  color: var(--mango);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  content: "“";
}

.promise-label {
  margin-bottom: 40px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trust-promise blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 630;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.trust-promise > p:last-child {
  margin: 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 650;
}

.foundation-section {
  position: relative;
  overflow: hidden;
  padding-block: 130px;
  background: #f4f0e3;
}

.foundation-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  opacity: 0.2;
  background-image:
    linear-gradient(30deg, var(--teal) 12%, transparent 12.5%, transparent 87%, var(--teal) 87.5%, var(--teal)),
    linear-gradient(150deg, var(--teal) 12%, transparent 12.5%, transparent 87%, var(--teal) 87.5%, var(--teal)),
    linear-gradient(30deg, var(--teal) 12%, transparent 12.5%, transparent 87%, var(--teal) 87.5%, var(--teal)),
    linear-gradient(150deg, var(--teal) 12%, transparent 12.5%, transparent 87%, var(--teal) 87.5%, var(--teal));
  background-position:
    0 0,
    0 0,
    22px 39px,
    22px 39px;
  background-size: 44px 78px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black);
}

.foundation-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4.2vw, 4.25rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.foundation-header {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.foundation-header > p:last-child {
  max-width: 700px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.foundation-copy > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.foundation-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.foundation-cards article {
  min-height: 390px;
  border: 1px solid rgba(23, 51, 47, 0.2);
  padding: 34px;
  background: rgba(247, 240, 223, 0.78);
}

.foundation-cards article:first-child {
  border-radius: 50px 5px 5px 5px;
}

.foundation-cards article:last-child {
  border-radius: 5px 50px 5px 5px;
  transform: translateY(30px);
}

.foundation-cards article > span {
  display: block;
  margin-bottom: 82px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.foundation-cards h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.foundation-cards article > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.origin-section {
  padding-block: 140px;
}

.origin-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.origin-layout h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.7rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.origin-layout > div > p:first-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.origin-note {
  margin: 33px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.coming-jaali {
  position: absolute;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(247, 240, 223, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(247, 240, 223, 0.026),
    0 0 0 140px rgba(247, 240, 223, 0.018),
    0 0 0 210px rgba(247, 240, 223, 0.012);
}

.coming-jaali::before,
.coming-jaali::after {
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(227, 179, 65, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(45deg);
}

.coming-jaali::after {
  inset: 28%;
  border-style: solid;
  border-color: rgba(70, 124, 115, 0.35);
}

.coming-content {
  position: relative;
  z-index: 2;
  width: min(90%, 900px);
}

.coming-content .eyebrow {
  color: var(--turmeric);
}

.coming-content h2 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5.6vw, 5.5rem);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.coming-content > p:not(.eyebrow) {
  color: rgba(247, 240, 223, 0.72);
  font-size: 1.12rem;
}

.coming-pill {
  display: inline-block;
  min-width: 190px;
  border: 1px solid rgba(247, 240, 223, 0.35);
  border-radius: 999px;
  margin-top: 28px;
  padding: 14px 25px;
  background: var(--turmeric);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 48px clamp(24px, 5vw, 76px) 60px;
  background: var(--ink);
  color: var(--paper);
}

.footer-brand span {
  bottom: -14px;
}

footer p {
  margin: 0;
  color: rgba(247, 240, 223, 0.58);
  font-size: 0.82rem;
}

footer p:last-child {
  justify-self: end;
}

.section-video {
  width: min(100%, 1120px);
  margin: 0 auto 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(23, 51, 47, 0.14);
}

.section-video-dark {
  border-color: rgba(247, 240, 223, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.section-video video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper);
}

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

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-right: 58px;
  }

  .mobile-menu {
    position: absolute;
    top: 32px;
    right: 24px;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    width: 38px;
    height: 38px;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    display: flex;
    width: min(82vw, 320px);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    background: rgba(247, 240, 223, 0.97);
    box-shadow: 0 18px 50px rgba(23, 51, 47, 0.16);
    flex-direction: column;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px;
    font-family: var(--font-display);
    font-weight: 600;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.8fr;
    padding-top: 160px;
  }

  h1 {
    font-size: clamp(3.15rem, 6.6vw, 4.8rem);
  }

  .hero-carousel {
    align-self: center;
  }

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

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

  .trust-bridge {
    min-height: 145px;
  }

  .world {
    min-height: 400px;
  }

  .not-control {
    grid-template-columns: 1fr;
  }

  .mother-comparison-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .section-video {
    margin-bottom: 52px;
    border-radius: 16px;
  }

  html {
    scroll-padding-top: 20px;
  }

  .site-header {
    padding: 26px 20px;
  }

  .brand {
    font-size: 1.65rem;
  }

  .brand span {
    bottom: -11px;
    width: 52px;
    height: 2px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    top: 20px;
    right: 15px;
  }

  .hero {
    display: flex;
    padding: 129px 20px 47px;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.64rem;
    letter-spacing: 0.21em;
  }

  h1 {
    font-size: clamp(2.8rem, 13.5vw, 4rem);
    letter-spacing: -0.063em;
  }

  h1 span::after {
    bottom: 2px;
    height: 6px;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .primary-button {
    width: 100%;
  }

  .hero-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 35px;
  }

  .hero-carousel {
    width: min(100%, 480px);
    margin: 56px auto 34px;
    align-self: center;
  }

  .hero-carousel::before {
    inset: -12px 4% 34px;
  }

  .carousel-slide figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .carousel-slide figcaption span {
    font-size: 0.82rem;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .carousel-previous {
    left: 11px;
  }

  .carousel-next {
    right: 11px;
  }

  .scroll-cue {
    display: none;
  }

  .section-shell {
    width: min(100% - 40px, 1380px);
  }

  .paradox,
  .how-section,
  .not-control,
  .origin-section {
    padding-block: 88px;
  }

  .section-intro,
  .how-heading,
  .origin-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro .eyebrow {
    margin-bottom: 3px;
  }

  .section-intro h2,
  .how-heading h2,
  .not-control-copy h2,
  .foundation-copy h2,
  .origin-layout h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .section-intro > p:last-child {
    font-size: 1rem;
  }

  .paradox-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .paradox-grid article,
  .paradox-grid article:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }

  .paradox-grid article:last-child {
    border-bottom: 0;
  }

  .paradox-grid span {
    margin-bottom: 25px;
  }

  .section-intro + .section-video,
  .how-heading + .section-video,
  .foundation-header + .section-video {
    margin-top: 46px;
  }

  .mother-comparison {
    border-radius: 32px 6px 32px 6px;
    padding: 31px 19px;
  }

  .comparison-table {
    margin-top: 35px;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr 38px 1fr;
  }

  .comparison-head h4,
  .comparison-row p {
    padding: 15px 12px;
  }

  .comparison-head h4 {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .comparison-row p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .comparison-note {
    margin-top: 30px;
  }

  .trust-section {
    padding-block: 88px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .pillar-card {
    min-height: 260px;
  }

  .how-heading {
    gap: 28px;
    padding-bottom: 45px;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .step > div:last-child {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .world {
    min-height: 390px;
    padding: 34px 25px;
  }

  .world-label {
    margin-bottom: 38px;
  }

  .trust-promise {
    padding: 38px 27px;
  }

  .trust-promise blockquote {
    font-size: 1.3rem;
  }

  .foundation-section {
    padding-block: 88px 116px;
  }

  .foundation-cards {
    grid-template-columns: 1fr;
  }

  .foundation-cards article {
    min-height: 320px;
  }

  .foundation-cards article:last-child {
    transform: none;
  }

  .foundation-cards article > span {
    margin-bottom: 55px;
  }

  .coming-soon {
    min-height: 580px;
  }

  .coming-content h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  footer p:last-child {
    justify-self: start;
  }
}

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

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