/* ============================================================
   OnTrack — Website stylesheet
   Built on the OnTrack Design System (Brand Book v1)
   Graphite + White + one Energy Orange accent · Montserrat · the dot
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

:root {
  /* Neutrals */
  --graphite: #1c1c1c;
  --steel: #636363;
  --white: #ffffff;
  --graphite-900: #121212;
  --graphite-800: #1c1c1c;
  --graphite-700: #2a2a2a;
  --graphite-600: #363636;
  --graphite-500: #4a4a4a;
  --graphite-400: #636363;
  --graphite-300: #8c8c8c;
  --graphite-200: #c4c4c4;
  --graphite-100: #e6e6e6;
  --graphite-050: #f4f4f4;

  /* Signature accent */
  --energy-orange: #ff7f11;
  --orange-dark: #e86d00;
  --orange-tint: #fff1e3;

  /* Track / pillar colours */
  --power-red: #ff1200;
  --stable-blue: #0062ff;
  --balanced-green: #00d314;
  --motivate-purple: #b700b7;

  /* Pillar accents used across the site */
  --health: #00d314;
  --wealth: #0062ff;
  --growth: #b700b7;

  /* Semantic */
  --fg-1: var(--graphite);
  --fg-2: var(--steel);
  --fg-3: var(--graphite-300);
  --bg-1: var(--white);
  --bg-2: var(--graphite-050);
  --border-1: var(--graphite-100);
  --border-2: var(--graphite-200);
  --inv-fg-2: var(--graphite-200);
  --inv-border: var(--graphite-600);

  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radii */
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* Spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(28,28,28,0.06), 0 1px 3px rgba(28,28,28,0.08);
  --shadow-md: 0 4px 12px rgba(28,28,28,0.08), 0 2px 4px rgba(28,28,28,0.06);
  --shadow-lg: 0 12px 32px rgba(28,28,28,0.12), 0 4px 8px rgba(28,28,28,0.06);
  --shadow-orange: 0 8px 24px rgba(255,127,17,0.32);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;

  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--energy-orange); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--graphite-050); }
::-webkit-scrollbar-thumb { background: var(--graphite-200); border-radius: 999px; border: 3px solid var(--graphite-050); }
::-webkit-scrollbar-thumb:hover { background: var(--graphite-300); }

/* ---- Layout primitives ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section { padding: 112px 0; }
.section-sm { padding: 80px 0; }
section.dark { background: var(--graphite); color: #fff; }
section.darker { background: var(--graphite-900); color: #fff; }
section.subtle { background: var(--graphite-050); }

/* The brand dot */
.dot { color: var(--energy-orange); }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--energy-orange);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--energy-orange); display: inline-block; flex: none;
}
.eyebrow.muted { color: var(--fg-2); }
.eyebrow.muted::before { background: var(--energy-orange); }

/* ---- Headings ---- */
.h-display {
  font-weight: 800; font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98; letter-spacing: -0.025em; text-transform: uppercase;
}
.h1 { font-weight: 800; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.03; letter-spacing: -0.025em; }
.h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.06; letter-spacing: -0.02em; }
.h3 { font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; letter-spacing: -0.01em; }
.lede { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: var(--fg-2); }
.dark .lede, .darker .lede { color: var(--inv-fg-2); }
.muted { color: var(--fg-2); }
.dark .muted, .darker .muted { color: var(--inv-fg-2); }
p { text-wrap: pretty; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: var(--r-pill); cursor: pointer;
  border: 1.5px solid transparent; transition: all var(--dur-fast) var(--ease-standard);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-primary { background: var(--energy-orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-primary:active { transform: scale(0.98) translateY(0); }
.btn-dark { background: var(--graphite); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-light { background: #fff; color: var(--graphite); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--graphite); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--graphite); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.34); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }

/* ---- Coming-soon / status chips ---- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--graphite-050); color: var(--fg-2); border: 1px solid var(--border-1);
}
.chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--energy-orange); }
.chip.on-dark { background: rgba(255,255,255,0.06); color: var(--inv-fg-2); border-color: var(--inv-border); }
.chip.solid { background: var(--energy-orange); color: #fff; border-color: var(--energy-orange); }
.chip.solid::before { background: #fff; }

/* ---- Cards ---- */
.card {
  background: #fff; border: 1px solid var(--border-1); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card.hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card.on-dark { background: var(--graphite-800); border-color: var(--inv-border); }

/* ---- Forms ---- */
.field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.input {
  font-family: inherit; font-size: 15px; color: var(--fg-1);
  padding: 15px 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border-2); background: #fff; flex: 1; min-width: 200px;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.input::placeholder { color: var(--fg-3); }
.input:focus { outline: none; border-color: var(--energy-orange); }
.input.on-dark { background: rgba(255,255,255,0.06); border-color: var(--inv-border); color: #fff; }
.input.on-dark::placeholder { color: var(--graphite-300); }
.input.on-dark:focus { border-color: var(--energy-orange); }
.input.invalid { border-color: var(--power-red); }
select.input { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23636363' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.form-msg { font-size: 13.5px; margin-top: 12px; min-height: 18px; font-weight: 500; }
.form-msg.error { color: var(--power-red); }
.form-msg.ok { color: var(--balanced-green); }
.dark .form-msg.ok, .darker .form-msg.ok { color: #46e85a; }

/* =================== NAV =================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base), backdrop-filter var(--dur-base);
  border-bottom: 1px solid transparent;
}
.nav.on-light { background: rgba(255,255,255,0.0); }
.nav.scrolled {
  background: rgba(255,255,255,0.86); backdrop-filter: blur(16px);
  border-bottom-color: var(--border-1);
}
.nav.on-dark { background: transparent; }
.nav.on-dark.scrolled {
  background: rgba(20,20,20,0.78); backdrop-filter: blur(16px);
  border-bottom-color: var(--inv-border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 24px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 14.5px; font-weight: 500; cursor: pointer; position: relative;
  color: var(--fg-2); transition: color var(--dur-fast);
}
.nav.on-dark .nav-link { color: rgba(255,255,255,0.78); }
.nav-link:hover { color: var(--fg-1); }
.nav.on-dark .nav-link:hover { color: #fff; }
.nav-link.active { color: var(--fg-1); }
.nav.on-dark .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--energy-orange);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: currentColor; }
.nav.on-dark .nav-toggle { color: #fff; }
.nav.on-light .nav-toggle, .nav.scrolled .nav-toggle { color: var(--graphite); }

/* mobile drawer */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--graphite); color: #fff; padding: 24px 28px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-menu-head img { height: 24px; }
.mobile-menu-close { background: none; border: none; color: #fff; cursor: pointer; }
.mobile-menu-close svg { width: 28px; height: 28px; }
.mobile-menu a {
  font-size: 30px; font-weight: 700; letter-spacing: -0.01em; padding: 14px 0;
  border-bottom: 1px solid var(--inv-border); color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a .dot { font-size: 30px; }
.mobile-menu .btn { margin-top: 32px; }

/* =================== FOOTER =================== */
.footer { background: var(--graphite-900); color: #fff; padding: 72px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid var(--inv-border);
}
.footer-brand img { height: 26px; margin-bottom: 18px; }
.footer-brand p { color: var(--inv-fg-2); font-size: 14px; line-height: 1.6; max-width: 270px; }
.footer-col-h { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--inv-fg-2); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.78); font-size: 14px; padding: 6px 0; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--energy-orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 26px; flex-wrap: wrap;
}
.footer-bottom .small { font-size: 13px; color: var(--inv-fg-2); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--inv-border);
  display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast);
}
.footer-socials a:hover { border-color: var(--energy-orange); background: rgba(255,127,17,0.1); }
.footer-socials svg { width: 17px; height: 17px; stroke: rgba(255,255,255,0.8); }

/* =================== HERO REVEAL (homepage) =================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--graphite); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-base { z-index: 1; }
.hero-reveal { z-index: 2; clip-path: circle(0px at 50% 50%); transition: clip-path 0.12s var(--ease-out); will-change: clip-path; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,18,18,0.92) 0%, rgba(18,18,18,0.72) 34%, rgba(18,18,18,0.25) 60%, rgba(18,18,18,0.55) 100%),
    linear-gradient(0deg, rgba(18,18,18,0.85) 0%, transparent 32%);
}
.hero-content { position: relative; z-index: 5; width: 100%; }
.hero-spot {
  position: fixed; width: 150px; height: 150px; border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%; pointer-events: none; z-index: 6; transform: translate(-50%,-50%);
  mix-blend-mode: difference; display: none; opacity: 0; transition: opacity var(--dur-base);
}
.hero-spot::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 5px; height: 5px;
  background: var(--energy-orange); border-radius: 50%; transform: translate(-50%,-50%);
}
.hero-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-hint svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.6); animation: heroBounce 2s var(--ease-standard) infinite; }
@keyframes heroBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* mantra word reveal — base state is VISIBLE; animation only nudges transform
   so the headline is never hidden if the animation timeline doesn't tick. */
.mantra { display: inline-flex; flex-wrap: wrap; gap: 0 0.4em; }
.mantra > span { display: inline-block; animation: mantraIn 0.6s var(--ease-out) both; }
.mantra > span:nth-child(1) { animation-delay: 0.15s; }
.mantra > span:nth-child(2) { animation-delay: 0.42s; }
.mantra > span:nth-child(3) { animation-delay: 0.69s; }
@keyframes mantraIn { from { transform: translateY(14px); } to { transform: none; } }

/* =================== Reveal-on-scroll ===================
   Content is ALWAYS visible (opacity stays 1); only a subtle upward
   transform animates in, so nothing is ever hidden if the timeline
   doesn't tick (print / PDF / reduced-motion / paused tabs). */
.reveal { transform: translateY(22px); transition: transform 0.7s var(--ease-out); will-change: transform; }
.reveal.in { transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: none; }
  .mantra > span { transform: none; animation: none; }
}

/* =================== Dot field (brand motion) =================== */
.dotfield { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dotfield .grid {
  position: absolute; display: grid; gap: 28px;
}
.dotfield .d {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.45);
  animation: otPulse 2.8s var(--ease-spring) infinite;
}
.dotfield .d.accent { background: var(--energy-orange); }
@keyframes otPulse { 0%,100% { transform: scale(0.5); opacity: 0.3; } 45% { transform: scale(1); opacity: 1; } }
/* Keep brand-motion dots clear of nav + headline copy: concentrate to the right */
.page-hero .dotfield,
.cta-band .dotfield {
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse 58% 72% at 86% 60%, #000 0%, #000 26%, transparent 72%);
  mask-image: radial-gradient(ellipse 58% 72% at 86% 60%, #000 0%, #000 26%, transparent 72%);
}

/* =================== Generic grids =================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* pillar card */
.pillar-card { display: flex; flex-direction: column; padding: 30px; position: relative; overflow: hidden; }
.pillar-card .bar { position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.pillar-card .pname { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.pillar-card .ptitle { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.pillar-card .link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding-top: 22px; }
.pillar-card .link svg { width: 16px; height: 16px; transition: transform var(--dur-fast); }
.pillar-card.hover:hover .link svg { transform: translateX(4px); }

/* feature list with dot ticks */
.ticks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ticks li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.5; }
.ticks li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--energy-orange); }
.dark .ticks li, .darker .ticks li { color: var(--inv-fg-2); }
.dark .ticks li strong, .darker .ticks li strong { color: #fff; }

/* track area list (pillar pages) */
.track-item { padding: 30px 0; border-top: 1px solid var(--border-1); display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.track-item:last-child { border-bottom: 1px solid var(--border-1); }
.track-ico { width: 54px; height: 54px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.track-ico svg { width: 26px; height: 26px; }
.track-item h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.track-item p { color: var(--fg-2); font-size: 15.5px; line-height: 1.6; max-width: 720px; }

/* number stat */
.stat .n { font-size: clamp(38px, 4vw, 52px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.stat .l { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-2); margin-top: 8px; }
.dark .stat .l, .darker .stat .l { color: var(--inv-fg-2); }

/* places-remaining meter */
.places { }
.places-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.places-bar .fill { height: 100%; border-radius: 999px; background: var(--energy-orange); }
/* Optional grow-in: at-rest state stays FILLED (scaleX 1); only the
   .animate class added by JS plays a one-shot grow, so a frozen
   timeline never collapses the bar to zero width. */
.places-bar .fill.animate { transform-origin: left center; animation: growX 1.3s var(--ease-out); }
@keyframes growX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.places-meta { display: flex; justify-content: space-between; font-size: 13.5px; margin-top: 12px; color: var(--inv-fg-2); }
.places-meta strong { color: #fff; font-weight: 700; }

/* faq */
.faq-item { border-top: 1px solid var(--border-1); }
.faq-item:last-child { border-bottom: 1px solid var(--border-1); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: clamp(16px, 1.4vw, 19px); font-weight: 600; color: var(--graphite);
  padding: 26px 56px 26px 0; position: relative; display: block;
}
.faq-q .ic { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); transition: transform var(--dur-base) var(--ease-standard); }
.faq-q .ic svg { width: 22px; height: 22px; stroke: var(--energy-orange); }
.faq-item.open .faq-q .ic { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-standard); }
.faq-a-inner { padding: 0 56px 28px 0; color: var(--fg-2); font-size: 16px; line-height: 1.7; }

/* tier card (AI page) */
.tier { padding: 32px; display: flex; flex-direction: column; }
.tier .price { display: flex; align-items: baseline; gap: 4px; margin: 6px 0 22px; }
.tier .price .amt { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.tier .price .per { font-size: 14px; color: var(--fg-2); }
.tier.feature { background: var(--graphite); color: #fff; }
.tier.feature .price .per { color: var(--inv-fg-2); }

/* agent chip grid */
.agent { display: flex; gap: 14px; padding: 20px; border-radius: var(--r-md); border: 1px solid var(--border-1); background: #fff; }
.agent .ai { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--graphite-050); display: flex; align-items: center; justify-content: center; flex: none; }
.agent .ai svg { width: 21px; height: 21px; stroke: var(--graphite); }
.agent h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.agent p { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }

/* founder card */
.founder { padding: 34px; }
.founder .avatar {
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 22px; letter-spacing: 0.02em;
}
.founder .role { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--energy-orange); margin-bottom: 18px; }

/* belief block */
.belief { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--inv-border); }
.belief .num { font-size: 40px; font-weight: 800; color: var(--graphite-600); letter-spacing: -0.02em; line-height: 1; }
.belief h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.belief p { color: var(--inv-fg-2); font-size: 15.5px; line-height: 1.65; max-width: 640px; }

/* trust marquee */
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-tag {
  font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--inv-border); color: var(--inv-fg-2);
  display: inline-flex; align-items: center; gap: 9px;
}
.trust-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--energy-orange); }

/* page hero (inner pages) */
.page-hero { background: var(--graphite); color: #fff; position: relative; overflow: hidden; padding: 132px 0 96px; }
.page-hero .wrap { position: relative; z-index: 2; }

/* split CTA band */
.cta-band { background: var(--graphite); color: #fff; position: relative; overflow: hidden; }

/* =================== Responsive =================== */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .belief { grid-template-columns: 48px 1fr; gap: 16px; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .section { padding: 76px 0; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-spot { display: none !important; }
  .hero-reveal { clip-path: circle(38% at 50% 45%) !important; }
  .track-item { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
