@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Manrope:wght@400;500;600&family=Newsreader:ital,opsz,wght@1,6..72,400;1,6..72,500&display=swap");

:root {
  --ink: #173129;
  --green: #17392f;
  --green-deep: #0d2821;
  --sage: #b8c9bb;
  --sage-soft: #dce6dc;
  --cream: #f6f2e9;
  --paper: #fcfaf5;
  --gold: #e5ad39;
  --gold-pale: #f0d48d;
  --sun: #ffd464;
  --clay: #bd6947;
  --line: rgba(23, 49, 41, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(22, 52, 43, 0.12);
  --radius: 3px;
  --page: min(1320px, calc(100vw - 96px));
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

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

em {
  font-family: var(--serif);
  font-weight: 400;
}

::selection {
  color: var(--green-deep);
  background: var(--sun);
}

:focus-visible {
  outline: 2px solid var(--gold);
  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: 200;
  top: 14px;
  left: 14px;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: white;
  background: var(--green);
  transition: transform 180ms ease;
}

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

.announcement {
  min-height: 38px;
  padding: 8px max(24px, calc((100vw - 1320px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #fffdf7;
  background: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement span {
  padding: 0 8px;
  color: var(--gold);
}

.announcement a {
  transition: color 160ms ease;
}

.announcement a:hover {
  color: var(--gold-pale);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 84px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid transparent;
  background: rgba(246, 242, 233, 0.92);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(24, 57, 47, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.brand-mark::before {
  transform: translate(-50%, -50%);
}

.brand-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brand-mark span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-mark span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 44px);
  font-size: 0.79rem;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.button {
  min-height: 53px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 200ms ease, background 200ms ease, border 200ms ease, transform 200ms ease;
}

.button:hover {
  color: var(--green);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.7rem;
}

.button-outline {
  color: var(--green);
  background: transparent;
}

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

.button-light {
  border-color: var(--paper);
  color: var(--green);
  background: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  background: transparent;
}

.text-link {
  position: relative;
  width: fit-content;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--clay);
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(850px, calc(100vh - 96px));
  padding: 82px max(48px, calc((100vw - 1320px) / 2)) 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 45%, rgba(255, 219, 124, 0.74), transparent 32%),
    linear-gradient(108deg, var(--cream) 0%, var(--cream) 56%, #ebd9aa 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-bottom: 30px;
}

.eyebrow {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

.hero h1 {
  margin-bottom: 30px;
  color: var(--green-deep);
  font-size: clamp(4.6rem, 8.7vw, 9.5rem);
  line-height: 0.81;
}

.hero h1 em {
  margin-left: 0.34em;
  color: var(--clay);
  font-size: 1.08em;
  letter-spacing: -0.07em;
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 35px;
  color: rgba(23, 49, 41, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

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

.hero-visual {
  position: relative;
  z-index: 2;
  height: min(690px, 74vh);
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(550px, 100%);
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 36px 25px rgba(81, 56, 24, 0.2));
}

.hero-halo {
  position: absolute;
  z-index: 1;
  width: min(600px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(128, 77, 31, 0.17);
  border-radius: 50%;
  background: rgba(255, 223, 141, 0.44);
  box-shadow: 0 0 0 60px rgba(255, 242, 204, 0.18), 0 0 0 120px rgba(255, 242, 204, 0.08);
}

.hero-note {
  position: absolute;
  z-index: 4;
  width: 132px;
  height: 132px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(23, 49, 41, 0.3);
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(246, 242, 233, 0.8);
  backdrop-filter: blur(8px);
}

.hero-note span {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.06em;
}

.hero-note small {
  font-size: 0.62rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-note-top {
  top: 9%;
  right: -3%;
}

.hero-note-bottom {
  right: 9%;
  bottom: 7%;
}

.sun-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 49, 41, 0.1);
  border-radius: 50%;
}

.sun-orbit-one {
  top: -39vw;
  right: -32vw;
  width: 83vw;
  height: 83vw;
}

.sun-orbit-two {
  top: -29vw;
  right: -22vw;
  width: 63vw;
  height: 63vw;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 29px;
  left: max(48px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(23, 49, 41, 0.6);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue span::after {
  display: block;
  width: 1px;
  height: 9px;
  margin: 8px auto;
  content: "";
  background: currentColor;
  animation: scrollPulse 1.7s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(-2px); opacity: 0.4; }
  50% { transform: translateY(3px); opacity: 1; }
}

.proof-strip {
  padding: 34px max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  background: var(--green);
}

.proof-strip > div {
  min-height: 68px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-left: 1px solid var(--white-line);
}

.proof-strip > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.proof-strip span {
  font-size: 0.69rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 145px 0;
}

.section-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 450px;
  padding-bottom: 10px;
  color: rgba(23, 49, 41, 0.67);
  font-size: 1rem;
}

.filter-row {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  position: relative;
  padding: 12px 18px 15px;
  color: rgba(23, 49, 41, 0.52);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
}

.filter-button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.filter-button.is-active {
  color: var(--green);
}

.filter-button.is-active::after {
  transform: scaleX(1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.product-card {
  min-width: 0;
  border-top: 1px solid var(--line);
  transition: opacity 250ms ease, transform 250ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card-featured {
  grid-column: span 2;
}

.product-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #fff 0%, #f2f0ea 57%, #e7e5de 100%);
}

.product-card-featured .product-image {
  height: 660px;
  background: linear-gradient(110deg, #dbe5db, #f3ede0);
}

.product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(23, 49, 41, 0.09), transparent 35%);
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-card-featured .product-image img {
  width: 68%;
  margin-left: auto;
  object-position: center;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--clay);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-action {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 1rem;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.image-action:hover {
  color: var(--green);
  background: var(--sun);
  transform: rotate(45deg);
}

.product-info {
  padding: 26px 2px 35px;
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  align-items: end;
  gap: 28px;
}

.product-info p {
  margin-bottom: 0;
  color: rgba(23, 49, 41, 0.64);
  font-size: 0.86rem;
}

.product-info .product-series {
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 2.4rem;
}

.product-trigger {
  white-space: nowrap;
}

.technology {
  width: 100%;
  padding-right: max(48px, calc((100vw - 1320px) / 2));
  padding-left: max(48px, calc((100vw - 1320px) / 2));
  color: #fffdf7;
  background: var(--green-deep);
}

.technology-intro {
  max-width: 850px;
  margin-bottom: 60px;
}

.technology-intro h2 {
  margin-bottom: 28px;
}

.technology-intro h2 em {
  color: var(--gold-pale);
}

.technology-intro > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

.spectrum-visual {
  position: relative;
  height: 540px;
  margin: 40px 0 95px;
  overflow: hidden;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.spectrum-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1040px;
  height: 1040px;
  border: 1px solid rgba(251, 215, 124, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 80px rgba(251, 215, 124, 0.035),
    0 0 0 160px rgba(251, 215, 124, 0.02),
    inset 0 0 120px rgba(255, 182, 74, 0.08);
}

.spectrum-glow::before,
.spectrum-glow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(251, 215, 124, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.spectrum-glow::before {
  width: 700px;
  height: 700px;
}

.spectrum-glow::after {
  width: 390px;
  height: 390px;
}

.spectrum-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: radial-gradient(circle at 35% 30%, #ffe69d, var(--gold));
  box-shadow: 0 0 90px rgba(229, 173, 57, 0.4);
  transform: translate(-50%, -50%);
}

.spectrum-core strong {
  position: relative;
  z-index: 3;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-align: center;
}

.sun-core {
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(23, 57, 47, 0.3);
  border-radius: 50%;
}

.spectrum-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.spectrum-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-pale);
  box-shadow: 0 0 10px var(--gold);
}

.spectrum-label-one { top: 19%; left: 15%; }
.spectrum-label-two { top: 30%; right: 11%; }
.spectrum-label-three { right: 20%; bottom: 18%; }
.spectrum-label-four { bottom: 23%; left: 11%; }

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

.tech-card {
  position: relative;
  min-height: 440px;
  padding: 40px 44px;
  border-left: 1px solid var(--white-line);
}

.tech-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.tech-number {
  position: absolute;
  top: 27px;
  right: 30px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.65rem;
}

.tech-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 95px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 212, 141, 0.5);
  border-radius: 50%;
}

.tech-icon svg {
  width: 25px;
  fill: none;
  stroke: var(--gold-pale);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.tech-card h3 {
  margin-bottom: 20px;
  font-size: 2.05rem;
}

.tech-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.83fr) minmax(0, 1.17fr);
  gap: 8vw;
}

.benefit-portrait {
  position: sticky;
  top: 105px;
  height: 650px;
  overflow: hidden;
  background: var(--sage-soft);
}

.benefit-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0.8) contrast(0.95);
}

.benefit-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(13, 40, 33, 0.6), transparent 50%);
}

.portrait-light {
  position: absolute;
  z-index: 2;
  top: -90px;
  right: -70px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 224, 143, 0.72);
  filter: blur(18px);
  mix-blend-mode: screen;
}

.benefit-portrait blockquote {
  position: absolute;
  z-index: 4;
  right: 35px;
  bottom: 30px;
  left: 35px;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.benefit-item {
  min-height: 155px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.benefit-item > span {
  padding-top: 7px;
  color: var(--clay);
  font-size: 0.68rem;
}

.benefit-item h3 {
  margin-bottom: 11px;
  font-size: 1.7rem;
}

.benefit-item p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(23, 49, 41, 0.65);
  font-size: 0.9rem;
}

.medical-note {
  max-width: 660px;
  margin: 52px 0 0 auto;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: rgba(23, 49, 41, 0.52);
  font-size: 0.72rem;
}

.mother-nature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: white;
  background: var(--green);
}

.mother-image {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: #e8e4d9;
}

.mother-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.mother-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to right, transparent 60%, rgba(23, 57, 47, 0.2));
}

.ground-lines {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: 110px;
}

.ground-lines span {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 1px;
  border-radius: 50%;
  background: rgba(23, 57, 47, 0.5);
  transform: translateX(-50%);
}

.ground-lines span:nth-child(1) { width: 15%; }
.ground-lines span:nth-child(2) { width: 42%; bottom: 22px; opacity: 0.7; }
.ground-lines span:nth-child(3) { width: 75%; bottom: 44px; opacity: 0.4; }

.mother-copy {
  padding: 130px clamp(60px, 7vw, 130px);
  align-self: center;
}

.mother-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 5vw, 6rem);
}

.mother-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  margin: 45px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--white-line);
}

.check-list li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--white-line);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.check-list span {
  color: var(--gold-pale);
}

.why {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 10vw;
}

.why-sticky {
  position: sticky;
  top: 120px;
}

.why-sticky h2 {
  margin-bottom: 28px;
}

.why-sticky > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 34px;
  color: rgba(23, 49, 41, 0.66);
}

.reason-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reason;
  border-top: 1px solid var(--line);
}

.reason-list li {
  min-height: 142px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.reason-list > li > span {
  padding-top: 6px;
  color: var(--clay);
  font-size: 0.66rem;
}

.reason-list h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.reason-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(23, 49, 41, 0.59);
  font-size: 0.86rem;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 10vw;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.faq-heading > p:last-child {
  max-width: 410px;
  color: rgba(23, 49, 41, 0.62);
}

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

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

.accordion summary {
  min-height: 92px;
  padding: 25px 58px 25px 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 20px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 670px;
  margin: -5px 60px 27px 0;
  color: rgba(23, 49, 41, 0.64);
  font-size: 0.9rem;
}

.support {
  min-height: 650px;
  padding: 120px max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 8vw;
  color: var(--green-deep);
  background: var(--sage-soft);
}

.support-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
}

.support-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(23, 49, 41, 0.66);
}

.support-links {
  max-width: 600px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(23, 49, 41, 0.2);
}

.support-links a {
  padding: 23px 20px 23px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(23, 49, 41, 0.2);
  font-size: 0.91rem;
  transition: color 180ms ease;
}

.support-links a + a {
  padding-left: 28px;
  border-left: 1px solid rgba(23, 49, 41, 0.2);
}

.support-links a:hover {
  color: var(--clay);
}

.support-links span {
  margin-bottom: 6px;
  color: rgba(23, 49, 41, 0.5);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-card {
  position: relative;
  min-height: 430px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  background: var(--green);
}

.support-sun {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(240, 212, 141, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(240, 212, 141, 0.06), 0 0 0 110px rgba(240, 212, 141, 0.03);
}

.support-sun::after {
  position: absolute;
  inset: 65px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at 35% 30%, #ffe49b, var(--gold));
}

.support-card p {
  margin-bottom: 10px;
  color: var(--gold-pale);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-card h3 {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.support-card .button {
  align-self: flex-start;
}

.contact {
  display: grid;
  grid-template-columns: minmax(350px, 0.84fr) minmax(500px, 1.16fr);
  gap: 9vw;
}

.contact-copy h2 {
  margin-bottom: 28px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(23, 49, 41, 0.66);
}

.contact-copy address {
  margin-top: 55px;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-style: normal;
}

.contact-copy address strong {
  margin-bottom: 12px;
}

.contact-copy address span {
  margin-bottom: 14px;
  color: rgba(23, 49, 41, 0.62);
}

.contact-copy address a {
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.contact-copy address a:hover {
  border-color: currentColor;
}

.quote-form {
  padding: 52px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 40px;
  padding-bottom: 23px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.form-heading small {
  color: rgba(23, 49, 41, 0.48);
  font-size: 0.62rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quote-form label {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(23, 49, 41, 0.68);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 47px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 49, 41, 0.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 400;
  transition: border-color 180ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--clay);
}

.quote-form .is-invalid {
  border-color: #a74331;
}

.button-submit {
  width: 100%;
  margin-top: 5px;
  justify-content: space-between;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 -10px;
  color: #a74331;
  font-size: 0.72rem;
}

.site-footer {
  padding: 85px max(48px, calc((100vw - 1320px) / 2)) 25px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.65fr);
  gap: 60px;
  color: white;
  background: var(--green-deep);
}

.brand-footer {
  margin-bottom: 23px;
}

.brand-footer .brand-mark,
.brand-footer .brand-mark::before,
.brand-footer .brand-mark::after,
.brand-footer .brand-mark span::before,
.brand-footer .brand-mark span::after {
  background: var(--gold-pale);
}

.footer-brand p,
.footer-column p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.79rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: var(--gold-pale);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--gold-pale);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.62rem;
}

.footer-bottom p {
  margin: 0;
}

.product-modal {
  width: min(1160px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  grid-template-columns: 0.82fr 1.18fr;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 120px rgba(5, 18, 14, 0.4);
}

.product-modal[open] {
  display: grid;
  animation: modalIn 260ms ease both;
}

.product-modal::backdrop {
  background: rgba(8, 30, 23, 0.78);
  backdrop-filter: blur(6px);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: fixed;
  z-index: 5;
  top: 20px;
  right: 20px;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(252, 250, 245, 0.9);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  color: white;
  background: var(--green);
  transform: rotate(90deg);
}

.modal-image-wrap {
  position: sticky;
  top: 0;
  height: min(760px, calc(100vh - 48px));
  background: linear-gradient(140deg, #e9ece4, #eee7d9);
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.modal-copy {
  padding: 70px 65px;
  overflow-y: auto;
}

.modal-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.modal-description {
  max-width: 600px;
  margin-bottom: 38px;
  color: rgba(23, 49, 41, 0.65);
}

.modal-columns {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.modal-columns > div {
  padding-top: 24px;
}

.modal-columns h3 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-columns li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 16px;
  color: rgba(23, 49, 41, 0.68);
  font-size: 0.77rem;
}

.modal-columns li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.modal-columns dl {
  margin: 0;
}

.modal-columns dt {
  margin-top: 15px;
  color: rgba(23, 49, 41, 0.45);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-columns dd {
  margin: 2px 0 0;
  font-size: 0.78rem;
}

.toast {
  position: fixed;
  z-index: 210;
  right: 24px;
  bottom: 24px;
  width: min(400px, calc(100vw - 48px));
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  background: var(--green);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--green);
  background: var(--gold-pale);
}

.toast p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.toast strong {
  font-size: 0.82rem;
}

.toast small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root { --page: min(100% - 64px, 1320px); }

  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { gap: 20px; }
  .header-cta { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr); gap: 30px; }
  .hero-note { width: 112px; height: 112px; }
  .proof-strip > div { padding: 0 20px; }
  .product-image { height: 430px; }
  .product-card-featured .product-image { height: 560px; }
  .product-info { grid-template-columns: 0.55fr 1fr; }
  .product-info .product-trigger { grid-column: 2; }
  .tech-card { padding: 34px 28px; }
  .tech-card:first-child { padding-left: 0; }
  .mother-copy { padding: 100px 60px; }
  .support { gap: 5vw; }
  .contact { grid-template-columns: 0.8fr 1.2fr; gap: 5vw; }
  .quote-form { padding: 40px; }
  .site-footer { gap: 35px; }
}

@media (max-width: 860px) {
  :root { --page: calc(100% - 42px); }

  .announcement { justify-content: center; text-align: center; }
  .announcement a { display: none; }
  .site-header { min-height: 72px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    background: var(--green);
  }
  .menu-toggle span:not(.sr-only) { width: 17px; height: 1px; background: white; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 72px);
    padding: 60px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    color: white;
    background: var(--green-deep);
  }
  .mobile-menu:not([hidden]) { display: flex; }
  .mobile-menu a { font-family: var(--display); font-size: 2.2rem; letter-spacing: -0.05em; }
  .mobile-menu a:last-child { margin-top: 20px; color: var(--gold-pale); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

  .hero { min-height: auto; padding: 85px 21px 60px; grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(4.5rem, 16vw, 7rem); }
  .hero-visual { height: 560px; min-height: 0; }
  .hero-halo { width: 560px; }
  .scroll-cue { display: none; }
  .hero-note-top { right: 3%; }

  .proof-strip { padding: 30px 21px; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .proof-strip > div { padding: 20px 18px; border-bottom: 1px solid var(--white-line); }
  .proof-strip > div:nth-child(odd) { border-left: 0; }
  .proof-strip > div:nth-child(-n+2) { padding-top: 0; }
  .proof-strip > div:nth-child(n+3) { padding-bottom: 0; border-bottom: 0; }
  .proof-strip > div:first-child { padding-left: 18px; }

  .section { padding: 100px 0; }
  .section-heading { margin-bottom: 55px; grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { max-width: 590px; }
  .product-grid { grid-template-columns: 1fr; gap: 25px; }
  .product-card-featured { grid-column: auto; }
  .product-image,
  .product-card-featured .product-image { height: 520px; }
  .product-card-featured .product-image img { width: 100%; }

  .technology { padding-right: 21px; padding-left: 21px; }
  .spectrum-visual { height: 470px; }
  .spectrum-glow { width: 780px; height: 780px; }
  .spectrum-glow::before { width: 560px; height: 560px; }
  .spectrum-core { width: 220px; height: 220px; }
  .technology-cards { grid-template-columns: 1fr; }
  .tech-card,
  .tech-card:first-child { min-height: 300px; padding: 35px 0; border-left: 0; border-bottom: 1px solid var(--white-line); }
  .tech-icon { margin-bottom: 50px; }

  .benefit-layout { grid-template-columns: 1fr; gap: 50px; }
  .benefit-portrait { position: relative; top: auto; height: 570px; }
  .medical-note { margin-left: 0; }

  .mother-nature { grid-template-columns: 1fr; }
  .mother-image { min-height: 650px; }
  .mother-copy { padding: 90px 21px; }
  .mother-copy > p:not(.eyebrow) { max-width: 650px; }

  .why { grid-template-columns: 1fr; gap: 70px; }
  .why-sticky { position: relative; top: auto; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .support { padding: 100px 21px; grid-template-columns: 1fr; gap: 60px; }
  .support-card { min-height: 400px; }
  .contact { grid-template-columns: 1fr; gap: 65px; }
  .contact-copy address { max-width: 500px; }

  .site-footer { padding: 75px 21px 25px; grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .product-modal { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-image-wrap { position: relative; height: 480px; }
}

@media (max-width: 580px) {
  .announcement { min-height: 34px; padding: 7px 14px; font-size: 0.57rem; }
  .site-header { padding: 0 16px; }
  .brand-name { font-size: 1.25rem; }
  .brand-mark { width: 29px; height: 29px; flex-basis: 29px; }
  .brand-mark::before,
  .brand-mark::after,
  .brand-mark span::before,
  .brand-mark span::after { width: 38px; }

  .hero { padding-top: 70px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(4.1rem, 22vw, 6rem); }
  .hero-intro { font-size: 0.93rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-visual { height: 440px; }
  .hero-halo { width: 420px; }
  .hero-note { width: 95px; height: 95px; padding: 15px; }
  .hero-note span { font-size: 1.18rem; }
  .hero-note small { font-size: 0.5rem; }
  .hero-note-top { top: 2%; right: 0; }
  .hero-note-bottom { right: 2%; bottom: 2%; }

  .proof-strip strong { font-size: 2.1rem; }
  .proof-strip span { font-size: 0.54rem; }
  .proof-strip > div { padding: 16px 9px; gap: 10px; }
  .proof-strip > div:first-child { padding-left: 9px; }

  h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 42px; }
  .filter-row { margin-right: -21px; overflow-x: auto; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; padding-right: 13px; padding-left: 13px; }
  .product-image,
  .product-card-featured .product-image { height: 390px; }
  .product-info { grid-template-columns: 1fr; gap: 12px; }
  .product-info .product-trigger { grid-column: auto; margin-top: 8px; }

  .technology { padding-top: 85px; padding-bottom: 85px; }
  .technology-intro h2 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .spectrum-visual { height: 420px; margin-bottom: 60px; }
  .spectrum-core { width: 170px; height: 170px; }
  .sun-core { inset: 24px; }
  .spectrum-glow { width: 620px; height: 620px; }
  .spectrum-glow::before { width: 420px; height: 420px; }
  .spectrum-glow::after { width: 270px; height: 270px; }
  .spectrum-label { font-size: 0.5rem; }
  .spectrum-label-one { top: 17%; left: 3%; }
  .spectrum-label-two { top: 27%; right: 2%; }
  .spectrum-label-three { right: 4%; bottom: 16%; }
  .spectrum-label-four { bottom: 18%; left: 2%; }
  .tech-card h3 { font-size: 1.8rem; }

  .benefit-portrait { height: 470px; }
  .benefit-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .benefit-item h3 { font-size: 1.45rem; }
  .benefit-item p { font-size: 0.82rem; }
  .mother-image { min-height: 520px; }
  .mother-copy { padding-top: 75px; padding-bottom: 75px; }
  .reason-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .accordion summary { min-height: 82px; font-size: 0.95rem; }
  .support-links { grid-template-columns: 1fr; }
  .support-links a + a { padding-left: 0; border-left: 0; }
  .support-card { min-height: 370px; padding: 30px; }
  .support-card h3 { font-size: 2.2rem; }
  .quote-form { padding: 28px 21px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .site-footer { grid-template-columns: repeat(2, 1fr); gap: 45px 25px; }
  .footer-column:last-of-type { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }

  .product-modal { width: 100vw; max-height: 100vh; }
  .modal-image-wrap { height: 380px; }
  .modal-copy { padding: 45px 21px; }
  .modal-columns { grid-template-columns: 1fr; gap: 24px; }
  .modal-close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
