:root {
  --ink: #14201c;
  --forest: #10231e;
  --forest-2: #17362d;
  --green: #2b6552;
  --lime: #d9ff70;
  --cream: #f4f5ee;
  --paper: #ffffff;
  --muted: #68716d;
  --muted-light: rgba(255, 255, 255, 0.62);
  --line: #e2e7df;
  --coral: #f08d73;
  --shadow: 0 24px 70px rgba(17, 37, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.launch-banner {
  position: fixed;
  z-index: 70;
  top: 9px;
  left: 50%;
  display: flex;
  min-height: 38px;
  width: min(760px, calc(100% - 32px));
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(217, 255, 112, 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(10, 29, 23, 0.94);
  box-shadow: 0 12px 35px rgba(3, 18, 13, 0.25);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  font-size: 11px;
}

.launch-banner strong {
  color: white;
  font-size: 11px;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.launch-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(217, 255, 112, 0.09);
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 43px;
  right: 0;
  left: 0;
  display: grid;
  width: min(1380px, calc(100% - 48px));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 18px auto 0;
  padding: 13px 15px 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: white;
  background: rgba(16, 35, 30, 0.78);
  box-shadow: 0 10px 45px rgba(5, 20, 15, 0.14);
  backdrop-filter: blur(18px);
  transition: 180ms ease;
}

.site-header.is-scrolled {
  margin-top: 9px;
  background: rgba(16, 35, 30, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  font-size: 20px;
  letter-spacing: -0.8px;
}

.brand-name b {
  font-weight: 650;
}

.brand-name strong {
  color: var(--lime);
  font-weight: 780;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav a,
.text-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 570;
  transition: color 160ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 12px;
}

.button-dark {
  color: var(--forest);
  background: var(--lime);
  box-shadow: 0 8px 22px rgba(217, 255, 112, 0.14);
}

.button-lime {
  color: var(--forest);
  background: var(--lime);
  box-shadow: 0 13px 32px rgba(149, 191, 45, 0.2);
}

.button-lime:hover,
.button-dark:hover {
  background: #e2ff91;
  box-shadow: 0 16px 40px rgba(149, 191, 45, 0.28);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
  background: rgba(255, 255, 255, 0.045);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: 60px;
  padding: 190px max(6vw, calc((100vw - 1380px) / 2)) 82px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 7%, rgba(55, 112, 90, 0.52), transparent 34%),
    radial-gradient(circle at 88% 62%, rgba(54, 101, 86, 0.35), transparent 38%),
    var(--forest);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.11;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(217, 255, 112, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 120px;
  right: -160px;
  width: 720px;
  height: 720px;
}

.orbit-two {
  top: 250px;
  right: -10px;
  width: 420px;
  height: 420px;
}

.hero-copy,
.product-stage {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 112, 0.08);
}

.eyebrow.dark {
  color: #718079;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 620;
  letter-spacing: -4.4px;
  line-height: 0.98;
}

.hero-copy h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -3.2px;
}

.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.trust-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
  font-size: 9px;
  font-weight: 800;
}

.hero-trust p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  line-height: 1.45;
}

.hero-trust strong {
  color: white;
  font-weight: 730;
}

.product-stage {
  min-height: 520px;
  perspective: 1300px;
}

.stage-glow {
  position: absolute;
  top: 8%;
  left: 10%;
  width: 78%;
  height: 80%;
  border-radius: 50%;
  background: rgba(217, 255, 112, 0.11);
  filter: blur(72px);
}

.product-window {
  position: absolute;
  top: 32px;
  right: 12px;
  left: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 26px;
  color: var(--ink);
  background: #f3f4ef;
  box-shadow: 0 44px 110px rgba(2, 13, 10, 0.42);
  transform: rotateY(-5deg) rotateX(2deg);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  color: white;
  background: var(--forest-2);
}

.window-brand {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 740;
}

.window-brand > i {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  border: 1px solid var(--lime);
  border-radius: 5px;
  transform: rotate(45deg);
}

.window-brand span {
  color: var(--lime);
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78d0a4;
}

.product-card {
  padding: 22px;
}

.property-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.property-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #88ad9e, #285f4e);
  font-size: 11px;
  font-weight: 800;
}

.property-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.property-row small,
.verdict-card small,
.signal-copy small {
  color: #89948f;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 1.15px;
}

.property-row strong {
  font-size: 15px;
  letter-spacing: -0.4px;
}

.score {
  color: var(--green);
  font-size: 34px;
  font-weight: 730;
  letter-spacing: -2px;
}

.score small {
  color: #9aa39f;
  font-size: 8px;
  letter-spacing: 0;
}

.verdict-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 17px;
  color: white;
  background: var(--forest);
}

.verdict-card small {
  color: var(--lime);
}

.verdict-card strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  letter-spacing: -0.6px;
}

.verdict-card p {
  max-width: 440px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 9px;
  line-height: 1.5;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #e0e4df;
  border-radius: 14px;
  background: white;
}

.metric-grid > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-right: 1px solid #e6e9e5;
}

.metric-grid > span:last-child {
  border-right: 0;
}

.metric-grid small,
.metric-grid em {
  color: #929b97;
  font-size: 7px;
  font-style: normal;
}

.metric-grid strong {
  font-size: 15px;
}

.signal-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 18px;
  margin-top: 14px;
  padding: 17px;
  border: 1px solid #e0e4df;
  border-radius: 14px;
  background: white;
}

.signal-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.signal-copy strong {
  font-size: 10px;
  line-height: 1.35;
}

.mini-chart {
  display: flex;
  height: 64px;
  align-items: end;
  gap: 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid #dfe4de;
}

.mini-chart i {
  width: 11%;
  height: var(--h);
  border-radius: 4px 4px 1px 1px;
  background: #9ec4b4;
}

.mini-chart i:nth-last-child(-n + 2) {
  background: var(--lime);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(5, 20, 15, 0.2);
  backdrop-filter: blur(12px);
}

.floating-note > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--forest);
  background: var(--lime);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.floating-note span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-note small {
  color: #8b9590;
  font-size: 7px;
}

.floating-note strong {
  font-size: 10px;
}

.note-value {
  top: 1px;
  right: -7px;
}

.note-risk {
  bottom: 18px;
  left: 1px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0 max(6vw, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid var(--line);
  background: white;
}

.proof-strip > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 25px;
  letter-spacing: -1.2px;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.section {
  padding: 120px max(6vw, calc((100vw - 1280px) / 2));
}

.section-intro {
  max-width: 760px;
}

.section-intro.compact {
  max-width: 560px;
}

.section-intro h2,
.how-copy h2,
.evidence-copy h2,
.report-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(39px, 4.7vw, 66px);
  font-weight: 620;
  letter-spacing: -3.5px;
  line-height: 1.02;
}

.section-intro > p:last-child,
.how-copy > p,
.evidence-copy > p,
.report-copy > p,
.final-cta > div > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.question-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.question-card:hover {
  z-index: 2;
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.question-card.card-featured {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}

.card-number {
  align-self: flex-end;
  color: #a5ada9;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 1px;
}

.card-featured .card-number {
  color: rgba(255, 255, 255, 0.38);
}

.card-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  margin-top: 35px;
  border-radius: 13px;
  color: var(--forest);
  background: #e6ecdf;
  font-size: 20px;
}

.card-featured .card-icon {
  background: var(--lime);
}

.question-card h3 {
  margin: 21px 0 0;
  font-size: 21px;
  letter-spacing: -0.8px;
  line-height: 1.18;
}

.question-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.card-featured p {
  color: var(--muted-light);
}

.question-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 11px;
  font-weight: 720;
}

.card-featured a {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--lime);
}

.how-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 95px;
  color: white;
  background:
    radial-gradient(circle at 12% 15%, rgba(55, 112, 90, 0.42), transparent 35%),
    var(--forest);
}

.how-copy {
  align-self: center;
}

.how-copy > p {
  color: var(--muted-light);
}

.how-copy .button {
  margin-top: 30px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 23px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.steps-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steps-list > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.steps-list div {
  display: flex;
  flex-direction: column;
}

.steps-list small {
  color: var(--lime);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1.2px;
}

.steps-list strong {
  margin-top: 7px;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.steps-list p {
  margin: 7px 0 0;
  color: var(--muted-light);
  font-size: 11px;
  line-height: 1.55;
}

.evidence-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 95px;
  background: #f8f9f4;
}

.evidence-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(65, 114, 97, 0.2), transparent 55%),
    #dfe9e2;
}

.evidence-visual::before,
.evidence-visual::after {
  position: absolute;
  content: "";
  border: 2px dashed rgba(40, 95, 78, 0.14);
  border-radius: 50%;
}

.evidence-visual::before {
  inset: -190px 70px 80px -170px;
}

.evidence-visual::after {
  inset: 150px -130px -240px 90px;
}

.map-grid {
  position: absolute;
  inset: 55px;
}

.zone {
  position: absolute;
  display: flex;
  width: 150px;
  height: 122px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--forest);
  background: #a9cabd;
  clip-path: polygon(25% 4%, 77% 8%, 100% 45%, 82% 91%, 28% 100%, 0 67%, 4% 27%);
  font-size: 11px;
  font-weight: 730;
}

.zone::after {
  width: 9px;
  height: 9px;
  margin-top: 3px;
  border: 3px solid white;
  border-radius: 50%;
  content: "";
  background: var(--forest);
}

.zone small {
  color: rgba(16, 35, 30, 0.64);
  font-size: 8px;
}

.z1 { top: 55px; left: 18px; }
.z2 { top: 12px; left: 185px; background: var(--lime); }
.z3 { top: 168px; left: 122px; }
.z4 { top: 130px; right: 10px; background: #c4d8cf; }
.z5 { bottom: 5px; left: 245px; background: #86b9a5; }

.evidence-badge {
  position: absolute;
  right: 25px;
  bottom: 23px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 15px 40px rgba(16, 35, 30, 0.12);
  font-size: 9px;
  backdrop-filter: blur(12px);
}

.evidence-badge span {
  display: block;
  color: var(--green);
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -1px;
}

.evidence-copy > p {
  max-width: 500px;
}

.evidence-copy ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-copy li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
}

.evidence-copy li > i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.evidence-copy li > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.evidence-copy li strong {
  color: var(--ink);
  font-size: 13px;
}

.evidence-copy .source-note {
  margin-top: 29px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #929b97;
  font-size: 9px;
  line-height: 1.55;
}

.report-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.report-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.report-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 690;
}

.report-preview {
  display: grid;
  min-height: 560px;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 255, 112, 0.18), transparent 30%),
    var(--forest);
}

.report-page {
  width: min(460px, 78%);
  padding: 30px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
  transform: rotate(2.5deg);
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.report-head span {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.report-head span i {
  width: 17px;
  height: 17px;
  margin-right: 6px;
  border: 2px solid var(--green);
  border-radius: 5px;
  transform: rotate(45deg);
}

.report-head b {
  color: var(--green);
}

.report-head em {
  color: #9aa29e;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 1px;
}

.report-title {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 25px 0;
}

.report-title small,
.report-verdict small {
  color: #84908a;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 1.1px;
}

.report-title strong {
  font-size: 22px;
  letter-spacing: -0.8px;
}

.report-verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 13px;
  color: white;
  background: var(--forest);
}

.report-verdict > span {
  color: var(--lime);
  font-size: 39px;
  font-weight: 740;
}

.report-verdict div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.report-verdict small {
  color: var(--lime);
}

.report-verdict strong {
  font-size: 12px;
}

.report-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 25px 0;
}

.report-bars i {
  position: relative;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #edf0eb;
}

.report-bars i::after {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  content: "";
  background: var(--green);
}

.report-bars i:nth-child(2)::after { width: 62%; }
.report-bars i:nth-child(3)::after { width: 84%; background: #91c3ae; }
.report-bars i:nth-child(4)::after { width: 48%; background: var(--coral); }

.report-footer {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #9aa29e;
  font-size: 7px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  background: white;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.3px;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 2px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: 100px max(6vw, calc((100vw - 1280px) / 2));
  color: white;
  background:
    radial-gradient(circle at 80% 0, rgba(217, 255, 112, 0.11), transparent 36%),
    var(--forest);
}

.final-cta > div {
  max-width: 760px;
}

.final-cta > div > p:last-child {
  color: var(--muted-light);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 36px max(6vw, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  background: #0b1b17;
}

.footer-brand {
  grid-column: 1;
}

.site-footer > p {
  grid-column: 1;
  margin: -8px 0 0 44px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.site-footer > div {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 24px;
}

.site-footer > div a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.site-footer > div a:hover {
  color: white;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
}

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

  .site-nav {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .hero-copy h1 {
    letter-spacing: -3.3px;
  }

  .product-window {
    left: 0;
  }

  .question-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .question-card {
    min-height: 300px;
  }

  .evidence-section,
  .report-section {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 28px);
    margin-top: 12px;
  }

  .header-actions .text-link {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: transparent;
  }

  .menu-button span {
    width: 16px;
    height: 1px;
    background: white;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(16, 35, 30, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .product-stage {
    min-height: 520px;
    margin-top: 20px;
  }

  .product-window {
    right: 40px;
    left: 40px;
    transform: none;
  }

  .note-value { right: 10px; }
  .note-risk { left: 10px; }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .how-section,
  .evidence-section,
  .report-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .evidence-copy,
  .report-copy {
    max-width: 720px;
  }

  .report-preview {
    grid-row: 2;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .launch-banner {
    min-height: 36px;
    justify-content: flex-start;
    padding: 8px 13px;
    white-space: nowrap;
  }

  .launch-banner > span:last-child {
    display: none;
  }

  .site-header {
    padding: 10px 11px 10px 14px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-copy h1 {
    font-size: 45px;
    letter-spacing: -2.7px;
  }

  .hero-copy h1 em {
    letter-spacing: -2.2px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-stage {
    min-height: 470px;
    margin-right: -12px;
    margin-left: -12px;
  }

  .product-window {
    top: 25px;
    right: 0;
    left: 0;
    border-radius: 20px;
  }

  .product-card {
    padding: 15px;
  }

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

  .metric-grid > span:nth-child(3) {
    display: none;
  }

  .signal-panel {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .proof-strip {
    padding: 0 20px;
  }

  .proof-strip > div {
    min-height: 96px;
    padding-left: 17px;
  }

  .proof-strip strong {
    font-size: 21px;
  }

  .section,
  .final-cta {
    padding: 85px 20px;
  }

  .section-intro h2,
  .how-copy h2,
  .evidence-copy h2,
  .report-copy h2,
  .final-cta h2 {
    font-size: 42px;
    letter-spacing: -2.6px;
  }

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

  .question-card {
    min-height: 285px;
  }

  .how-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .steps-list li {
    grid-template-columns: 43px 1fr;
    gap: 15px;
  }

  .steps-list > li > span {
    width: 40px;
    height: 40px;
  }

  .evidence-visual,
  .report-preview {
    min-height: 430px;
  }

  .map-grid {
    inset: 25px;
    transform: scale(0.78);
    transform-origin: top left;
  }

  .report-page {
    width: 88%;
    padding: 22px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .site-footer > div {
    grid-column: 1;
    grid-row: auto;
    flex-wrap: wrap;
  }

  .site-footer > small {
    line-height: 1.55;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
