:root {
  --ink: #17342f;
  --ink-deep: #0c2925;
  --green: #2f806e;
  --green-bright: #a9d6b8;
  --sage: #dce9dc;
  --cream: #f6f4ee;
  --paper: #fbfaf7;
  --peach: #eac6ad;
  --white: #fff;
  --line: rgba(23, 52, 47, 0.14);
  --shadow: 0 34px 90px rgba(22, 55, 48, 0.16);
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button { font: inherit; }
.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: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 64px, 1320px);
  height: 104px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1.5px;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  margin-right: 7px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}
.site-nav { display: flex; align-items: center; gap: 35px; }
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  transition: background .2s, color .2s;
}
.nav-cta:hover { color: #fff; background: var(--ink); }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 170px max(32px, calc((100vw - 1320px) / 2)) 110px;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  top: -17%;
  right: -8%;
  width: 61vw;
  height: 61vw;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 48%, #e5efdf 0 42%, #d8e7d6 58%, rgba(216,231,214,0) 72%);
  content: "";
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; padding-right: 42px; }
.eyebrow, .section-kicker {
  margin: 0 0 25px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 1px; background: var(--green); }
.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(62px, 6.1vw, 98px);
  font-weight: 400;
  letter-spacing: -5px;
  line-height: .94;
}
.hero h1 em { color: var(--green); font-weight: 400; }
.hero-intro {
  max-width: 575px;
  margin: 32px 0 0;
  color: #46635d;
  font-size: 18px;
  line-height: 1.68;
}
.hero-actions { display: flex; align-items: center; gap: 31px; margin-top: 38px; }
.button {
  display: inline-flex;
  padding: 16px 22px;
  border-radius: 99px;
  align-items: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(28,69,60,.18); }
.button-primary { color: #fff; background: var(--ink-deep); }
.button span { color: var(--green-bright); font-size: 17px; }
.text-link {
  display: inline-flex;
  padding: 6px 0;
  border-bottom: 1px solid rgba(23, 52, 47, .35);
  align-items: center;
  gap: 23px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.hero-note { margin: 23px 0 0; color: #759089; font-size: 12px; }
.hero-note::before { display: inline-block; width: 5px; height: 5px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--green); content: ""; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-glow-one { right: 4%; bottom: 4%; width: 260px; height: 260px; background: rgba(234,198,173,.46); }
.hero-glow-two { top: 16%; right: 43%; width: 200px; height: 200px; background: rgba(255,255,255,.48); }

.hero-visual { position: relative; z-index: 2; width: 100%; min-height: 570px; }
.health-card { position: absolute; border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.primary-card { top: 0; left: 13%; width: min(480px, 72%); padding: 25px 27px 21px; border-radius: 26px; transform: rotate(2.2deg); }
.card-topline { display: flex; align-items: center; justify-content: space-between; }
.mini-brand { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: -.7px; }
.live-pill { padding: 5px 9px; border-radius: 99px; color: #56716b; background: #edf5ee; font-size: 9px; font-weight: 700; }
.live-pill i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: #4e9d75; }
.card-greeting { margin-top: 29px; }
.card-greeting p { margin: 0 0 5px; color: #728a84; font-size: 10px; text-transform: uppercase; letter-spacing: 1.4px; }
.card-greeting h2 { margin: 0 0 4px; font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -1px; }
.card-greeting > span { color: #6b817c; font-size: 10px; }
.air-score { display: flex; margin-top: 22px; align-items: center; gap: 27px; }
.score-ring { position: relative; display: grid; width: 120px; height: 120px; place-items: center; }
.score-ring svg { position: absolute; width: 100%; transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke: #e6ece7; stroke-width: 7; }
.score-ring .score-progress { stroke: #438c74; stroke-dasharray: 327; stroke-dashoffset: 52; stroke-linecap: round; }
.score-ring strong { margin-top: -12px; font-family: var(--serif); font-size: 35px; font-weight: 400; }
.score-ring small { position: absolute; bottom: 29px; color: #81938f; font-size: 7px; text-transform: uppercase; letter-spacing: 1px; }
.air-metrics { flex: 1; }
.air-metrics div { display: flex; padding: 8px 0; border-bottom: 1px solid #e7ece9; align-items: center; justify-content: space-between; }
.air-metrics div:last-child { border: 0; }
.air-metrics span { color: #758a85; font-size: 9px; }
.air-metrics strong { font-size: 14px; font-weight: 600; }
.air-metrics small { color: #8ba09b; font-size: 7px; font-weight: 500; }
.chart { margin-top: 19px; }
.chart svg { display: block; width: 100%; height: 70px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #38836f; stroke-linecap: round; stroke-width: 2; vector-effect: non-scaling-stroke; }
.chart-labels { display: flex; margin-top: -5px; color: #95a6a2; font-size: 7px; justify-content: space-between; }
.checkin-card { right: 2%; bottom: 11%; display: grid; width: 277px; padding: 18px; border-radius: 20px; grid-template-columns: 40px 1fr auto; align-items: center; gap: 11px; transform: rotate(-3deg); }
.checkin-icon { display: grid; width: 39px; height: 39px; border-radius: 50%; color: #b87149; background: #f5e4d5; place-items: center; }
.checkin-card p { margin: 0 0 3px; color: #7d918c; font-size: 8px; text-transform: uppercase; letter-spacing: 1px; }
.checkin-card strong { font-family: var(--serif); font-size: 15px; font-weight: 400; }
.checkin-time { color: #8ba09b; font-size: 8px; }
.checkin-scale { display: flex; grid-column: 1 / -1; padding-top: 11px; justify-content: space-between; }
.checkin-scale i { width: 28px; height: 4px; border-radius: 5px; background: #e4e9e6; }
.checkin-scale .active { background: #4a8b75; }
.insight-chip { position: absolute; bottom: 2%; left: 1%; display: flex; width: 250px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 17px; align-items: center; gap: 12px; background: rgba(24,58,51,.94); box-shadow: 0 20px 50px rgba(19,54,47,.25); transform: rotate(2deg); }
.insight-icon { display: grid; width: 33px; height: 33px; flex: 0 0 auto; border-radius: 50%; color: #bce2c6; background: rgba(255,255,255,.1); place-items: center; }
.insight-chip small { display: block; margin-bottom: 3px; color: #93b5ab; font-size: 8px; text-transform: uppercase; letter-spacing: 1px; }
.insight-chip strong { display: block; color: #fff; font-family: var(--serif); font-size: 13px; font-weight: 400; }
.orbit { position: absolute; border: 1px solid rgba(43,104,89,.12); border-radius: 50%; }
.orbit-one { top: -22px; right: 1%; width: 540px; height: 540px; }
.orbit-two { top: 35px; right: 11%; width: 410px; height: 410px; }
.hero-scroll { position: absolute; bottom: 31px; left: max(32px, calc((100vw - 1320px) / 2)); display: flex; color: #8b9d98; font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; align-items: center; gap: 11px; }
.hero-scroll span { display: inline-block; width: 1px; height: 25px; background: #97aaa5; }

.section-pad { padding-right: max(32px, calc((100vw - 1160px) / 2)); padding-left: max(32px, calc((100vw - 1160px) / 2)); }
.statement { padding-top: 160px; padding-bottom: 170px; text-align: center; }
.statement h2 { max-width: 990px; margin: 0 auto; color: var(--ink-deep); font-family: var(--serif); font-size: clamp(42px, 5.2vw, 71px); font-weight: 400; letter-spacing: -3px; line-height: 1.08; }
.statement h2 span { color: #8da49e; }
.statement > p:not(.section-kicker) { max-width: 660px; margin: 38px auto 0; color: #627a74; font-size: 17px; line-height: 1.7; }
.product-loop { display: flex; max-width: 1050px; margin: 55px auto 0; padding: 19px 23px; border: 1px solid var(--line); border-radius: 99px; align-items: center; justify-content: center; gap: 17px; }
.product-loop span { color: #496760; font-size: 11px; font-weight: 600; white-space: nowrap; }
.product-loop i { color: #9cafaa; font-size: 12px; font-style: normal; }

.platform { padding-top: 135px; padding-bottom: 150px; color: #f5f7f4; background: var(--ink-deep); }
.section-heading { display: flex; margin-bottom: 76px; align-items: end; justify-content: space-between; }
.section-kicker.light { color: #8ec3ac; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 400; letter-spacing: -3px; line-height: 1.05; }
.section-heading > p { max-width: 385px; margin: 0 0 8px; color: #a7bbb5; font-size: 15px; line-height: 1.7; }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.platform-card { position: relative; min-height: 590px; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; overflow: hidden; }
.environment-card { background: #143b35; }
.response-card { background: #eee6da; color: var(--ink); }
.intelligence-card { min-height: 470px; grid-column: 1 / -1; background: linear-gradient(115deg, #173d36 0 51%, #1e493f); }
.card-number { position: absolute; z-index: 3; top: 23px; right: 24px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: 1px; }
.response-card .card-number { color: #7e8d88; }
.sensor-visual { position: relative; height: 330px; }
.sensor-device { position: absolute; z-index: 2; top: 72px; left: 50%; display: flex; width: 145px; height: 188px; border: 1px solid rgba(255,255,255,.65); border-radius: 55px 55px 42px 42px; flex-direction: column; align-items: center; justify-content: end; color: var(--ink); background: linear-gradient(145deg, #f2f0e9, #cfd9ce); box-shadow: 0 30px 70px rgba(0,0,0,.29); transform: translateX(-50%); }
.sensor-device::before { position: absolute; top: 20px; left: 18px; width: 70%; height: 42%; border-radius: 50%; background: rgba(255,255,255,.48); filter: blur(10px); content: ""; }
.sensor-device i { width: 6px; height: 6px; margin-bottom: 23px; border-radius: 50%; background: #61a485; box-shadow: 0 0 0 5px rgba(97,164,133,.12); }
.sensor-device span { margin-bottom: 20px; font-family: var(--serif); font-size: 18px; }
.sensor-pulse { position: absolute; top: 53%; left: 50%; border: 1px solid rgba(169,214,184,.2); border-radius: 50%; transform: translate(-50%,-50%); }
.pulse-one { width: 260px; height: 260px; }
.pulse-two { width: 360px; height: 360px; }
.particle { position: absolute; z-index: 3; padding: 8px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 99px; color: #b8d6ca; background: rgba(255,255,255,.06); font-size: 8px; font-style: normal; }
.particle-one { top: 58px; left: 10%; }
.particle-two { top: 130px; right: 6%; }
.particle-three { bottom: 29px; left: 16%; }
.platform-card-copy { position: relative; z-index: 3; max-width: 520px; }
.platform-card-copy > p { margin: 0 0 12px; color: #83b8a1; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.response-card .platform-card-copy > p { color: #a06d4d; }
.platform-card-copy h3 { max-width: 500px; margin: 0 0 15px; font-family: var(--serif); font-size: 35px; font-weight: 400; letter-spacing: -1.3px; line-height: 1.1; }
.platform-card-copy > span { display: block; max-width: 510px; color: #a9beb8; font-size: 13px; line-height: 1.65; }
.response-card .platform-card-copy > span { color: #647b75; }
.response-visual { width: 86%; margin: 74px auto 88px; padding: 30px 26px 22px; border: 1px solid rgba(255,255,255,.8); border-radius: 19px; background: rgba(255,255,255,.62); box-shadow: 0 22px 55px rgba(102,79,61,.12); }
.response-visual > p { margin: 0 0 29px; font-family: var(--serif); font-size: 20px; }
.slider-row { display: flex; margin-bottom: 11px; color: #8c9b97; font-size: 7px; justify-content: space-between; }
.slider-track { position: relative; display: flex; height: 16px; align-items: center; justify-content: space-between; }
.slider-track::before { position: absolute; top: 7px; right: 0; left: 0; height: 2px; background: #d0d9d4; content: ""; }
.slider-track i { position: absolute; z-index: 1; top: 7px; left: 0; width: 78%; height: 2px; background: var(--green); }
.slider-track b { position: relative; z-index: 2; width: 7px; height: 7px; border: 2px solid #d0d9d4; border-radius: 50%; background: #fff; }
.slider-track b:nth-of-type(-n+5) { border-color: var(--green); background: var(--green); }
.response-done { display: flex; margin-top: 22px; padding-top: 16px; border-top: 1px solid #dce2de; color: #657b75; font-size: 9px; align-items: center; justify-content: space-between; }
.response-done span { display: grid; width: 20px; height: 20px; border-radius: 50%; color: #fff; background: var(--green); place-items: center; }
.intelligence-visual { position: absolute; top: 20px; right: 35px; bottom: 20px; width: 52%; }
.intelligence-visual svg { position: absolute; top: 70px; width: 100%; height: 220px; }
.intelligence-visual path { fill: none; stroke: #8ac5a9; stroke-width: 2; vector-effect: non-scaling-stroke; }
.signal-dot { position: absolute; z-index: 2; width: 10px; height: 10px; border: 2px solid #14352e; border-radius: 50%; background: #acd7b9; box-shadow: 0 0 0 5px rgba(172,215,185,.13); }
.dot-one { top: 196px; left: 35%; }
.dot-two { top: 170px; left: 65%; }
.dot-three { top: 91px; right: 3%; }
.insight-label { position: absolute; right: 1%; bottom: 52px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; color: #d7e9df; background: rgba(255,255,255,.07); font-size: 10px; }
.insight-label span { margin-right: 8px; color: #9cd0b4; }
.intelligence-card .platform-card-copy { position: absolute; top: 50%; left: 6%; max-width: 43%; transform: translateY(-50%); }

.principles { display: grid; padding-top: 150px; padding-bottom: 155px; grid-template-columns: .88fr 1.12fr; gap: 95px; }
.principles-copy { padding-top: 20px; }
.principles-copy h2 { margin: 0 0 27px; font-family: var(--serif); font-size: clamp(45px, 4.4vw, 64px); font-weight: 400; letter-spacing: -2.6px; line-height: 1.05; }
.principles-copy > p:not(.section-kicker) { max-width: 450px; margin: 0 0 35px; color: #617a73; font-size: 15px; line-height: 1.8; }
.text-link.dark { border-color: rgba(23,52,47,.3); }
.principle-list > div { display: grid; padding: 31px 0; border-bottom: 1px solid var(--line); grid-template-columns: 45px 180px 1fr; align-items: start; gap: 15px; }
.principle-list > div:first-child { border-top: 1px solid var(--line); }
.principle-list span { padding-top: 7px; color: #95aaa4; font-size: 9px; }
.principle-list h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.principle-list p { margin: 3px 0 0; color: #667c77; font-size: 13px; line-height: 1.6; }

.about { position: relative; display: grid; min-height: 650px; color: #f5f7f4; background: #1d463e; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; overflow: hidden; }
.about::after { position: absolute; top: -170px; right: -150px; width: 530px; height: 530px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.about-orb { position: relative; display: grid; width: 390px; height: 390px; margin: auto; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; place-items: center; }
.about-orb::before, .about-orb::after, .about-orb i { position: absolute; border: 1px solid rgba(180,219,200,.14); border-radius: 50%; content: ""; }
.about-orb::before { width: 285px; height: 285px; }
.about-orb::after { width: 180px; height: 180px; }
.about-orb i:first-child { width: 500px; height: 180px; transform: rotate(34deg); }
.about-orb i:nth-child(2) { width: 500px; height: 180px; transform: rotate(-34deg); }
.about-orb span { z-index: 2; color: #d6e8dc; font-family: var(--serif); font-size: 115px; font-style: italic; }
.about-copy { position: relative; z-index: 2; }
.about-copy h2 { max-width: 650px; margin: 0 0 28px; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 63px); font-weight: 400; letter-spacing: -2.5px; line-height: 1.07; }
.about-copy > p:not(.section-kicker):not(.about-status) { max-width: 620px; color: #b7c9c4; font-size: 15px; line-height: 1.8; }
.about-status { margin-top: 31px; color: #d5e6df; font-size: 11px; }
.about-status i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #8cc5a5; box-shadow: 0 0 0 5px rgba(140,197,165,.1); }

.development { display: grid; padding-top: 145px; padding-bottom: 145px; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.development-heading h2 { max-width: 510px; margin: 0 0 27px; font-family: var(--serif); font-size: clamp(44px, 4.5vw, 64px); font-weight: 400; letter-spacing: -2.6px; line-height: 1.05; }
.development-heading > p:not(.section-kicker) { max-width: 500px; margin: 0; color: #617a73; font-size: 15px; line-height: 1.8; }
.development-list article { display: grid; padding: 27px 0; border-bottom: 1px solid var(--line); grid-template-columns: 50px 1fr; gap: 13px; }
.development-list article:first-child { border-top: 1px solid var(--line); }
.development-list article > span { padding-top: 5px; color: #95aaa4; font-size: 9px; }
.development-list h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.development-list p { margin: 0; color: #667c77; font-size: 13px; line-height: 1.65; }

.contact { display: grid; padding-top: 145px; padding-bottom: 130px; grid-template-columns: .82fr 1.18fr; gap: 100px; background: #ecefe8; }
.contact-inner h2 { max-width: 750px; margin: 0 0 24px; font-family: var(--serif); font-size: clamp(48px, 5.4vw, 74px); font-weight: 400; letter-spacing: -3.2px; line-height: 1; }
.contact-inner > p:not(.section-kicker) { max-width: 590px; color: #657c76; font-size: 15px; line-height: 1.7; }
.contact-email { display: inline-flex; margin-top: 39px; padding-bottom: 9px; border-bottom: 1px solid #759089; align-items: center; gap: 45px; font-family: var(--serif); font-size: clamp(23px, 2.4vw, 34px); text-decoration: none; }
.contact-email span { color: var(--green); font-family: var(--sans); font-size: 18px; transition: transform .2s; }
.contact-email:hover span { transform: translate(3px,-3px); }
.partnership-link { margin-top: 24px; }
.contact-details { padding-top: 56px; }
.contact-details > p { margin: 0 0 18px; color: #8da19c; font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.contact-details address { color: #57706a; font-size: 13px; font-style: normal; line-height: 1.8; }
.contact-details strong { color: var(--ink); font-weight: 700; }
.early-access-form { padding: 37px; border: 1px solid rgba(23,52,47,.12); border-radius: 24px; background: rgba(255,255,255,.72); box-shadow: 0 24px 65px rgba(23,52,47,.08); }
.early-access-form label { display: block; margin-bottom: 21px; color: #536d67; font-size: 10px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.early-access-form label > span { color: #91a49f; font-size: 8px; font-weight: 500; }
.early-access-form input, .early-access-form select, .early-access-form textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 0; border: 0; border-bottom: 1px solid #bac7c2; border-radius: 0; outline: 0; color: var(--ink); background: transparent; font: 15px var(--sans); text-transform: none; transition: border-color .2s; }
.early-access-form textarea { resize: vertical; }
.early-access-form input:focus, .early-access-form select:focus, .early-access-form textarea:focus { border-color: var(--green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-submit { border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.early-access-form .form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.early-access-form .consent-label { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 24px; color: #637b75; font-size: 11px; font-weight: 500; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.early-access-form .consent-label input { width: 17px; height: 17px; flex: 0 0 auto; margin: 0; padding: 0; accent-color: var(--green); }
.early-access-form .consent-label span { color: inherit; font-size: inherit; font-weight: inherit; }
.form-status { margin: 17px 0 0; padding: 11px 13px; border-radius: 9px; font-size: 11px; line-height: 1.5; }
.form-status.success { color: #245d4e; background: #deece3; }
.form-status.error { color: #803c35; background: #f5e2df; }
.form-note { margin: 14px 0 0; color: #7c918b; font-size: 10px; line-height: 1.5; }

.site-footer { display: grid; width: min(100% - 64px, 1320px); margin: auto; padding: 39px 0 46px; border-top: 1px solid var(--line); grid-template-columns: 1fr 1fr 1fr; align-items: end; }
.footer-brand { font-size: 27px; }
.footer-brand .brand-mark { width: 30px; height: 30px; }
.site-footer > p { margin: 0; color: #536d67; font-family: var(--serif); font-size: 13px; text-align: center; }
.site-footer > div { display: flex; color: #536d67; font-size: 10px; justify-content: flex-end; gap: 24px; }
.site-footer > div a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero { min-height: auto; padding-top: 150px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 730px; }
  .hero h1 { font-size: clamp(66px, 10vw, 95px); }
  .hero-visual { width: min(760px, 100%); margin: 70px auto 0; }
  .hero::before { top: 30%; right: -18%; width: 95vw; height: 95vw; }
  .hero-scroll { display: none; }
  .principles { gap: 55px; }
  .principle-list > div { grid-template-columns: 35px 150px 1fr; }
  .about { gap: 45px; }
  .about-orb { width: 310px; height: 310px; }
  .about-orb i:first-child, .about-orb i:nth-child(2) { width: 400px; }
  .development { gap: 55px; }
  .contact { gap: 55px; }
}

@media (max-width: 780px) {
  .site-header { width: calc(100% - 40px); height: 82px; }
  .brand { font-size: 27px; }
  .brand-mark { width: 30px; height: 30px; }
  .menu-button { position: relative; z-index: 2; display: flex; width: 44px; height: 44px; padding: 0; border: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; }
  .menu-button > span:not(.sr-only) { width: 21px; height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; top: 12px; right: 0; left: 0; display: flex; padding: 85px 25px 28px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; flex-direction: column; align-items: stretch; gap: 5px; background: rgba(246,244,238,.98); box-shadow: 0 20px 55px rgba(23,52,47,.15); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .2s, transform .2s; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 12px; text-align: center; }
  .nav-cta { margin-top: 8px; }
  .hero { padding: 125px 20px 90px; }
  .hero-copy { padding-right: 0; }
  .hero h1 { font-size: clamp(54px, 17vw, 77px); letter-spacing: -3.5px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-visual { min-height: 480px; margin-top: 55px; }
  .primary-card { left: 3%; width: 86%; padding: 20px; }
  .checkin-card { right: 0; bottom: 4%; width: 250px; }
  .insight-chip { bottom: -3%; left: 0; width: 230px; }
  .orbit-one { width: 450px; height: 450px; }
  .orbit-two { width: 330px; height: 330px; }
  .statement { padding-top: 105px; padding-bottom: 110px; }
  .statement h2 { font-size: 44px; letter-spacing: -2px; }
  .product-loop { border-radius: 20px; flex-wrap: wrap; }
  .section-pad { padding-right: 20px; padding-left: 20px; }
  .platform { padding-top: 95px; padding-bottom: 100px; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading > p { margin-top: 25px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 550px; }
  .intelligence-card { min-height: 610px; grid-column: auto; }
  .intelligence-visual { top: auto; right: 5%; bottom: 30px; width: 90%; height: 280px; }
  .intelligence-card .platform-card-copy { top: 65px; right: 28px; left: 28px; max-width: none; transform: none; }
  .principles { padding-top: 100px; padding-bottom: 100px; grid-template-columns: 1fr; gap: 50px; }
  .principle-list > div { grid-template-columns: 35px 1fr; }
  .principle-list p { grid-column: 2; }
  .about { padding-top: 95px; padding-bottom: 100px; grid-template-columns: 1fr; gap: 45px; }
  .about-orb { width: 280px; height: 280px; }
  .about-copy { grid-row: 1; }
  .development { padding-top: 100px; padding-bottom: 100px; grid-template-columns: 1fr; gap: 50px; }
  .contact { padding-top: 100px; padding-bottom: 95px; grid-template-columns: 1fr; gap: 45px; }
  .contact-inner h2 { font-size: 50px; }
  .contact-email { gap: 16px; font-size: 21px; }
  .contact-details { padding-top: 0; }
  .partnership-link + .contact-details { padding-top: 45px; }
  .early-access-form { padding: 27px 22px; }
  .site-footer { width: calc(100% - 40px); grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .site-footer > p { text-align: left; }
  .site-footer > div { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .hero-visual { min-height: 440px; }
  .primary-card { width: 94%; transform: rotate(1deg) scale(.92); transform-origin: top left; }
  .checkin-card { bottom: 1%; transform: rotate(-2deg) scale(.87); transform-origin: bottom right; }
  .insight-chip { bottom: -5%; transform: rotate(1deg) scale(.86); transform-origin: bottom left; }
  .platform-card { padding: 22px; }
  .response-visual { width: 100%; }
  .platform-card-copy h3 { font-size: 31px; }
  .about-copy h2 { font-size: 43px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

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