/* MagicIntel — LinkedIn Ghostwriting for B2B
   Fullscreen video hero + liquid glass + Instrument Serif. */

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #0a0e13;
  font-family: 'Instrument Serif', serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body { color: #ffffff; }

h1, h2, h3, p { margin: 0; font-weight: 400; }
em { font-style: italic; }

img, video, svg { display: block; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.font-sys { font-family: system-ui, -apple-system, sans-serif; }

::selection { background: rgba(255, 255, 255, 0.9); color: #0a0e13; }

a { color: #ffffff; text-decoration: none; }
a:hover { color: rgba(255, 255, 255, 0.75); }

/* ---------- pill buttons ---------- */

.btn-pill {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
  background: #ffffff;
  color: #0a0e13;
  border-radius: 9999px;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-pill:not(.mmenu-cta):hover { background: rgba(255, 255, 255, 0.9); }

.btn-sm { font-size: 0.875rem; line-height: 1.25rem; padding: 0.625rem 1.25rem; }
.btn-lg { font-size: 1rem; line-height: 1.5rem; padding: 1rem 2rem; }

/* ---------- liquid glass ---------- */

.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* darker tint used on the hero nav + badge */
.glass-tint { background: rgba(14, 19, 27, 0.34); }

/* deeper glass for section panels (more blur, faint fill) */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 24%,
    rgba(255,255,255,0) 45%, rgba(255,255,255,0) 62%,
    rgba(255,255,255,0.08) 82%, rgba(255,255,255,0.24) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- overlay bob ---------- */

@keyframes train-bob {
  0%, 100% { transform: translateY(0) scale(1.03); }
  50% { transform: translateY(-6px) scale(1.03); }
}
.train-bob { animation: train-bob 3s ease-in-out infinite; }

/* ---------- scroll reveal ---------- */

.js [data-rv] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--rd, 0ms);
}
.js [data-rv].rv-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- section atmospheres (echo the four video moods) ---------- */

.atmo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  /* fade the atmosphere out at section edges so mood zones cross-blend with no hard seam */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.atmo {
  position: absolute;
  border-radius: 9999px;
  filter: blur(110px);
  will-change: transform;
}
.atmo-drift { animation: atmoDrift 26s ease-in-out infinite alternate; }
.atmo-drift2 { animation: atmoDrift 34s ease-in-out infinite alternate-reverse; }
@keyframes atmoDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -26px, 0) scale(1.07); }
}

/* per-section base gradients: continuous ramps whose ends match neighbors,
   so the whole page reads as one flowing gradient with no bands */
#beliefs { background: linear-gradient(180deg, #05070c 0%, #0a0f1c 50%, #0a110d 100%); }
#work { background: linear-gradient(180deg, #0a110d 0%, #0d130e 50%, #131009 100%); }
#results { background: linear-gradient(180deg, #131009 0%, #14100a 50%, #0a1016 100%); }
#process { background: linear-gradient(180deg, #0a1016 0%, #0d1016 50%, #150f0a 100%); }
#cta { background: linear-gradient(180deg, #150f0a 0%, #16100a 60%, #16100a 100%); }

/* quiet dawn: horizon line + stars */
.horizon {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150, 175, 225, 0.32), transparent);
}
.stars {
  position: absolute;
  top: 8%;
  left: 4%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(205, 220, 255, 0.6);
  box-shadow:
    60px 30px 0 0 rgba(205, 220, 255, 0.45),
    150px 82px 0 0 rgba(205, 220, 255, 0.3),
    262px 18px 0 0 rgba(205, 220, 255, 0.5),
    341px 122px 0 0 rgba(205, 220, 255, 0.28),
    432px 52px 0 0 rgba(205, 220, 255, 0.42),
    523px 94px 0 0 rgba(205, 220, 255, 0.25),
    642px 28px 0 0 rgba(205, 220, 255, 0.5),
    731px 112px 0 0 rgba(205, 220, 255, 0.3),
    822px 64px 0 0 rgba(205, 220, 255, 0.44),
    934px 98px 0 0 rgba(205, 220, 255, 0.26),
    1012px 38px 0 0 rgba(205, 220, 255, 0.48),
    1124px 88px 0 0 rgba(205, 220, 255, 0.3);
}

/* deep woods: canopy light shafts */
.shafts {
  position: absolute;
  inset: -20% -10%;
  background: repeating-linear-gradient(78deg,
    rgba(130, 190, 140, 0.05) 0 2px,
    transparent 2px 96px);
  -webkit-mask-image: radial-gradient(60% 60% at 70% 16%, #000, transparent 78%);
  mask-image: radial-gradient(60% 60% at 70% 16%, #000, transparent 78%);
}

/* golden hour: low sun disc */
.sun {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(244, 186, 98, 0.26) 0%,
    rgba(244, 186, 98, 0.09) 42%,
    rgba(244, 186, 98, 0) 70%);
}

/* still water: reflection ripples */
.ripples {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: repeating-linear-gradient(180deg,
    rgba(135, 180, 215, 0.05) 0 1px,
    transparent 1px 28px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%, #000);
  mask-image: linear-gradient(180deg, transparent, #000 45%, #000);
}

/* film grain over everything */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-video.is-active { opacity: 1; }

.hero-overlay-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* fade into first section */
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 9rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,7,12,0) 0%, rgba(5,7,12,0.8) 76%, #05070c 100%);
}

/* legibility scrim over the video */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,12,18,0.58) 0%, rgba(8,12,18,0.16) 22%, rgba(8,12,18,0.14) 50%, rgba(8,12,18,0.44) 86%, rgba(8,12,18,0.6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.25rem;
}

/* ---------- hero: top bar ---------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(8, 12, 18, 0.6);
}

.nav-glass {
  display: none;
  align-items: center;
  gap: 1.75rem;
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
}
.nav-glass > a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(8, 12, 18, 0.65);
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-glass > a:hover { color: rgba(255, 255, 255, 0.75); }

.hamburger {
  display: block;
  border-radius: 9999px;
  padding: 0.875rem;
  color: #ffffff;
}

.micon {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.micon svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.micon .i-menu { transform: rotate(0deg) scale(1); opacity: 1; }
.micon .i-x { transform: rotate(-90deg) scale(0.75); opacity: 0; }
.micon.open .i-menu { transform: rotate(90deg) scale(0.75); opacity: 0; }
.micon.open .i-x { transform: rotate(0deg) scale(1); opacity: 1; }

/* ---------- hero: mobile menu ---------- */

.mmenu {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mmenu.open {
  opacity: 1;
  pointer-events: auto;
}

.mmenu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mmenu-panel {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mmenu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  border-radius: 9999px;
  padding: 0.875rem;
  color: #ffffff;
}

.mmenu-link {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 2.25rem;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mmenu.open .mmenu-link {
  transform: translateY(0);
  opacity: 1;
}

.mmenu-cta {
  margin-top: 1rem;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 300ms;
}
.mmenu.open .mmenu-cta {
  transform: scale(1);
  opacity: 1;
}

/* ---------- hero: center content ---------- */

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hero-badge {
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
}
.hero-badge span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(8, 12, 18, 0.6), 0 1px 3px rgba(8, 12, 18, 0.5);
}

.hero-h1 {
  margin-top: 2rem;
  max-width: 64rem;
  font-size: 2.7rem;
  line-height: 1.04;
  color: #ffffff;
  text-shadow: 0 1px 16px rgba(8, 12, 18, 0.55), 0 1px 4px rgba(8, 12, 18, 0.45);
}

.hero-lede {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(8, 12, 18, 0.6), 0 1px 3px rgba(8, 12, 18, 0.5);
}

.hero-cta { margin-top: 2.25rem; }

.switcher {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.switch-btn {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-bottom: 0.375rem;
  border-bottom: 2px solid transparent;
  opacity: 0.7;
  color: #ffffff;
  text-shadow: 0 1px 16px rgba(8, 12, 18, 0.55), 0 1px 4px rgba(8, 12, 18, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch-btn:hover { opacity: 1; }
.switch-btn.is-active {
  border-bottom-color: currentColor;
  opacity: 1;
}

/* ---------- hero: bottom stats ---------- */

.hero-stats {
  flex: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  padding-top: 1.5rem;
}
.hero-stats-inner {
  font-family: system-ui, -apple-system, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  row-gap: 0.375rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-stats-inner .v { color: #ffffff; }
.stat-sep { display: none; color: rgba(255, 255, 255, 0.3); }

/* ---------- sections: shared ---------- */

.section {
  position: relative;
  padding: 6rem 1.25rem;
}

.container-6xl {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.eyebrow-pill {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
}
.eyebrow-pill span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  margin-top: 1.5rem;
  max-width: 56rem;
  font-size: 2.25rem;
  line-height: 1.05;
  color: #ffffff;
}
.section-note {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- beliefs ---------- */

.beliefs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 3.5rem;
  row-gap: 0;
}

.belief {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.belief-num {
  font-style: italic;
  font-size: 1.875rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 0.25rem;
  width: 3rem;
  flex-shrink: 0;
}
.belief h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  color: #ffffff;
}
.belief p {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- the work: tables ---------- */

.work-table { border-radius: 1.5rem; overflow: hidden; }
.work-table--metrics { margin-top: 2rem; }

.wt-grid-arch {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr;
  gap: 1rem;
}
.wt-grid-metrics {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.5fr;
  gap: 1rem;
}

.wt-head {
  font-family: system-ui, -apple-system, sans-serif;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.wt-row {
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wt-row:last-child { border-bottom: none; }
.wt-row--baseline { align-items: baseline; }

.only-sm { display: none; }
.ta-r { text-align: right; }

.c-num {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgba(255, 255, 255, 0.3);
}
.c-before {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.c-after {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-style: italic;
  color: #ffffff;
}
.c-desc {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.55);
}

.m-label {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
}
.m-after {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-style: italic;
  color: #ffffff;
}
.m-lift {
  font-family: system-ui, -apple-system, sans-serif;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- results + process cards ---------- */

.cards-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.quote-card {
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.q-mark {
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
}
.q-text {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 1rem;
  font-size: 15px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
}
.q-footer { margin-top: 2rem; }
.q-name {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #ffffff;
}
.q-role {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.step-card {
  border-radius: 1.5rem;
  padding: 2rem;
}
.step-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.step-card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #ffffff;
}
.step-card p {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- cta ---------- */

.section--cta {
  padding-top: 7rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-h2 {
  margin-top: 1.75rem;
  font-size: 3rem;
  line-height: 1.02;
  color: #ffffff;
}

.cta-copy {
  font-family: system-ui, -apple-system, sans-serif;
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}

.cta-btn { margin-top: 2.5rem; }

/* ---------- footer ---------- */

.site-footer {
  font-family: system-ui, -apple-system, sans-serif;
  position: relative;
  background: #0b0c09;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer a { color: rgba(255, 255, 255, 0.6); }
.site-footer a:hover { color: #ffffff; }

/* ---------- breakpoints ---------- */

/* sm ≥640px */
@media (min-width: 640px) {
  .hero-inner { padding: 2rem 2.5rem; }
  .brand { font-size: 1.5rem; line-height: 2rem; }
  .hero-badge span { font-size: 1rem; line-height: 1.5rem; }
  .hero-h1 { font-size: 3.75rem; line-height: 1; }
  .hero-lede { font-size: 1.125rem; line-height: 1.75rem; }
  .switcher { gap: 2rem; }
  .switch-btn { font-size: 1rem; line-height: 1.5rem; }
  .hero-stats-inner { font-size: 0.875rem; line-height: 1.25rem; }
  .stat-sep { display: inline; }

  .section { padding: 8rem 2.5rem; }
  .section-head { margin-bottom: 5rem; }
  .section-head h2 { font-size: 3rem; line-height: 1; }
  .section-note { font-size: 1rem; line-height: 1.5rem; }
  .eyebrow-pill span { font-size: 0.875rem; line-height: 1.25rem; }

  .belief-num { font-size: 2.25rem; line-height: 2.5rem; }
  .belief h3 { font-size: 1.7rem; }

  .wt-grid-arch { grid-template-columns: 4rem 1fr 1fr 1.8fr; }
  .wt-head { padding-left: 2.25rem; padding-right: 2.25rem; }
  .wt-row { padding-left: 2.25rem; padding-right: 2.25rem; }
  .only-sm { display: block; }
  .c-before { font-size: 1.5rem; line-height: 2rem; }
  .c-after { font-size: 1.5rem; line-height: 2rem; }
  .m-label { font-size: 1.25rem; }
  .m-after { font-size: 2.25rem; line-height: 2.5rem; }

  .step-card h3 { font-size: 1.875rem; line-height: 2.25rem; }

  .section--cta { padding-top: 10rem; padding-bottom: 10rem; }
  .cta-h2 { font-size: 3.75rem; line-height: 1; }
  .cta-copy { font-size: 1rem; line-height: 1.5rem; }

  .site-footer { flex-direction: row; padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* md ≥768px */
@media (min-width: 768px) {
  .nav-glass { display: flex; }
  .hamburger { display: none; }
  .mmenu { display: none; }

  .hero-h1 { font-size: 4.5rem; }
  .section-head h2 { font-size: 3.75rem; }
  .beliefs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-h2 { font-size: 4.5rem; }
}

/* lg ≥1024px */
@media (min-width: 1024px) {
  .hero-h1 { font-size: 5.25rem; }
  .section-head h2 { font-size: 4.5rem; }
  .cta-h2 { font-size: 6rem; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .train-bob { animation: none; }
  .atmo-drift, .atmo-drift2 { animation: none; }
  .js [data-rv] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto !important; }
}
