:root {
  --navy-950: #03101f;
  --navy-900: #061a33;
  --navy-800: #0b2d52;
  --blue-500: #2289cf;
  --cyan-400: #23c4df;
  --green-400: #54d69b;
  --amber-400: #ffba55;
  --red-400: #ff6d65;
  --white: #f7fbff;
  --mist: #d9e6f2;
  --ink: #071426;
  --shadow: 0 28px 80px rgba(0, 9, 24, 0.34);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(170px, 0.78fr) auto minmax(500px, 1.22fr);
  align-items: center;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(2, 15, 30, 0.78), rgba(2, 15, 30, 0.28));
  backdrop-filter: blur(18px) saturate(130%);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease;
}

.site-header.is-light {
  color: var(--ink);
  border-color: rgba(11, 45, 82, 0.13);
  background: rgba(246, 251, 255, 0.85);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo-frame {
  position: relative;
  width: 150px;
  height: 70px;
  display: block;
  overflow: hidden;
  background: transparent;
}

.brand-logo {
  position: absolute;
  top: 0;
  left: 4px;
  width: 142px;
  height: 142px;
  display: block;
  object-fit: contain;
  transform: translateY(-31px);
}

.brand-logo--white {
  filter: brightness(0) invert(1);
}

.brand-logo--color {
  clip-path: inset(26% 33% 50% 39%);
}

.site-header.is-light .brand-logo--white {
  opacity: 0;
}

.site-header.is-light .brand-logo--color {
  clip-path: inset(0);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
  transform: translateX(-28px);
}

.nav a {
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-current {
  opacity: 1;
}

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

.mobile-header-actions,
.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.mobile-menu-open {
  overflow: hidden;
}

.header-cta,
.language-toggle {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: inherit;
  font-size: 14px;
  font-family: inherit;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.09);
  white-space: nowrap;
}

button.header-cta {
  cursor: default;
}

button.header-cta[data-subscription-trigger] {
  cursor: pointer;
}

.header-cta--subscription {
  position: relative;
  color: #dffbef;
  border-color: rgba(111, 229, 187, 0.42);
  background: linear-gradient(135deg, rgba(111, 229, 187, 0.2), rgba(84, 214, 155, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(54, 188, 143, 0.08);
}

.header-cta__status {
  position: absolute;
  top: -10px;
  right: 8px;
  padding: 2px 6px;
  border: 1px solid rgba(132, 238, 200, 0.42);
  border-radius: 999px;
  color: #eafff7;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 91, 70, 0.9);
  box-shadow: 0 5px 14px rgba(0, 15, 35, 0.22);
  pointer-events: none;
}

.header-cta,
.language-toggle {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.header-cta--subscription:hover,
.header-cta--subscription:focus-visible {
  background: linear-gradient(135deg, rgba(111, 229, 187, 0.27), rgba(84, 214, 155, 0.15));
}

.language-toggle {
  min-width: 46px;
  cursor: pointer;
  font-family: inherit;
}

.site-header.is-light .header-cta,
.site-header.is-light .language-toggle,
.site-header.is-light .mobile-menu-toggle {
  border-color: rgba(7, 20, 38, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-light .header-cta--subscription {
  color: #0b5e46;
  border-color: rgba(25, 151, 109, 0.28);
  background: rgba(123, 229, 190, 0.2);
}

.site-header.is-light .header-cta__status {
  color: #fff;
  border-color: rgba(10, 112, 78, 0.22);
  background: rgba(10, 112, 78, 0.88);
}

.story {
  position: relative;
  height: 300vh;
}

.story--hero {
  height: 320vh;
}

.story--delay {
  height: 420vh;
}

.story--platform {
  height: 230vh;
  background: #eef5fa;
}

.story--radiation {
  height: 380vh;
}

.story--solar-map {
  height: 480vh;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
}

@supports (height: 100svh) {
  .story-sticky {
    height: 100svh;
  }
}

.media-stack,
.story-video,
.media-shade,
.media-grain,
.thermal-wash {
  position: absolute;
  inset: 0;
}

.media-stack {
  z-index: -2;
  overflow: hidden;
  background: var(--navy-950);
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.92) contrast(1.03);
  backface-visibility: hidden;
  will-change: opacity;
}

.story--hero .story-video {
  transform: scale(1.015);
}

.story--hero .story-video[data-weather] {
  object-position: 50% 50%;
  filter: saturate(1.02) contrast(1.025);
}

.story--produce .story-video {
  filter: saturate(0.86) brightness(0.8) contrast(1.08);
}

.story--radiation .story-video {
  transform: translateY(4%) scale(1.18);
  transform-origin: 62% 48%;
  filter: saturate(0.96) brightness(0.86) contrast(1.04);
}

.story--solar-map .story-video.radiation-close-image {
  object-position: 50% 60%;
  transform: scale(1);
  transform-origin: center;
  filter: saturate(0.94) brightness(0.8) contrast(1.06);
}

.story--solar-map .story-video {
  object-position: 50% center;
  filter: saturate(0.96) brightness(0.8) contrast(1.05);
}

.media-shade {
  background:
    linear-gradient(90deg, rgba(2, 15, 30, 0.92) 0%, rgba(2, 15, 30, 0.48) 42%, rgba(2, 15, 30, 0.1) 72%),
    linear-gradient(0deg, rgba(2, 15, 30, 0.72), transparent 42%);
}

.media-shade--left {
  background: linear-gradient(90deg, rgba(2, 12, 25, 0.92), rgba(2, 12, 25, 0.44) 43%, rgba(2, 12, 25, 0.18) 68%, rgba(2, 12, 25, 0.46));
}

.media-shade--right {
  background: linear-gradient(270deg, rgba(2, 12, 25, 0.92), rgba(2, 12, 25, 0.42) 46%, rgba(2, 12, 25, 0.18) 72%, rgba(2, 12, 25, 0.42));
}

.media-shade--map {
  background:
    linear-gradient(90deg, rgba(2, 12, 25, 0.94), rgba(2, 12, 25, 0.7) 38%, rgba(2, 12, 25, 0.18) 72%),
    linear-gradient(0deg, rgba(2, 12, 25, 0.7), transparent 45%);
}

.thermal-wash {
  pointer-events: none;
  opacity: calc(var(--progress, 0) * 0.32);
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 102, 67, 0.36), transparent 32%),
    linear-gradient(90deg, transparent 36%, rgba(39, 207, 223, 0.12), rgba(255, 129, 68, 0.2));
  mix-blend-mode: screen;
}

.media-grain {
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-copy,
.chapter-copy,
.chapter-note,
.evidence-card,
.platform-heading,
.platform-note {
  position: absolute;
  z-index: 2;
  will-change: transform, opacity;
}

.hero-copy {
  left: clamp(24px, 8vw, 140px);
  top: 54%;
  width: min(690px, 70vw);
  transform: translateY(-47%);
}

.eyebrow,
.chapter-index {
  margin: 0 0 18px;
  color: #91dffe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5.1vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(236, 246, 255, 0.8);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

.hero-model {
  max-width: 650px;
  margin: 12px 0 0;
  color: #9aebd1;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 720;
  line-height: 1.5;
}

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

.hero-actions--center {
  justify-content: center;
}

.button {
  border: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  color: #061c2a;
  background: linear-gradient(135deg, #82f0ce, #45cfa7);
  box-shadow: 0 14px 38px rgba(48, 208, 162, 0.23);
}

.button--glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(140%);
}

.hero-benefit-card {
  position: absolute;
  z-index: 4;
  right: clamp(220px, 16vw, 310px);
  bottom: 14vh;
  width: min(470px, 38vw);
  min-height: 318px;
  padding: 30px 58px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.985);
  background: linear-gradient(135deg, rgba(7, 31, 55, 0.78), rgba(3, 16, 31, 0.58));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(140%);
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
}

.hero-benefit-card.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-benefit-card[hidden] {
  display: none;
}

.hero-benefit-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.018em;
}

.hero-benefit-card article > p:last-child {
  margin: 20px 0 0;
  color: rgba(240, 248, 255, 0.8);
  font-size: 16px;
  line-height: 1.65;
}

.hero-benefit-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.hero-benefit-close:hover,
.hero-benefit-close:focus-visible {
  transform: rotate(5deg) scale(1.05);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  width: min(680px, 70vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof li {
  padding: 18px 20px 0 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.hero-proof b,
.evidence-card li b,
.solar-evidence-grid i {
  font: inherit;
  font-style: normal;
}

.hero-proof span {
  display: block;
  margin-bottom: 8px;
  color: #7ddcc4;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.chapter-note {
  right: clamp(28px, 9vw, 160px);
  bottom: 17vh;
  width: min(510px, 40vw);
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(3, 16, 31, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(130%);
}

.chapter-note h2 {
  margin: 0;
  font-size: clamp(31px, 3.7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.chapter-note > p:last-child {
  margin: 22px 0 0;
  color: rgba(240, 248, 255, 0.78);
  font-size: 16px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 64px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.chapter-copy {
  top: 50%;
  left: clamp(28px, 8vw, 140px);
  width: min(570px, 43vw);
  transform: translateY(-48%);
}

.chapter-copy--right {
  right: clamp(28px, 8vw, 140px);
  left: auto;
}

@media (min-width: 961px) {
  #temperature .chapter-copy--right {
    right: clamp(230px, 13vw, 270px);
    width: min(540px, 37vw);
  }

  #temperature .chapter-copy--right > p:not(.chapter-index) {
    max-width: 500px;
  }
}

.chapter-index {
  color: #8fd8f9;
}

.chapter-copy h2 {
  margin: 0;
  font-size: clamp(37px, 4.95vw, 68px);
  line-height: 0.99;
  letter-spacing: -0.022em;
}

.chapter-copy > p:not(.chapter-index) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(238, 247, 255, 0.78);
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.65;
}

.glass-metric,
.evidence-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(140%);
}

.timeline-card {
  margin-top: 34px;
  padding: 22px;
  border-radius: 24px;
}

.timeline-card > div:first-child,
.timeline-card > div:last-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.timeline-card span,
.temperature-copy span {
  color: rgba(238, 247, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.timeline-card strong {
  font-size: 16px;
}

.timeline-card .risk {
  color: #ffc271;
}

.timeline-track {
  height: 7px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.timeline-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #51d8aa, #ffc05e, #ff7067);
  box-shadow: 0 0 18px rgba(255, 174, 72, 0.44);
}

.evidence-card {
  right: clamp(28px, 8vw, 140px);
  bottom: 12vh;
  width: min(500px, 42vw);
  padding: 30px;
  border-radius: 28px;
}

.evidence-card--left {
  right: auto;
  left: clamp(28px, 8vw, 140px);
}

.evidence-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.014em;
}

.evidence-card ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  color: rgba(245, 250, 255, 0.78);
}

.evidence-card li span {
  color: #78e0c2;
  font-size: 12px;
  font-weight: 800;
}

.radiation-statement {
  position: absolute;
  z-index: 3;
  right: 7vw;
  left: 7vw;
  bottom: 8vh;
  width: auto;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(3, 18, 36, 0.72), rgba(10, 28, 50, 0.5));
  box-shadow: 0 28px 70px rgba(0, 8, 20, 0.42);
  backdrop-filter: blur(14px) saturate(1.1);
}

.radiation-statement blockquote {
  margin: 16px 0 0;
  width: 100%;
  max-width: 54ch;
  color: #fff;
  font-size: clamp(22px, 2.35vw, 38px);
  font-weight: 700;
  letter-spacing: -0.006em;
  line-height: 1.12;
}

.radiation-statement .hero-actions {
  margin-top: 28px;
}

.temperature-module {
  display: grid;
  grid-template-columns: auto 24px 1fr;
  align-items: stretch;
  gap: 18px;
  min-height: 190px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 24px;
}

.temperature-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.thermometer {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.thermometer i {
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: 8%;
  border-radius: 999px;
  background: linear-gradient(0deg, #38d6de, #ffbc55 58%, #ff6e66);
  box-shadow: 0 0 24px rgba(255, 125, 92, 0.65);
}

.temperature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.temperature-copy strong {
  margin-top: 8px;
  font-size: clamp(29px, 3.45vw, 45px);
  font-variant-numeric: tabular-nums;
}

.temperature-copy small {
  margin-top: 4px;
  color: #8fe4ca;
  font-size: 13px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.signal-row span {
  padding: 8px 12px;
  border: 1px solid rgba(109, 232, 190, 0.35);
  border-radius: 999px;
  color: #a2efd5;
  background: rgba(74, 201, 158, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.card-copy {
  margin: 20px 0 0;
  color: rgba(242, 248, 255, 0.72);
}

.story--platform .story-sticky {
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 46%, rgba(54, 159, 213, 0.16), transparent 48%),
    linear-gradient(180deg, #f8fbfd, #eaf3f8);
}

.platform-shell {
  position: absolute;
  top: 12vh;
  left: 7vw;
  right: 7vw;
  bottom: 10vh;
  overflow: hidden;
  border: 1px solid rgba(21, 79, 118, 0.16);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 38px 100px rgba(7, 38, 62, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.45);
}

.platform-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 58%, rgba(3, 26, 46, 0.06));
}

.platform-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.platform-heading {
  z-index: 3;
  top: 15vh;
  left: clamp(24px, 9vw, 150px);
  width: min(560px, 45vw);
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(246, 251, 255, 0.84);
  box-shadow: 0 20px 55px rgba(3, 35, 61, 0.14);
  backdrop-filter: blur(20px) saturate(135%);
}

.platform-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.75vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.platform-heading .chapter-index {
  color: #1672ad;
}

.action-dock {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 6.5vh;
  width: min(880px, 86vw);
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(238, 248, 251, 0.72);
  box-shadow: 0 24px 60px rgba(3, 37, 61, 0.19), inset 0 1px 0 #fff;
  backdrop-filter: blur(22px) saturate(155%);
  transform: translateX(-50%);
}

.action-dock span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid rgba(27, 115, 91, 0.18);
  border-radius: 17px;
  color: #0c624f;
  background: rgba(111, 218, 180, 0.12);
  font-size: 14px;
  font-weight: 790;
  white-space: nowrap;
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms ease, background 320ms ease, border-color 320ms ease;
}

.action-dock span.is-active {
  z-index: 1;
  border-color: rgba(77, 230, 186, 0.7);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(113, 235, 195, 0.42));
  box-shadow: 0 0 0 3px rgba(102, 235, 194, 0.16), 0 0 32px rgba(30, 217, 164, 0.58), 0 18px 34px rgba(5, 68, 53, 0.2), inset 0 1px 0 #fff;
  transform: translateY(-12px) scale(1.045);
}

.platform-note {
  z-index: 3;
  right: clamp(24px, 9vw, 150px);
  top: 18vh;
  display: grid;
  gap: 4px;
  padding: 18px 22px;
  border: 1px solid rgba(42, 129, 104, 0.2);
  border-radius: 20px;
  color: #0b5e4d;
  background: rgba(230, 252, 244, 0.9);
  box-shadow: 0 18px 44px rgba(7, 65, 51, 0.12);
  backdrop-filter: blur(16px);
}

.platform-note p,
.platform-note strong {
  margin: 0;
}

.platform-note p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solar-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 30px;
}

.solar-evidence-grid span {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 210, 120, 0.28);
  border-radius: 18px;
  color: rgba(247, 251, 255, 0.82);
  background: rgba(4, 18, 34, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 720;
}

.solar-evidence-grid b {
  color: #ffc66f;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.signal-row--thermal span {
  border-color: rgba(255, 185, 92, 0.4);
  color: #ffd18a;
  background: rgba(255, 145, 61, 0.12);
}

.solar-closing {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 8vw, 140px);
  bottom: 10vh;
  width: min(700px, 62vw);
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(3, 16, 31, 0.86), rgba(15, 27, 57, 0.66));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(135%);
  will-change: transform, opacity;
}

.solar-closing h2 {
  margin: 0;
  font-size: clamp(33px, 4.05vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.solar-closing > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(235, 246, 255, 0.74);
  font-size: 16px;
}

.chapter-rail {
  position: fixed;
  z-index: 90;
  right: 22px;
  top: 50%;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.chapter-rail a {
  display: grid;
  grid-template-columns: 20px 22px auto;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.chapter-rail i {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: width 220ms ease, background 220ms ease;
}

.chapter-rail b {
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.chapter-rail a.is-active {
  color: #fff;
}

.chapter-rail a.is-active i {
  width: 34px;
  background: #6de2c0;
}

.chapter-rail a:hover b,
.chapter-rail a:focus-visible b,
.chapter-rail a.is-active b {
  opacity: 1;
  transform: translateX(12px);
}

.chapter-rail.is-light a {
  color: rgba(7, 20, 38, 0.42);
}

.chapter-rail.is-light a.is-active {
  color: var(--ink);
}

.team-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 16%, rgba(35, 196, 223, 0.16), transparent 30%),
    radial-gradient(circle at 20% 72%, rgba(84, 214, 155, 0.1), transparent 28%),
    var(--navy-950);
}

.team-main {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.team-hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(110px, 16vh, 180px) clamp(24px, 8vw, 140px) 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.team-hero__glow {
  position: absolute;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(122, 226, 203, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 137, 207, 0.2), transparent 66%);
  transform: translate(30%, -18%);
}

.team-hero__copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.team-hero__copy h1 {
  max-width: none;
}

.team-hero__copy > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(236, 246, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.team-profiles {
  width: min(1240px, calc(100% - 48px));
  min-height: 58vh;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) 0;
}

.team-profiles h2 {
  margin: 0;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.team-profiles__intro > p:last-child {
  max-width: 510px;
  margin: 22px 0 0;
  color: rgba(236, 246, 255, 0.68);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 8, 20, 0.24);
}

.team-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(145, 223, 254, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.team-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(3, 16, 31, 0.5));
  pointer-events: none;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04);
}

.team-card__media img.team-card__portrait--maria {
  transform: scale(1.38);
  transform-origin: 50% 43%;
}

.team-card__media img.team-card__portrait--darwin {
  transform: scale(1.45);
  transform-origin: 50% 42%;
}

.team-card__media--pending {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 42%, rgba(84, 214, 155, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(34, 137, 207, 0.12), rgba(255, 255, 255, 0.04));
}

.team-card__media--pending strong {
  color: rgba(247, 251, 255, 0.86);
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.team-card__media--pending span {
  color: rgba(236, 246, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card__copy {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.team-card__copy h3 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.team-card__copy p {
  margin: 10px 0 0;
  color: #8fe4ca;
  font-size: 14px;
  font-weight: 700;
}

.team-card__contacts {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.team-card__contacts a {
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(236, 246, 255, 0.72);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.25;
  padding: 6px 0;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.team-card__contacts a:hover,
.team-card__contacts a:focus-visible {
  color: #8fe4ca;
  transform: translateX(3px);
}

.team-card__contacts a:focus-visible {
  outline: 2px solid #8fe4ca;
  outline-offset: 4px;
  border-radius: 4px;
}

.team-card__contacts svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-card__contacts span {
  min-width: 0;
  overflow-wrap: anywhere;
}

body.subscription-modal-open {
  overflow: hidden;
}

.subscription-modal[hidden] {
  display: none !important;
}

.subscription-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: #f4fffb;
  background:
    radial-gradient(circle at 82% 0%, rgba(77, 190, 145, 0.42), transparent 34%),
    linear-gradient(145deg, #04192c 0%, #082d3b 48%, #174e47 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.subscription-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.subscription-modal__shell {
  width: min(1540px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  border-right: 1px solid rgba(78, 183, 239, 0.48);
  border-left: 1px solid rgba(78, 183, 239, 0.48);
  box-shadow: 0 26px 70px rgba(1, 12, 23, 0.45);
}

@supports (min-height: 100svh) {
  .subscription-modal__shell {
    min-height: 100svh;
  }
}

.subscription-modal__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 10px clamp(18px, 3vw, 46px);
  border-bottom: 1px solid rgba(165, 229, 211, 0.19);
  background: rgba(4, 23, 40, 0.88);
  backdrop-filter: blur(20px) saturate(135%);
}

.subscription-modal__logo {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.subscription-billing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(114, 226, 182, 0.28);
  border-radius: 999px;
  background: rgba(52, 135, 108, 0.24);
}

.subscription-billing button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: #c8dcd9;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.subscription-billing button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, rgba(53, 135, 109, 0.96), rgba(39, 91, 83, 0.96));
  box-shadow: 0 0 0 1px #4eb7ef, 0 5px 16px rgba(1, 12, 23, 0.32);
}

.subscription-billing small {
  padding: 3px 6px;
  border-radius: 999px;
  color: #eafff6;
  background: rgba(112, 226, 181, 0.18);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.subscription-modal__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(78, 183, 239, 0.5);
  border-radius: 50%;
  color: #f4fffb;
  background: rgba(38, 96, 89, 0.48);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.subscription-modal__content {
  padding: 42px clamp(18px, 3vw, 46px) 30px;
}

.subscription-modal__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 30px;
}

.subscription-modal__eyebrow {
  margin: 0 0 10px;
  color: #72e2b6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.subscription-modal__intro h1 {
  max-width: 820px;
  margin: 0;
  color: #f4fffb;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.subscription-modal__intro > p {
  margin: 0;
  color: #c2d7d5;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.subscription-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 28px 0 32px;
  padding: 17px 0 0;
  border-top: 1px solid rgba(165, 229, 211, 0.19);
  color: #edfdf7;
  list-style: none;
}

.subscription-promises li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.subscription-promises li > span:first-child {
  color: #6ee3b4;
  font-weight: 900;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.subscription-plan {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.7vw, 26px);
  border: 1px solid rgba(126, 222, 185, 0.2);
  border-radius: 22px;
  color: #f4fffb;
  background: rgba(6, 29, 42, 0.78);
  box-shadow: 0 16px 38px rgba(1, 12, 23, 0.18);
  cursor: pointer;
  outline: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.subscription-plan:hover,
.subscription-plan:focus-visible {
  border-color: rgba(114, 226, 182, 0.72);
  box-shadow: 0 18px 42px rgba(1, 12, 23, 0.38), 0 0 0 2px rgba(114, 226, 182, 0.12);
}

.subscription-plan.is-selected {
  border-color: #8af0c9;
  background: linear-gradient(160deg, #1a4b40 0%, #24775e 100%);
  box-shadow: 0 22px 52px rgba(1, 12, 23, 0.52), 0 0 0 3px rgba(114, 226, 182, 0.26), inset 0 0 32px rgba(114, 226, 182, 0.1);
  transform: translateY(-8px);
}

.subscription-plan__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.subscription-plan h2,
.subscription-plan__heading h2 {
  margin: 0;
  color: #f4fffb !important;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 760;
  line-height: 1.15;
}

.subscription-plan__heading > span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff !important;
  background: #f05aa6;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.subscription-plan__audience {
  min-height: 42px;
  margin: 9px 0 21px;
  color: #b9d2cf;
  font-size: 12px;
  line-height: 1.45;
}

.subscription-plan__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #f4fffb;
}

.subscription-plan__price > span {
  color: #f4fffb;
  font-size: 12px;
  font-weight: 800;
}

.subscription-plan__price > strong {
  color: #f4fffb !important;
  font-size: clamp(38px, 3.4vw, 56px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
}

.subscription-plan__price > small {
  color: #b9d2cf;
  font-size: 12px;
  white-space: nowrap;
}

.subscription-plan__billing {
  min-height: 36px;
  margin: 8px 0 19px;
  color: #b9d2cf;
  font-size: 11px;
  line-height: 1.45;
}

.subscription-plan__features {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(178, 226, 213, 0.16);
  list-style: none;
}

.subscription-plan__features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: #f4fffb;
  font-size: 12px;
  line-height: 1.35;
}

.subscription-plan__features li > span:first-child {
  color: #67dfaf;
  font-weight: 900;
}

.subscription-plan__features strong {
  color: #f4fffb !important;
  font-weight: 760;
}

.subscription-plan__features .is-locked,
.subscription-plan__features .is-locked > span:first-child,
.subscription-plan__features .is-locked strong {
  color: #f05aa6 !important;
}

.subscription-plan__select-label {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 11px 15px;
  border: 1px solid rgba(114, 226, 182, 0.52);
  border-radius: 999px;
  color: #fff !important;
  background: rgba(28, 94, 78, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  pointer-events: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.subscription-plan.is-selected .subscription-plan__select-label {
  color: #fff;
  border-color: #a1f4d4;
  background: #167254;
  box-shadow: inset 0 0 18px rgba(160, 244, 211, 0.12);
}

.subscription-selection-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(114, 226, 182, 0.26);
  border-radius: 18px;
  background: rgba(4, 28, 41, 0.78);
}

.subscription-selection-bar span {
  display: block;
  color: #8dbab3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subscription-selection-bar strong {
  display: block;
  margin-top: 4px;
  color: #f4fffb;
  font-size: 15px;
}

.subscription-selection-bar button,
.subscription-contact__submit {
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid #8af0c9;
  border-radius: 999px;
  color: #03251d;
  background: linear-gradient(135deg, #a6f2d4, #6edfb3);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

.subscription-selection-bar button:not(:disabled):hover,
.subscription-selection-bar button:not(:disabled):focus-visible,
.subscription-contact__submit:not(:disabled):hover,
.subscription-contact__submit:not(:disabled):focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(76, 220, 166, 0.22);
}

.subscription-selection-bar button:disabled,
.subscription-contact__submit:disabled {
  color: #71928d;
  border-color: rgba(137, 181, 171, 0.2);
  background: rgba(86, 119, 112, 0.2);
  cursor: not-allowed;
  opacity: 0.68;
}

.subscription-custom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(114, 226, 182, 0.22);
  border-radius: 18px;
  color: #f4fffb;
  background: rgba(5, 29, 42, 0.62);
}

.subscription-custom strong {
  display: block;
  margin-bottom: 3px;
  color: #f4fffb !important;
  font-size: 16px;
  font-weight: 760;
}

.subscription-custom p {
  margin: 0;
  color: #b9d2cf;
  font-size: 12px;
}

.subscription-custom > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #72e2b6;
  border-radius: 999px;
  color: #fff !important;
  background: #146247;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.subscription-modal__footnote {
  margin: 15px 4px 0;
  color: #a9c7c3;
  font-size: 11px;
  line-height: 1.5;
}

.subscription-contact {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(4px, 2vw, 20px) 0 20px;
}

.subscription-contact__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border: 0;
  color: #9de8ce;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.subscription-contact__intro {
  margin-top: 22px;
}

.subscription-contact__intro h2 {
  margin: 0;
  color: #f4fffb;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.subscription-contact__intro > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  color: #b9d2cf;
  font-size: 15px;
  line-height: 1.55;
}

.subscription-contact__summary {
  margin: 24px 0 20px;
  padding: 15px 17px;
  border: 1px solid rgba(114, 226, 182, 0.32);
  border-radius: 16px;
  color: #f4fffb;
  background: rgba(27, 100, 79, 0.36);
  font-size: 14px;
  font-weight: 760;
}

.subscription-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.subscription-contact__grid label {
  display: grid;
  gap: 7px;
  color: #d7ebe5;
  font-size: 12px;
  font-weight: 760;
}

.subscription-contact__grid input {
  min-height: 48px;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(157, 232, 206, 0.28);
  border-radius: 12px;
  color: #f4fffb;
  background: rgba(3, 23, 36, 0.74);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.subscription-contact__grid input:focus {
  border-color: #72e2b6;
  box-shadow: 0 0 0 3px rgba(114, 226, 182, 0.13);
}

.subscription-contact__wide {
  grid-column: 1 / -1;
}

.subscription-contact__privacy,
.subscription-contact__status {
  margin: 14px 0 0;
  color: #9fbbb7;
  font-size: 11px;
  line-height: 1.5;
}

.subscription-contact__status.is-error {
  color: #ff9cc9;
}

.subscription-contact__status.is-success {
  color: #91f1cb;
  font-size: 13px;
  font-weight: 760;
}

.subscription-contact__submit {
  width: 100%;
  margin-top: 17px;
}

.subscription-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .subscription-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subscription-plan.is-selected {
    transform: translateY(-4px);
  }
}

@media (max-width: 700px) {
  .subscription-modal__header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .subscription-modal__logo {
    width: 48px;
    height: 48px;
  }

  .subscription-billing {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .subscription-modal__close {
    grid-column: 2;
    grid-row: 1;
  }

  .subscription-modal__content {
    padding: 30px 15px 22px;
  }

  .subscription-modal__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .subscription-modal__intro h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .subscription-promises {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subscription-plans {
    grid-template-columns: 1fr;
  }

  .subscription-plan__audience,
  .subscription-plan__billing {
    min-height: 0;
  }

  .subscription-custom {
    grid-template-columns: 1fr;
  }

  .subscription-custom > button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .subscription-selection-bar {
    grid-template-columns: 1fr;
  }

  .subscription-selection-bar button {
    width: 100%;
  }

  .subscription-contact__grid {
    grid-template-columns: 1fr;
  }

  .subscription-contact__wide {
    grid-column: auto;
  }
}

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 6vw, 100px);
  color: rgba(230, 242, 252, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-950);
  font-size: 13px;
}

@media (min-width: 1121px) and (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(140px, 0.65fr) auto minmax(430px, 1fr);
    gap: 14px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav {
    gap: 14px;
    font-size: 14px;
    transform: translateX(-12px);
  }

  .header-cta,
  .language-toggle {
    padding: 9px 11px;
    font-size: 13px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 10px clamp(12px, 3vw, 28px);
  }

  .nav,
  .header-actions {
    display: none;
  }

  .mobile-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-header-actions .language-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(12px, 3vw, 28px);
    left: clamp(12px, 3vw, 28px);
    max-height: calc(100vh - var(--header-height) - 24px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    overflow-y: auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    color: var(--white);
    background: rgba(3, 16, 31, 0.97);
    box-shadow: 0 24px 70px rgba(0, 7, 18, 0.46);
    backdrop-filter: blur(24px) saturate(135%);
  }

  @supports (height: 100svh) {
    .mobile-menu {
      max-height: calc(100svh - var(--header-height) - 24px);
    }
  }

  .mobile-menu__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
  }

  .mobile-menu__nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 13px;
    color: rgba(247, 251, 255, 0.78);
    font-size: 15px;
    font-weight: 720;
  }

  .mobile-menu__nav a:hover,
  .mobile-menu__nav a:focus-visible,
  .mobile-menu__nav a.is-current {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
  }

  .mobile-menu__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu__actions .header-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
    white-space: normal;
  }

  .mobile-menu .header-cta__status {
    position: static;
    margin-left: 8px;
    flex: 0 0 auto;
  }
}

@media (max-width: 960px) {
  :root { --header-height: 68px; }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .team-profiles {
    width: min(760px, calc(100% - 48px));
  }

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

  .hero-copy {
    left: 28px;
    width: calc(100vw - 80px);
  }

  .hero-proof {
    width: 100%;
  }

  .hero-benefit-card {
    right: 28px;
    bottom: 9vh;
    left: 28px;
    width: auto;
  }

  .chapter-copy,
  .chapter-copy--right {
    right: 28px;
    left: 28px;
    width: auto;
  }

  .chapter-note,
  .evidence-card,
  .evidence-card--left {
    right: 28px;
    left: 28px;
    width: auto;
    bottom: 10vh;
  }

  .solar-closing {
    right: 28px;
    bottom: 8vh;
    left: 28px;
    width: auto;
  }

  .platform-shell {
    top: 15vh;
    right: 3vw;
    bottom: 14vh;
    left: 3vw;
  }

  .platform-heading {
    top: 11vh;
    left: 5vw;
    width: 70vw;
  }

  .action-dock {
    bottom: 5vh;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .chapter-rail {
    display: none;
  }

  .story-sticky {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand-logo-frame {
    width: 100px;
    height: 47px;
  }

  .brand-logo {
    left: 3px;
    width: 94px;
    height: 94px;
    transform: translateY(-20px);
  }
  .mobile-header-actions {
    gap: 6px;
  }

  .mobile-header-actions .language-toggle {
    min-width: 44px;
    padding: 8px;
    font-size: 12px;
  }

  .mobile-menu {
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .mobile-menu__nav,
  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }

  .story,
  .story--hero {
    height: 280vh;
  }

  .story--delay {
    height: 390vh;
  }

  .story--radiation {
    height: 350vh;
  }

  .story--solar-map {
    height: 440vh;
  }

  .story--platform {
    height: 210vh;
  }

  .story-sticky {
    min-height: 580px;
  }

  h1 {
    font-size: clamp(38px, 11.7vw, 55px);
  }

  .hero-copy {
    top: 51%;
    left: 20px;
    width: calc(100vw - 40px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-model {
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .hero-benefit-card {
    right: 20px;
    bottom: 7vh;
    left: 20px;
    min-height: 0;
    padding: 24px 52px 24px 24px;
    border-radius: 22px;
  }

  .hero-benefit-card h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .hero-proof {
    display: none;
  }

  .chapter-note {
    right: 20px;
    bottom: 12vh;
    left: 20px;
    padding: 22px;
  }

  .chapter-copy,
  .chapter-copy--right {
    top: 46%;
    right: 20px;
    left: 20px;
  }

  .chapter-copy h2 {
    font-size: clamp(36px, 10.7vw, 52px);
  }

  .chapter-copy > p:not(.chapter-index) {
    font-size: 16px;
  }

  .timeline-card,
  .temperature-module {
    margin-top: 24px;
  }

  .evidence-card,
  .evidence-card--left {
    right: 20px;
    bottom: 7vh;
    left: 20px;
    padding: 22px;
  }

  .story--radiation .story-video {
    object-position: 56% center;
  }

  .story--solar-map .story-video.radiation-close-image {
    object-position: 48% 24%;
    transform: scale(1.32);
  }

  .radiation-statement {
    right: 20px;
    bottom: 7vh;
    left: 20px;
    width: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .radiation-statement blockquote {
    font-size: clamp(20px, 5.5vw, 27px);
    line-height: 1.12;
  }

  .story--solar-map .story-video {
    object-position: 48% center;
  }

  .solar-evidence-grid {
    gap: 6px;
    margin-top: 22px;
  }

  .solar-evidence-grid span {
    min-height: 76px;
    padding: 10px;
    border-radius: 14px;
    font-size: 12px;
  }

  .solar-closing {
    right: 20px;
    bottom: 5vh;
    left: 20px;
    padding: 22px;
  }

  .solar-closing h2 {
    font-size: clamp(32px, 8.9vw, 43px);
  }

  .solar-closing > p:not(.eyebrow) {
    font-size: 16px;
  }

  .platform-shell {
    top: 13vh;
    right: 12px;
    bottom: 16vh;
    left: 12px;
    border-radius: 20px;
  }

  .platform-video {
    object-position: 52% center;
  }

  .platform-heading {
    top: 10vh;
    left: 20px;
    width: calc(100vw - 40px);
    padding: 18px 20px;
  }

  .platform-heading h2 {
    font-size: 36px;
  }

  .platform-note {
    top: auto;
    right: 20px;
    bottom: 17vh;
    left: 20px;
  }

  .action-dock {
    width: calc(100vw - 24px);
    bottom: 3vh;
    padding: 12px;
    border-radius: 22px;
  }

  .action-dock span {
    min-height: 48px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-hero {
    min-height: 60vh;
    padding-right: 20px;
    padding-left: 20px;
  }

  .team-profiles {
    width: calc(100% - 40px);
    padding: 72px 0;
  }

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

  .team-card__media {
    aspect-ratio: 5 / 4;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  :root { --header-height: 58px; }

  .site-header {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand-logo-frame {
    width: 94px;
    height: 44px;
  }

  .brand-logo {
    left: 2px;
    width: 90px;
    height: 90px;
    transform: translateY(-19px);
  }

  .hero-copy,
  .chapter-copy,
  .chapter-copy--right {
    top: 54%;
    width: min(620px, calc(100vw - 120px));
  }

  h1 {
    font-size: clamp(31px, 6vw, 45px);
  }

  .chapter-copy h2 {
    font-size: clamp(30px, 5.8vw, 43px);
  }

  .hero-lede,
  .chapter-copy > p:not(.chapter-index) {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-model {
    margin-top: 6px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero-proof,
  .scroll-cue {
    display: none;
  }

  .timeline-card,
  .temperature-module {
    min-height: 0;
    margin-top: 14px;
    padding: 14px;
  }

  .chapter-note,
  .evidence-card,
  .evidence-card--left,
  .radiation-statement,
  .solar-closing {
    right: 20px;
    bottom: 4vh;
    left: 20px;
    max-height: calc(100vh - var(--header-height) - 30px);
    overflow-y: auto;
    padding: 18px;
  }

  @supports (height: 100svh) {
    .chapter-note,
    .evidence-card,
    .evidence-card--left,
    .radiation-statement,
    .solar-closing {
      max-height: calc(100svh - var(--header-height) - 30px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .story,
  .story--hero,
  .story--platform {
    height: 220vh;
  }
}

/* INSYTA benefit button state hotfix v3 */
.button--benefit {
  color: #dffbef;
  border: 1px solid rgba(111, 229, 187, 0.42);
  background: linear-gradient(135deg, rgba(111, 229, 187, 0.2), rgba(84, 214, 155, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(54, 188, 143, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
}

.button--benefit:hover,
.button--benefit:focus-visible {
  color: #eafff7;
  border-color: rgba(128, 238, 198, 0.58);
  background: linear-gradient(135deg, rgba(111, 229, 187, 0.28), rgba(84, 214, 155, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 28px rgba(54, 188, 143, 0.12);
}

.button--benefit[aria-expanded="true"],
.button--benefit[aria-expanded="true"]:hover,
.button--benefit[aria-expanded="true"]:focus-visible {
  color: #061c2a;
  border-color: rgba(130, 240, 206, 0.82);
  background: linear-gradient(135deg, #82f0ce, #45cfa7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 38px rgba(48, 208, 162, 0.28);
}
