:root {
  --ink: #07171a;
  --ink-soft: #173033;
  --paper: #f4f2ed;
  --paper-deep: #e7e3da;
  --green: #19cf70;
  --green-deep: #0fa45a;
  --coral: #ff6d58;
  --line: rgba(7, 23, 26, 0.16);
  --light-line: rgba(244, 242, 237, 0.24);
  --display: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }

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

button, input { font: inherit; }

button { cursor: pointer; }

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

.shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper);
}

.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

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

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  overflow: hidden;
  border-radius: 5px;
  place-items: center;
  background: #fff;
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-name { font-size: 16px; font-weight: 700; letter-spacing: 0; }
.brand-name span { color: var(--green); }

.primary-nav { display: flex; align-items: center; justify-content: center; gap: 23px; font-size: 13px; font-weight: 600; }
.primary-nav a { opacity: 0.77; transition: opacity 180ms ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { opacity: 1; }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta { min-height: 42px; padding: 0 16px; border-color: rgba(244, 242, 237, 0.44); }
.nav-cta:hover, .nav-cta:focus-visible { border-color: var(--green); color: var(--green); }
.button { min-height: 49px; padding: 0 19px; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-accent { background: var(--green); color: var(--ink); }
.button-accent:hover, .button-accent:focus-visible { background: #43e78d; }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover, .button-dark:focus-visible { background: var(--ink-soft); }

.menu-toggle { display: none; padding: 4px; border: 0; background: transparent; color: var(--paper); font-size: 26px; line-height: 1; }

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-image { position: absolute; inset: 0; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: rgba(7, 23, 26, 0.08); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-content { position: relative; z-index: 2; padding-top: 184px; padding-bottom: 140px; max-width: min(1180px, calc(100% - 64px)); }
.hero-content > * { max-width: 610px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.eyebrow-light { color: rgba(244, 242, 237, 0.72); }

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

h1, h2, h3 { letter-spacing: 0; }

h1 {
  margin-bottom: 24px;
  max-width: 620px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
}

h1 em, h2 em, .access-copy em { color: var(--green); font-style: normal; }

.hero-copy { margin-bottom: 33px; color: rgba(244, 242, 237, 0.82); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; padding-bottom: 3px; }
.text-link-light { color: var(--paper); }
.text-link:hover, .text-link:focus-visible { color: var(--green); }

.hero-index {
  position: absolute;
  z-index: 2;
  bottom: 31px;
  left: 50%;
  display: flex;
  gap: 16px;
  width: min(1180px, calc(100% - 64px));
  transform: translateX(-50%);
  color: rgba(244, 242, 237, 0.6);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-index span:first-child { color: var(--green); }

.section { padding: 140px 0; }

.split-intro { display: grid; grid-template-columns: 0.9fr 1.7fr; gap: 96px; align-items: start; }

h2 { margin-bottom: 26px; font-size: 48px; font-weight: 800; line-height: 1.1; }

.lead { max-width: 670px; margin: 0; color: #3e5050; font-size: 19px; line-height: 1.62; }

.capabilities { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.capability { min-height: 305px; padding: 38px 35px 38px 0; border-right: 1px solid var(--line); }
.capability + .capability { padding-left: 35px; }
.capability:last-child { padding-right: 0; border-right: 0; }
.capability-number { display: block; margin-bottom: 71px; color: var(--green-deep); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }
.capability h3 { margin-bottom: 12px; font-size: 20px; line-height: 1.25; }
.capability p { max-width: 295px; margin: 0; color: #526363; font-size: 14px; line-height: 1.65; }

.pattern-section { background: var(--paper-deep); }
.pattern-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 9%; align-items: center; }
.pattern-media { min-height: 550px; overflow: hidden; }
.pattern-media img { width: 100%; height: 100%; object-fit: cover; }
.pattern-copy > p:not(.eyebrow) { max-width: 490px; margin-bottom: 29px; color: #415352; font-size: 17px; line-height: 1.65; }
.process-list { margin-top: 48px; border-top: 1px solid var(--line); }
.process-list div { display: flex; gap: 19px; align-items: center; min-height: 56px; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--green-deep); font-family: var(--mono); font-size: 11px; }
.process-list strong { font-size: 13px; }

.heartbeat-section { padding: 130px 0; background: var(--ink); color: var(--paper); }
.heartbeat-layout { display: grid; grid-template-columns: 0.96fr 1.04fr; gap: 10%; align-items: center; }
.heartbeat-copy h2 { max-width: 465px; }
.heartbeat-copy > p:not(.eyebrow) { max-width: 470px; color: rgba(244, 242, 237, 0.76); font-size: 17px; line-height: 1.68; }
.heartbeat-copy .heartbeat-note { margin-top: 34px; color: var(--green); font-size: 14px; font-weight: 700; }
.heartbeat-media { position: relative; padding-bottom: 38px; }
.heartbeat-media img { width: 100%; max-height: 610px; object-fit: cover; object-position: center; }
.media-caption { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 82%; min-height: 71px; padding: 0 21px; background: var(--green); color: var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }

.privacy-layout { display: grid; grid-template-columns: 0.8fr 1.3fr 0.9fr; gap: 64px; align-items: start; }
.privacy-layout h2 { max-width: 420px; }
.privacy-rule { display: flex; align-items: flex-start; gap: 13px; margin-top: 10px; padding-top: 12px; border-top: 2px solid var(--ink); }
.privacy-rule span { color: var(--green-deep); font-size: 17px; line-height: 1; }
.privacy-rule p { margin: 0; font-size: 13px; line-height: 1.62; }

.insight-section { background: #c6efd4; }
.insight-layout { display: grid; grid-template-columns: 1fr 0.82fr; gap: 12%; align-items: center; }
.insight-copy p:not(.eyebrow) { max-width: 505px; margin-bottom: 34px; color: #34534a; font-size: 17px; line-height: 1.65; }
.report-card { position: relative; min-height: 492px; padding: 26px; overflow: hidden; background: var(--paper); color: var(--ink); box-shadow: 11px 13px 0 var(--ink); }
.report-card-head { display: flex; justify-content: space-between; gap: 15px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase; }
.report-card-mark { position: absolute; top: 50%; right: 8%; width: 170px; height: 170px; transform: translateY(-48%); opacity: 0.96; }
.report-card-mark img { width: 100%; height: 100%; object-fit: cover; }
.report-kicker { position: absolute; bottom: 122px; left: 26px; margin: 0; font-size: 30px; font-weight: 800; line-height: 1; }
.report-card h3 { position: absolute; bottom: 55px; left: 23px; margin: 0; color: var(--green-deep); font-size: 72px; font-weight: 800; line-height: 0.9; }
.report-footer { position: absolute; right: 26px; bottom: 26px; left: 26px; margin: 0; padding-top: 15px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }

.about-section { background: var(--paper); }
.about-layout { display: grid; grid-template-columns: 0.9fr 1.65fr; gap: 90px; }
.about-layout h2 { max-width: 720px; }

.report-access { padding: 126px 0; background: var(--coral); color: var(--ink); }
.access-layout { display: grid; grid-template-columns: 1.07fr 0.93fr; gap: 12%; align-items: start; }
.access-copy .eyebrow { color: rgba(7, 23, 26, 0.7); }
.access-copy h2 { max-width: 540px; margin-bottom: 27px; font-size: 45px; }
.access-copy > p:not(.eyebrow) { max-width: 475px; margin: 0; font-size: 17px; line-height: 1.65; }
.access-copy em { color: var(--ink); font-weight: 800; }
.access-form { display: grid; gap: 18px; padding-top: 3px; }
.access-form label:not(.consent) { display: grid; gap: 8px; }
.access-form label > span { font-size: 12px; font-weight: 800; }
.access-form input[type="email"], .access-form input[type="text"] { min-height: 49px; width: 100%; padding: 0 14px; border: 1px solid rgba(7, 23, 26, 0.42); border-radius: 3px; outline: 0; background: rgba(244, 242, 237, 0.72); color: var(--ink); }
.access-form input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(244, 242, 237, 0.56); }
.access-form input::placeholder { color: rgba(7, 23, 26, 0.55); }
.consent { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--ink); }
.access-form .button { justify-self: start; margin-top: 5px; background: var(--ink); color: var(--paper); }
.access-form .button:hover, .access-form .button:focus-visible { background: #243a3b; }
.form-note { min-height: 20px; margin: -4px 0 0; color: rgba(7, 23, 26, 0.73); font-size: 11px; line-height: 1.5; }
.form-note.is-confirmed { color: var(--ink); font-weight: 800; }

.site-footer { padding: 42px 0 19px; background: var(--ink); color: var(--paper); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-bottom: 72px; }
.footer-top p { max-width: 300px; margin: 0; color: rgba(244, 242, 237, 0.67); font-size: 14px; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--light-line); color: rgba(244, 242, 237, 0.54); font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .shell { width: min(100% - 48px, 760px); }
  .nav-wrap { min-height: 78px; }
  .primary-nav { gap: 14px; font-size: 12px; }
  .nav-cta { padding: 0 13px; font-size: 12px; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: 161px; padding-bottom: 120px; }
  h1 { max-width: 530px; font-size: 53px; }
  .split-intro, .about-layout { gap: 50px; }
  h2 { font-size: 41px; }
  .pattern-layout, .heartbeat-layout, .insight-layout, .access-layout { gap: 7%; }
  .privacy-layout { gap: 35px; }
  .report-card h3 { font-size: 58px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 40px, 540px); }
  .site-header { background: rgba(7, 23, 26, 0.97); }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 29px; height: 29px; }
  .brand-name { font-size: 15px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .primary-nav { position: fixed; top: 68px; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: 22px 20px; background: var(--ink); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--light-line); font-size: 17px; }
  .hero { min-height: 680px; }
  .hero-image { top: auto; height: 48%; }
  .hero-image::after { background: rgba(7, 23, 26, 0.24); }
  .hero-image img { object-position: 68% center; }
  .hero-content { padding-top: 132px; padding-bottom: 315px; }
  h1 { font-size: 42px; line-height: 1.07; }
  .hero-copy { font-size: 15px; line-height: 1.58; }
  .hero-actions { gap: 18px; }
  .hero-index { bottom: 19px; width: calc(100% - 40px); font-size: 9px; }
  .section { padding: 82px 0; }
  .split-intro, .pattern-layout, .heartbeat-layout, .privacy-layout, .insight-layout, .about-layout, .access-layout { grid-template-columns: 1fr; gap: 32px; }
  .split-intro .eyebrow, .about-layout .eyebrow { margin-bottom: 0; }
  h2 { margin-bottom: 19px; font-size: 34px; }
  .lead { font-size: 17px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability + .capability { padding-left: 0; }
  .capability:last-child { border-bottom: 0; }
  .capability-number { margin-bottom: 38px; }
  .pattern-media { min-height: 360px; }
  .pattern-layout { gap: 41px; }
  .heartbeat-section { padding: 83px 0; }
  .heartbeat-layout { gap: 42px; }
  .heartbeat-media { padding-bottom: 46px; }
  .media-caption { width: 93%; min-height: 68px; padding: 0 14px; font-size: 9px; }
  .privacy-layout { gap: 22px; }
  .privacy-rule { margin-top: 10px; }
  .insight-layout { gap: 50px; }
  .report-card { min-height: 405px; box-shadow: 7px 8px 0 var(--ink); }
  .report-card-mark { width: 135px; height: 135px; }
  .report-kicker { bottom: 104px; font-size: 25px; }
  .report-card h3 { bottom: 56px; font-size: 51px; }
  .report-access { padding: 82px 0; }
  .access-copy h2 { font-size: 34px; }
  .footer-top { flex-direction: column; gap: 26px; padding-bottom: 52px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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