/* ============================================================
   SNAPSHOT HEALTH — B2B SITE 2026
   Faithful build of Figma: SNAPSHOT B2B SITE 2026
   Design width: 1512px
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'MADE Mellow'; src: url('../fonts/MADE-Mellow-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Mellow'; src: url('../fonts/MADE-Mellow-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Mellow'; src: url('../fonts/MADE-Mellow-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Mellow'; src: url('../fonts/MADE-Mellow-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Tommy'; src: url('../fonts/MADE-TOMMY-Thin.woff2') format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Tommy'; src: url('../fonts/MADE-TOMMY-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Tommy'; src: url('../fonts/MADE-TOMMY.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Tommy'; src: url('../fonts/MADE-TOMMY-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Tommy'; src: url('../fonts/MADE-TOMMY-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'MADE Tommy'; src: url('../fonts/MADE-TOMMY-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('../fonts/PlayfairDisplay-Italic-400.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('../fonts/PlayfairDisplay-Italic-600.woff2') format('woff2'); font-weight: 600; font-style: italic; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --cream: #EFEFDF;
  --yellow: #FCFF3D;
  --pale-yellow: #F6F8B2;
  --charcoal: #2F363A;
  --slate: #4C585D;
  --navy: #263947;
  --navy-2: #2A3942;
  --ink: #030502;
  --red: #E17063;
  --bluegray: #A0BCC8;
  --gray-mid: #81949C;
  --gray-light: #C1C1C1;
  --dark-3: #34444A;
  --serif: 'MADE Mellow', Georgia, serif;
  --sans: 'MADE Tommy', 'Avenir Next', sans-serif;
  --accent-italic: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--charcoal);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1512px; margin: 0 auto; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--yellow); color: var(--charcoal);
  font-family: var(--sans); font-weight: 700;
  font-size: 16px; letter-spacing: .06em;
  padding: 19px 34px; border-radius: 40px;
  border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.btn .arr { width: 11px; height: 11px; border-top: 3px solid var(--charcoal); border-right: 3px solid var(--charcoal); transform: rotate(45deg); flex: none; }

/* ---------- Nav ---------- */
.nav-wrap { position: fixed; top: 40px; left: 0; right: 0; z-index: 90; transition: top .35s ease; }
body.scrolled .nav-wrap { top: 12px; }
.nav { transition: box-shadow .35s ease, background .35s ease; }
body.scrolled .nav { box-shadow: 0 12px 34px rgba(0,0,0,.35); background: #2F363A; }
.nav {
  width: min(1213px, calc(100% - 60px));
  margin: 0 auto; height: 80px;
  background: rgba(47, 54, 58, .92);
  border-radius: 44px;
  display: flex; align-items: center;
  padding: 0 60px 0 60px;
}
.nav .brand { display: flex; align-items: center; gap: 13px; }
.nav .brand img { width: 68px; height: auto; }
.nav .brand .wordmark { font-family: var(--sans); font-size: 27px; letter-spacing: .01em; line-height: 1; white-space: nowrap; }
.nav .brand .wordmark b { color: var(--yellow); font-weight: 800; }
.nav .brand .wordmark .wm2 { color: var(--yellow); font-weight: 300; }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 58px; }
.nav .links a {
  font-family: var(--sans); font-weight: 700; font-size: 13.5px;
  letter-spacing: .08em; color: #fff; text-transform: uppercase;
  transition: color .15s ease;
}
.nav .links a:hover, .nav .links a.active { color: var(--yellow); }

/* ---------- HERO (home) ---------- */
.hero {
  position: relative; height: 875px; overflow: hidden; background: var(--charcoal);
}
.hero video, .hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero .shade { position: absolute; inset: 0; background: rgba(0,0,0,.24); }
.hero .hero-copy { position: absolute; left: 193px; top: 442px; max-width: 1240px; }
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: 112px; line-height: 100px; letter-spacing: .03em;
  color: var(--cream); white-space: nowrap;
}
.hero .sub {
  margin-top: 24px; max-width: 870px;
  font-family: var(--sans); font-weight: 400;
  font-size: 32px; line-height: 44px; color: #fff;
}
.hero .sub b { color: var(--yellow); font-weight: 700; }
.hero .btn { margin-top: 32px; }

/* ---------- Section: Why choose ---------- */
.why { background: var(--charcoal); padding: 66px 0 96px; text-align: center; }
.why h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: 72px; line-height: 68px; letter-spacing: .04em; color: var(--cream);
}
.why h2 .y { color: var(--yellow); }
.why .lede {
  margin: 26px auto 0; max-width: 660px;
  font-family: var(--sans); font-weight: 300;
  font-size: 26px; line-height: 37px; color: var(--cream);
}
.why .cols {
  margin: 84px auto 0; max-width: 1210px;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; align-items: start;
}
.why .cols .sep { width: 1px; height: 220px; background: rgba(239,239,223,.85); justify-self: center; align-self: center; }
.why .col { padding: 0 46px; }
.why .col h3 { font-family: var(--serif); font-weight: 300; font-size: 44px; color: var(--cream); }
.why .col h3 .y { color: var(--yellow); }
.why .col p { margin: 26px auto 0; max-width: 270px; font-size: 20px; line-height: 27px; font-weight: 300; color: var(--cream); }
.why .col p b { font-weight: 700; }
.why .watch { margin-top: 96px; font-family: var(--serif); font-weight: 300; font-size: 40px; color: var(--cream); }

/* Claire video card */
.claire-card {
  position: relative; margin: 34px auto 0;
  width: min(1241px, calc(100% - 40px)); height: 517px;
  border-radius: 24px; overflow: hidden; text-align: left;
  cursor: pointer; background: #b9bdba;
}
.claire-card video.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.claire-card .thumb { position: absolute; left: 25px; top: 25px; width: 138px; }
.claire-card .inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 56px;
}
.play-ring {
  flex: none; width: 90px; height: 90px; border-radius: 50%;
  border: 4px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s ease;
}
.claire-card:hover .play-ring { transform: scale(1.06); }
.play-ring .tri {
  width: 0; height: 0; margin-left: 8px;
  border-top: 16px solid transparent; border-bottom: 16px solid transparent;
  border-left: 26px solid var(--yellow);
}
.claire-card .cap {
  font-family: var(--serif); font-weight: 300;
  font-size: 40px; line-height: 50px; color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

/* ---------- Section: ROI ---------- */
.roi { background: var(--slate); padding: 84px 0 110px; text-align: center; }
.roi h2 { font-family: var(--serif); font-weight: 300; font-size: 72px; line-height: 68px; letter-spacing: .04em; color: var(--cream); }
.roi h2 .y { color: var(--yellow); }
.roi .tag { margin-top: 22px; font-size: 24px; font-weight: 300; letter-spacing: .02em; color: var(--cream); }
.rio-card {
  margin: 56px auto 0; width: min(1243px, calc(100% - 40px)); min-height: 497px;
  background: var(--charcoal); border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 501px 1fr; text-align: left;
}
.rio-card .photo { position: relative; }
.rio-card .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(1.02); }
.rio-card .photo::after { content: ""; position: absolute; inset: 0; background: #7fd0d8; mix-blend-mode: multiply; opacity: .55; }
.rio-card .body { padding: 64px 70px 56px 56px; }
.rio-card h3 { text-align: center; font-family: var(--serif); font-weight: 300; font-size: 42px; color: var(--cream); }
.rio-card h3 b { font-family: var(--serif); font-style: normal; font-weight: 700; color: var(--yellow); letter-spacing: .01em; }
.rio-card ul { margin-top: 40px; }
.rio-card li { position: relative; padding-left: 30px; font-size: 24px; line-height: 30px; font-weight: 400; color: var(--cream); }
.rio-card li + li { margin-top: 33px; }
.rio-card li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.rio-card li b { color: var(--yellow); font-weight: 700; }
.roi .cdc {
  margin: 72px auto 0; max-width: 920px;
  font-family: var(--serif); font-weight: 300;
  font-size: 40px; line-height: 56px; color: var(--cream);
}
.roi .cdc b { font-family: var(--serif); font-style: normal; font-weight: 700; color: var(--yellow); }
.roi .cdc small { font-size: 26px; font-weight: 500; }

/* ---------- Section: Current Awareness Problem (carousel) ---------- */
.awareness-problem { background: var(--navy-2); position: relative; }
.ap-sticky {
  position: sticky; top: 0; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 0;
}
.awareness-problem h2 {
  text-align: center; font-family: var(--serif); font-weight: 300;
  font-size: 72px; letter-spacing: .04em; color: var(--cream);
}
.carousel {
  margin-top: 64px; display: flex; gap: 40px;
  padding: 0 calc((100vw - 875px) / 2) 10px;
  will-change: transform;
}
/* fallback: touch/small screens scroll natively */
.no-scrolljack .awareness-problem { padding: 88px 0 96px; }
.no-scrolljack .ap-sticky { position: static; min-height: 0; display: block; padding: 0; }
.no-scrolljack .carousel {
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.no-scrolljack .carousel::-webkit-scrollbar { display: none; }
.no-scrolljack .stat-card { scroll-snap-align: center; }
.stat-card {
  flex: none; scroll-snap-align: center;
  width: 875px; min-height: 540px;
  background: var(--slate); border-radius: 24px;
  padding: 56px 64px;
}
.stat-card h3 {
  text-align: center; font-family: var(--sans); font-weight: 500;
  font-size: 26px; letter-spacing: .42em; text-indent: .42em; color: var(--cream);
  text-transform: uppercase;
}
.stat-card .row { margin-top: 48px; display: flex; align-items: center; gap: 60px; }
.donut-wrap { position: relative; flex: none; width: 300px; }
.donut-wrap svg { width: 300px; height: 300px; }
.donut-wrap .label {
  position: absolute; top: 50%; left: 58%; transform: translateY(-54%);
  font-family: var(--sans); font-weight: 800; color: var(--cream);
  text-shadow: 0 0 14px rgba(0,0,0,.25);
  line-height: .9; text-align: left;
}
.donut-wrap .label .pct { font-size: 58px; }
.donut-wrap .label .un { font-size: 30px; letter-spacing: .01em; }
.stat-card .pts li { position: relative; padding-left: 22px; font-size: 17px; line-height: 27px; font-weight: 400; color: var(--cream); }
.stat-card .pts li + li { margin-top: 14px; }
.stat-card .pts li::before { content: ''; position: absolute; left: 2px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--cream); opacity: .8; }
.stat-card .pts b { color: var(--red); font-weight: 700; }
.awareness-problem .cta-row { margin-top: 56px; text-align: center; }

/* ---------- Section: Awareness Solution ---------- */
.solution {
  background: linear-gradient(180deg, #182731 0%, #1e3644 55%, #2c4b60 100%);
  padding: 110px 0 96px; text-align: center;
}
.solution h2 { font-family: var(--sans); font-weight: 100; font-size: 72px; line-height: 72px; color: var(--cream); letter-spacing: .01em; }
.solution h2 em { font-family: var(--accent-italic); font-style: italic; font-weight: 400; color: var(--pale-yellow); }
.solution .lede { margin-top: 24px; font-size: 26px; font-weight: 300; color: #fff; letter-spacing: .01em; }
.solution .cards {
  margin: 76px auto 0; width: 1032px; max-width: calc(100% - 40px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px; text-align: left;
}
.sol-card { }
.sol-card .imgbox {
  position: relative; height: 388px; border-radius: 22px; overflow: hidden;
  border: 3px solid var(--cream);
}
.sol-card .imgbox img { width: 100%; height: 100%; object-fit: cover; }
.sol-card .chip {
  position: absolute; left: 0; bottom: 24px;
  background: var(--cream); color: var(--charcoal);
  font-family: var(--sans); font-weight: 400; font-size: 22px;
  padding: 10px 26px 10px 24px; border-radius: 0 26px 26px 0;
}
.sol-card .cap { margin: 46px 8px 0; font-size: 19px; line-height: 26px; font-weight: 400; color: var(--bluegray); max-width: 280px; }

/* ---------- Section: Tracking Success ---------- */
.tracking {
  position: relative; height: 748px; overflow: hidden; background: #2c4b60;
}
.tracking::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 300px;
  background: linear-gradient(180deg, #2c4b60 0%, rgba(44,75,96,.55) 40%, rgba(44,75,96,0) 100%);
  z-index: 1; pointer-events: none;
}
.tracking::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 100px;
  background: linear-gradient(0deg, rgba(3,5,2,.85) 0%, rgba(3,5,2,0) 100%);
  z-index: 1; pointer-events: none;
}
.tracking .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 84%; }
.tracking .inner { position: absolute; inset: 0; z-index: 2; }
.tracking h2 { position: absolute; left: 96px; top: 118px; font-family: var(--sans); font-weight: 100; font-size: 72px; color: var(--cream); }
.tracking h2 em { font-family: var(--accent-italic); font-style: italic; font-weight: 400; color: var(--yellow); }
.tracking p { position: absolute; left: 98px; top: 218px; width: 566px; font-size: 32px; line-height: 41px; font-weight: 400; color: var(--cream); }
.tracking .chart { position: absolute; right: 130px; top: 150px; width: 560px; overflow: visible; }
.tracking .chart text { font-family: var(--sans); font-size: 26px; fill: var(--yellow); font-weight: 400; }

/* ---------- Section: Screening + Awareness ---------- */
.screening { background: var(--ink); padding: 6px 0 120px; }
.screening h2 {
  text-align: center; margin-top: 72px;
  font-family: var(--serif); font-weight: 300; font-size: 64px; color: var(--cream); letter-spacing: .02em;
}
.screening h2 .y { color: var(--yellow); font-family: var(--sans); font-weight: 400; }
.screening .grid {
  margin: 82px auto 0; width: min(1290px, calc(100% - 60px));
  display: grid; grid-template-columns: 608px 1fr; gap: 128px; align-items: start;
}
.screening .vid { border-radius: 6px; overflow: hidden; }
.screening .vid video { width: 100%; height: auto; }
.screening .copy { font-size: 24px; line-height: 30px; font-weight: 400; color: #fff; max-width: 545px; }
.screening .copy ul { margin: 30px 0 0 8px; }
.screening .copy li { position: relative; padding-left: 26px; font-weight: 700; }
.screening .copy li + li { margin-top: 2px; }
.screening .copy li::before { content: ''; position: absolute; left: 6px; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: #fff; }
.screening .copy .after { margin-top: 30px; }
.screening .copy .btn { margin-top: 50px; }

/* ---------- Section: No apps ---------- */
.noapps { position: relative; height: calc(100vw * 953 / 2200); max-height: 760px; overflow: hidden; }
.noapps img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.noapps .tint { position: absolute; inset: 0; background: rgba(23, 48, 75, .55); }
.noapps p {
  position: relative; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 400; font-size: 48px; color: var(--yellow);
  text-shadow: 0 2px 20px rgba(0,10,30,.4);
}

/* ---------- Section: Testimonials ---------- */
.testimonials { background: var(--navy); padding: 96px 0 130px; }
.testimonials h2 { text-align: center; font-family: var(--sans); font-weight: 100; font-size: 64px; color: var(--cream); letter-spacing: .02em; }
.testimonials .cards {
  margin: 74px auto 0; width: min(1280px, calc(100% - 60px));
  display: grid; grid-template-columns: repeat(3, 302px); justify-content: space-between;
}
.t-card { width: 302px; }
.t-card .frame {
  position: relative; border-radius: 10px; overflow: hidden; background: #000;
  cursor: pointer;
}
.t-card video { width: 100%; height: 537px; object-fit: cover; }
.t-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.62) 100%);
  transition: opacity .25s ease; pointer-events: none;
}
.t-card .who {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 16px;
  transition: opacity .25s ease;
}
.t-card .who .nm { font-weight: 400; font-size: 15px; color: #fff; }
.t-card .who .nm em { font-style: normal; font-weight: 700; color: var(--yellow); }
.t-card .who .org { font-weight: 400; font-size: 15px; color: #fff; margin-top: 4px; }
.t-card .playhint {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(0,0,0,.38); border: 2px solid rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .25s ease; pointer-events: none;
}
.t-card .playhint .tri { width: 0; height: 0; margin-left: 5px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid #fff; }
.t-card.playing .playhint { opacity: 0; }
.t-card.playing .shade, .t-card.playing .who { opacity: 0; }
.t-card .quote { margin-top: 34px; font-size: 24px; line-height: 30px; font-weight: 400; color: var(--yellow); }

/* ---------- Section: Low cost (video banner) ---------- */
.lowcost { position: relative; height: 875px; overflow: hidden; background: #111; }
.lowcost video.bg, .lowcost img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); }
.lowcost .tint { position: absolute; inset: 0; background: rgba(0,0,0,.33); }
.lowcost .inner { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 44px; }
.lowcost h2 {
  text-align: center; font-family: var(--serif); font-weight: 300;
  font-size: 70px; line-height: 79px; letter-spacing: .01em; color: var(--yellow);
}
.lowcost .arrows { width: 92px; }

/* ---------- Footer ---------- */
.site-footer { background: #4A555B; padding: 58px 0 46px; }
.site-footer .grid {
  width: min(1280px, calc(100% - 80px)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto auto; gap: 120px; align-items: center;
}
.site-footer .logo { width: 150px; }
.site-footer .fl { text-align: right; }
.site-footer .fl a { display: block; font-weight: 500; font-size: 16px; color: var(--cream); line-height: 1; }
.site-footer .fl a + a { margin-top: 17px; }
.site-footer .fl a:hover { color: var(--yellow); }
.site-footer .right { text-align: right; min-width: 210px; }
.site-footer .right .fs { font-size: 13.5px; font-weight: 500; color: var(--yellow); }
.site-footer .socials { margin-top: 12px; display: flex; gap: 18px; justify-content: flex-end; }
.site-footer .socials a svg { width: 21px; height: 21px; fill: var(--yellow); }
.site-footer .legal { margin-top: 32px; font-size: 11.5px; color: var(--cream); }
.site-footer .legal a { text-decoration: underline; margin-left: 26px; }
.site-footer .copy { margin-top: 10px; font-size: 11px; color: var(--gray-light); }

/* ============================================================
   SUB PAGES (What we test / About)
   ============================================================ */
.subhero { position: relative; height: 600px; overflow: hidden; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.subhero video, .subhero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero .shade { position: absolute; inset: 0; background: rgba(0, 10, 30, .18); }
.subhero h1 {
  position: relative; z-index: 3; width: 100%; padding: 0 24px; margin-top: 44px; text-align: center;
  font-family: var(--serif); font-weight: 300; font-size: 64px; line-height: 74px;
  letter-spacing: .02em; color: var(--cream);
}
.subhero h1 em { font-family: var(--accent-italic); font-style: italic; font-weight: 400; color: var(--yellow); }

/* About block */
.about-block { background: var(--slate); position: relative; min-height: 711px; }
.about-block .photo {
  position: absolute; left: 0; top: 0; bottom: 0; width: 623px;
  object-fit: cover; height: 100%;
}
.about-block .copy { margin-left: 761px; padding: 116px 90px 80px 0; max-width: 100%; }
.about-block h2 { font-family: var(--serif); font-weight: 300; font-size: 52px; color: var(--cream); letter-spacing: .02em; }
.about-block h2 .y { color: var(--yellow); }
.about-block p { margin-top: 56px; max-width: 560px; font-size: 24px; line-height: 38px; font-weight: 400; color: #fff; }
.about-block p b { color: var(--yellow); font-weight: 700; }
.about-block .btn { margin-top: 52px; }

/* Our goal */
.goal { background: var(--navy); position: relative; min-height: 883px; }
.goal .inner { width: min(1280px, calc(100% - 80px)); margin: 0 auto; padding: 150px 0 120px; display: grid; grid-template-columns: 1fr 521px; gap: 140px; }
.goal h2 { font-family: var(--serif); font-weight: 300; font-size: 56px; color: var(--cream); letter-spacing: .02em; }
.goal p { margin-top: 62px; max-width: 480px; font-size: 24px; line-height: 38px; font-weight: 400; color: #fff; }
.goal p b { color: var(--yellow); font-weight: 700; }
.goal img { width: 521px; height: 595px; object-fit: cover; border-radius: 24px; }

/* Contact / form */
.contact { position: relative; min-height: 883px; overflow: hidden; }
.contact img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact .tint { position: absolute; inset: 0; background: rgba(0, 18, 105, .14); }
.contact .inner { position: relative; padding: 88px 0 96px; }
.contact h2 {
  text-align: center; font-family: var(--serif); font-weight: 300;
  font-size: 48px; line-height: 58px; color: var(--cream); letter-spacing: .02em;
  text-shadow: 0 2px 24px rgba(0,20,40,.35);
}
.contact h2 em { font-family: var(--accent-italic); font-style: italic; font-weight: 400; color: var(--yellow); }
.form-card {
  margin: 64px auto 0; width: min(935px, calc(100% - 40px)); min-height: 600px;
  background: rgba(16, 34, 56, .58);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(239,239,223,.14);
  border-radius: 6px;
  padding: 74px 0 64px 58px;
  box-shadow: 0 30px 80px rgba(0, 10, 25, .35);
}
.form-card h3 { font-family: var(--serif); font-weight: 300; font-size: 32px; color: var(--cream); letter-spacing: .02em; }
.form-card form { margin-top: 38px; max-width: 612px; }
.field { position: relative; margin-top: 30px; }
.field input {
  width: 100%; background: transparent; border: none; outline: none;
  border-bottom: 2px solid var(--cream);
  font-family: var(--sans); font-weight: 400; font-size: 18px; color: #fff;
  padding: 10px 2px 12px;
  transition: border-color .2s ease;
}
.field label {
  position: absolute; left: 2px; top: 10px;
  font-size: 18px; font-weight: 400; color: var(--bluegray);
  pointer-events: none; transition: all .18s ease;
}
.field input:focus { border-bottom-color: var(--yellow); }
.field input:focus + label, .field input:not(:placeholder-shown) + label {
  top: -14px; font-size: 12px; letter-spacing: .06em; color: var(--yellow);
}
.form-card .send-row { margin-top: 46px; display: flex; align-items: center; gap: 26px; }
.form-card .send-row .btn { font-size: 14px; padding: 13px 26px; }
.form-card .send-row .note { font-family: var(--accent-italic); font-style: italic; font-size: 17px; color: var(--cream); }

/* ============================================================
   Animations
   ============================================================ */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.rv.in { opacity: 1; transform: none; }

/* hero entrance */
.hero h1, .hero .sub, .hero .btn { opacity: 0; transform: translateY(36px); }
.hero.loaded h1 { animation: rise .95s cubic-bezier(.22,.61,.36,1) .15s forwards; }
.hero.loaded .sub { animation: rise .95s cubic-bezier(.22,.61,.36,1) .38s forwards; }
.hero.loaded .btn { animation: rise .95s cubic-bezier(.22,.61,.36,1) .58s forwards; }
.hero .nav-wrap { opacity: 0; transform: translateY(-24px); }
.hero.loaded .nav-wrap, .subhero.loaded .nav-wrap { animation: drop .8s cubic-bezier(.22,.61,.36,1) .1s forwards; }
.subhero .nav-wrap { opacity: 0; transform: translateY(-24px); }
.subhero h1 { opacity: 0; transform: translateY(30px); }
.subhero.loaded h1 { animation: rise .95s cubic-bezier(.22,.61,.36,1) .3s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes drop { to { opacity: 1; transform: none; } }

/* buttons: arrow nudge */
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: rotate(45deg) translate(3px, -3px); }

/* solution cards: lift + photo zoom */
.sol-card .imgbox { transition: transform .35s ease, box-shadow .35s ease; }
.sol-card .imgbox img { transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.sol-card:hover .imgbox { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.35); }
.sol-card:hover .imgbox img { transform: scale(1.05); }

/* claire play ring pulse */
.play-ring { position: relative; }
.play-ring::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 4px solid rgba(252,255,61,.65); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 70% { transform: scale(1.55); opacity: 0; } 100% { opacity: 0; } }

/* low cost arrows bob */
.lowcost .arrows { animation: bob 2.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateX(0); } 50% { transform: translateX(14px); } }

/* donut draw */
.donut-arc { transition: stroke-dasharray 1.3s cubic-bezier(.22,.61,.36,1) .15s; }

/* tracking chart draw */
.tracking .chart polyline { stroke-dasharray: 700; stroke-dashoffset: 700; transition: stroke-dashoffset 1.6s ease .2s; }
.tracking .chart circle { transform-box: fill-box; transform-origin: center; transform: scale(0); transition: transform .45s cubic-bezier(.34,1.56,.64,1); }
.tracking .chart text { opacity: 0; transition: opacity .5s ease; }
.tracking.drawn .chart polyline { stroke-dashoffset: 0; }
.tracking.drawn .chart circle { transform: scale(1); }
.tracking.drawn .chart text { opacity: 1; }
.tracking.drawn .chart circle:nth-of-type(1) { transition-delay: .35s; }
.tracking.drawn .chart circle:nth-of-type(2) { transition-delay: .75s; }
.tracking.drawn .chart circle:nth-of-type(3) { transition-delay: 1.1s; }
.tracking.drawn .chart circle:nth-of-type(4) { transition-delay: 1.5s; }
.tracking.drawn .chart text:nth-of-type(1) { transition-delay: .45s; }
.tracking.drawn .chart text:nth-of-type(2) { transition-delay: .85s; }
.tracking.drawn .chart text:nth-of-type(3) { transition-delay: 1.2s; }
.tracking.drawn .chart text:nth-of-type(4) { transition-delay: 1.6s; }

/* stat cards drift in slightly as they enter */
.stat-card { transition: transform .5s ease, box-shadow .5s ease; }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.3); }

@media (prefers-reduced-motion: reduce) {
  .rv, .hero h1, .hero .sub, .hero .btn, .hero .nav-wrap, .subhero .nav-wrap, .subhero h1 { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .play-ring::after, .lowcost .arrows { animation: none !important; }
}


/* ============================================================
   Responsive
   ============================================================ */
.nav-toggle { display: none; }

@media (max-width: 1280px) {
  .hero h1 { font-size: 84px; line-height: 80px; }
  .hero .hero-copy { left: 6vw; right: 6vw; }
  .why .cols, .solution .cards { max-width: calc(100% - 48px); }
  .solution .cards { width: auto; gap: 40px; }
  .rio-card { width: calc(100% - 40px); }
  .screening .grid { grid-template-columns: 1fr; gap: 60px; }
  .screening .vid { max-width: 608px; }
  .goal .inner { gap: 60px; }
  .about-block .copy { margin-left: 660px; padding-right: 40px; }
  .site-footer .grid { gap: 60px; }
}

/* ---------- Nav collapses to hamburger ---------- */
@media (max-width: 1020px) {
  .nav-wrap { top: 14px; }
  body.scrolled .nav-wrap { top: 8px; }
  .nav { position: relative; height: 64px; padding: 0 10px 0 22px; border-radius: 36px; }
  .nav .brand img { width: 46px; }
  .nav .brand .wordmark { font-size: 19px; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 48px; height: 48px; padding: 12px;
    background: none; border: none; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2.5px; width: 24px; background: var(--yellow); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav .links {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    margin: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(47, 54, 58, .97); border-radius: 22px;
    padding: 10px 0; overflow: hidden;
    opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 18px 44px rgba(0,0,0,.4);
  }
  .nav.open .links { opacity: 1; transform: none; pointer-events: auto; }
  .nav .links a { padding: 15px 28px; font-size: 13px; }
}

/* ---------- Phones ---------- */
@media (max-width: 760px) {
  /* hero */
  .hero { height: auto; min-height: 92svh; }
  .hero .hero-copy { position: relative; inset: auto; left: auto; top: auto; padding: 190px 6vw 76px; max-width: none; }
  .hero h1 { font-size: 49px; line-height: 52px; white-space: normal; }
  .hero .sub { font-size: 21px; line-height: 31px; margin-top: 18px; max-width: 480px; }
  .hero .btn { margin-top: 28px; }
  .btn { font-size: 14px; padding: 16px 26px; }

  /* why choose */
  .why { padding: 56px 0 72px; }
  .why h2 { font-size: 42px; line-height: 46px; padding: 0 20px; }
  .why .lede { font-size: 20px; line-height: 29px; margin-top: 18px; padding: 0 28px; }
  .why .cols { grid-template-columns: 1fr; margin-top: 48px; }
  .why .cols .sep { width: 120px; height: 1px; margin: 36px auto; }
  .why .col h3 { font-size: 34px; }
  .why .col p { font-size: 18px; line-height: 25px; }
  .why .watch { margin-top: 64px; font-size: 30px; }

  /* claire card: hug content, no dead space */
  .claire-card { height: auto; border-radius: 18px; padding: 18px 24px 34px; }
  .claire-card .thumb { position: relative; left: auto; top: auto; z-index: 2; width: 96px; margin-bottom: 24px; }
  .claire-card .inner { position: relative; inset: auto; z-index: 2; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 24px; }
  .claire-card .cap { font-size: 27px; line-height: 35px; }
  .play-ring { width: 72px; height: 72px; border-width: 3px; }
  .play-ring .tri { border-top-width: 12px; border-bottom-width: 12px; border-left-width: 20px; margin-left: 6px; }

  /* roi */
  .roi { padding: 64px 0 80px; }
  .roi h2 { font-size: 40px; line-height: 44px; padding: 0 20px; }
  .roi .tag { font-size: 18px; padding: 0 24px; }
  .rio-card { grid-template-columns: 1fr; min-height: 0; margin-top: 40px; }
  .rio-card .photo { height: 240px; }
  .rio-card .body { padding: 40px 30px 44px; }
  .rio-card h3 { font-size: 34px; }
  .rio-card ul { margin-top: 28px; }
  .rio-card li { font-size: 19px; line-height: 26px; }
  .rio-card li + li { margin-top: 22px; }
  .roi .cdc { font-size: 27px; line-height: 40px; margin-top: 52px; padding: 0 26px; }
  .roi .cdc br { display: none; }
  .roi .cdc small { font-size: 19px; }

  /* donut carousel */
  .awareness-problem h2 { font-size: 40px; line-height: 44px; padding: 0 24px; }
  .ap-sticky { min-height: 100svh; padding: 28px 0; }
  .carousel { margin-top: 36px; gap: 18px; padding: 0 7vw 10px; }
  .stat-card { width: 86vw; min-height: 0; padding: 30px 24px 36px; border-radius: 18px; }
  .stat-card h3 { font-size: 17px; letter-spacing: .28em; text-indent: .28em; }
  .stat-card .row { margin-top: 28px; flex-direction: column; gap: 22px; }
  .donut-wrap { width: 210px; }
  .donut-wrap svg { width: 210px; height: 210px; }
  .donut-wrap .label { top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
  .donut-wrap .label .pct { font-size: 40px; }
  .donut-wrap .label .un { font-size: 20px; }
  .stat-card .pts li { font-size: 15.5px; line-height: 23px; }
  .awareness-problem .cta-row { margin-top: 40px; }

  /* solution */
  .solution { padding: 72px 0 64px; }
  .solution h2 { font-size: 42px; line-height: 46px; }
  .solution .lede { font-size: 19px; padding: 0 26px; }
  .solution .cards { grid-template-columns: 1fr; gap: 52px; margin-top: 52px; }
  .sol-card { max-width: 340px; margin: 0 auto; }
  .sol-card .imgbox { height: 356px; }
  .sol-card .cap { margin-top: 22px; max-width: none; }

  /* tracking — flow layout on mobile */
  .tracking { height: auto; }
  .tracking .inner { position: relative; inset: auto; padding: 64px 7vw 300px; }
  .tracking h2 { position: static; font-size: 46px; }
  .tracking p { position: static; width: auto; max-width: 430px; margin-top: 18px; font-size: 22px; line-height: 31px; }
  .tracking .chart { position: absolute; left: auto; right: 4vw; top: auto; bottom: 190px; width: 62vw; }
  .tracking .chart text { font-size: 20px; }

  /* screening */
  .screening h2 { margin-top: 56px; font-size: 34px; line-height: 42px; padding: 0 20px; }
  .screening .grid { margin-top: 48px; width: calc(100% - 48px); gap: 44px; }
  .screening .copy { font-size: 20px; line-height: 27px; }
  .screening .copy .btn { margin-top: 36px; }

  /* no apps: stacked — text on navy, image below (keeps words off her face) */
  .noapps { height: auto; max-height: none; background: var(--navy); display: flex; flex-direction: column; }
  .noapps .tint { display: none; }
  .noapps img.bg { position: static; order: 2; width: 100%; height: 340px; object-fit: cover; object-position: 58% 40%; }
  .noapps p { position: static; order: 1; height: auto; display: block; text-align: center; padding: 58px 8vw 46px; font-size: 27px; line-height: 38px; text-shadow: none; }

  /* testimonials */
  .testimonials { padding: 68px 0 84px; }
  .testimonials h2 { font-size: 40px; }
  .testimonials .cards { grid-template-columns: 302px; justify-content: center; gap: 56px; margin-top: 48px; }
  .t-card .quote { font-size: 21px; line-height: 27px; margin-top: 22px; }

  /* low cost */
  .lowcost { height: 560px !important; }
  .lowcost h2 { font-size: 38px; line-height: 46px; padding: 0 18px; }
  .lowcost .arrows { width: 64px; }

  /* footer */
  .site-footer { padding: 46px 0 40px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 38px; width: calc(100% - 60px); }
  .site-footer .logo { width: 120px; }
  .site-footer .fl { text-align: left; }
  .site-footer .fl a + a { margin-top: 15px; }
  .site-footer .right { text-align: left; }
  .site-footer .socials { justify-content: flex-start; }
  .site-footer .legal { margin-top: 24px; }
  .site-footer .legal a { margin-left: 0; margin-right: 26px; }

  /* subpages */
  .subhero h1 { padding: 0 18px; }
  .about-block { min-height: 0; }
  .about-block .photo { position: relative; width: 100%; height: 380px; }
  .about-block .copy { margin-left: 0; padding: 52px 7vw 64px; }
  .about-block h2 { font-size: 36px; }
  .about-block p { margin-top: 28px; font-size: 20px; line-height: 31px; }
  .about-block .btn { margin-top: 34px; }
  .goal { min-height: 0; }
  .goal .inner { grid-template-columns: 1fr; padding: 72px 0 72px; width: calc(100% - 14vw); gap: 44px; }
  .goal h2 { font-size: 38px; }
  .goal p { margin-top: 24px; font-size: 20px; line-height: 31px; }
  .goal img { width: 100%; height: auto; aspect-ratio: 521/595; }
  .contact { min-height: 0; }
  .contact .inner { padding: 64px 0 72px; }
  .contact h2 { font-size: 32px; line-height: 42px; padding: 0 16px; }
  .form-card { margin-top: 40px; width: calc(100% - 40px); min-height: 0; padding: 44px 26px 44px; }
  .form-card h3 { font-size: 26px; }
  .form-card .send-row { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 38px; }
}


@media (max-width: 760px) and (max-height: 720px) {
  .awareness-problem h2 { font-size: 32px; line-height: 36px; }
  .carousel { margin-top: 22px; }
  .stat-card { padding: 22px 20px 26px; }
  .donut-wrap { width: 160px; }
  .donut-wrap svg { width: 160px; height: 160px; }
  .donut-wrap .label .pct { font-size: 30px; }
  .donut-wrap .label .un { font-size: 16px; }
  .stat-card .pts li { font-size: 14px; line-height: 20px; }
  .awareness-problem .cta-row { margin-top: 24px; }
}


/* ---------- Video modal ---------- */
.video-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.video-modal.open { display: block; }
.video-modal .vm-back { position: absolute; inset: 0; background: rgba(3,5,2,.82); }
.video-modal .vm-box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(1100px, 92vw);
  background: #000; border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.video-modal video { width: 100%; height: auto; display: block; }
.video-modal .vm-close {
  position: absolute; top: 6px; right: 10px; z-index: 2;
  background: none; border: none; color: #fff; font-size: 34px; line-height: 1;
  cursor: pointer; opacity: .8;
}
.video-modal .vm-close:hover { opacity: 1; }

/* ---------- Form thank-you ---------- */
.form-card .thanks {
  display: none; margin-top: 48px;
  font-family: var(--serif); font-weight: 300; font-size: 30px; line-height: 42px;
  color: var(--cream);
}
.form-card.sent form { display: none; }
.form-card.sent .thanks { display: block; }

/* ---------- Legal pages ---------- */
.legal-page { background: var(--charcoal); min-height: 60vh; padding: 200px 0 110px; }
.legal-page .wrap { width: min(860px, calc(100% - 48px)); margin: 0 auto; }
.legal-page h1 { font-family: var(--serif); font-weight: 300; font-size: 56px; color: var(--cream); }
.legal-page .updated { margin-top: 14px; font-size: 14px; color: var(--gray-light); }
.legal-page .body { margin-top: 44px; font-size: 18px; line-height: 30px; font-weight: 300; color: var(--cream); }
.legal-page .body h2 { font-family: var(--serif); font-weight: 300; font-size: 30px; margin: 40px 0 12px; }
.legal-page .body p + p { margin-top: 16px; }
.legal-page .notice {
  margin-top: 44px; padding: 22px 26px; border: 1px solid rgba(252,255,61,.4); border-radius: 12px;
  color: var(--cream); font-size: 17px; line-height: 27px;
}


/* ============================================================
   Tablet band (761–1020) + donut-ride header clearance fixes
   ============================================================ */
@media (max-width: 1280px) {
  .testimonials .cards { grid-template-columns: repeat(auto-fit, 302px); gap: 44px; justify-content: center; width: min(1280px, calc(100% - 48px)); }
}

@media (max-width: 1020px) {
  /* hero */
  .hero h1 { font-size: 64px; line-height: 62px; }
  .hero .sub { font-size: 26px; line-height: 36px; max-width: 640px; }

  /* why choose: stack */
  .why .cols { grid-template-columns: 1fr; }
  .why .cols .sep { width: 120px; height: 1px; margin: 40px auto; }
  .why .col + .col { margin-top: 0; }

  /* awareness solution cards: center what fits */
  .solution .cards { grid-template-columns: repeat(auto-fit, 296px); justify-content: center; gap: 44px; width: auto; }

  /* donut cards: never wider than the screen */
  .stat-card { width: min(875px, 88vw); padding: 44px 46px; }
  .carousel { padding-left: calc((100vw - min(875px, 88vw)) / 2); padding-right: calc((100vw - min(875px, 88vw)) / 2); }
  .donut-wrap { width: 250px; }
  .donut-wrap svg { width: 250px; height: 250px; }
  .donut-wrap .label .pct { font-size: 46px; }
  .donut-wrap .label .un { font-size: 24px; }
  .stat-card .row { gap: 40px; }

  /* tracking: flow layout instead of fixed coordinates */
  .tracking { height: auto; }
  .tracking .inner { position: relative; inset: auto; padding: 64px 7vw 320px; }
  .tracking h2 { position: static; }
  .tracking p { position: static; width: auto; max-width: 520px; margin-top: 18px; }
  .tracking .chart { position: absolute; left: auto; right: 6vw; top: auto; bottom: 100px; width: min(56vw, 500px); }

  /* about / goal: stack */
  .about-block { min-height: 0; }
  .about-block .photo { position: relative; width: 100%; height: 460px; }
  .about-block .copy { margin-left: 0; padding: 60px 7vw 70px; }
  .goal { min-height: 0; }
  .goal .inner { grid-template-columns: 1fr; padding: 80px 0; width: calc(100% - 14vw); gap: 48px; }
  .goal img { width: min(521px, 100%); height: auto; aspect-ratio: 521/595; }
}

@media (max-width: 760px) {
  /* clear the pinned header during the donut ride */
  .ap-sticky { padding: 92px 0 14px; justify-content: flex-start; }
  .awareness-problem h2 { font-size: 34px; line-height: 40px; }
  .carousel { margin-top: 26px; }
  .awareness-problem .cta-row { margin-top: 26px; }
  .tracking .inner { padding: 64px 7vw 420px; }
  /* image stops above the chart band so the sunset stays visible */
  .tracking .bg { height: calc(100% - 225px); object-position: 50% 80%; }
  .tracking .chart { left: 4vw; right: 16vw; width: auto; bottom: 34px; }
  .tracking::after { height: 330px; background: linear-gradient(0deg, #030502 0%, #030502 70%, rgba(3,5,2,0) 100%); }
}

@media (max-width: 760px) and (max-height: 740px) {
  .ap-sticky { padding-top: 84px; }
  .awareness-problem h2 { font-size: 27px; line-height: 32px; }
  .carousel { margin-top: 16px; }
  .stat-card { padding: 20px 18px 24px; }
  .stat-card h3 { font-size: 15px; }
  .stat-card .row { margin-top: 18px; gap: 16px; }
  .donut-wrap { width: 148px; }
  .donut-wrap svg { width: 148px; height: 148px; }
  .donut-wrap .label .pct { font-size: 27px; }
  .donut-wrap .label .un { font-size: 15px; }
  .stat-card .pts li { font-size: 13.5px; line-height: 19px; }
  .stat-card .pts li + li { margin-top: 9px; }
  .awareness-problem .cta-row { margin-top: 16px; }
  .awareness-problem .cta-row .btn { font-size: 12.5px; padding: 12px 22px; }
}


/* ============================================================
   WHAT WE TEST page (rebuilt July 27)
   ============================================================ */
.wwt-hero h1 em { font-family: var(--accent-italic); font-style: italic; font-weight: 400; color: var(--yellow); }

/* Everything / cells */
.wwt-cells { position: relative; min-height: 540px; overflow: hidden; background: #8DA3AC; display: flex; align-items: center; }
.wwt-cells .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wwt-cells .copy { position: relative; z-index: 2; margin-left: 52%; max-width: 560px; padding: 90px 40px 90px 0; }
.wwt-cells .copy p { font-family: var(--sans); font-weight: 300; font-size: 30px; line-height: 56px; color: #fff; text-shadow: 0 1px 14px rgba(20,40,50,.25); }
.wwt-cells .copy b { font-family: var(--serif); font-weight: 700; color: var(--yellow); }

/* Bio-markers */
.wwt-bio { background: #333B47; display: grid; grid-template-columns: 1fr 603px; align-items: stretch; }
.wwt-bio .copy { padding: 120px 60px 110px 120px; max-width: 700px; }
.wwt-bio h2 { font-family: var(--sans); font-weight: 400; font-size: 29px; line-height: 47px; color: var(--cream); max-width: 560px; }
.wwt-bio h2 b { font-family: var(--serif); font-weight: 700; color: var(--yellow); letter-spacing: .02em; }
.wwt-bio ul { margin-top: 36px; }
.wwt-bio li { font-family: var(--sans); font-weight: 300; font-size: 22px; line-height: 40px; color: var(--cream); }
.wwt-bio .btn { margin-top: 44px; font-size: 14px; padding: 15px 28px; }
.wwt-bio .photo { width: 100%; height: 100%; object-fit: cover; }

/* Mental health */
.wwt-mental { background: #2E4156; display: grid; grid-template-columns: 583px 1fr; align-items: center; }
.wwt-mental .photo { width: 100%; height: 100%; object-fit: cover; }
.wwt-mental .copy { padding: 100px 100px 100px 90px; max-width: 760px; }
.wwt-mental .copy p { font-family: var(--sans); font-weight: 400; font-size: 26px; line-height: 40px; color: #fff; }
.wwt-mental .copy p b { font-family: var(--serif); font-weight: 700; color: var(--yellow); }
.wwt-mental .screen-for { margin-top: 52px; }
.wwt-mental ul { margin-top: 10px; }
.wwt-mental li { position: relative; padding-left: 28px; font-family: var(--sans); font-weight: 300; font-size: 24px; line-height: 40px; color: #fff; }
.wwt-mental li::before { content: ''; position: absolute; left: 8px; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: .85; }

/* Boost / b&w closing */
.wwt-boost { position: relative; min-height: 800px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.wwt-boost .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wwt-boost .inner { position: relative; z-index: 2; text-align: center; padding: 80px 24px; }
.wwt-boost .arrows { width: 86px; margin: 0 auto 34px; }
.wwt-boost p { font-family: var(--sans); font-weight: 400; font-size: 32px; line-height: 46px; color: #fff; max-width: 640px; margin: 0 auto; text-shadow: 0 2px 18px rgba(0,10,20,.35); }
.wwt-boost p b { font-family: var(--serif); font-weight: 700; color: var(--yellow); }
.wwt-boost .plus { color: var(--yellow); }
.wwt-boost .btn { margin-top: 42px; font-size: 14px; padding: 15px 30px; }

/* responsive */
@media (max-width: 1020px) {
  .wwt-cells .copy { margin-left: 44%; padding-right: 30px; }
  .wwt-cells .copy p { font-size: 25px; line-height: 44px; }
  .wwt-bio { grid-template-columns: 1fr 44%; }
  .wwt-bio .copy { padding: 80px 40px 80px 7vw; }
  .wwt-mental { grid-template-columns: 44% 1fr; }
  .wwt-mental .copy { padding: 70px 7vw 70px 50px; }
}
@media (max-width: 760px) {
  .wwt-cells { min-height: 0; }
  .wwt-cells .copy { margin: 0; padding: 210px 8vw 64px; max-width: none; }
  .wwt-cells .copy p { font-size: 22px; line-height: 36px; }
  .wwt-cells .bg { object-position: 18% 50%; }
  .wwt-bio { grid-template-columns: 1fr; }
  .wwt-bio .copy { padding: 56px 8vw 56px; }
  .wwt-bio h2 { font-size: 24px; line-height: 38px; }
  .wwt-bio li { font-size: 19px; line-height: 36px; }
  .wwt-bio .photo { height: 400px; order: -1; }
  .wwt-mental { grid-template-columns: 1fr; }
  .wwt-mental .photo { height: 400px; }
  .wwt-mental .copy { padding: 52px 8vw 60px; }
  .wwt-mental .copy p { font-size: 21px; line-height: 33px; }
  .wwt-mental li { font-size: 20px; line-height: 36px; }
  .wwt-boost { min-height: 620px; }
  .wwt-boost p { font-size: 24px; line-height: 36px; }
}


/* ---------- Sub-page hero: the background video is a wide 2.52:1 cinematic frame,
     so shorten the hero on smaller screens instead of over-cropping it ---------- */
@media (max-width: 1020px) {
  .subhero { height: 460px; }
  .subhero h1 { margin-top: 34px; font-size: 52px; line-height: 62px; }
}
@media (max-width: 760px) {
  .subhero { height: 360px; }
  .subhero video.bg, .subhero img.bg { object-position: 55% 50%; }
  .subhero h1 { margin-top: 26px; font-size: 34px; line-height: 44px; }
}
