/* ═══════════════════════════════════════════════════════════════
   UpRight Science — styles.css
   Tokens match Balance Matters template (Upright Science parent brand).
   Fonts: Roboto (body/display) + Roboto Condensed (nav) — Google Fonts.
═══════════════════════════════════════════════════════════════ */

/* ─── Design tokens — exact match to Balance Matters template ── */
:root {
  --brand:         #0094DA;
  --brand-dark:    #1E54C0;
  --brand-darker:  #163d91;
  --brand-light:   #5B8DF0;
  --brand-soft:    #EAF1FE;
  /* Deeper blue used in vertical gradients (nav CTA, announcement, stat cards) */
  --brand-deep:    #0073bb;
  --accent:        #16A394;
  --accent-soft:   #E6F7F4;
  --accent-dark:   #0f7a6a;
  /* warm CTA / store emphasis (real orange — used for buttons & accents) */
  --orange:        #F47B20;
  --orange-dark:   #d96a17;
  --orange-soft:   #FFF1E6;
  /* Banner CTA yellow (homepage CTA strip) */
  --cta-sun:       #FAA71B;

  --ink:           #0E1424;
  --ink-mid:       #4B5563;
  --ink-light:     #6B7280;
  /* Body copy / secondary text (medium gray — lighter to match design) */
  --text-secondary:#5c6472;
  /* Uppercase nav links */
  --nav-text:      #4B4B4A;

  --bg-off:        #F4F5F7;
  --bg-dark:       #0B1226;
  --gray-bg:       #eeeff1ed;
  /* Shared nav/hero gray triangle (index + news and other subpages) */
  --hero-gray-height: clamp(280px, 34vw, 500px);
  --hero-gray-clip: polygon(0 0, 90% 0, 0 100%);
  /* Bottom gray wedge — shared geometry (index / download / subpages) */
  --page-end-gray-height: 700px;
  --page-end-gray-clip: polygon(10% 100%, 100% 100%, 100% 46%);
  --white:         #FFFFFF;
  --surface-muted: #f7fafc;
  --surface-tint:  #e0f1fb;

  --border-subtle: #e0e6ef;
  --border-card:   #e5e7eb;
  --border-form:   #dde8f0;
  --border-input:  #c8d8e8;
  --border-field:  #d1d5db;

  --gradient-signature: linear-gradient(135deg, #2B6BE6 0%, #5B8DF0 60%, #16A394 100%);
  --gradient-announce:  linear-gradient(135deg, #2B6BE6 0%, #5B8DF0 60%, #16A394 100%);
  --gradient-brand-v:   linear-gradient(to top, var(--brand-deep) 0%, var(--brand) 100%);
  /* Top bar / brand fills — Figma: 198.65deg, stops 12.28% / 87.08% */
  --gradient-bar-start: #0192D9;
  --gradient-bar-end:   #0270B9;
  --gradient-announce-bar: linear-gradient(198.65deg, #0192D9 12.28%, #0270B9 87.08%);
  /* --gradient-shared-start: #2caef0;
  --gradient-shared-end:   #026cb3; */
  --gradient-shared-end: #0073bb;
  --gradient-shared-start:   #0094DA;

  --gradient-shared-v: linear-gradient(to bottom, var(--gradient-shared-start) 0%, var(--gradient-shared-end) 100%);
  /* Footer — Figma: 174.47deg, stops 7.25% / 95.58% */
  --gradient-footer-start: #0195D9;
  /* Inner pages — cool blue wash only (no accent tint) */
  --gradient-page-hero: linear-gradient(135deg, #f0f8ff 0%, #e8f4fb 52%, #e3eef9 100%);
  --gradient-footer: var(--gradient-shared-v);
  --page-hero-border: #d0e8f5;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-brand: 0 8px 32px rgba(0, 115, 187, 0.12);
  --shadow-card-premium: 0 4px 24px rgba(0, 115, 187, 0.08), 0 1px 0 rgba(255,255,255,0.8) inset;

  --radius-sm:   6px;
  --radius-sm-2: 10px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-pill: 999px;
  --radius-chip: 7px;

  --transition:      0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s  cubic-bezier(0.4, 0, 0.2, 1);

  /* Roboto for all body/display; Roboto Condensed for nav only */
  --font-body:    'Roboto', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Roboto', ui-sans-serif, system-ui, sans-serif;
  --font-nav:     'Roboto Condensed', ui-sans-serif, system-ui, sans-serif;
  --font-cta:     'Big Shoulders Display', ui-sans-serif, system-ui, sans-serif;

  --max-w:      1140px;
  --max-w-text: 920px;
  --gutter:     24px;
  --nav-h:      90px;
  --announce-h: 64px;
  --topbar-h:   64px;

  --c-gutter-mobile: 35px;

  --focus-ring: 0 0 0 3px rgba(0, 148, 218, 0.15);
}

/* ─── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--announce-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

html.subpage-no-hero {
  scroll-padding-top: calc(var(--nav-h) + var(--announce-h) + 24px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* Client request: keep modules static, no float-in effects */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* ─── Utilities ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-left: 20px;
}

@media (max-width: 767px) {
  .container {
    padding-left: var(--c-gutter-mobile);
    padding-right: var(--c-gutter-mobile);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 25px;
}

.hiw-section-header {
  max-width: none;
}
/* Chip — solid cyan blue, white text (matches reference) */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-radius: var(--radius-chip);
  font-family: var(--font-nav);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--gradient-shared-v);
  color: var(--white);
}

.chip--brand-gradient {
  background: var(--gradient-shared-v);
}

/* Flex wrapper so section chips align like Technology Solutions on the homepage */
.chip-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.chip-row--center {
  justify-content: center;
}
.page-hero .chip-row {
  margin-bottom: 20px;
}

/* Section titles — Roboto bold, cyan blue */
.section-title {
  font-family: var(--font-body); /* Roboto */
  font-size: clamp(2.75rem, 3.9vw, 3.3rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--brand);
  margin-top: 18px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.36;
}

.section-sub--mt { margin-top: 14px; }

/* ─── Announcement bar (matches Balance Matters top bar) ────── */
.announcement-bar {
  display: none; /* Temporarily hidden */
  background: var(--gradient-shared-v);
  color: var(--white);
  height: var(--announce-h);
  position: relative;
  z-index: 300;
}

.announcement-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.announcement-bar__text {
  font-family: var(--font-nav); /* Roboto Condensed */
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.015em;
  line-height: 1.2;
}

.announcement-bar__link {
  font-family: var(--font-nav); /* Roboto Condensed */
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  margin-left: 4px;
  transition: opacity var(--transition);
}
.announcement-bar__link:hover { opacity: 0.85; }

.announcement-bar__link--mobile {
  margin-left: 0;
  /* text-decoration: underline; */
  text-underline-offset: 3px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.announcement-bar__close {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition);
  padding: 6px;
}
.announcement-bar__close:hover { opacity: 1; }

/* ─── Hero block — gray triangle bg wraps nav + hero ─── */
.hero-block {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* Gray triangle — shared geometry on homepage and subpage heroes */
.hero-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--hero-gray-height);
  background: var(--gray-bg);
  clip-path: var(--hero-gray-clip);
  z-index: 0;
  pointer-events: none;
}

/* Subpage heroes (news, about, etc.) — same header offset inside gray band */
html.subpage-no-hero .hero-block .site-header {
  padding: 16px 0 16px;
}

/* ─── Site header ───────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0 0;
  transition: padding var(--transition);
}

/* Global sticky state without changing existing DOM structure */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  padding: 8px 0;
  /* background: rgba(255, 255, 255, 0.62); */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  /* box-shadow: 0 8px 24px rgba(15, 60, 100, 0.12); */
}

.nav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  /* height: var(--nav-h); */
  height: 76px;
  box-shadow: 0 4px 18px rgba(12, 39, 73, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* .site-header.scrolled .nav-card { */
  /* box-shadow: 0 6px 24px rgba(15, 60, 100, 0.1), 0 1px 4px rgba(0,0,0,0.05);
  background: rgba(255, 255, 255, 0.72); */
  /* backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); */
/* } */

.site-header.scrolled .nav-card {
  box-shadow: 0 10px 30px rgba(15, 60, 100, 0.12), 0 1px 4px rgba(0,0,0,0.06);
  background: rgba(255, 255, 255, 90%);
}


.nav__logo img { height: 62px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* nav link — exact balance-matters spec */
.nav__link {
  font-family: var(--font-nav);
  font-stretch: normal;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.020em;
  text-transform: uppercase;
  color: var(--nav-text);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link--phone {
  letter-spacing: 0.02em;
  text-transform: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { transform: scaleX(1); background: var(--brand); }

.nav__link[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
}
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--brand);
}

/* Book a Demo button — same blue gradient + hover as top bar */
.nav__cta {
  margin-left: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-cta);
  font-stretch: normal;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient-brand-v);
  box-shadow: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.nav__cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: none;
}

.nav__cta[aria-current="page"] {
  box-shadow: none;
}

.nav__cta[aria-current="page"]:hover {
  opacity: 1;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ── exact metrics from balance-matters template ─── */
.hero {
  position: relative;
  z-index: 1;
  padding: 32px 0 22px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy { position: relative; z-index: 1; }

/* Hero headline — solid top-bar blue, Roboto Condensed (no hover) */
.hero__headline {
  font-family: var(--font-display);
  /* font-size: clamp(2rem, 5.3vw, 4.3rem); */
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--brand);
  margin-bottom: 28px;
}

/* FDA badge + text — text flows around the circular badge */
.hero__fda-wrap {
  margin-bottom: 20px;
  overflow: visible;
}
.hero__fda-wrap::after {
  content: "";
  display: block;
  clear: both;
}

.hero__fda-badge {
  float: left;
  width: 130px;
  height: 130px;
  margin: 0 18px 0 0;
  shape-outside: circle(50%);
  -webkit-shape-outside: circle(50%);
  shape-margin: 2px;
}
.hero__fda-badge img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Forced line breaks for the FDA text — only at wide viewports where the
   designed wrap fits naturally. Below 1280px we let text wrap naturally. */
.hero__fda-br { display: none; }
@media (min-width: 1280px) {
  .hero__fda-br { display: inline; }
}

/* Lead + body — same metrics as balance-matters .hero__sub */
.hero__fda-text {
  font-family: var(--font-body);
  font-size: 1.44rem;
  line-height: 1.35;
  color: var(--text-secondary);
  font-weight: 300;
  margin: 0;
  letter-spacing:0.001em;
  padding-top: 0;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.44rem;
  line-height: 1.35;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 900px;
  margin-bottom: 14px;
  letter-spacing:0.001em;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* ─── Technology Solutions ──────────────────────────────────── */
.tech-solutions {
  padding: 6px 0 10px;
  background: var(--white);
}

.tech-solutions--page {
  padding-top: 32px;
}

.tech-solutions .section-title {
  line-height: 1.08;
}

.tech-growth:not(.page-end-gray-host) {
  background: var(--white);
}

.tech-growth-page {
  --tech-section-space: 30px;
}

.tech-growth__modules {
  padding: var(--tech-section-space) 0;
  /* padding-top: 0px; */
}

.tech-growth__stack {
  padding: var(--tech-section-space) 0;
}

.tech-growth-page .cta-banner {
  padding: var(--tech-section-space) 0;
}

.tech-growth__stack-figure {
  margin: 0;
  overflow: clip;
  margin-top: 25px;
}

.tech-growth__stack-image {
  display: block;
  width: 100%;
  height: auto;
  margin: -3% 0 -4%;
  padding: 50px;
}

.tech-growth__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  /* padding-top: 24px; */
}

.tech-growth-card[id] {
  scroll-margin-top: calc(var(--nav-h) + var(--announce-h) + 24px);
}

.tech-growth-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.96fr);
  gap: clamp(20px, 3.4vw, 44px);
  align-items: center;
}

.tech-growth-card::before {
  content: none;
}

.tech-growth-card--ai {
  grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1fr);
}

.tech-growth-card__intro {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.44;
  letter-spacing: 0.001em;
  color: var(--text-secondary);
  max-width: 570px;
  margin: 0 0 20px;
}

.tech-growth-card__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.tech-growth-card__body {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.001em;
  color: var(--text-secondary);
}

.tech-growth-card__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  align-self: start;
  /* background: #f6f7f9; */
}

.tech-growth-card__image {
  display: block;
  /* width: 100%; */
  width: 485px;
  /* height: 300px; */
  height: auto;
}

.tech-growth-card--rtm .tech-growth-card__media {
  border-radius: 0;
  overflow: visible;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  align-self: center;
}

.tech-growth-card--rtm .tech-growth-card__image {
  margin: 0;
}

.tech-growth-card__image--rtm {
  width: 100%;
  max-width: 100%;
  /* max-height: 320px; */
  height: auto;
  /* object-fit: contain; */
  object-fit: cover;
  object-position: center;
  display: block;
}

.tech-growth-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eceff3;
}

.tech-growth-card__badge {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: clamp(72px, 8.5vw, 110px);
  height: auto;
}

.tech-growth-card__media--duo {
  background: transparent;
  border-radius: 0;
  min-height: clamp(210px, 24vw, 280px);
  overflow: visible;
}

.tech-growth-card__image--circle {
  position: absolute;
  width: clamp(150px, 17vw, 230px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(12, 46, 80, 0.15);
}

.tech-growth-card__image--circle-left {
  left: 0;
  bottom: 18px;
  border: 7px solid var(--brand);
}

.tech-growth-card__image--circle-right {
  right: 0;
  bottom: 0;
  border: 7px solid #f6a800;
}

.tech-hero-image {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 48px;
}

.tech-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3 feature columns */
.tech-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  /* max-width: 990px; */
  margin: 0 auto;
}

.tech-feature {
  text-align: center;
}

.home-page .tech-features {
  align-items: start;
}

.home-page .tech-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tech feature title — Roboto bold, cyan blue (same rhythm as section titles) */
.tech-feature__title {
  font-family: var(--font-body); /* Roboto */
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-page .tech-feature__title {
  min-height: 2.2em;
  display: block;
  text-align: center;
}

/* Tech feature description — Roboto light, larger like balance-matters */
.tech-feature__desc {
  font-family: var(--font-body); /* Roboto */
  font-size: 1.44rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0.001em;
}

.home-page .tech-feature__desc {
  max-width: 20ch;
  margin: 0 auto;
}

.tech-feature__link {
  color: var(--brand);
  font-weight: 500;
  transition: opacity var(--transition);
}

.home-page .tech-feature__link {
  white-space: nowrap;
}
.tech-feature__link:hover { opacity: 0.8; color: var(--orange-dark); }

/* ─── Download — shared section rhythm (page-end gray host pattern) ─── */
.download-page .how-it-works,
.download-page .look-inside,
.download-page .benefits {
  padding: 48px 0;
  background: var(--white);
}

.download-page .benefits {
  padding-bottom: 48px;
}

.download-page .benefits .section-header {
  max-width: 870px;
  margin-bottom: 32px;
}

/* index.html + download.html — page-end gray wedge (main outside .hero-block; Pattern C) */
.home-page .hero-block,
.download-page .hero-block {
  position: relative;
  z-index: 2;
}

.home-page main.page-end-gray-host {
  position: relative;
  z-index: 0;
  padding-bottom: 0;
  overflow: visible;
  background: transparent;
}

.home-page main.page-end-gray-host::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.home-page main.page-end-gray-host > * {
  position: relative;
  z-index: 1;
}

.home-page main.page-end-gray-host .balance-imperative {
  background-color: transparent;
  overflow: visible;
}

.home-page main.page-end-gray-host + .site-footer {
  margin-top: 0;
}

.download-page main.page-end-gray-host {
  position: relative;
  z-index: 0;
  padding-bottom: 0;
  overflow: visible;
  background: transparent;
}

.download-page main.page-end-gray-host::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.download-page main.page-end-gray-host > * {
  position: relative;
  z-index: 1;
}

.download-page main.page-end-gray-host .how-it-works,
.download-page main.page-end-gray-host .look-inside,
.download-page main.page-end-gray-host .benefits,
.download-page main.page-end-gray-host .download-footnote {
  background: transparent;
}

.download-page main.page-end-gray-host .benefits,
.download-page main.page-end-gray-host .download-footnote {
  overflow: visible;
}

/* Slider section must clip horizontal bleed (swiper slides peek outside viewport) */
.download-page main.page-end-gray-host .look-inside {
  overflow-x: hidden;
  overflow-y: visible;
}

.download-page main.page-end-gray-host + .site-footer {
  margin-top: 0;
}

/* download.html — wellness disclaimer (last main section; same gray wedge as other sections) */
.download-page .download-footnote {
  padding: 0 0 48px;
  background: transparent;
}

.download-page .download-footnote__text {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--brand);
  text-align: left;
  margin: 0;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding-top: 48px;
}

.hiw-step {
  position: relative;
  background: #f2f3f5;
  border-radius: 16px;
  padding: 65px 28px 32px;
  text-align: center;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hiw-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(12, 39, 73, 0.12), 0 4px 10px rgba(12, 39, 73, 0.08);
}

.hiw-step__number {
  position: absolute;
  top: -42.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  /* background: var(--orange); */
  background: #ffa100;
  /* background: #f47b1f; */
  color: var(--white);
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-step__title {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3.8vw, 1.95rem);
  font-weight: 900;
  color: var(--brand);
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hiw-step__desc {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.4;
  letter-spacing: 0.001em;
  margin: 0;
}

/* ─── A Look Inside — app screens slider ─── */
.download-page .look-inside {
  overflow: hidden;
}

/* Look Inside title — full container width, one line on desktop (font size unchanged) */
@media (min-width: 769px) {
  .download-page .look-inside .section-header {
    max-width: none;
    width: 100%;
  }

  .download-page #look-inside-title {
    display: block;
    width: 100%;
    white-space: nowrap;
  }
}

/* Phone frame — same dimensions as bmpub.kodiakbids.com */
.look-inside .phone-frame {
  position: relative;
  width: 214px;
  height: 446px;
  background: #8b909a;
  border-radius: 34px;
  padding: 9px 6px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 16px 38px rgba(0, 0, 0, 0.16),
    inset 0 1px 2px rgba(255, 255, 255, 0.09);
  margin: 0 auto;
  flex-shrink: 0;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.look-inside .phone-frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.08),
    0 32px 70px rgba(0, 0, 0, 0.22),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.look-inside .phone-frame__notch {
  width: 64px;
  height: 12px;
  background: #8b909a;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.look-inside .phone-frame__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #f8f9fa;
}

.look-inside .phone-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Swiper — 1 centered, 2 faded each side */
.look-inside .carousel-swiper {
  width: 100%;
  padding: 36px 0 66px !important;
  position: relative;
  overflow: visible;
}

.look-inside .carousel-swiper .swiper-wrapper {
  align-items: center;
}

.look-inside .carousel-swiper .swiper-slide {
  width: 250px !important;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.42;
  transform: scale(0.82);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.look-inside .carousel-swiper .swiper-slide-prev,
.look-inside .carousel-swiper .swiper-slide-next {
  opacity: 0.78;
  transform: scale(0.95);
  z-index: 1;
}

.look-inside .carousel-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.08);
  z-index: 2;
}

.look-inside .carousel-swiper .swiper-slide-active .phone-frame {
  background: #121a31;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 20px 46px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.look-inside .carousel-swiper .swiper-slide-active .phone-frame__notch {
  background: #121a31;
}

.look-inside .carousel-swiper .swiper-pagination-bullet {
  background: #1298d8;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin: 0 5px !important;
}

.look-inside .carousel-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f3a11c;
  width: 13px;
  height: 13px;
}

.look-inside .carousel-swiper .swiper-button-prev,
.look-inside .carousel-swiper .swiper-button-next {
  color: #53a9de !important;
  width: 52px !important;
  height: 52px !important;
  background: #ffffff !important;
  border: 2px solid #e5edf6;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(20, 67, 108, 0.18);
  top: 42% !important;
  z-index: 10;
}

.look-inside .carousel-swiper .swiper-button-prev::after,
.look-inside .carousel-swiper .swiper-button-next::after {
  font-size: 16px !important;
  font-weight: 600;
}

@media (max-width: 600px) {
  .download-page .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 32px;
  }

  /* Stack steps without overlapping badges (absolute top: -42.5px bleeds into prior card) */
  .download-page .hiw-step {
    padding: 24px 22px 26px;
  }

  /* Mobile interaction parity with desktop hover lift */
  .download-page .hiw-step:active {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(12, 39, 73, 0.12), 0 4px 10px rgba(12, 39, 73, 0.08);
  }

  .download-page .hiw-step__number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    font-size: 2.15rem;
  }

  .look-inside .phone-frame {
    width: 170px;
    height: 358px;
    border-radius: 28px;
    padding: 8px 5px;
  }

  .look-inside .phone-frame__notch {
    width: 52px;
    height: 10px;
    top: 8px;
  }

  .look-inside .phone-frame__screen {
    border-radius: 24px;
  }

  .look-inside .carousel-swiper .swiper-slide {
    width: 200px !important;
  }

  .look-inside .carousel-swiper {
    padding: 28px 0 56px !important;
  }

  .look-inside .carousel-swiper .swiper-button-prev,
  .look-inside .carousel-swiper .swiper-button-next {
    width: 44px !important;
    height: 44px !important;
  }

  /* Mobile — contain carousel width; stops page-level horizontal scroll */
  .download-page .look-inside {
    overflow-x: hidden;
  }

  .look-inside .carousel-swiper {
    overflow: hidden;
    max-width: 100%;
  }

  .look-inside .carousel-swiper .swiper-wrapper {
    max-width: 100%;
  }
}

/* ─── Benefits of Registration (download page) ─── */
.benefits {
  position: relative;
}

.benefits > .container {
  position: relative;
  z-index: 1;
}

.download-page .benefits .section-sub strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px;
  width: 100%;
  margin: 0;
  padding-top: 24px;
  align-items: stretch;
}

.snapshot-card {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 40px 20px 28px;
  min-height: 222px;
  height: 100%;
  text-align: center;
  color: var(--white);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.snapshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.snapshot-card--blue {
  background: linear-gradient(180deg, #1ba5e3 0%, #0f92d3 20%, #056baa 100%);
}

.snapshot-card--orange {
  background: linear-gradient(180deg, #fab433 0%, #f19f22 20%, #e97f16 100%);
}

.snapshot-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: -29px;
  transform: translateX(-50%);
  padding: 0;
}

.snapshot-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.snapshot-card__title {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin: 8px 0 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.snapshot-card__desc {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.36;
  letter-spacing: 0.001em;
  max-width: 22ch;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .download-page .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .download-page .snapshot-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 24px;
  }

  .download-page .snapshot-card {
    min-height: 200px;
    padding-bottom: 24px;
  }

  .download-page .snapshot-card__desc {
    max-width: none;
  }
}

/* ─── Download page hero ─── */
@media (min-width: 961px) {
  .download-page .hero__inner {
    align-items: start;
    padding-top: 18px;
  }

  .download-page .hero__visual {
    align-items: flex-start;
  }

  .download-page .download-hero__logo {
    margin-top: 0;
  }
}

.download-hero__logo {
  /* display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto 18px; */

  display: block;
  width: 80%;
  height: auto;
  margin: 10px 0px 40px 0px;
}

.download-page .hero__headline {
  font-family: var(--font-body);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.download-hero__label {
  font-family: var(--font-body);
  font-size: 2.3rem;;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin: 20px 0 14px;
}

.download-hero__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-hero__store-link {
  display: inline-block;
  transition: opacity var(--transition), transform var(--transition);
}
.download-hero__store-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.download-hero__store-img {
  height: 56px;
  width: auto;
  display: block;
}

.download-page .hero__sub {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .download-hero__logo {
    width: min(100%, 260px);
    /* margin: 0 auto 14px; */
  }

  .download-page .hero__headline {
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .download-page .hero__sub {
    font-size: 1.44rem;
    line-height: 1.35;
  }

  .download-hero__label {
    font-size: 1.44rem;
    line-height: 1.35;
    margin: 16px 0 12px;
  }

  .download-hero__btns {
    gap: 10px;
  }

  .download-hero__store-img {
    height: 56px;
  }
}

/* ─── CTA Banner — contained rounded card (matches reference) ─── */
.cta-banner {
  background: transparent;
  padding: 36px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px 18px 30px;
  background: var(--gradient-shared-v);
  border-radius: var(--radius-md);
}

.cta-banner__text {
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 1.98vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  flex: 1;
  letter-spacing: 0.001em;
}

/* CTA button — orange (matches reference) */
.cta-banner__btn {
  flex-shrink: 0;
  padding: 14px 30px;
  border-radius: 10px;
  background: var(--cta-sun);
  color: var(--white);
  font-family: var(--font-cta);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.cta-banner__btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ─── Balance Imperative — diagonal art (img path from HTML so it always loads) ─── */
.balance-imperative {
  position: relative;
  padding: 52px 0 60px;
  background-color: var(--white);
  overflow: hidden;
}

.balance-imperative__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  top: 450px;
  background: var(--gray-bg);
  /* Grey bottom-right; diagonal anchor shifted left, right edge starts lower */
  clip-path: polygon(10% 100%, 100% 100%, 100% 46%);
}

.balance-imperative__bg img {
  display: none;
}

.balance-imperative .container,
.balance-imperative .app-download-cta {
  position: relative;
  z-index: 1;
}

.balance-imperative .section-header {
  max-width: 900px;
}

.balance-imperative__title {
  /* font-size: clamp(2rem, 3.8vw, 3.2rem); */
  line-height: 1.1;
}

.imperative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 26px;
  padding: 10px 20px;
}

/* Same rhythm as balance-matters .clinician-card__desc */
.imperative-text {
  font-family: var(--font-body);
  font-size: 1.44rem;
  line-height: 1.4;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.001em;
}

.deaths-chart {
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 4px;
  background: #fff;
}

.deaths-chart img {
  width: 100%;
  height: auto;
  display: block;
}

.deaths-chart__source {
  margin-top: 8px;
}

/* Video placeholder */
.video-placeholder {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
}

.video-placeholder__img {
  width: 100%;
  height: auto;
  display: block;
}

/* PLAY badge — cyan blue rounded pill (matches reference) */
.video-placeholder__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius-sm);
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.play-btn {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1;
}

.play-label {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  padding: 28px 16px 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.4;
}
.video-caption strong { display: block; font-size: 1rem; font-weight: 700; }
.video-caption em { font-style: italic; font-size: 0.85rem; opacity: 0.9; }

.video-desc {
  font-family: var(--font-body);
  font-size: 1.44rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0.001em;
}

/* Stat banner — rounded solid blue card; CDC line below in blue (reference) */
.stat-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 8px;
}

.stat-banner.mt-m20 {
  margin-top: -30px;
}

/* Compact rectangle; donut breaks out top + left */
.stat-banner__card {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gradient-shared-v);
  border-radius: var(--radius-md);
  padding: 12px 30px 12px 0;
  color: var(--white);
  overflow: visible;
  margin-top: 60px;
}

.stat-banner__graphic {
  flex-shrink: 0;
  width: 200px;
  margin: -60px 0 -60px 22px;
  position: relative;
  z-index: 1;
}
.stat-banner__graphic picture {
  display: block;
}

.stat-banner__graphic img {
  width: 131px;
  height: auto;
  display: block;
}

.stat-banner__text {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.stat-banner__main {
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 1.98vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
  text-align: left;
  letter-spacing: 0.001em;
}

.stat-banner__source {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brand);
  text-align: right;
  margin: 0;
  padding-right: 2px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* ─── Homepage — Download app CTA (below Balance Imperative) ─── */
.app-download-cta {
  position: relative;
  padding: 56px 0 64px;
  text-align: center;
}

.app-download-cta .section-header {
  max-width: 820px;
  margin-bottom: 32px;
}

.app-download-cta__copy {
  margin-top: 18px;
}

.app-download-cta__link {
  display: inline;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  transition: color var(--transition), opacity var(--transition);
}
.app-download-cta__link:hover {
  color: var(--brand-deep);
  opacity: 0.9;
}

.app-download-cta__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3.5vw, 44px);
  margin-top: 8px;
}

.app-download-cta__logo {
  display: block;
  width: min(100%, 260px);
  height: auto;
  flex-shrink: 0;
}

/* Homepage — Download App CTA: full container width on desktop (index only) */
@media (min-width: 769px) {
  .home-page .app-download-cta .section-header {
    max-width: none;
    width: 100%;
  }

  .home-page .app-download-cta__copy {
    max-width: none;
  }

  .home-page .app-download-cta__stores {
    width: 100%;
    /* justify-content: space-between; */
  }
}

@media (max-width: 768px) {
  .app-download-cta {
    padding: 44px 0 52px;
  }

  .app-download-cta__stores {
    flex-direction: column;
    gap: 20px;
  }

  .app-download-cta__logo {
    order: -1;
    width: min(100%, 220px);
  }
}

/* ─── Footer — cyan blue (matches top bar + reference) ─── */
.site-footer {
  position: relative;
  /* z-index: 2; */
  background: var(--gradient-footer);
  color: var(--white);
  padding: 45px 0 320px;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  width: 100%;
}

.footer__brand { display: flex; align-items: center; }

.footer__logo {
  height: 120px;
  width: auto;
  display: block;
}

.footer__right {
  text-align: right;
  min-width: 0;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 1.06em;
  color: var(--white);
  line-height: 1.5;
}
.footer__copy a {
  color: var(--white);
  transition: opacity var(--transition);
}
.footer__copy a:hover { opacity: 0.85; }

.footer__mobile-stack {
  display: none;
}

.footer__mobile-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 16px;
}

.footer__store-badge {
  width: 150px;
  max-width: 42vw;
  height: auto;
}

.footer__mobile-powered {
  font-family: var(--font-body);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  text-align: center;
  margin: 0 0 12px;
}

.footer__mobile-links {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  text-align: center;
  margin: 0 0 10px;
}

.footer__mobile-links a {
  color: var(--white);
}

.footer__mobile-year {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin: 2px 0 10px;
}

.footer__mobile-copy {
  font-family: var(--font-body);
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--white);
  text-align: center;
  margin: 0;
}

/* Site-wide footer email signup (footer__inner--with-signup; does not alter global footer logo/link rules) */
.footer__inner--with-signup {
  /* grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); */
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: start;
  gap: 0;
}

.footer__inner--with-signup .footer__brand {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: stretch;
  align-items: flex-start;
  /* justify-content: flex-start; */
  justify-content: center;
  width: 100%;
  padding-right: 24px;
}

.footer__inner--with-signup .footer__content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
  min-width: 0;
  text-align: left;
  padding-left: 0;
  margin-top:13px;
}

.footer__inner--with-signup .footer__signup {
  width: 100%;
  /* max-width: 620px; */
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.footer__inner--with-signup .footer__signup-title {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  /* font-weight: 600; */
  line-height: 1.2;
  color: var(--white);
  /* margin: 0 0 8px; */
}

.footer__inner--with-signup .footer__signup-lede {
  font-family: var(--font-body);
  /* font-size: 0.83rem; */
  font-size: 1.09rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  margin: 0 0 8px;
}

.footer__inner--with-signup .footer__signup-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 10px;
  width: 75%;
}

.footer__inner--with-signup .footer__signup-input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: none;
  border-radius: 0px;
  font-family: var(--font-body);
  font-size: 17.2px;
  color: var(--text-secondary);
  background: var(--white);
  outline: none;
}

.footer__inner--with-signup .footer__signup-input::placeholder {
  color: #9496a0;
  opacity: 1;
}

.footer__inner--with-signup .footer__signup-input:focus {
  box-shadow: var(--focus-ring);
}

.footer__inner--with-signup .footer__signup-btn {
  padding: 11px 28px;
  border: none;
  border-radius: 10px;
  /* background: var(--orange); */
  background: #ffa100;
  color: var(--white);
  font-family: var(--font-nav);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.footer__inner--with-signup .footer__signup-btn:hover {
  /* background: var(--orange-dark); */
  background: #ff8f00;
  transform: translateY(-1px);
}

.footer__inner--with-signup .footer__signup-disclaimer {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-style: italic;
}

.footer__signup-thanks {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin: 0.5rem 0 0;
}

.footer__inner--with-signup .footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1.09rem;
  /* font-size: 0.94em; */
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.footer__inner--with-signup .footer__legal-copy::after,
.footer__inner--with-signup .footer__legal a + a::before {
  content: ' | ';
  white-space: pre;
}

.footer__inner--with-signup .footer__legal a {
  color: var(--white);
  transition: opacity var(--transition);
  flex: 0 0 auto;
}

.footer__inner--with-signup .footer__legal a:hover {
  opacity: 0.85;
}

@media (min-width: 601px) {
  .site-footer--with-signup {
    padding: 29px 0 205px;
    overflow: visible;
  }

  .footer__inner--with-signup .footer__legal {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

/* ─── Responsive 960px (tablet) ────────────────────────────── */
@media (max-width: 960px) {
  :root { --nav-h: 60px; }

  .section-title {
    font-size: clamp(2rem, 5.2vw, 2.45rem);
    line-height: 1.14;
  }

  .page-hero__title {
    font-size: clamp(2rem, 5vw, 2.6rem);
    line-height: 1.12;
  }

  .tech-feature__title {
    font-size: clamp(1.55rem, 3.8vw, 1.95rem);
  }

  .home-page .tech-feature__title {
    min-height: 0;
    display: block;
  }

  .home-page .tech-feature__desc {
    max-width: 100%;
  }

  .nav__hamburger { display: flex; }

  .nav-card {
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: var(--nav-h);
    /* height: auto; */
    height: 60px;
  }

  .nav__logo img {
    height: 42px;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 99;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Science page mobile nav must sit above first content card */
  .science-page .hero-block {
    overflow: visible;
  }

  .science-page .site-header,
  .science-page .nav-card,
  .science-page .nav__links {
    z-index: 700;
  }

  /* Home + download mobile — same hero stacking as index (sticky fixed nav) */
  .home-page .hero-block,
  .download-page .hero-block {
    overflow: visible;
  }

  .download-page .site-header.is-sticky {
    z-index: 700;
  }

  .nav__link {
    display: block;
    padding: 14px 16px;
    text-align: left;
    border-radius: var(--radius-sm);
  }
  .nav__link::after { display: none; }

  .nav__link[aria-current="page"] {
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 700;
  }

  .nav__cta {
    display: block;
    width: 100%;
    margin: 8px 0 0;
    text-align: center;
    padding: 14px 16px;
  }

  .hero { padding: 28px 0 56px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  /* Keep triangle twin to desktop — same height + clip as index */
  .hero-block__bg {
    height: var(--hero-gray-height);
    clip-path: var(--hero-gray-clip);
  }

  .hero__sub { max-width: 100%; margin: 0 auto; }
  .hero__fda-wrap { text-align: left; }
  .hero__fda-badge { width: 110px; height: 110px; margin: 2px 18px 6px 0; }
  .hero__visual { order: 1; }
  .hero__copy { order: 2; }
  .hero__image { max-width: 380px; }

  .tech-features { grid-template-columns: 1fr; }
  .imperative-grid { grid-template-columns: 1fr; gap: 36px; }

  .tech-growth-card,
  .tech-growth-card--ai {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-growth-card__content {
    order: 2;
  }

  .tech-growth-card__media {
    order: 1;
    max-width: 560px;
  }

  .tech-growth-card__title {
    font-size: clamp(1.6rem, 4.8vw, 2.1rem);
  }

  .tech-growth-card__intro {
    font-size: clamp(1rem, 2.5vw, 1.16rem);
    margin-bottom: 14px;
  }

  .tech-growth-card__body {
    font-size: clamp(1rem, 2.5vw, 1.16rem);
  }

  .tech-growth-card__media--duo {
    min-height: 245px;
    max-width: 560px;
  }

  .tech-growth-card__image--circle {
    width: clamp(135px, 32vw, 210px);
  }

  .cta-banner__inner { flex-direction: column; text-align: center; gap: 16px; }

  .footer__inner { justify-content: center; text-align: center; }
  .footer__right { text-align: center; }
}

/* ─── Responsive 600px (phone) ──────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --page-end-gray-height: 550px;
  }
  .tech-growth-page { --tech-section-space: 18px; }

  .tech-growth__stack-image {
    padding: 20px;
  }

  /* All chip-rows centered on mobile; page-hero chips stay left per hero alignment policy */
  .chip-row { justify-content: center; }
  .chip-row-left { justify-content: left; }
  .page-hero .chip-row { justify-content: flex-start; }

  .hero__fda-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
    margin-bottom: 14px;
  }

  .hero__fda-wrap::after {
    content: none;
  }

  .hero__fda-badge {
    float: none;
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    margin: 0;
    order: 2;
    shape-outside: none;
    -webkit-shape-outside: none;
  }

  .hero__fda-text {
    order: 1;
    font-size: 1.44rem;
    line-height: 1.35;
    max-width: none;
    margin-bottom: 16px;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
  }

  .hero__headline {
    order: 0;
  }

  .hero__fda-wrap {
    display: contents;
  }

  .hero__sub {
    order: 2;
  }

  .hero__fda-badge {
    order: 3;
    align-self: center;
    margin-top: 16px;
  }

  .text-mobile-center {
    text-align: center;
  }

  /* Homepage mobile: keep core text left-aligned */
  #hero .hero__inner {
    text-align: left;
  }

  #hero .hero__fda-wrap,
  #hero .hero__fda-text {
    text-align: left;
  }

  #hero .hero__fda-badge {
    align-self: flex-start;
  }

  #technologies .section-header,
  #the-science .section-header,
  #download-app .section-header {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  /* Center the bare chip spans inside section headers — mobile only, no desktop impact */
  #technologies .section-header > .chip,
  #the-science .section-header > .chip,
  #download-app .section-header > .chip {
    display: block;
    width: fit-content;
    margin: 0 auto 14px;
  }

  /* download.html — section titles/sub copy left on mobile (homepage section pattern) */
  .download-page .how-it-works .section-header,
  .download-page .look-inside .section-header,
  .download-page .benefits .section-header {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .download-page .how-it-works .section-header .chip-row:not(.chip-row-left),
  .download-page .look-inside .section-header .chip-row:not(.chip-row-left),
  .download-page .benefits .section-header .chip-row:not(.chip-row-left) {
    justify-content: center;
  }

  .download-page .how-it-works .section-header .chip-row.chip-row-left,
  .download-page .look-inside .section-header .chip-row.chip-row-left,
  .download-page .benefits .section-header .chip-row.chip-row-left {
    justify-content: flex-start;
  }

  /* download.html mobile hero: only logo centered; content left aligned */
  .download-page #hero .hero__inner {
    text-align: left;
  }

  .download-page .hero__copy {
    order: 2;
    align-items: flex-start;
  }

  .download-page .hero__visual {
    order: 1;
  }

  .download-page .download-hero__logo {
    width: min(100%, 260px);
    margin: 0 0 24px;
  }

  .download-page .hero__headline {
    order: 0;
    margin-bottom: 16px;
  }

  .download-page .hero__sub {
    order: 1;
    margin-bottom: 16px;
    text-align: left;
  }

  .download-page .download-hero__label {
    order: 2;
    margin: 0 0 12px;
    font-size: 1.8rem;
    line-height: 1.3;
    text-align: left;
  }

  .download-page .download-hero__btns {
    order: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .download-page .download-hero__store-link {
    display: inline-flex;
    justify-content: flex-start;
  }

  .download-page .download-hero__store-img {
    height: 56px;
    max-width: 100%;
  }

  #technologies .tech-feature,
  #technologies .tech-feature__desc,
  #the-science .imperative-text,
  #the-science .video-desc,
  #the-science .stat-banner__main,
  #the-science .stat-banner__source {
    text-align: left;
  }

  #technologies .tech-feature__title {
    text-align: center;
  }

  /* Chart source only — stay flush right under line graph on phone */
  #the-science .deaths-chart__source {
    text-align: right;
  }

  .tech-growth-page .cta-banner {
    padding: var(--tech-section-space) 0;
  }

  .science-content {
    padding-bottom: 40px;
  }

  .science-intro-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
    text-align: left;
  }

  .science-intro__image {
    width: min(100%, 300px);
  }

  .science-evidence__cards {
    gap: 14px;
  }

  .science-evidence-card {
    padding: 18px 12px;
  }

  .science-evidence-cta {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .science-highlight {
    margin-top: 36px;
    padding: 18px 16px 20px;
    border-radius: 14px;
  }

  .science-highlight__subhead {
    font-size: 1.02rem;
  }

  .science-highlight__list li {
    font-size: 0.97rem;
    line-height: 1.45;
  }

  .science-highlight .tech-detail__title {
    font-size: clamp(1.3rem, 6.3vw, 1.58rem);
  }

  .tech-growth-card__title {
    font-size: clamp(1.55rem, 3.8vw, 1.95rem);
    line-height: 1.1;
    margin-bottom: 0px;
  }

  .tech-growth-card__intro {
    font-size: 1.44rem;
    line-height: 1.4;
  }

  .tech-growth-card__body {
    font-size: 1.44rem;
    line-height: 1.4;
  }

  .tech-growth-card__media {
    border-radius: 12px;
  }

  .tech-growth-card__badge {
    right: 8px;
    bottom: 8px;
    width: 72px;
  }

  .tech-growth-card__media--duo {
    min-height: 215px;
  }

  .tech-growth-card__image--circle-left {
    left: 0;
    bottom: 12px;
    border-width: 6px;
  }

  .tech-growth-card__image--circle-right {
    right: 6px;
    bottom: 0;
    border-width: 6px;
  }

  .cta-banner__btn {
    font-size: 1.08rem;
    padding: 11px 20px;
    letter-spacing: 0.03em;
  }

  .home-page .cta-banner__inner {
    padding: 20px 20px;
  }

  .home-page .cta-banner__text {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    text-align: center;
  }

  .tech-growth-page .cta-banner__btn {
    font-size: 0.96rem;
    padding: 9px 16px;
    letter-spacing: 0.02em;
  }

  .announcement-bar {
    height: var(--announce-h);
  }

  .announcement-bar__inner {
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 52px 0 var(--gutter);
  }

  .announcement-bar__text {
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    width: 100%;
  }

  .announcement-bar__close {
    right: 12px;
    font-size: 1.25rem;
  }

  .hero__headline { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .science-page .page-hero__title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .about-page .page-hero__title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .news-page .page-hero__title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .contact-page .page-hero__title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .privacy-page .page-hero__title { font-size: clamp(2.6rem, 10vw, 3.6rem); }

  .section-title,
  .page-hero__title,
  .about-premium__pillars-title,
  .news-premium__section-title {
    font-size: clamp(1.95rem, 7.4vw, 2.45rem);
    line-height: 1.15;
  }

  #hero + main #technologies,
  #hero + main #book-demo,
  #hero + main #the-science {
    padding: 25px 0;
  }

  #hero + main #technologies {
    padding-top: 0;
  }

  .tech-features { gap: 28px; }

  /* Stat banner — graphic fully inside card on mobile (no breakout margins) */
  .stat-banner__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px 20px;
    gap: 16px;
    margin-top: 8px;
  }
  .stat-banner__graphic {
    margin: 0;
    width: auto;
    max-width: 100%;
  }
  .stat-banner__graphic img {
    width: min(100px, 72vw);
    max-width: 100%;
    margin: 0 auto;
  }
  .stat-banner__text { justify-content: center; }
  .stat-banner__main { text-align: center; }
  .stat-banner__source { text-align: center; }

  .stat-banner.mt-m20 {
    margin-top: 0;
  }

  .site-footer {
    padding: 34px 0 38px;
  }

  .footer__inner {
    display: block;
  }

  .footer__brand {
    display: block;
    text-align: left;
  }

  .footer__logo {
    width: 180px;
    height: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .footer__mobile-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
  }

  .footer__mobile-stack::before {
    content: none;
    display: none;
  }

  .footer__right {
    display: none;
  }

  .footer__mobile-links {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin: 0;
    font-size: 0;
    font-weight: 400;
    line-height: 1.45;
  }

  .footer__mobile-links::before {
    content: none;
  }

  .footer__mobile-links a {
    display: inline;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
  }

  .footer__mobile-links a[href="news.html"] {
    order: 1;
  }

  .footer__mobile-links a[href="about.html"] {
    order: 2;
  }

  .footer__mobile-links a[href="contact.html"] {
    order: 3;
  }

  .footer__mobile-links a[href="terms-of-service.html"] {
    order: 4;
  }

  .footer__mobile-links a[href="privacy-policy.html"] {
    order: 5;
  }

  .footer__mobile-links a[href="news.html"]::after,
  .footer__mobile-links a[href="about.html"]::after,
  .footer__mobile-links a[href="contact.html"]::after,
  .footer__mobile-links a[href="terms-of-service.html"]::after {
    content: ' | ';
    display: inline-block;
    padding: 0 14px;
    color: var(--white);
  }

  .footer__mobile-links a[href="privacy-policy.html"] {
    font-size: 0;
  }

  .footer__mobile-links a[href="privacy-policy.html"]::before {
    content: 'Privacy';
    font-size: 1rem;
  }

  .footer__mobile-links a[href="the-science.html"] {
    display: none;
  }

  .footer__mobile-year {
    order: 1;
    max-width: 360px;
    margin: 0 auto 0;
    font-size: 0;
    font-weight: 400;
    line-height: 1.55;
  }

  .footer__mobile-year::before {
    content: '©2026 UpRight Science';
    font-size: 1rem;
  }

  .footer__inner--with-signup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer__inner--with-signup .footer__brand,
  .footer__inner--with-signup .footer__content {
    width: 100%;
  }

  .footer__inner--with-signup .footer__content {
    align-items: flex-start;
    text-align: left;
    gap: 32px;
    overflow: visible;
    padding: 0 8px;
    min-width: 0;
    box-sizing: border-box;
  }

  .footer__inner--with-signup .footer__signup {
    max-width: none;
    text-align: left;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer__inner--with-signup .footer__signup-title,
  .footer__inner--with-signup .footer__signup-lede,
  .footer__inner--with-signup .footer__signup-disclaimer {
    text-align: left;
  }

  .footer__inner--with-signup .footer__signup-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer__inner--with-signup .footer__signup-btn {
    width: 100%;
    font-size: 1.08rem;
  }

  .site-footer--with-signup {
    overflow: visible;
    /* margin-bottom: 30px; */
    padding-bottom: 50px;
  }

  .footer__inner--with-signup .footer__legal {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    row-gap: 6px;
    line-height: 1.6;
    text-align: left;
  }

  .footer__inner--with-signup .footer__legal-copy,
  .footer__inner--with-signup .footer__legal a {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Newsletter signup form (news.html)
═══════════════════════════════════════════════════════════════ */

/* Tech detail jump-target strips */
.tech-detail {
  padding: 20px 24px;
  border-left: 3px solid var(--brand);
  background: var(--surface-muted);
  border-radius: 6px;
}
.tech-detail__inner { max-width: 900px; margin: 0 auto; }
.tech-detail__title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.tech-detail__body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--text-secondary);
  font-weight: 300;
}

.science-content {
  padding-bottom: 56px;
}

.science-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.science-intro__media {
  margin: 0;
  text-align: center;
}

.science-intro__image {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto;
}

.science-evidence-band {
  position: relative;
  overflow: hidden;
  padding: 34px 0 46px;
  text-align: center;
  /* background: linear-gradient(154deg, var(--white) 0 44%, var(--gray-bg) 44.2% 100%); */
}

.science-evidence__head {
  margin-bottom: 20px;
}

.science-evidence__title {
  margin-bottom: 8px;
}

.science-evidence__intro {
  margin-top: 0;
}

.science-evidence__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  /* max-width: 840px; */
  margin: 0 auto 44px;
}

.science-evidence-card {
  min-height: 138px;
  padding: 24px 20px 20px;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.science-evidence-card__title {
  max-width: 14ch;
  margin: 0 auto 10px;
}

.science-evidence-card__text {
  max-width: 20ch;
  margin: 0 auto;
}

.science-evidence-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* max-width: 820px; */
  margin: 0 auto;
  padding: 14px 18px 14px 30px;
  border-radius: 10px;
  background: var(--gradient-shared-v);
  text-align: left;
}

.science-evidence-cta__text {
  flex: 1;
}

.science-evidence-cta__btn {
  flex-shrink: 0;
}

.science-highlight {
  padding: clamp(22px, 2.8vw, 34px);
  border-left: 0;
  border: 1px solid rgba(14, 78, 126, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
  box-shadow: 0 12px 30px rgba(12, 58, 94, 0.1);
  position: relative;
  overflow: hidden;
}

.science-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.science-highlight .tech-detail__inner {
  max-width: 980px;
  margin: 0;
}

.science-highlight .tech-detail__title {
  font-size: clamp(1.52rem, 2.2vw, 1.96rem);
  margin-bottom: 12px;
}

.science-highlight .tech-detail__body {
  font-size: 1.44rem;
  line-height: 1.55;
  letter-spacing: 0.001em;
}

.science-highlight__section-title {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 96, 162, 0.16);
}

.science-highlight__subhead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.35;
  margin: 18px 0 8px;
}

.science-highlight__list {
  margin: 0 0 2px;
  padding-left: 1.08rem;
}

.science-highlight__list li {
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.52;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 9px;
}

.science-highlight__list li::marker {
  color: var(--brand);
}

.science-highlight__list li strong {
  color: var(--ink);
  font-weight: 700;
}

.science-highlight__body-intro {
  margin-bottom: 10px;
}

.news-signup {
  max-width: 600px;
  margin: 25px auto 0;
  text-align: center;
}
.news-signup__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.news-signup__input {
  flex: 1;
  min-width: 240px;
  max-width: 420px;
  padding: 12px 16px;
  border: 1.5px solid var(--border-field);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
}
.news-signup__input:focus { border-color: var(--brand); }
.news-signup__btn {
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.news-signup__btn:hover { background: var(--brand-deep); transform: translateY(-1px); }

/* ── Contact / Book a Demo page ─────────────────────────────────────── */
.page-hero {
  padding: 62px 0 56px;
  /* background: var(--gradient-page-hero); */
  border-bottom: 1px solid var(--page-hero-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(1, 146, 217, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(2, 112, 185, 0.1) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__chip {
  display: inline-block;
  background: var(--surface-tint);
  color: var(--brand);
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 27px;
  margin-top: 5px;
}
.page-hero__title--brand {
  color: var(--brand);
}
.page-hero__sub {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.6;
}
.page-hero__sub--wide {
  max-width: 760px;
}

.tech-growth-page .page-hero {
  background: transparent;
  border-bottom: none;
}

/* technology.html only */
/* technology.html — page-end gray wedge (main outside .hero-block; not on .hero-block) */
.technology-page .hero-block {
  position: relative;
  z-index: 2;
  overflow: unset;
}

.technology-page main.tech-growth.page-end-gray-host {
  position: relative;
  z-index: 0;
  padding-bottom: 0;
  overflow: visible;
  background: transparent;
}

.technology-page main.tech-growth.page-end-gray-host::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.technology-page main.tech-growth.page-end-gray-host > * {
  position: relative;
  z-index: 1;
}

.technology-page main.tech-growth.page-end-gray-host .tech-growth__modules,
.technology-page main.tech-growth.page-end-gray-host .tech-growth__stack,
.technology-page main.tech-growth.page-end-gray-host .cta-banner {
  background: transparent;
}

.technology-page main.tech-growth.page-end-gray-host + .site-footer {
  margin-top: 0;
}

/* Technologies pages — tighter hero → content (no hero sub on technology.html) */
.tech-growth-page .page-hero {
  padding-bottom: 14px;
}

.tech-growth-page .page-hero__title {
  margin-bottom: 0;
}

.technology-page .tech-growth__modules {
  padding-top: 0;
}

@media (max-width: 600px) {
  /* .technology-page .tech-growth-card__image--rtm {
    height: 240px;
  } */

  .technology-page .tech-growth__stack {
    display: none;
  }
}

.tech-growth-page .tech-growth-card__intro {
  margin-bottom: 16px;
}

.tech-growth-page .tech-growth-card__title {
  margin-bottom: 4px;
}

@media (min-width: 601px) {
  .technology-page h2.tech-growth-card__title.mt-p20 {
    margin-top: 20px;
  }
}

.tech-growth-page .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  padding-top: 15px;
}

.news-page .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);

  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.contact-page .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.privacy-page .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

@media (min-width: 961px) {
  .privacy-page .page-hero__sub {
    width: 99%;
    max-width: 100%;
  }
}

.tech-growth-page .page-hero::before,
.tech-growth-page .page-hero::after {
  content: none;
}

.science-hero-wrap {
  position: relative;
}

.science-page .hero-block {
  background: transparent;
}


.science-page .page-hero {
  border-bottom: none;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.science-page .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.science-page .page-hero::before,
.science-page .page-hero::after {
  content: none;
}

.science-page main {
  position: relative;
  z-index: 1;
}

.science-spec-page {
  /* background: #efefef; */
  padding-bottom: 28px;
}

.science-spec {
  padding: 0px 0 0px;
}

.science-spec__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.15vw, 1.95rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--brand);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.science-spec__intro,
.science-spec__process-intro {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.52;
  color: var(--text-secondary);
  margin-bottom: 25px;
  max-width: 1120px;
}

.science-spec__section-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0px 0 10px;
}

.science-spec__section-title--process {
  margin-top: 26px;
}

.measurement-section {
  margin-top: 48px;
}

.science-spec__subhead {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--brand);
  margin: 10px 0 18px;
}

.science-spec__grid {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

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

.science-spec__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.science-spec__card {
  border: 1px solid #c9c9cc;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 18px 20px;
}

.science-spec__card-title {
  font-family: var(--font-body);
  font-size: clamp(1.22rem, 1.95vw, 1.20rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.science-spec__card-body {
  font-family: var(--font-body);
  font-size: 1.16rem;
  font-weight: 300;
  line-height: 1.43;
  color: #4b5057;
}

.science-page .page-hero__sub {
  max-width: 1020px;
}

.science-intro {

  padding: 0 0 64px;
}

.science-intro__text {
  max-width: 1080px;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 300;
  line-height: 1.48;
  color: var(--text-secondary);
}


.about-page .page-hero {
  background: transparent;
  border-bottom: none;
}

.about-page .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.about-page .page-hero::before,
.about-page .page-hero::after {
  content: none;
}

/* about.html only — bottom gray wedge flush to footer (not clipped by the short CTA band) */
.about-page .about-premium {
  position: relative;
  padding-bottom: 0;
  overflow: visible;
}

.about-page .about-premium::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.about-page .about-page-end-gray__bg {
  display: none;
}

.about-page .about-premium > * {
  position: relative;
  z-index: 1;
}

.about-page .about-page-end-band {
  overflow: visible;
  background: transparent;
  margin-bottom: 0;
}

.about-page .about-page-end-band .cta-banner {
  background: transparent;
}

.about-page .site-footer {
  margin-top: 0;
}

.news-page .page-hero {
  background: transparent;
  border-bottom: none;
}

.news-page .page-hero::before,
.news-page .page-hero::after {
  content: none;
}

/* news-press.html — page-end gray wedge (scoped to .press-release-page only) */
.press-release-page .hero-block {
  position: relative;
  z-index: 2;
}

.press-release-page__custom_line1 a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 600;
}
.press-release-page main.news-premium.page-end-gray-host {
  position: relative;
  z-index: 0;
  margin-top: 18px;
  padding-bottom: 0;
  overflow: visible;
  background: transparent;
}

.press-release-page main.news-premium.page-end-gray-host::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.press-release-page main.news-premium.page-end-gray-host > * {
  position: relative;
  z-index: 1;
}

.press-release-page main.news-premium.page-end-gray-host .news-release {
  background: transparent;
}

.press-release-page main.news-premium.page-end-gray-host + .site-footer {
  margin-top: 0;
}

/* privacy-policy.html — page-end gray wedge (inner main; not on .hero-block) */
.privacy-page main.legal-page.page-end-gray-host {
  position: relative;
  padding: 25px 0 0;
  overflow: visible;
  background: transparent;
}

.privacy-page main.legal-page.page-end-gray-host::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.privacy-page main.legal-page.page-end-gray-host > * {
  position: relative;
  z-index: 1;
}

.privacy-page main.legal-page.page-end-gray-host .legal-layout {
  padding-bottom: 48px;
}

.privacy-page .hero-block + .site-footer {
  margin-top: 0;
}

/* the-science.html — page-end gray wedge (main outside .hero-block) */
.science-page main.science-spec-page.page-end-gray-host {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  overflow: visible;
  background: transparent;
}

.science-page main.science-spec-page.page-end-gray-host::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--page-end-gray-height);
  background: var(--gray-bg);
  clip-path: var(--page-end-gray-clip);
  z-index: 0;
  pointer-events: none;
}

.science-page main.science-spec-page.page-end-gray-host > * {
  position: relative;
  z-index: 1;
}

.science-page main.science-spec-page.page-end-gray-host + .site-footer {
  margin-top: 0;
}

.contact-page .page-hero {
  background: transparent;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-page .page-hero::before,
.contact-page .page-hero::after {
  content: none;
}

.contact-page .contact-classic__section {
  padding-bottom: 52px;
}

.contact-page .site-footer {
  margin-top: 0;
}

.privacy-page .page-hero {
  background: transparent;
  border-bottom: none;
  padding-bottom: 18px;
}

@media (min-width: 601px) {
  .privacy-page .page-hero__sub {
    margin-bottom: 0;
  }
  .privacy-page .page-hero {
    padding-bottom: 8px;
  }
}

.privacy-page .legal-page__bar {
  padding: 4px 0 2px;
}

.privacy-page .legal-layout {
  padding-top: 16px;
}

.privacy-page .page-hero::before,
.privacy-page .page-hero::after {
  content: none;
}

.about-page .page-hero__sub {
  max-width: 1020px;
}

.about-hero-gallery {
  margin-top: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.about-hero-gallery__item {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  background: var(--white);
}

.about-hero-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  /* aspect-ratio: 4 / 3; */
  /* object-fit: cover; */
}

.contact-section {
  padding: 64px 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info__title {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-info__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-detail__label {
  font-weight: 700;
  color: var(--ink);
}

/* Demo form card */
.demo-form {
  background: var(--white);
  border: 1px solid var(--border-form);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,115,187,0.08);
}
.demo-form__title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-secondary);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row--full {
  grid-template-columns: 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.form-label__hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-light);
  font-size: 0.92em;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--surface-muted);
  border: 1px solid var(--border-input);
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
  box-shadow: var(--focus-ring);
  background: #fff;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  padding: 14px 0;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

/* ── Contact page — premium (contact.html, theme-aligned) ───────────── */
.contact-premium {
  padding: 0 0 56px;
  background: var(--white);
}

.contact-premium__band {
  background: linear-gradient(180deg, var(--bg-off) 0%, var(--white) 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-section--premium {
  padding: 0;
}

.contact-grid--premium {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.contact-info__title--premium {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 900;
  color: var(--text-secondary);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.contact-info__body--premium {
  font-size: 1.27rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 148, 218, 0.35);
}

.contact-card__eyebrow {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gradient-bar-end);
}

.contact-card__value {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.contact-card--web .contact-card__value {
  color: var(--brand);
}

.contact-simple {
  padding: 34px 0 56px;
}

.contact-simple__inner {
  max-width: var(--max-w);
}

.contact-simple__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 860px;
}

.contact-simple__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.contact-simple__line {
  font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-simple__line a {
  color: var(--brand);
  font-weight: 700;
}

.contact-classic {
  padding: 0 0 56px;
  background: var(--white);
}

.contact-classic__section {
  padding: 18px 0 52px;
}

.contact-classic__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.contact-classic__lead {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.001em;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.contact-classic__lead--last {
  margin-top: 6px;
  margin-bottom: 4px;
}

.contact-classic__phone {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.contact-classic__form .demo-form__title {
  margin-bottom: 16px;
  color: var(--brand);
}

.contact-copy-page .contact-classic__form .demo-form__title {
  color: var(--brand);
}

.contact-page .contact-classic__form.demo-form,
.contact-page .contact-classic__form.demo-form--magic {
  /* padding-top: 0; */
}

.contact-page .contact-classic__form .demo-form__title {
  margin-top: 10px;
}

.contact-classic__form.demo-form,
.contact-classic__form.demo-form--magic {
  box-shadow: none;
}

.contact-classic__form.demo-form--magic::before,
.contact-classic__form.demo-form--magic::after {
  content: none;
  display: none;
  background: none;
}

.contact-classic__form .form-label {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
}

.contact-classic__form .form-label__hint {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.9em;
}

.contact-classic__form .form-submit {
  width: auto;
  min-width: 96px;
  padding: 10px 18px;
  border-radius: 8px;
}

.contact-classic__form .form-submit--magic,
.contact-classic__form .form-submit--magic:hover:not(:disabled) {
  box-shadow: none;
}

.contact-expect {
  margin-top: 36px;
  padding: 26px 22px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card-premium);
  position: relative;
  overflow: hidden;
}

.contact-expect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.contact-expect__title {
  font-family: var(--font-body);
  font-size: 1.38rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-expect__list {
  margin: 0;
  padding: 0 0 0 22px;
  list-style: disc;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.contact-expect__list li + li {
  margin-top: 8px;
}

.contact-premium__form-wrap {
  position: relative;
}

.demo-form--magic {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 40px 36px 38px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-brand);
  overflow: hidden;
  background: var(--white);
}

.demo-form--magic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
  z-index: 2;
}

.demo-form--magic::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -18%;
  width: min(72%, 320px);
  height: min(72%, 320px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(1, 146, 217, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.demo-form__kicker {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.demo-form--magic .demo-form__title {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.demo-form__lede {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.demo-form__form {
  position: relative;
  z-index: 1;
}

.demo-form__thanks {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* .contact-classic__form.is-submitted {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
} */

.demo-form--magic .form-input,
.demo-form--magic .form-select,
.demo-form--magic .form-textarea {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: var(--radius-sm-2);
  background: var(--surface-muted);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.demo-form--magic .form-input:hover,
.demo-form--magic .form-select:hover,
.demo-form--magic .form-textarea:hover {
  border-color: rgba(0, 148, 218, 0.4);
}

.demo-form--magic .form-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ink-mid);
}

.form-submit--magic {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: var(--gradient-announce-bar);
  font-family: var(--font-nav);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(2, 112, 185, 0.28);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.form-submit--magic:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(2, 112, 185, 0.35);
  filter: brightness(1.03);
}

.form-submit--magic:disabled {
  cursor: default;
  opacity: 0.92;
  transform: none;
}

/* .form-submit--magic.is-submitted {
  filter: brightness(0.96);
} */

.form-submit__text {
  position: relative;
  z-index: 1;
}

.form-submit__shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.65s ease;
}

.form-submit--magic:hover:not(:disabled) .form-submit__shine {
  left: 120%;
}

.form-success-msg {
  display: none;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand);
  text-align: center;
  line-height: 1.45;
}

.form-success-msg.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .contact-classic__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-classic__section {
    padding-top: 8px;
  }

  .contact-grid,
  .contact-grid--premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-form,
  .demo-form--magic {
    padding: 28px 22px;
  }

  .contact-page .contact-classic__form.demo-form,
  .contact-page .contact-classic__form.demo-form--magic {
    /* padding-top: 0; */
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-simple {
    padding: 24px 0 46px;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 36px; }

  .about-page .page-hero__sub {
    max-width: 100%;
  }

  .about-hero-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-page .page-hero__sub {
    font-size: 1.28rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   About page — premium layout (standalone about.html)
═══════════════════════════════════════════════════════════════ */

.about-premium {
  padding: 0 0 56px;
  background: var(--white);
}

.about-premium__context {
  padding: 30px 0 6px;
}

.about-premium__context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.about-premium__context-card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.about-premium__context-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.15vw, 1.95rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--brand);
  margin-bottom: 8px;
}

.about-premium__context-body {
  font-family: var(--font-body);
  font-size: 1.44rem;
  line-height: 1.52;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.001em;
}

.about-premium__band {
  background: linear-gradient(180deg, var(--bg-off) 0%, var(--white) 100%);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-subtle);
}

.about-premium__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-premium__lede {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.about-premium__lede p + p {
  margin-top: 1.25em;
}

.about-premium__story {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-premium);
  padding: 28px 26px 30px;
  overflow: hidden;
}

.about-premium__story::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.about-premium__story-kicker {
  font-family: var(--font-nav);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gradient-bar-end);
  margin: 0 0 10px;
}

.about-premium__story-lead {
  font-size: 1.44rem;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--ink-mid);
  margin: 0 0 14px;
}

.about-premium__story-body {
  font-size: 1.2rem;
  line-height: 1.62;
  margin: 0;
}

.about-premium__story-body + .about-premium__story-body {
  margin-top: 12px;
}

.about-premium__story-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-premium__story-points li {
  position: relative;
  padding: 9px 12px 9px 34px;
  border-radius: var(--radius-sm-2);
  background: var(--surface-muted);
  border: 1px solid var(--border-card);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink-mid);
}

.about-premium__story-points li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.about-premium__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 1 / -1;
}

.about-premium__stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card-premium);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-premium__stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.about-premium__stat-label {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gradient-bar-end);
  margin-bottom: 8px;
}

.about-premium__stat-headline {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-premium__stat-copy {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-premium__fda-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--brand-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 148, 218, 0.22);
}

.about-premium__fda-note img {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.about-premium__fda-note p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
}

.about-premium__mission-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--gutter) 0;
}

.about-premium__mission {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-brand);
  position: relative;
}

.about-premium__mission::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(180deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.about-premium__mission-inner {
  padding-left: clamp(12px, 2vw, 24px);
}

.about-premium__mission-kicker {
  font-family: var(--font-nav);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.about-premium__mission-title {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  font-weight: 900;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-premium__mission-body {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: var(--max-w-text);
}

.about-premium__pillars-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 35px var(--gutter) 0;
}

.about-premium__pillars-title {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 3.9vw, 3.3rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.12;
  letter-spacing: -0.02em;
  padding: 0;
}

@media (min-width: 961px) {
  .about-premium__pillars-title {
    white-space: nowrap;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.about-team {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-team__lede {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.32rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-team-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: none;
  padding: 28px 24px 30px;
  position: relative;
  overflow: hidden;
}

.about-team-card.about-team-card--reveal {
  opacity: 0;
  transform: translateY(14px);
}

.about-team-card.about-team-card--reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

.about-team-card::before { content: none; }

.about-team-card__role {
  font-family: var(--font-nav);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  /* color: var(--brand-deep); */
  color: var(--brand);
  margin-bottom: 10px;
}

.about-team-card__name {
  font-family: var(--font-body);
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--brand);
  margin-bottom: 12px;
}

.about-team-card__body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--text-secondary);
}

.about-team-card__body + .about-team-card__body {
  margin-top: 12px;
}

.about-team-card.is-preview-ready .about-team-card__body {
  display: none;
}

.about-team-card__preview {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-team-card__read-more {
  margin-top: 14px;
  padding: 0;
  border: none;
  background: none;
  color: var(--brand);
  font-family: var(--font-nav);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition);
}

.about-team-card__read-more:hover {
  opacity: 0.78;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
}

.about-modal.is-open {
  display: block;
}

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 36, 0.56);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.about-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 28px));
  margin: clamp(28px, 5vh, 56px) auto;
  max-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border-card);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.about-modal__header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, var(--surface-muted) 0%, var(--white) 100%);
  display: grid;
  gap: 6px;
}

.about-modal__role {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.about-modal__name {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 900;
  color: var(--text-secondary);
  line-height: 1.24;
}

.about-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.about-modal__body {
  padding: 18px 22px 24px;
  overflow: auto;
}

.about-modal__body p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-modal__body p + p {
  margin-top: 12px;
}

@media (min-width: 961px) {
  .about-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .about-modal__dialog {
    margin: 0;
    max-height: calc(100vh - 40px);
  }
}

.about-premium__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-premium__pillar {
  background: var(--surface-muted);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  border: 1px solid var(--border-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.about-premium__pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 148, 218, 0.35);
}

.about-premium__pillar-num {
  font-family: var(--font-cta);
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.about-premium__pillar-title {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-secondary);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.about-premium__pillar-text {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-premium__cta {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 0 var(--gutter);
}

.about-premium__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--gradient-announce-bar);
  color: var(--white);
  box-shadow: 0 10px 36px rgba(2, 112, 185, 0.28);
}

.about-premium__cta-inner--solo {
  justify-content: center;
  padding: 22px 32px;
}

.about-premium__cta-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: var(--radius-sm-2);
  background: var(--white);
  color: var(--gradient-bar-end);
  font-family: var(--font-cta);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.about-premium__cta-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.about-premium__tagline {
  text-align: center;
  margin-top: 56px;
  padding: 0 var(--gutter);
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  font-style: italic;
  color: var(--brand);
  letter-spacing: 0.02em;
}

/* ── About: Growth & vision · Innovation · Join us (brand tokens only) ── */
.about-premium__section--growth {
  padding: 64px 0 56px;
  background: var(--white);
}

.about-premium__section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-premium__mag-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.about-premium__mag-lede {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 16px;
}

.about-premium__timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
  position: relative;
}

.about-premium__timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.about-premium__timeline-item {
  position: relative;
  padding: 0 0 32px 64px;
}

.about-premium__timeline-item:last-child {
  padding-bottom: 0;
}

.about-premium__timeline-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
  z-index: 1;
}

.about-premium__timeline-year {
  font-family: var(--font-cta);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gradient-bar-end);
  margin-bottom: 6px;
}

.about-premium__timeline-title {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-secondary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-premium__timeline-desc {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-premium__section--innovation {
  padding: 64px 0 60px;
  background: linear-gradient(180deg, var(--bg-off) 0%, var(--white) 50%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-premium__innovation-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(240px, 0.78fr);
  gap: 28px 44px;
  align-items: start;
}

.about-premium__innovation-head {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.about-premium__innovation-lede {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-premium__innovation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-premium__innovation-list li {
  position: relative;
  padding-left: 32px;
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-premium__innovation-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.about-premium__innovation-aside {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px 30px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-brand);
  transform: rotate(-1.25deg);
  position: relative;
  top: 8px;
}

.about-premium__innovation-aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 100%);
}

.about-premium__innovation-aside-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-premium__innovation-aside-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-premium__invite {
  position: relative;
  margin: 48px 0 0;
  padding: 0;
  max-width: none;
  background: var(--gradient-page-hero);
  border-bottom: 1px solid var(--page-hero-border);
  overflow: hidden;
}

.about-premium__invite-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-premium__invite-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(1, 146, 217, 0.12) 0%, transparent 70%);
}

.about-premium__invite-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(2, 112, 185, 0.1) 0%, transparent 68%);
}

.about-premium__invite-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about-premium__invite-copy {
  min-width: 0;
}

.about-premium__invite-title {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 900;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-premium__invite-body {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 52rem;
}

.about-premium__invite-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.about-premium__invite-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: var(--radius-md);
  background: var(--gradient-announce-bar);
  color: var(--white);
  font-family: var(--font-cta);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(2, 112, 185, 0.32);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.about-premium__invite-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(2, 112, 185, 0.38);
}

.about-premium__invite-cta-label {
  line-height: 1;
}

.about-premium__invite-cta-arrow {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform var(--transition);
}

.about-premium__invite-cta:hover .about-premium__invite-cta-arrow {
  transform: translateX(6px);
}

.about-premium__invite-phone {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 148, 218, 0.28);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
  text-decoration: none;
}

.about-premium__invite-phone:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: var(--shadow-md);
}

@media (max-width: 960px) {
  .about-premium__context-grid {
    grid-template-columns: 1fr;
  }

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

  .about-hero-gallery__item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .about-premium__intro {
    grid-template-columns: 1fr;
  }
  .about-premium__story {
    padding: 24px 20px 24px 22px;
  }
  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-modal__dialog {
    width: min(860px, calc(100% - 20px));
    max-height: calc(100vh - 28px);
    margin: 14px auto;
  }
  .about-premium__pillars {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .about-premium__cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-premium__invite-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-premium__invite-actions {
    align-items: center;
  }

  .about-premium__innovation-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-premium__innovation-aside {
    transform: none;
    top: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .about-premium__timeline::before {
    left: 18px;
  }

  .about-premium__timeline-item {
    padding-left: 56px;
  }

  .about-premium__timeline-item::before {
    left: 10px;
  }
}

@media (max-width: 600px) {

  .about-team{
    padding-left: var(--c-gutter-mobile);
    padding-right: var(--c-gutter-mobile);
  }

  .about-hero-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-hero-gallery__item:nth-child(3) {
    grid-column: auto;
  }

  .about-premium__context {
    padding-top: 20px;
  }

  .about-premium__context-title {
    font-size: 1.75rem;
  }

  .about-premium__context-body {
    font-size: 1.44rem;
    line-height: 1.5;
  }

  .about-premium__pillars-head {
    margin-bottom: 12px;
    padding: 24px var(--c-gutter-mobile) 0 var(--c-gutter-mobile);
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .about-page .about-premium__pillars-title {
    font-size: 2.25rem;
    padding-top: 0;
    padding-bottom: 0.5rem;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: var(--max-w);
    box-sizing: border-box;
    padding: 0px var(--c-gutter-mobile) 0 var(--c-gutter-mobile);
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-page .container.about-m-0.about-p-0 {
    margin: 0;
    padding: 0;
  }

  .about-premium__story-lead {
    font-size: 1.28rem;
  }

  .about-premium__story-body {
    font-size: 1.08rem;
  }

  .about-premium__story-points li {
    font-size: 0.98rem;
  }

  .about-team__lede {
    font-size: 1.44rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .about-team-card {
    padding: 22px 18px 24px;
  }

  .about-team-card__name {
    font-size: 1.28rem;
  }

  .about-team-card__body {
    font-size: 1.44rem;
  }

  .about-team-card__preview {
    line-clamp: 5;
    -webkit-line-clamp: 5;
  }

  .about-team-card__read-more {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .about-modal__header {
    padding: 16px 16px 14px;
  }

  .about-modal__body {
    padding: 14px 16px 18px;
  }

  .about-modal__body p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .about-modal__close {
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.45rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   News page — premium insights layout (news.html)
═══════════════════════════════════════════════════════════════ */

.news-premium {
  /* padding: 0 0 56px; */
  background: var(--white);
}

.news-page .page-hero {
  background: transparent;
  border-bottom: none;
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
}

.news-page .page-hero::before,
.news-page .page-hero::after {
  content: none;
}

/* Shorter gray wedge — stays in hero only, does not reach release copy */
.news-page .hero-block__bg {
  height: clamp(220px, 30vw, 420px);
  clip-path: polygon(0 0, 90% 0, 0 78%);
}

/* news-press.html: keep original top gray hero geometry */
.news-page.press-release-page .hero-block__bg {
  height: var(--hero-gray-height);
  clip-path: var(--hero-gray-clip);
}

.news-page.press-release-page .page-hero {
  padding-bottom: 30px;
}

.news-page .page-hero__sub {
  font-size: 1.44rem;
  line-height: 1.58;
  letter-spacing: 0.001em;
  max-width: 100%;
}

.news-release {
  padding-bottom: 56px;
  /* padding: 0 0 56px; */
  text-align: left;
  background: var(--white);
}

.news-release__article {
  max-width: 980px;
}

.news-release__eyebrow {
  margin-bottom: 10px;
  font-family: var(--font-nav);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.news-release__title {
  max-width: 900px;
  /* margin-bottom: 8px; */
  margin-bottom: 27px;
  font-family: var(--font-body);
  /* font-size: clamp(1.5rem, 2.25vw, 2.0625rem); */
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--brand);
}

.news-release__subtitle {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-secondary);
}

.news-release__body {
  max-width: 940px;
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-secondary);
}
.news-release__body-text {
  display: block;
  margin-top: 0;
}
.news-release__toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.news-release__body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-weight: 800;
}

.news-release__body strong + br {
  display: none;
}

.news-release__more {
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  cursor: pointer;
}

.news-release__more:hover,
.news-release__more:focus-visible {
  text-decoration: underline;
}

.news-release__more-close,
.news-release__expanded {
  display: none;
}

.news-release--full .news-release__expanded {
  display: block;
}

.news-release__toggle:checked ~ .news-release__body .news-release__more-open {
  display: none;
}

.news-release__toggle:checked ~ .news-release__body .news-release__more-close,
.news-release__toggle:checked ~ .news-release__expanded {
  display: block;
}

.news-release__toggle:checked ~ .news-release__body .news-release__more-close {
  display: inline;
}

.news-release__expanded {
  max-width: 940px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-secondary);
}

@media (min-width: 961px) {
  .news-release__article,
  .news-release__title,
  .news-release__subtitle,
  .news-release__body,
  .news-release__expanded {
    max-width: 100%;
    width: 100%;
  }
}

.news-release__expanded p + p {
  margin-top: 14px;
}

.news-release__about-title {
  margin: 22px 0 8px;
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-secondary);
}

.news-release__contact strong {
  color: var(--text-secondary);
  font-weight: 800;
}

.news-release__contact a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.news-release__contact a:hover,
.news-release__contact a:focus-visible {
  text-decoration: underline;
}

.news-premium__band {
  background: linear-gradient(to top, var(--bg-off) 0%, var(--white) 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.news-premium__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.news-premium__lede {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.58;
  letter-spacing: 0.001em;
}

.news-premium__lede p + p {
  margin-top: 1.25em;
}

.news-premium__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-premium__pulse-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px 24px 30px;
  background: var(--white);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card-premium);
  overflow: hidden;
}

.news-premium__pulse-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--accent) 100%);
}

.news-premium__pulse-label {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.news-premium__pulse-stat {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 4.6vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news-premium__pulse-copy {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.58;
  letter-spacing: 0.001em;
}

.news-premium__pulse-foot {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--brand-deep);
}

.news-premium__spotlight-wrap {
  padding: 56px 0;
}

.news-premium__section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0 var(--gutter);
}

.news-premium__section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.news-spotlight {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(22, 163, 148, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 148, 218, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, var(--white) 0%, var(--surface-muted) 100%);
  box-shadow: var(--shadow-brand);
  overflow: hidden;
}

.news-spotlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--accent) 100%);
}

.news-spotlight__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 220px);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.news-spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient-announce-bar);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(2, 112, 185, 0.25);
}

.news-spotlight__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta-sun);
  box-shadow: 0 0 0 3px rgba(250, 167, 27, 0.35);
  animation: news-pulse-dot 2s ease-in-out infinite;
}

@keyframes news-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.news-spotlight__title {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.news-spotlight__body {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.58;
  letter-spacing: 0.001em;
  max-width: 52ch;
}

.news-spotlight__meta {
  margin-top: 18px;
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.news-spotlight__visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.news-spotlight__metric {
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-card);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.news-spotlight__metric-val {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.news-spotlight__metric-label {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-mid);
}

.news-spotlight__metric--accent .news-spotlight__metric-val {
  color: var(--accent);
}

.news-premium__bento-wrap {
  padding: 56px 0;
}

.news-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.news-bento__item {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  background: var(--white);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.news-bento__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-bar-start), var(--gradient-bar-end));
  opacity: 0.85;
}

.news-bento__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 148, 218, 0.28);
}

.news-bento__item--feature {
  grid-column: 1 / span 8;
  grid-row: 1 / span 2;
  background:
    linear-gradient(145deg, var(--brand-soft) 0%, var(--white) 42%, var(--white) 100%);
}

.news-bento__item--press {
  grid-column: 9 / span 4;
  grid-row: 1;
}

.news-bento__item--product {
  grid-column: 9 / span 4;
  grid-row: 2;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--white) 55%);
}

.news-bento__item--reg {
  grid-column: 1 / span 6;
  grid-row: 3;
}

.news-bento__item--events {
  grid-column: 7 / span 6;
  grid-row: 3;
  background: linear-gradient(135deg, var(--orange-soft) 0%, var(--white) 50%);
}

.news-bento__item--events::before {
  background: linear-gradient(90deg, var(--orange), var(--cta-sun));
}

.news-bento__tag {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.news-bento__item--product .news-bento__tag {
  color: var(--accent-dark);
}

.news-bento__item--events .news-bento__tag {
  color: var(--orange-dark);
}

.news-bento__title {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.news-bento__item--feature .news-bento__title {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.news-bento__text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.news-bento__list {
  margin: 14px 0 0;
  padding: 0 0 0 20px;
  list-style: disc;
  font-family: var(--font-body);
  font-size: 1.16rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.news-bento__list li + li {
  margin-top: 6px;
}

.news-bento__foot {
  margin-top: 16px;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.news-premium__subscribe {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--gutter);
}

.news-premium__subscribe-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 40px);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-brand);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(1, 146, 217, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(22, 163, 148, 0.1) 0%, transparent 42%),
    var(--white);
}

.news-premium__subscribe-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-bar-start) 0%, var(--gradient-bar-end) 50%, var(--accent) 100%);
  z-index: 2;
}

.news-premium__subscribe-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.news-premium__subscribe-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.news-premium__subscribe-lede {
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.58;
  letter-spacing: 0.001em;
  max-width: 46ch;
}

.news-premium__subscribe .news-signup {
  margin: 0;
  text-align: left;
  max-width: none;
}

.news-premium__subscribe .news-signup__form {
  justify-content: flex-start;
}

@media (max-width: 960px) {
  .news-premium__intro {
    grid-template-columns: 1fr;
  }

  .news-spotlight__inner {
    grid-template-columns: 1fr;
  }

  .news-spotlight__visual {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-spotlight__metric {
    flex: 1;
    min-width: 140px;
  }

  .news-bento__item--feature,
  .news-bento__item--press,
  .news-bento__item--product,
  .news-bento__item--reg,
  .news-bento__item--events {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .news-premium__subscribe-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .news-premium__subscribe .news-signup {
    text-align: center;
  }

  .news-premium__subscribe .news-signup__form {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .news-spotlight__visual {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .news-spotlight__metric {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-spotlight__badge-dot {
    animation: none;
  }
}

/* ─── Legal page (Privacy policy) — premium doc layout ─── */
.legal-page {
  padding: 20px 0 88px;
  /* background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(0, 149, 218, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(22, 163, 148, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--surface-muted) 0%, var(--white) 32%, var(--white) 100%); */
}

.legal-page__bar {
  padding: 20px 0 8px;
}

.legal-page__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 24px;
  width: 100%;
}

.legal-page__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page__date {
  font-family: var(--font-nav);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--white);
  display: inline-block;
  padding: 9px 0;
  line-height: 1.25;
  /* border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm); */
}

.legal-layout {
  padding-top: 28px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--announce-h) + 100px);
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card-premium);
}

.legal-toc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(0, 149, 218, 0.35), rgba(22, 163, 148, 0.2), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.legal-toc__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.legal-toc ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc a {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 7px 9px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--brand);
  background: var(--surface-tint);
  border-left-color: var(--brand);
}

.legal-doc {
  width: 100%;
}

.legal-block {
  position: relative;
  /* margin-bottom: 22px; */
  padding: clamp(22px, 3vw, 32px);
  /* padding-left: clamp(22px, 3vw, 36px); */
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.legal-block::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-brand-v);
  border-radius: 4px 0 0 4px;
}

.privacy-page .legal-page__date,
.privacy-page .legal-toc,
.privacy-page .legal-block {
  box-shadow: none !important;
}

.privacy-page .legal-page__date,
.privacy-page .legal-toc,
.privacy-page .legal-block,
.privacy-page .legal-block--notice {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.privacy-page .legal-toc a {
  border-left: none;
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 7px 12px;
}

.privacy-page .legal-toc a:hover,
.privacy-page .legal-toc a:focus-visible {
  color: var(--brand);
  background: rgba(0, 148, 218, 0.14);
  border-left-color: transparent;
}

.privacy-page .legal-toc {
  padding: 0 !important;
}

.privacy-page .legal-toc__title {
  margin-bottom: 10px;
}

.privacy-page .legal-block {
  padding: 0 0 18px !important;
  margin-bottom: 12px;
}

.privacy-page .legal-block:last-child {
  margin-bottom: 0;
}

.privacy-page .legal-toc::before,
.privacy-page .legal-block::after,
.privacy-page .legal-block--notice::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.legal-block--notice {
  border-color: rgba(217, 106, 23, 0.35);
  background: linear-gradient(135deg, var(--white) 0%, var(--orange-soft) 100%);
}

.legal-block--notice::after {
  background: linear-gradient(to bottom, var(--orange-dark), var(--cta-sun));
}

.legal-doc h2 {
  font-family: var(--font-body);
  font-size: clamp(1.48rem, 2.35vw, 1.82rem);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.legal-doc h3 {
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin: 22px 0 11px;
  letter-spacing: -0.01em;
}

.legal-doc h4 {
  font-family: var(--font-body);
  font-size: 1.09rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin: 18px 0 9px;
}

.legal-doc p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 15px;
}

.legal-doc p:last-child {
  margin-bottom: 0;
}

.legal-doc ul {
  list-style: disc;
  padding-left: 1.45rem;
  margin: 0 0 15px;
}

.legal-doc li {
  font-family: var(--font-body);
  font-size: 1.075rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 9px;
}

.legal-doc strong {
  font-weight: 700;
  color: var(--text-secondary);
}

.legal-doc a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--brand-dark);
}

.legal-caps {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: 0.028em;
  color: var(--ink-mid);
  margin-bottom: 15px;
}

.legal-doc address {
  font-style: normal;
  font-size: 1.075rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 15px;
}

@media (max-width: 960px) {
  .legal-toc {
    position: relative;
    top: auto;
    padding: 16px;
  }

  .legal-toc ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .legal-toc li {
    flex: 0 0 auto;
  }

  .legal-toc a {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .legal-toc a:hover,
  .legal-toc a:focus-visible {
    border-left-color: transparent;
    border-bottom-color: var(--brand);
  }

  /* terms-of-service.html only: remove bottom active underline on tap */
  .terms-page .legal-toc a:hover,
  .terms-page .legal-toc a:focus-visible,
  .terms-page .legal-toc a:active {
    border-bottom-color: transparent;
    text-decoration: none;
  }

  /* privacy-policy.html: remove bottom active underline on tap */
  .privacy-page .legal-toc a:hover,
  .privacy-page .legal-toc a:focus-visible,
  .privacy-page .legal-toc a:active {
    border-bottom-color: transparent;
    text-decoration: none;
  }
}

@media (max-width: 600px) {
  .tech-growth-page .page-hero .container,
  .science-page .page-hero .container,
  .about-page .page-hero .container,
  .news-page .page-hero .container,
  .privacy-page .page-hero .container,
  .contact-page .page-hero .container {
    text-align: left;
  }

  .tech-growth-page .page-hero__sub,
  .science-page .page-hero__sub,
  .about-page .page-hero__sub,
  .news-page .page-hero__sub,
  .privacy-page .page-hero__sub,
  .contact-page .page-hero__sub,
  .tech-growth-page .page-hero__sub--wide,
  .science-page .page-hero__sub--wide,
  .about-page .page-hero__sub--wide,
  .news-page .page-hero__sub--wide,
  .privacy-page .page-hero__sub--wide,
  .contact-page .page-hero__sub--wide {
    margin-left: 0;
    margin-right: 0;
  }

  .tech-growth-page main img,
  .science-page main img,
  .about-page main img,
  .news-page main img,
  .privacy-page main img {
    margin-left: auto;
    margin-right: auto;
  }

  .science-intro-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .science-intro__text .tech-growth-card__title,
  .science-evidence__title {
    font-size: clamp(1.95rem, 7.4vw, 2.45rem);
    line-height: 1.15;
  }

  .science-intro__media {
    order: 2;
  }

  .science-intro__image {
    width: min(82vw, 300px);
  }

  .news-page .news-release {
    text-align: left;
  }

  .news-release__article,
  .news-release__title,
  .news-release__subtitle,
  .news-release__body,
  .news-release__expanded {
    margin-left: 0;
    margin-right: 0;
  }

  .science-evidence-band {
    padding: 28px 0 38px;
  }

  .science-evidence__intro,
  .science-evidence-card__text {
    font-size: 1rem;
    line-height: 1.38;
  }

  .science-evidence__cards {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-bottom: 30px;
  }

  .science-evidence-card__title {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
    line-height: 1.15;
  }

  .science-evidence-cta {
    padding: 16px;
  }

  .science-evidence-cta__text {
    font-size: 1rem;
    line-height: 1.25;
  }

  .science-evidence-cta__btn {
    font-size: 1.08rem;
    padding: 11px 20px;
  }

  .legal-page .legal-page__bar-inner,
  .legal-page .legal-doc {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .legal-page .legal-page__bar-inner,
  .legal-page .legal-page__meta {
    justify-content: flex-start;
    text-align: left;
  }

  .legal-page .legal-page__meta {
    width: 100%;
  }

  .privacy-page .legal-doc,
  .privacy-page .legal-doc ul,
  .privacy-page .legal-doc li {
    text-align: left;
  }

  .science-spec {
    padding-top: 18px;
  }

  .science-spec__title {
    font-size: 1.75rem;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .science-spec__intro,
  .science-spec__process-intro {
    font-size: 1.44rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .science-spec__section-title {
    font-size: 1.75rem;
    line-height: 1.12;
    margin: 24px 0 10px;
  }

  .science-spec__subhead {
    font-size: 1.28rem;
    line-height: 1.2;
    margin: 8px 0 6px;
  }

  .science-spec__grid {
    margin-bottom: 22px;
  }

  .science-spec__grid--2 {
    grid-template-columns: 1fr;
  }

  .science-spec__grid--3 {
    grid-template-columns: 1fr;
  }

  .science-spec__card {
    padding: 18px 16px 20px;
    border-radius: 16px;
    text-align: left;
  }

  .science-spec__card-title {
    font-size: 1.10rem;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .science-spec__card-body {
    font-size: 1.10rem;
    line-height: 1.5;
  }

  .science-spec__section-title--process {
    margin-top: 30px;
  }

  .contact-page .contact-classic__form .form-group,
  .contact-page .contact-classic__form .form-label,
  .contact-page .contact-classic__form .form-label__hint {
    text-align: left;
  }

  .contact-page .contact-classic__form .form-submit {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}