:root {
  --ink: #080908;
  --ink-soft: #101210;
  --paper: #f1efe8;
  --paper-dark: #ddd9ce;
  --muted: #9b9c97;
  --line: rgba(8, 9, 8, 0.14);
  --red: #ee3f32;
  --yellow: #f3bd34;
  --green: #2eb76d;
  --acid: #d8f557;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.8vw;
  color: white;
  background: linear-gradient(to bottom, rgba(3,4,3,.92), rgba(3,4,3,.25), transparent);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.06em;
}
.letter-n { color: var(--red); }
.letter-t { color: var(--yellow); }
.letter-l { color: var(--green); }
.word-pros {
  margin-left: 2px;
  color: #f6f8fa;
  letter-spacing: -0.04em;
}

.desktop-nav { display: flex; gap: 34px; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.desktop-nav a { opacity: .7; transition: opacity .2s; }
.desktop-nav a:hover { opacity: 1; }
.header-access {
  justify-self: end;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7,8,7,.72);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 960px;
  height: 100vh;
  overflow: hidden;
  background: #050605;
  color: white;
}
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,4,3,.98) 0%, rgba(3,4,3,.85) 26%, rgba(3,4,3,.23) 55%, rgba(3,4,3,.08) 100%),
    linear-gradient(0deg, rgba(3,4,3,.88) 0%, transparent 34%, rgba(3,4,3,.15) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  width: min(660px, 49vw);
  padding: clamp(180px, 20vh, 240px) 0 80px 7.2vw;
}
.hero-kicker {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.68);
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(46,183,109,.12); }
.hero h1 {
  margin: 0;
  font-size: clamp(68px, 7.8vw, 132px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
}
.hero h1 em {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.82);
  font-style: normal;
}
.hero-content > p {
  max-width: 570px; margin: 34px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.25vw, 20px); line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button {
  min-height: 54px;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 34px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 12px; font-weight: 900; letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--acid); box-shadow: 0 14px 42px rgba(216,245,87,.14); }
.button-ghost { color: white; background: rgba(6,7,6,.45); border-color: rgba(255,255,255,.2); backdrop-filter: blur(16px); }
.hero-caption { display: flex; gap: 24px; margin-top: 35px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-caption span { display: flex; align-items: center; gap: 8px; }
.hero-caption span::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--yellow); }
.scroll-cue { position: absolute; z-index: 3; right: 4vw; bottom: 42px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.5); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; transform: rotate(90deg); transform-origin: right; }
.scroll-cue i { display: block; width: 60px; height: 1px; background: rgba(255,255,255,.35); }
.future-vision-label {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 48px;
  width: 250px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(6,7,6,.62);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
}
.future-vision-label span { color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.future-vision-label strong { margin-top: 7px; font-size: 13px; text-transform: uppercase; }
.future-vision-label small { margin-top: 5px; color: rgba(255,255,255,.48); font-size: 9px; }

.standards-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: #e9e6dd; }
.standard-item { min-height: 120px; padding: 30px 2.6vw; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.standard-item:last-child { border-right: 0; }
.standard-item strong { font-size: 14px; text-transform: uppercase; letter-spacing: -.01em; }
.standard-item span { margin-top: 8px; color: #6c6d69; font-size: 12px; }

.section-shell { padding: 120px 7.2vw; }
.section-index { margin-bottom: 38px; color: #6c6d69; font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.section-index.light { color: rgba(255,255,255,.5); }
.manifesto-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 9vw; align-items: end; }
.manifesto h2, .section-heading h2, .dashboard-copy h2, .story-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 104px);
  line-height: .95;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 950;
}
.manifesto h2 span { color: transparent; -webkit-text-stroke: 1.4px rgba(8,9,8,.46); }
.manifesto-copy p, .section-heading > p, .dashboard-copy > p, .story-copy > p { margin: 0; color: #62635f; font-size: 15px; line-height: 1.8; }
.manifesto-copy a { display: inline-flex; gap: 50px; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.odor-promise { margin-top: 100px; display: grid; grid-template-columns: .52fr 1.18fr .72fr; background: var(--ink); color: white; overflow: hidden; }
.odor-seal { min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at 50% 55%, rgba(216,245,87,.16), transparent 58%), #0c0e0c; }
.odor-seal span { color: var(--acid); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; }
.odor-seal strong { margin-top: 10px; color: white; font-size: clamp(72px, 8vw, 128px); line-height: .78; letter-spacing: -.09em; }
.odor-seal small { margin-top: 22px; color: rgba(255,255,255,.42); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; }
.odor-copy { padding: 62px 5vw; }
.odor-copy > span { color: var(--acid); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.odor-copy h3 { max-width: 650px; margin: 16px 0 20px; font-size: clamp(28px, 3vw, 48px); line-height: 1; letter-spacing: -.045em; text-transform: uppercase; }
.odor-copy p { max-width: 620px; margin: 0; color: rgba(255,255,255,.58); line-height: 1.75; font-size: 13px; }
.odor-points { padding: 45px 3vw; display: flex; flex-direction: column; justify-content: center; gap: 22px; border-left: 1px solid rgba(255,255,255,.12); }
.odor-points span { color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.odor-points b { margin-right: 10px; color: var(--acid); font-size: 9px; }

.services { padding-top: 40px; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 9vw; align-items: end; padding-bottom: 70px; }
.section-heading > p { max-width: 410px; }
.service-list { border-top: 1px solid var(--line); }
.service-card { display: grid; grid-template-columns: .15fr 1.35fr .6fr; gap: 3vw; padding: 48px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease; }
.service-card:hover { padding-left: 18px; }
.service-number { color: #777873; font-size: 11px; font-weight: 900; }
.service-main > span { color: #777873; font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.service-main h3 { margin: 10px 0 18px; font-size: clamp(27px, 3.2vw, 51px); letter-spacing: -.05em; text-transform: uppercase; }
.service-main p { max-width: 720px; margin: 0; color: #666762; font-size: 13px; line-height: 1.7; }
.service-tags { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
.service-tags span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #555651; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.membership { position: relative; min-height: 820px; display: grid; grid-template-columns: .68fr 1.32fr; gap: 6vw; align-items: center; padding: 120px 6.5vw; overflow: hidden; background: #090a09; color: white; }
.membership::before { content: ""; position: absolute; width: 32vw; height: 32vw; left: 15vw; top: 20%; border-radius: 50%; background: radial-gradient(circle, rgba(216,245,87,.2), transparent 68%); filter: blur(25px); }
.membership-orbit { position: absolute; border: 1px solid rgba(216,245,87,.17); border-radius: 50%; }
.orbit-one { width: 48vw; height: 48vw; left: -8vw; top: 5%; }
.orbit-two { width: 36vw; height: 36vw; left: -2vw; top: 15%; }
.membership-copy, .plans-grid { position: relative; z-index: 2; }
.membership-copy h2 { max-width: 820px; margin: 0; font-size: clamp(50px, 5.8vw, 98px); line-height: .92; letter-spacing: -.07em; text-transform: uppercase; }
.membership-copy > p { max-width: 660px; margin: 30px 0 0; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.8; }
.membership-flow { display: flex; align-items: center; gap: 14px; margin-top: 46px; }
.membership-flow span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.62); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.membership-flow b { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--acid); }
.membership-flow i { width: 34px; height: 1px; background: rgba(255,255,255,.18); }
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.membership-panel { padding: 32px; background: #f0eee7; color: var(--ink); border-radius: 22px; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.membership-panel:first-child { transform: translateY(-12px); }
.one-time-panel { background: #171917; color: white; border: 1px solid rgba(255,255,255,.14); }
.one-time-panel .plan-price span, .one-time-panel .plan-summary, .one-time-panel .secure-note { color: rgba(255,255,255,.55); }
.one-time-panel ul { border-color: rgba(255,255,255,.13); }
.one-time-panel li { border-color: rgba(255,255,255,.13); }
.one-time-panel li span { color: rgba(255,255,255,.4); }
.one-time-status { background: var(--acid); color: var(--ink); }
.one-time-button { background: var(--acid); color: var(--ink); }
.plan-topline { display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.plan-status { padding: 8px 10px; border-radius: 999px; background: var(--ink); color: white; }
.plan-price { margin-top: 45px; font-size: clamp(68px, 6vw, 102px); line-height: .9; font-weight: 950; letter-spacing: -.075em; }
.plan-price sup { font-size: 26px; vertical-align: top; }
.plan-price span { font-size: 12px; color: #74756f; letter-spacing: 0; }
.plan-summary { margin: 16px 0 34px; color: #676862; font-size: 13px; }
.membership-panel ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.membership-panel li { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 750; }
.membership-panel li span { color: #8e8f88; font-size: 9px; }
.plan-button { width: 100%; margin-top: 28px; color: white; background: var(--ink); }
.secure-note { margin-top: 13px; color: #8a8b85; font-size: 9px; text-align: center; text-transform: uppercase; letter-spacing: .08em; }

.dashboard-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; align-items: center; background: #ddd9cf; }
.dashboard-copy > p { max-width: 610px; margin-top: 28px; }
.dashboard-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.dashboard-points span { padding: 10px 13px; border: 1px solid rgba(8,9,8,.18); border-radius: 999px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.dashboard-mock { padding: 26px; background: #111311; color: white; border-radius: 28px; box-shadow: 0 40px 90px rgba(18,18,15,.22); }
.mock-topbar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 42px; }
.mock-logo { font-size: 13px; font-weight: 950; }
.mock-logo span:nth-child(1) { color: var(--red); }.mock-logo span:nth-child(2) { color: var(--yellow); }.mock-logo span:nth-child(3) { color: var(--green); }
.mock-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #282b27; color: var(--acid); font-size: 9px; font-weight: 900; }
.mock-greeting { font-size: clamp(24px, 2.4vw, 38px); font-weight: 900; letter-spacing: -.04em; }
.mock-status-card { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 26px; border-radius: 18px; background: var(--acid); color: var(--ink); }
.mock-status-card > div:first-child { display: flex; flex-direction: column; }
.mock-status-card span, .mock-grid span { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.mock-status-card strong { margin-top: 12px; font-size: 18px; }
.mock-status-card small, .mock-grid small { margin-top: 6px; color: rgba(8,9,8,.6); font-size: 10px; }
.status-ring { display: grid; place-items: center; width: 82px; height: 82px; border: 1px solid rgba(8,9,8,.28); border-radius: 50%; font-size: 28px; font-weight: 950; }
.status-ring span { display: block; font-size: 7px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.mock-grid > div { display: flex; flex-direction: column; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }
.mock-grid strong { margin-top: 16px; color: var(--acid); font-size: 18px; }
.mock-grid small { color: rgba(255,255,255,.42); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 11vw; align-items: center; }
.story-mark { font-size: clamp(80px, 12vw, 190px); line-height: .8; font-weight: 950; letter-spacing: -.1em; color: transparent; -webkit-text-stroke: 1.5px rgba(8,9,8,.25); white-space: nowrap; }
.story-copy > p { max-width: 640px; margin-top: 30px; }
.final-cta { padding: 120px 7.2vw; text-align: center; background: var(--ink); color: white; }
.final-cta > span { color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.final-cta h2 { margin: 20px 0 36px; font-size: clamp(54px, 7vw, 116px); line-height: .9; text-transform: uppercase; letter-spacing: -.075em; }
.final-cta > div { display: flex; justify-content: center; gap: 12px; }

footer { min-height: 170px; display: grid; grid-template-columns: 1fr 1.4fr 1fr auto; gap: 4vw; align-items: center; padding: 40px 4vw; background: #050605; color: white; border-top: 1px solid rgba(255,255,255,.1); }
footer p { color: rgba(255,255,255,.42); font-size: 11px; }
footer > div { display: flex; gap: 22px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
footer > span { color: rgba(255,255,255,.35); font-size: 9px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 68px; padding: 0 20px; }
  .desktop-nav { display: none; }
  .header-access { padding: 10px 14px; }
  .hero { min-height: 780px; height: 100svh; }
  .hero-art { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,4,3,.97) 0%, rgba(3,4,3,.73) 55%, rgba(3,4,3,.2) 100%), linear-gradient(0deg, rgba(3,4,3,.9), transparent 55%); }
  .hero-content { width: 78vw; padding: 165px 0 60px 7vw; }
  .hero h1 { font-size: clamp(60px, 10vw, 92px); }
  .standards-rail { grid-template-columns: 1fr 1fr; }
  .standard-item:nth-child(2) { border-right: 0; }
  .standard-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .manifesto-grid, .section-heading, .dashboard-section, .story { grid-template-columns: 1fr; }
  .manifesto-copy, .section-heading > p { max-width: 620px; }
  .odor-promise { grid-template-columns: .62fr 1.38fr; }
  .odor-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); padding: 28px 4vw; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .service-card { grid-template-columns: .12fr 1fr; }
  .service-tags { grid-column: 2; flex-direction: row; flex-wrap: wrap; }
  .membership { grid-template-columns: 1fr; padding: 100px 7vw; }
  .plans-grid { width: 100%; }
  .dashboard-mock { max-width: 720px; }
  .story-mark { font-size: 26vw; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-access { gap: 10px; font-size: 10px; }
  .hero-art { object-position: 66% center; opacity: .82; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,4,3,.98) 0%, rgba(3,4,3,.76) 62%, rgba(3,4,3,.24) 100%); }
  .hero-content { width: auto; padding: 130px 22px 50px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
  .hero-kicker { margin-bottom: 18px; }
  .hero h1 { font-size: 16vw; line-height: .86; }
  .hero-content > p { margin-top: 20px; font-size: 14px; line-height: 1.55; }
  .hero-actions { flex-direction: column; margin-top: 24px; }
  .button { width: 100%; }
  .hero-caption { gap: 11px; margin-top: 21px; font-size: 7px; }
  .hero-caption span:last-child { display: none; }
  .scroll-cue { display: none; }
  .future-vision-label { display: none; }
  .standards-rail { grid-template-columns: 1fr; }
  .standard-item { min-height: 86px; padding: 21px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-shell { padding: 78px 22px; }
  .manifesto h2, .section-heading h2, .dashboard-copy h2, .story-copy h2 { font-size: 13vw; }
  .manifesto-grid { gap: 30px; }
  .odor-promise { margin-top: 60px; grid-template-columns: 1fr; }
  .odor-seal { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .odor-copy { padding: 36px 24px; }
  .odor-points { grid-column: auto; grid-template-columns: 1fr; padding: 30px 24px; }
  .services { padding-top: 5px; }
  .section-heading { gap: 26px; padding-bottom: 40px; }
  .service-card { grid-template-columns: 30px 1fr; padding: 35px 0; }
  .service-main h3 { font-size: 31px; }
  .service-tags { grid-column: 2; }
  .membership { min-height: 0; padding: 78px 22px; }
  .membership-copy h2 { font-size: 13vw; }
  .plans-grid { grid-template-columns: 1fr; }
  .membership-flow { gap: 6px; }
  .membership-flow i { width: 12px; }
  .membership-flow span { font-size: 7px; }
  .membership-panel { padding: 25px 20px; border-radius: 16px; transform: none; }
  .membership-panel:first-child { transform: none; }
  .plan-price { font-size: 72px; }
  .dashboard-section { gap: 52px; }
  .mock-status-card { padding: 19px; }
  .status-ring { width: 64px; height: 64px; font-size: 22px; }
  .mock-grid { grid-template-columns: 1fr; }
  .story { gap: 42px; }
  .story-mark { font-size: 22vw; }
  .final-cta { padding: 80px 22px; }
  .final-cta > div { flex-direction: column; }
  footer { grid-template-columns: 1fr; padding: 48px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
