@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #13211b;
  --ink-soft: #4e5c56;
  --forest: #103b2d;
  --forest-deep: #08271d;
  --forest-light: #285747;
  --paper: #f4f3ee;
  --paper-warm: #e9e7df;
  --white: #fff;
  --acid: #dff56a;
  --acid-soft: #edf6bd;
  --norway: #df4b3f;
  --line: rgba(19, 33, 27, .15);
  --line-light: rgba(255, 255, 255, .18);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
  --header-height: 84px;
  --page-pad: clamp(20px, 3.5vw, 56px);
  --max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection { color: var(--forest-deep); background: var(--acid); }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: height .45s var(--ease-out), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(244, 243, 238, .88);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(8, 39, 29, .07);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 74px;
  height: 45px;
  object-fit: contain;
}

.brand-divider { width: 1px; height: 34px; background: var(--line); }

.brand-caption {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--white);
  background: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: color .35s ease, border-color .35s ease, transform .3s var(--ease-out), box-shadow .3s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--acid);
  transform: translateY(102%);
  transition: transform .45s var(--ease-out);
}

.button:hover { color: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(8, 39, 29, .16); }
.button:hover::before { transform: translateY(0); }
.button:active { transform: translateY(0) scale(.99); }

.button-arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  transition: transform .35s var(--ease-out);
}

.button:hover .button-arrow { transform: rotate(45deg); }

.button--header { justify-self: end; min-height: 44px; padding-inline: 20px; }
.button--header .button-arrow { width: 19px; height: 19px; }

.hero {
  position: relative;
  min-height: 100svh;
  max-width: 1920px;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(52px, 8vh, 94px)) var(--page-pad) clamp(82px, 10vh, 118px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 110px);
  overflow: hidden;
  background: var(--paper);
  --pointer-x: 72%;
  --pointer-y: 34%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(16, 59, 45, .13) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(16, 59, 45, .09) 1px);
  background-size: clamp(110px, 10vw, 170px) clamp(110px, 10vw, 170px);
  mask-image: linear-gradient(to right, black, transparent 58%);
}

.hero-glow {
  position: absolute;
  width: 680px;
  aspect-ratio: 1;
  left: calc(var(--pointer-x) - 340px);
  top: calc(var(--pointer-y) - 340px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 245, 106, .38), rgba(223, 245, 106, .08) 36%, transparent 70%);
  filter: blur(18px);
  opacity: .65;
  pointer-events: none;
  transition: left .3s ease-out, top .3s ease-out;
}

.hero-copy { position: relative; z-index: 3; max-width: 750px; }

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
  color: var(--forest);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--norway);
  box-shadow: 0 0 0 6px rgba(223, 75, 63, .1);
  animation: signal 2.4s ease-in-out infinite;
}

@keyframes signal { 50% { box-shadow: 0 0 0 11px rgba(223, 75, 63, 0); } }

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 112px);
  font-weight: 600;
  line-height: .93;
  letter-spacing: -.065em;
}

.hero h1 span { color: var(--forest); }

.hero-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-offer {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 40px;
}

.hero-price {
  min-width: 224px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}

.hero-price span { font-size: 24px; font-weight: 750; letter-spacing: -.04em; }
.hero-price small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; }
.button--primary { min-width: 226px; }

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 11px;
}

.hero-assurance span { display: flex; align-items: center; gap: 8px; }
.hero-assurance span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--forest); }

.hero-visual { position: relative; z-index: 2; min-width: 0; }

.visual-frame {
  position: relative;
  min-height: clamp(500px, 70vh, 760px);
  overflow: hidden;
  border-radius: 2px;
  background: #c9b98f;
  box-shadow: 0 40px 90px rgba(8, 39, 29, .22);
  clip-path: inset(0 0 0 0);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  pointer-events: none;
}

.visual-frame > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 1.4s var(--ease-out), filter .7s ease;
}

.visual-frame:hover > img { transform: scale(1.07); filter: saturate(.9) contrast(1.04); }

.visual-index {
  position: absolute;
  inset: 22px 22px auto;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .9);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
}

.visual-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 17px 20px;
  color: var(--white);
  background: rgba(8, 39, 29, .87);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.visual-badge span { font-size: 25px; font-weight: 750; letter-spacing: -.04em; }
.visual-badge small { margin-top: 1px; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.visual-badge--dose { right: 22px; bottom: 22px; }
.visual-badge--count { left: 22px; bottom: 22px; color: var(--forest-deep); background: rgba(223, 245, 106, .91); }

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: var(--page-pad);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-line { position: relative; width: 64px; height: 1px; overflow: hidden; background: var(--line); }
.scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--forest); animation: scan 2.2s var(--ease-smooth) infinite; }
@keyframes scan { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

.hero-enter { opacity: 0; transform: translateY(24px); animation: heroIn .9s var(--ease-out) forwards; }
.hero-enter--1 { animation-delay: .12s; }
.hero-enter--2 { animation-delay: .2s; }
.hero-enter--3 { animation-delay: .32s; }
.hero-enter--4 { animation-delay: .42s; }
.hero-enter--5 { animation-delay: .52s; }
.hero-enter--visual { transform: translateY(34px) scale(.985); animation-delay: .28s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.fact-rail {
  position: relative;
  z-index: 4;
  padding: 0 var(--page-pad);
  background: var(--forest-deep);
  color: var(--white);
}

.fact-rail-track {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 232px;
  padding: 34px clamp(20px, 2.5vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line-light);
}

.fact:last-child { border-right: 1px solid var(--line-light); }
.fact-label { color: rgba(255, 255, 255, .55); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.fact strong { margin-top: auto; font-size: clamp(34px, 3.2vw, 54px); font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.fact strong small { color: var(--acid); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .06em; }
.fact p { margin: 12px 0 0; color: rgba(255, 255, 255, .54); font-size: 11px; }

.section { padding: clamp(92px, 11vw, 170px) var(--page-pad); }

.section-heading,
.formula-layout,
.benefits-intro,
.benefit-grid,
.quality-panel,
.routine-track,
.faq-layout {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-kicker span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
}

.section-kicker--light { color: rgba(255, 255, 255, .68); }

.section-heading { max-width: 1040px; margin-bottom: clamp(58px, 7vw, 96px); text-align: center; }
.section-heading .section-kicker { justify-content: center; }

.section h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -.06em;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}

.formula { background: var(--paper); }

.formula-layout {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 138px);
}

.formula-visual { position: relative; padding: 0 clamp(0px, 3vw, 48px); }

.formula-visual::before {
  content: "";
  position: absolute;
  inset: 11% 0 6%;
  z-index: -1;
  background: var(--acid-soft);
  clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 91%);
}

.formula-image-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(8, 39, 29, .18);
}

.formula-image-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.35); }

.formula-image-wrap img {
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.04) translateY(var(--product-shift, 0px));
}

.formula-caption {
  display: block;
  margin: 13px auto 0;
  max-width: 500px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-align: right;
  text-transform: uppercase;
}

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

.formula-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease-out), background .35s ease;
}

.formula-item:hover { padding-left: 16px; background: rgba(255, 255, 255, .44); }
.formula-number { color: var(--forest); font-family: var(--mono); font-size: 10px; }
.formula-item h3 { margin: 0 0 7px; font-size: clamp(20px, 2vw, 27px); font-weight: 650; letter-spacing: -.035em; }
.formula-item p { max-width: 550px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; transition: transform .35s var(--ease-out); }
.text-link:hover span { transform: translateY(4px); }

.benefits { color: var(--white); background: var(--forest); }
.benefits-intro { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: clamp(52px, 7vw, 92px); }
.benefits-intro .section-kicker { margin-bottom: 25px; }
.benefits-intro h2 { max-width: 820px; }

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

.benefit-card {
  position: relative;
  min-height: clamp(430px, 40vw, 570px);
  padding: 30px;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
  transition: background .45s ease;
}

.benefit-card:last-child { border-right: 1px solid var(--line-light); }
.benefit-card:hover { background: rgba(255, 255, 255, .045); }
.benefit-topline { display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.benefit-card h3 { position: relative; z-index: 2; margin: clamp(160px, 17vw, 240px) 0 10px; font-size: clamp(25px, 2.5vw, 36px); font-weight: 580; letter-spacing: -.045em; }
.benefit-card p { position: relative; z-index: 2; max-width: 330px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }

.benefit-orbit {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 90px;
  right: 32px;
  border: 1px solid rgba(223,245,106,.35);
  border-radius: 50%;
  animation: rotate 14s linear infinite;
}

.benefit-orbit::before,
.benefit-orbit::after { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(223,245,106,.2); border-radius: 50%; }
.benefit-orbit::after { inset: 56px; background: var(--acid); border: 0; }
.benefit-orbit i { position: absolute; width: 12px; height: 12px; top: 11px; left: 27px; border-radius: 50%; background: var(--norway); }
@keyframes rotate { to { transform: rotate(360deg); } }

.benefit-gridmark {
  position: absolute;
  top: 94px;
  right: 38px;
  width: 168px;
  height: 168px;
  opacity: .55;
  background:
    linear-gradient(rgba(223,245,106,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223,245,106,.28) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: perspective(400px) rotateX(57deg) rotateZ(-10deg);
}

.benefit-gridmark::after { content: ""; position: absolute; inset: 48px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 40px rgba(223,245,106,.45); }

.benefit-wave { position: absolute; top: 132px; right: 32px; width: 190px; height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 9px; }
.benefit-wave i { width: 1px; height: 40%; background: var(--acid); animation: wave 1.8s ease-in-out infinite alternate; }
.benefit-wave i:nth-child(2) { height: 80%; animation-delay: -.2s; }
.benefit-wave i:nth-child(3) { height: 100%; animation-delay: -.4s; }
.benefit-wave i:nth-child(4) { height: 66%; animation-delay: -.6s; }
.benefit-wave i:nth-child(5) { height: 32%; animation-delay: -.8s; }
@keyframes wave { to { transform: scaleY(.35); opacity: .45; } }

.benefits-note { max-width: var(--max-width); margin: 24px auto 0; color: rgba(255,255,255,.38); font-size: 10px; line-height: 1.6; }

.quality { background: var(--paper-warm); }

.quality-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(58px, 9vw, 150px);
  align-items: start;
}

.quality-copy { position: sticky; top: 122px; }
.quality-copy h2 { font-size: clamp(42px, 4.5vw, 68px); }
.quality-copy > p:last-child { max-width: 520px; margin: 26px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

.quality-table { margin: 0; border-top: 1px solid var(--ink); }
.quality-table div { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.quality-table dt { color: var(--ink-soft); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.quality-table dd { margin: 0; font-size: 15px; font-weight: 650; line-height: 1.55; }

.routine { background: var(--white); }
.section-heading--split { max-width: var(--max-width); display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; text-align: left; }
.section-heading--split .section-kicker { justify-content: flex-start; }
.section-heading--split > p:last-child { max-width: 520px; margin: 0 0 6px; }

.routine-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); }
.routine-track::before { content: ""; position: absolute; left: 0; right: 0; top: 64px; height: 1px; background: var(--line); }

.routine-step { position: relative; min-height: 330px; padding: 0 clamp(24px, 3vw, 48px) 38px; border-left: 1px solid var(--line); }
.routine-step:last-child { border-right: 1px solid var(--line); }
.routine-time { display: block; height: 64px; padding-top: 4px; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.routine-step > strong { position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; margin-top: -22px; border: 1px solid var(--forest); border-radius: 50%; color: var(--forest); background: var(--white); font-family: var(--mono); font-size: 9px; font-weight: 500; }
.routine-step h3 { margin: 64px 0 12px; font-size: clamp(24px, 2.3vw, 32px); font-weight: 620; letter-spacing: -.04em; }
.routine-step p { max-width: 330px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.routine-step--accent { color: var(--white); background: var(--forest); border-color: var(--forest); }
.routine-step--accent .routine-time, .routine-step--accent p { color: rgba(255,255,255,.62); }
.routine-step--accent > strong { color: var(--forest-deep); background: var(--acid); border-color: var(--acid); }
.routine-disclaimer { max-width: var(--max-width); margin: 24px auto 0; color: var(--ink-soft); font-size: 10px; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(56px, 9vw, 150px); align-items: start; }
.faq-heading { position: sticky; top: 122px; }
.faq-heading h2 { font-size: clamp(44px, 5vw, 72px); }
.faq-heading > p:last-child { max-width: 420px; margin: 24px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 62px 28px 0; list-style: none; font-size: clamp(17px, 1.5vw, 21px); font-weight: 650; letter-spacing: -.025em; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 2px; top: 50%; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; transform: translateY(-50%); }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 8px; right: 8px; top: 14px; height: 1px; background: var(--forest); transition: transform .35s var(--ease-out); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 720px; margin: -6px 62px 28px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

.order {
  position: relative;
  min-height: 760px;
  padding: clamp(90px, 10vw, 150px) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 560px);
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
  color: var(--white);
  background: var(--forest-deep);
  overflow: hidden;
}

.order::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.order-ambient { position: absolute; width: 650px; aspect-ratio: 1; left: -140px; bottom: -340px; border-radius: 50%; border: 1px solid rgba(223,245,106,.18); box-shadow: inset 0 0 120px rgba(223,245,106,.06); }
.order-ambient::before, .order-ambient::after { content: ""; position: absolute; inset: 80px; border: 1px solid rgba(223,245,106,.16); border-radius: 50%; }
.order-ambient::after { inset: 185px; background: rgba(223,245,106,.08); }

.order-info, .order-card { position: relative; z-index: 2; }
.order-info { width: 100%; max-width: 760px; justify-self: end; }
.order-info h2 { margin: 0; font-size: clamp(48px, 6vw, 90px); font-weight: 560; line-height: 1; letter-spacing: -.06em; }
.order-subtitle { margin: 20px 0 0; color: rgba(255,255,255,.55); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.order-price-row { display: flex; align-items: baseline; gap: 20px; margin-top: 46px; }
.order-price-row strong { font-size: clamp(36px, 4vw, 58px); font-weight: 550; letter-spacing: -.045em; }
.order-price-row span { color: var(--acid); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.order-points { margin: 42px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.order-points li { padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.65); font-size: 10px; }

.order-card { width: 100%; padding: clamp(28px, 4vw, 52px); color: var(--ink); background: var(--paper); box-shadow: 0 40px 100px rgba(0,0,0,.25); }
.form-head { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; margin-bottom: 40px; }
.form-head span { font-size: 24px; font-weight: 700; letter-spacing: -.04em; }
.form-head small { color: var(--ink-soft); font-family: var(--mono); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }

.field { position: relative; margin-bottom: 24px; }
.field label { display: block; margin-bottom: 9px; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.field input { width: 100%; height: 58px; padding: 0 48px 0 0; border: 0; border-bottom: 1px solid rgba(19,33,27,.35); border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 19px; font-weight: 600; transition: border-color .25s ease; }
.field input::placeholder { color: #a7aca8; font-weight: 500; }
.field input:focus { border-color: var(--forest); }
.field-status { position: absolute; right: 0; bottom: 16px; width: 8px; height: 8px; border-radius: 50%; background: transparent; transition: background .2s; }
.field.is-valid .field-status { background: var(--forest); }
.field.is-error input { border-color: var(--norway); }
.field.is-error .field-status { background: var(--norway); }

.consent { position: relative; display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 11px; margin: 30px 0 25px; color: var(--ink-soft); font-size: 11px; line-height: 1.55; cursor: pointer; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent-box { width: 18px; height: 18px; margin-top: 1px; border: 1px solid rgba(19,33,27,.4); background: transparent; transition: background .2s, border-color .2s; }
.consent-box::after { content: ""; display: block; width: 8px; height: 4px; margin: 5px 0 0 4px; border-left: 1.5px solid white; border-bottom: 1.5px solid white; transform: rotate(-45deg) scale(0); transition: transform .2s var(--ease-out); }
.consent input:checked + .consent-box { background: var(--forest); border-color: var(--forest); }
.consent input:checked + .consent-box::after { transform: rotate(-45deg) scale(1); }
.consent input:focus-visible + .consent-box { outline: 2px solid var(--acid); outline-offset: 2px; }
.consent a { text-underline-offset: 3px; }

.button--submit { width: 100%; min-height: 62px; border: 0; }
.button--submit:disabled { opacity: .6; cursor: wait; transform: none; }
.form-message { min-height: 20px; margin: 13px 0 0; color: var(--norway); font-size: 11px; text-align: center; }
.form-legal { margin: 5px 0 0; color: #8c938f; font-size: 9px; line-height: 1.5; text-align: center; }

.form-success { display: none; min-height: 420px; flex-direction: column; justify-content: center; }
.form-success.is-visible { display: flex; }
.success-index { margin-bottom: 50px; color: var(--forest); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.form-success strong { font-size: clamp(36px, 4vw, 52px); font-weight: 600; line-height: 1.05; letter-spacing: -.055em; }
.form-success p { max-width: 390px; margin: 24px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.site-footer { padding: 52px var(--page-pad) 34px; display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 36px; color: var(--white); background: #061a13; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 72px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: .88; }
.footer-brand span { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 26px; color: rgba(255,255,255,.48); font-size: 10px; }
.footer-meta a { text-underline-offset: 3px; }
.footer-warning { grid-column: 1 / -1; margin: 22px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: clamp(8px, .8vw, 11px); font-weight: 600; letter-spacing: .06em; line-height: 1.7; }

.mobile-offer { display: none; }

.motion-ready [data-reveal] {
  opacity: .55;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

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

.benefit-grid [data-reveal]:nth-child(2),
.routine-track [data-reveal]:nth-child(2) { transition-delay: .08s; }
.benefit-grid [data-reveal]:nth-child(3),
.routine-track [data-reveal]:nth-child(3) { transition-delay: .16s; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 42px; }
  .hero h1 { font-size: clamp(48px, 7vw, 82px); }
  .hero-offer { flex-direction: column; align-items: stretch; max-width: 430px; }
  .button--primary { min-width: 0; }
  .benefit-card { padding: 24px; }
  .quality-panel { grid-template-columns: 1fr 1.25fr; gap: 54px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .site-header, .site-header.is-scrolled { height: 68px; }
  .brand-caption, .brand-divider { display: none; }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 50px);
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(52px, 11vw, 90px); }
  .hero-lead { max-width: 650px; }
  .hero-offer { max-width: 520px; flex-direction: row; }
  .hero-visual { max-width: 720px; }
  .visual-frame { min-height: 520px; }
  .hero-scroll { display: none; }
  .fact-rail-track { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-top: 1px solid var(--line-light); }
  .fact:nth-child(4) { border-top: 1px solid var(--line-light); border-right: 1px solid var(--line-light); }
  .formula-layout { grid-template-columns: 1fr; }
  .formula-visual { max-width: 580px; margin: 0 auto; }
  .benefits-intro { display: block; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 390px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .benefit-card:last-child { border-bottom: 0; }
  .benefit-card h3 { margin-top: 170px; }
  .quality-panel { grid-template-columns: 1fr; }
  .quality-copy, .faq-heading { position: static; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .section-heading--split > p:last-child { margin: 0; }
  .routine-track { grid-template-columns: 1fr; }
  .routine-track::before { display: none; }
  .routine-step { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .routine-step:first-child { border-top: 1px solid var(--line); }
  .routine-time { height: auto; padding: 0; }
  .routine-step > strong { position: absolute; right: 28px; top: 28px; margin: 0; }
  .routine-step h3 { margin-top: 76px; }
  .faq-layout { grid-template-columns: 1fr; gap: 54px; }
  .order { grid-template-columns: 1fr; }
  .order-info { justify-self: start; }
  .order-card { max-width: 640px; }
}

@media (max-width: 620px) {
  :root { --page-pad: 18px; }
  body { padding-bottom: 76px; }
  .site-header { padding-inline: 16px; }
  .brand img { width: 58px; height: 37px; }
  .button--header { min-height: 40px; padding: 0 15px; gap: 10px; font-size: 11px; }
  .button--header .button-arrow { display: none; }
  .hero { padding-top: 110px; padding-bottom: 74px; }
  .eyebrow { margin-bottom: 23px; font-size: 9px; }
  .hero h1 { font-size: clamp(46px, 15.4vw, 72px); line-height: .94; }
  .hero-lead { margin-top: 26px; font-size: 15px; line-height: 1.62; }
  .hero-offer { margin-top: 32px; flex-direction: column; }
  .hero-price { min-width: 0; }
  .hero-assurance { display: grid; gap: 8px; }
  .hero-visual { margin-inline: -18px; }
  .visual-frame { min-height: 430px; }
  .visual-badge { padding: 13px 14px; }
  .visual-badge span { font-size: 21px; }
  .visual-badge--dose { right: 14px; bottom: 14px; }
  .visual-badge--count { left: 14px; bottom: 14px; }
  .visual-index { inset: 14px 14px auto; }
  .fact-rail { padding-inline: 0; }
  .fact { min-height: 190px; padding: 24px 18px; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:last-child { border-right: 0; }
  .fact strong { font-size: 34px; }
  .section { padding-block: 88px; }
  .section-heading { margin-bottom: 52px; text-align: left; }
  .section-heading .section-kicker { justify-content: flex-start; }
  .section h2 { font-size: clamp(38px, 11.5vw, 56px); }
  .section-heading > p:last-child { margin: 22px 0 0; font-size: 14px; }
  .formula-layout { gap: 58px; }
  .formula-visual { padding-inline: 14px; }
  .formula-item { grid-template-columns: 34px 1fr; gap: 14px; }
  .formula-item:hover { padding-left: 0; background: transparent; }
  .benefits-intro h2 { font-size: clamp(40px, 12vw, 58px); }
  .benefit-card { min-height: 380px; }
  .quality-copy h2, .faq-heading h2 { font-size: clamp(40px, 12vw, 56px); }
  .quality-table div { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .quality-table dd { font-size: 14px; }
  .routine-step { min-height: 250px; }
  .faq-list summary { font-size: 16px; }
  .faq-list details p { margin-right: 0; font-size: 13px; }
  .order { padding: 88px 18px; gap: 52px; }
  .order-info h2 { font-size: clamp(46px, 14vw, 68px); }
  .order-price-row { margin-top: 36px; }
  .order-points { display: grid; }
  .order-card { padding: 28px 20px; }
  .form-head { display: block; margin-bottom: 32px; }
  .form-head small { display: block; margin-top: 8px; }
  .site-footer { grid-template-columns: 1fr; padding: 42px 18px 30px; }
  .footer-meta { justify-content: flex-start; }
  .mobile-offer {
    position: fixed;
    z-index: 95;
    left: 0;
    right: 0;
    bottom: 0;
    height: 76px;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(244,243,238,.94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 34px rgba(8,39,29,.1);
    backdrop-filter: blur(16px);
    transform: translateY(110%);
    transition: transform .4s var(--ease-out);
  }
  .mobile-offer.is-visible { transform: none; }
  .mobile-offer > div { display: flex; flex-direction: column; }
  .mobile-offer strong { font-size: 18px; letter-spacing: -.03em; }
  .mobile-offer span { color: var(--ink-soft); font-size: 9px; }
  .button--mobile { min-height: 48px; padding-inline: 22px; font-size: 12px; }
}

@media (hover: none) {
  .button:hover { color: var(--white); transform: none; box-shadow: none; }
  .button:hover::before { transform: translateY(102%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-enter, .motion-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
  .formula-image-wrap img { transform: scale(1.04) !important; }
}

@media print {
  .site-header, .scroll-progress, .mobile-offer, .hero-scroll { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; padding-top: 40px; }
}
