/* ─── Variables ─────────────────────────────────────────── */
:root {
  --paper: #fffaf0;
  --surface: #ffffff;
  --ink: #14213d;
  --muted: #65758a;
  --line: #eadfca;
  --blue: #2f80ed;
  --aqua: #19b7d8;
  --navy: #102a56;
  --coral: #ff6b35;
  --green: #18a76f;
  --gold: #f8c630;
  --lilac: #7c5cff;
  --shadow: 0 24px 70px rgba(16, 42, 86, 0.13);
  --shadow-hover: 0 32px 80px rgba(16, 42, 86, 0.2);
  --radius: 10px;
  --max: 1180px;
  --serif: "DM Serif Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

/* ─── Custom scrollbar ───────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral), var(--blue));
  border-radius: 999px;
}

/* ─── Focus visible ──────────────────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Base ───────────────────────────────────────────────── */
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(25, 183, 216, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(248, 198, 48, 0.24), transparent 30rem),
    radial-gradient(circle at 50% 86%, rgba(255, 107, 53, 0.12), transparent 32rem),
    linear-gradient(180deg, #fffdf7 0%, var(--paper) 52%, #eefaff 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 226, 216, 0.8);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 220ms ease, background 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(18, 53, 91, 0.08);
}

/* ─── Brand ──────────────────────────────────────────────── */
.brand {
  align-items: center;
  display: flex;
  font-weight: 900;
  gap: 0.7rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(234, 223, 202, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16, 42, 86, 0.1);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
  width: 42px;
}

.brand:hover .brand-mark {
  box-shadow: 0 16px 34px rgba(25, 183, 216, 0.24);
  transform: rotate(-4deg) translateY(-2px);
}

.brand-mark svg {
  height: 34px;
  width: 34px;
}

.brand-route,
.brand-v,
.brand-e {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-route {
  stroke: var(--gold);
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  stroke-width: 4;
  transition: stroke-dashoffset 600ms ease;
}

.brand-v {
  stroke: var(--blue);
  stroke-width: 5;
}

.brand-e {
  stroke: var(--coral);
  stroke-width: 5;
}

.brand:hover .brand-route {
  stroke-dashoffset: 0;
}

/* ─── Navigation ─────────────────────────────────────────── */
.site-nav {
  align-items: center;
  display: flex;
  gap: 1.7rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  background: var(--coral);
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--coral);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 0.4rem;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 240ms ease, opacity 180ms ease;
  width: 26px;
  border-radius: 999px;
}

/* ─── Layout shell ───────────────────────────────────────── */
.section-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: clamp(1.1rem, 4vw, 2rem);
  padding-right: clamp(1.1rem, 4vw, 2rem);
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 5.6vw, 5.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  max-width: 780px;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

/* Gradient accent span used in h1 */
.accent {
  background: linear-gradient(135deg, var(--coral) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 100vh;
  padding-bottom: 5rem;
  padding-top: 8rem;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  margin: 1.6rem 0 0;
  max-width: 600px;
}

.hero-actions,
.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.01em;
  min-height: 52px;
  padding: 0 1.4rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button.primary {
  background: linear-gradient(135deg, var(--coral) 0%, #f04e1a 100%);
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.32);
  color: #fff;
}

.button.primary:hover {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.42);
}

.button.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}

.button.ghost:hover {
  box-shadow: var(--shadow);
  border-color: rgba(47, 128, 237, 0.3);
}

.button.ghost-light {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.button.ghost-light:hover {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.button.gs7-cta {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  font-size: 0.88rem;
  margin-top: 1.5rem;
  min-height: 44px;
}

.button.gs7-cta:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* ─── Photo frame ────────────────────────────────────────── */
.hero-media {
  min-height: 670px;
  position: relative;
}

.photo-frame {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--aqua) 0%, var(--gold) 35%, var(--coral) 65%, var(--green) 100%) border-box;
  border: 3px solid transparent;
  border-radius: 30% 30% 8px 8px;
  box-shadow: var(--shadow);
  margin-left: auto;
  overflow: hidden;
  padding: 0.65rem;
  width: min(100%, 650px);
}

.photo-frame img {
  aspect-ratio: 1 / 1.12;
  border-radius: 29% 29% 7px 7px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* ─── Energy strip ───────────────────────────────────────── */
.energy-strip {
  background:
    linear-gradient(90deg, rgba(25, 183, 216, 0.12), rgba(248, 198, 48, 0.16), rgba(255, 107, 53, 0.12)),
    #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.energy-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 0.4rem 0.85rem;
  grid-template-columns: 60px 1fr;
  min-height: 132px;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  transition: background 220ms ease;
}

.energy-item:hover {
  background: rgba(255, 255, 255, 0.96);
}

.energy-item .icon {
  grid-row: span 2;
}

.energy-item strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.energy-item p {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  margin: 0;
}

/* ─── Metrics band ───────────────────────────────────────── */
.metrics-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  background: #fff;
  min-height: 164px;
  padding: clamp(1.1rem, 3vw, 2rem);
  transition: background 220ms ease;
}

.metric:hover {
  background: #fdfaf5;
}

.metric strong {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 0.9rem;
  max-width: 240px;
}

/* ─── Story section ──────────────────────────────────────── */
.story,
.split-panel,
.purpose {
  padding-bottom: clamp(5rem, 10vw, 8rem);
  padding-top: clamp(5rem, 10vw, 8rem);
}

.section-heading {
  max-width: 720px;
}

.story-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 290px;
  overflow: hidden;
  padding: 1.6rem;
  position: relative;
  transition: transform 240ms ease, box-shadow 240ms ease, background 220ms ease;
}

.story-card:hover {
  background: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.story-card::after {
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--green));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  transition: height 240ms ease;
}

.story-card:hover::after {
  height: 6px;
}

.story-number {
  color: var(--gold);
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.story-card p,
.story-more p,
.business-highlight p,
.split-copy p,
.purpose-copy p,
.final-grid p {
  color: var(--muted);
  margin: 1rem 0 0;
  line-height: 1.65;
}

/* ─── Story more ─────────────────────────────────────────── */
.story-more {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 42, 86, 0.07);
  margin-top: 1.1rem;
  overflow: hidden;
  transition: box-shadow 240ms ease;
}

.story-more[open] {
  box-shadow: 0 24px 60px rgba(16, 42, 86, 0.12);
}

.story-more summary {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 900;
  justify-content: space-between;
  list-style: none;
  padding: 1.35rem clamp(1.2rem, 3vw, 2rem);
  transition: color 180ms ease;
}

.story-more summary:hover {
  color: var(--coral);
}

.story-more summary::-webkit-details-marker {
  display: none;
}

.story-more summary::after {
  align-items: center;
  background: linear-gradient(135deg, var(--coral), #f04e1a);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
  color: #fff;
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.2rem;
  height: 34px;
  justify-content: center;
  margin-left: 1rem;
  transition: transform 260ms ease, box-shadow 260ms ease;
  width: 34px;
}

.story-more[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.story-more-body {
  border-top: 1px solid var(--line);
  columns: 2;
  column-gap: clamp(1.5rem, 5vw, 3rem);
  padding: 0.5rem clamp(1.2rem, 3vw, 2rem) 1.8rem;
}

.story-more-body p {
  break-inside: avoid;
  font-size: 1.02rem;
}

/* ─── GS7 Invest block ───────────────────────────────────── */
.business-highlight {
  background:
    radial-gradient(circle at 92% 18%, rgba(248, 198, 48, 0.38), transparent 16rem),
    radial-gradient(circle at 8% 88%, rgba(25, 183, 216, 0.3), transparent 18rem),
    linear-gradient(135deg, rgba(16, 42, 86, 0.98), rgba(47, 128, 237, 0.9)),
    var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(18, 53, 91, 0.2);
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 0.75fr) 1fr;
  margin-top: 1.1rem;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.business-highlight:hover {
  box-shadow: 0 36px 90px rgba(18, 53, 91, 0.28);
  transform: translateY(-2px);
}

.business-highlight::after {
  background: linear-gradient(90deg, var(--gold), var(--coral));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.business-highlight .eyebrow {
  color: #ffd18a;
}

.business-highlight h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-top: 0.25rem;
}

.business-highlight p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
  margin-top: 0;
  line-height: 1.65;
}

.gs7-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs7-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.gs7-points span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.85rem;
  transition: background 200ms ease, border-color 200ms ease;
}

.gs7-points span:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Split panel (Triathlon) ────────────────────────────── */
.split-panel {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
}

.route-figure {
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 183, 216, 0.08), transparent 44%) padding-box,
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(25, 183, 216, 0.7), rgba(248, 198, 48, 0.75), rgba(255, 107, 53, 0.7), rgba(31, 157, 122, 0.7)) border-box;
  border: 2px solid transparent;
  border-radius: 50%;
  box-shadow: var(--shadow);
  padding: clamp(0.5rem, 2vw, 1.4rem);
}

.route-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}

.route-path.is-drawing {
  animation: draw-route 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.figure-label {
  fill: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Discipline list ────────────────────────────────────── */
.discipline-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.discipline-list article {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
  grid-template-columns: 64px 1fr;
  padding: 1rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-left-color 200ms ease;
}

.discipline-list article:hover {
  border-left-color: var(--blue);
  box-shadow: 0 8px 28px rgba(47, 128, 237, 0.1);
  transform: translateX(4px);
}

.discipline-list p {
  margin-top: 0.25rem;
  line-height: 1.55;
}

/* ─── Icons ──────────────────────────────────────────────── */
.icon {
  border-radius: 50%;
  display: inline-block;
  height: 54px;
  position: relative;
  width: 54px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon.water {
  background: rgba(47, 128, 237, 0.12);
}

.icon.water::before {
  border: 3px solid var(--blue);
  border-left-color: transparent;
  border-radius: 50%;
  height: 26px;
  left: 14px;
  top: 15px;
  transform: rotate(-28deg);
  width: 26px;
}

.icon.bike {
  background: rgba(255, 107, 53, 0.12);
}

.icon.bike::before {
  border: 3px solid var(--coral);
  border-radius: 50%;
  box-shadow: 25px 0 0 -3px #fff, 25px 0 0 0 var(--coral);
  height: 16px;
  left: 8px;
  top: 27px;
  width: 16px;
}

.icon.bike::after {
  border-left: 3px solid var(--coral);
  border-top: 3px solid var(--coral);
  height: 17px;
  left: 21px;
  top: 19px;
  transform: skewX(-20deg);
  width: 18px;
}

.icon.run {
  background: rgba(31, 157, 122, 0.12);
}

.icon.run::before {
  background: var(--green);
  border-radius: 50%;
  height: 9px;
  left: 25px;
  top: 12px;
  width: 9px;
}

.icon.run::after {
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  height: 21px;
  left: 18px;
  top: 24px;
  transform: rotate(-18deg);
  width: 25px;
}

.icon.shoes {
  background: rgba(248, 198, 48, 0.18);
}

.icon.shoes::before {
  background: var(--gold);
  border-radius: 18px 18px 8px 8px;
  height: 17px;
  left: 11px;
  top: 25px;
  transform: rotate(-10deg);
  width: 34px;
}

.icon.shoes::after {
  background:
    linear-gradient(90deg, #fff 0 18%, transparent 18% 30%, #fff 30% 48%, transparent 48% 60%, #fff 60% 76%, transparent 76%),
    var(--coral);
  border-radius: 999px;
  height: 5px;
  left: 19px;
  top: 27px;
  transform: rotate(-10deg);
  width: 20px;
}

.icon.trophy {
  background: rgba(255, 107, 53, 0.12);
}

.icon.trophy::before {
  background:
    linear-gradient(var(--gold), var(--gold)) center 29px / 18px 5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center 36px / 28px 6px no-repeat,
    var(--gold);
  border-radius: 6px 6px 14px 14px;
  height: 24px;
  left: 15px;
  top: 10px;
  width: 24px;
}

.icon.trophy::after {
  border: 4px solid var(--gold);
  border-bottom-color: transparent;
  border-radius: 999px;
  height: 16px;
  left: 8px;
  top: 13px;
  width: 38px;
}

/* ─── Purpose section ────────────────────────────────────── */
.purpose {
  align-items: stretch;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.purpose-copy,
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.purpose-copy {
  transition: box-shadow 240ms ease;
}

.purpose-copy:hover {
  box-shadow: 0 16px 48px rgba(16, 42, 86, 0.08);
}

.quote-card {
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.06), rgba(255, 107, 53, 0.06)),
    #fff;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.quote-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.quote-card p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

.quote-card span {
  color: var(--coral);
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 1.5rem;
}

/* ─── Final CTA ──────────────────────────────────────────── */
.final-cta {
  background:
    radial-gradient(circle at 10% 50%, rgba(25, 183, 216, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(248, 198, 48, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(16, 42, 86, 0.96), rgba(47, 128, 237, 0.88)),
    var(--navy);
  color: #fff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.final-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.final-grid .eyebrow {
  color: #ffd18a;
}

.final-grid h2 {
  color: #fff;
}

.final-grid p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
}

.cta-box {
  justify-content: flex-end;
  margin-top: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  align-items: center;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 2rem clamp(1.1rem, 4vw, 3rem);
}

.footer-brand strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.footer-nav {
  display: flex;
  gap: 1.4rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 180ms ease;
}

.footer-nav a::after {
  background: var(--coral);
  bottom: -2px;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
  border-radius: 999px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

/* ─── Reveal animation ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 700ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.story-grid .story-card:nth-child(1) { --delay: 0ms; }
.story-grid .story-card:nth-child(2) { --delay: 130ms; }
.story-grid .story-card:nth-child(3) { --delay: 260ms; }

.energy-item:nth-child(1) { --delay: 0ms; }
.energy-item:nth-child(2) { --delay: 80ms; }
.energy-item:nth-child(3) { --delay: 160ms; }
.energy-item:nth-child(4) { --delay: 240ms; }

.metric:nth-child(1) { --delay: 0ms; }
.metric:nth-child(2) { --delay: 80ms; }
.metric:nth-child(3) { --delay: 160ms; }
.metric:nth-child(4) { --delay: 240ms; }

.discipline-list article:nth-child(1) { --delay: 0ms; }
.discipline-list article:nth-child(2) { --delay: 100ms; }
.discipline-list article:nth-child(3) { --delay: 200ms; }
.discipline-list article:nth-child(4) { --delay: 300ms; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes draw-route {
  to {
    stroke-dashoffset: 0;
  }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .route-path.is-drawing {
    stroke-dashoffset: 0;
  }
}

/* ─── Responsive: ≤ 980px ────────────────────────────────── */
@media (max-width: 980px) {
  .hero,
  .split-panel,
  .purpose,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
  }

  .story-grid,
  .metrics-band,
  .energy-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-highlight {
    grid-template-columns: 1fr;
  }

  .gs7-right {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.4rem;
  }

  .cta-box {
    justify-content: flex-start;
  }

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

/* ─── Responsive: ≤ 720px ────────────────────────────────── */
@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 0.7rem 1.1rem;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.82rem 0;
    width: 100%;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 6rem;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .story-grid,
  .metrics-band,
  .energy-strip {
    grid-template-columns: 1fr;
  }

  .story-more-body {
    columns: 1;
  }

  .metric {
    min-height: 132px;
  }

  .button {
    width: 100%;
  }

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

  .footer-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
  }

  .discipline-list article:hover {
    transform: none;
  }

  .story-card:hover {
    transform: none;
  }
}
