/* ============================================================
   science.css — Real Science page (original design)
   ============================================================ */

:root {
  --ff:  'Barlow', sans-serif;
  --ffc: 'Barlow Condensed', sans-serif;
}

.science-page {
  background: #ffffff;
  color: #111111;
  font-family: var(--ff);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
}

.science-page * { box-sizing: border-box; }

.sci-rule {
  border: none;
  border-top: 0.5px solid rgba(0,0,0,0.12);
  margin: 0;
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HERO ---- */
.sci-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 4vw 6rem;
}
.hero-bg {
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(254,80,0,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 12% 18%, rgba(254,80,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 88% 78%, rgba(69,203,133,0.05) 0%, transparent 60%);
}
.hero-drop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 1;
  opacity: 0.07;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.eyebrow {
  font-family: var(--ffc);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 2rem;
}
.sup {
  font-size: 0.6em;
  vertical-align: super;
}
.hero-title {
  font-family: var(--ffc);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #111111;
}
.orange { color: #FE5000; }
.hero-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.65);
  max-width: 500px;
  margin: 1.5rem auto 3.5rem;
  font-weight: 300;
}
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 0.5px solid rgba(0,0,0,0.12);
}
.stat-item {
  padding: 1.5rem 2.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--ffc);
  font-size: 2.4rem;
  font-weight: 300;
  color: #FE5000;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 0.35rem;
}

/* ---- SHARED SECTION STYLES ---- */
.sci-section {
  padding: clamp(5rem, 10vw, 8rem) 4vw;
  position: relative;
  overflow: hidden;
}
.eyebrow-sm {
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--ffc);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #111111;
}
.section-intro {
  font-size: 1.08rem;
  color: rgba(0,0,0,0.65);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.sci-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FE5000;
  text-decoration: none;
  margin-top: 1.25rem;
}

/* ---- TRIALS ---- */
.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--ffc);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  cursor: pointer;
}
.trials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  border: 0.5px solid rgba(0,0,0,0.12);
}
.trial-card {
  padding: 2rem 1.75rem;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  transition: background 0.22s;
  display: flex;
  flex-direction: column;
}
.trial-tag {
  display: inline-block;
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.trial-title {
  font-family: var(--ffc);
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: #111111;
}
.trial-journal {
  font-family: var(--ffc);
  font-size: 0.97rem;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.trial-meta {
  font-size: 1.08rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
  flex: 1;
}
.trial-meta-strong {
  color: #111111;
  font-weight: 500;
}

/* ---- NEWS ---- */
.sci-section-news {
  background: #f4f4f6;
  padding: clamp(5rem, 10vw, 8rem) 4vw;
  position: relative;
  overflow: hidden;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 0.5px solid rgba(0,0,0,0.12);
}
.news-feat {
  padding: 2.5rem;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  background: #f4f4f6;
  transition: background 0.22s;
}
.news-stack {
  display: flex;
  flex-direction: column;
}
.news-item {
  padding: 1.4rem 1.75rem;
  background: #f4f4f6;
  transition: background 0.2s;
}
.outlet {
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FE5000;
  flex-shrink: 0;
  display: inline-block;
}
.news-headline {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: #111111;
}
.news-headline-sm {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  color: #111111;
}
.news-excerpt {
  font-size: 0.97rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}
.news-date {
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.55);
  margin-top: 0.5rem;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  border: 0.5px solid rgba(0,0,0,0.12);
  border-top: none;
}
.extra-card {
  padding: 2rem 1.75rem;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  background: #f4f4f6;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.extra-title {
  font-family: var(--ffc);
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: #111111;
}
.news-meta {
  font-size: 1.08rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  margin-top: 0.5rem;
  flex: 1;
}
.media-strip {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.media-lbl {
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.75);
  white-space: nowrap;
}
.media-logos {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.media-logo {
  font-family: var(--ffc);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

/* ---- CLAIMS ---- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  border: 0.5px solid rgba(0,0,0,0.12);
  margin-bottom: 2px;
}
.cred-card {
  padding: 2rem 1.75rem;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.cred-badge {
  display: inline-block;
  font-family: var(--ffc);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.cred-title {
  font-family: var(--ffc);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: #111111;
}
.cred-sub {
  font-family: var(--ffc);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.65);
  margin-bottom: 0.75rem;
}
.cred-body {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
  flex: 1;
}
.claims-header {
  padding: 1.5rem 0 1rem;
}
.claims-count {
  font-family: var(--ffc);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #111111;
}
.claims-desc {
  font-size: 0.97rem;
  color: rgba(0,0,0,0.65);
  max-width: 560px;
  line-height: 1.7;
}
.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  border: 0.5px solid rgba(0,0,0,0.12);
}
.claim-card {
  padding: 1.25rem 1.5rem;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  transition: background 0.2s;
}
.claim-cat {
  font-family: var(--ffc);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.claim-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
}
.hc-section {
  margin-top: 3rem;
}
.text-strong {
  color: #111111;
  font-weight: 500;
}
.footnote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 0.5px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.02);
}
.footnote-text {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.75;
  margin: 0;
}

/* ---- GLOBAL BAND ---- */
.global-band {
  background: #FE5000;
  padding: 4rem 2rem;
  text-align: center;
}
.global-lbl {
  font-family: var(--ffc);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.global-h2 {
  font-family: var(--ffc);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.global-p {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.regions {
  display: flex;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  flex-wrap: wrap;
}
.region {
  font-family: var(--ffc);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.region-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  display: inline-block;
}

/* ---- PARTNERS ---- */
.fission-callout {
  border: 0.5px solid #FE5000;
  padding: 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  margin-bottom: 2px;
  background: rgba(254,80,0,0.04);
  flex-wrap: wrap;
}
.fission-icon {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border: 0.5px solid #FE5000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fission-body {
  flex: 1;
}
.fission-eyebrow {
  font-family: var(--ffc);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 0.5rem;
}
.fission-title {
  font-family: var(--ffc);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: #111111;
}
.fission-desc {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}
.fission-strong {
  color: #111111;
  font-weight: 500;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  border: 0.5px solid rgba(0,0,0,0.12);
}
.partner-card {
  padding: 2rem 1.75rem;
  border-right: 0.5px solid rgba(0,0,0,0.12);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  transition: background 0.22s;
}
.partner-cat {
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.partner-name {
  font-family: var(--ffc);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: #111111;
}
.partner-region {
  font-family: var(--ffc);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-bottom: 0.75rem;
}
.partner-desc {
  font-size: 1.08rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}

/* ---- SCIENCE FOOTER ---- */
.sci-footer {
  background: #f4f4f6;
  padding: 4rem 4vw 2.5rem;
  border-top: 0.5px solid rgba(0,0,0,0.12);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand-sci {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-wm {
  font-family: var(--ffc);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #111111;
}
.disclaimer {
  font-size: 0.97rem;
  color: rgba(0,0,0,0.55);
  max-width: 540px;
  line-height: 1.75;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(0,0,0,0.12);
  font-family: var(--ffc);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .sci-hero { padding: 6rem 4vw 4rem; }
  .stat-item { padding: 1.2rem 1.5rem; }
  .stat-num { font-size: 1.8rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-feat { border-right: none; border-bottom: 0.5px solid rgba(0,0,0,0.12); }
  .media-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .fission-callout { flex-direction: column; }
}
