/* ============================================================================
   Next Gen Fitness Systems - marketing site
   Dark + chrome brand system (mirrors the Next Gen portal tokens), with a deep
   blueprint-blue accent field and amber summit highlights.
   ========================================================================== */

:root {
  --bg: #000000;
  --bg-surface: #0d0d0d;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --chrome-100: #f4f4f4;
  --chrome-200: #dcdcdc;
  --chrome-300: #b0b0b0;
  --chrome-400: #8a8a8a;
  --chrome-500: #5a5a5a;
  --chrome-600: #3a3a3a;
  --chrome-700: #242424;
  --cyan: #09bced;
  --cyan-soft: #4dd6ff;
  --amber: #FFC10A;
  --coral: #fd4d50;
  --green: #29A745;
  --blue-deep: #0e1726;
  --blue-line: #123249;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* scroll-padding keeps anchored sections clear of the fixed nav pill */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  background: var(--bg);
  color: #e6e6e6;
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }
::selection { background: rgba(9, 188, 237, 0.35); color: #fff; }

/* visible keyboard focus across every interactive element (mouse users unaffected) */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }

.chrome-text {
  background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 40%, #9a9a9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.accent-text { color: var(--cyan); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--chrome-100);
}
h2 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 18px; }
.section-sub { max-width: 720px; font-size: 17px; color: var(--chrome-300); margin-bottom: 36px; }
.section-note {
  max-width: 720px; margin-top: 34px; font-size: 15px; color: var(--chrome-300);
  border-left: 3px solid var(--cyan); padding-left: 16px;
}
strong { color: var(--chrome-100); }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; border-radius: 999px; border: 0; cursor: pointer;
  padding: 12px 26px; font-size: 14px; transition: all 0.18s ease;
  min-height: 44px;
}
.btn-primary {
  background: var(--cyan); color: #000;
  box-shadow: 0 0 28px rgba(9, 188, 237, 0.35);
}
.btn-primary:hover { background: #fff; color: #000; box-shadow: 0 0 40px rgba(9, 188, 237, 0.55); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--chrome-200); border: 1px solid var(--chrome-600); }
.btn-ghost:hover { border-color: var(--chrome-300); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ----------------------------- nav (floating pill) ----------------------------- */
.nav { position: fixed; inset: 14px 0 auto 0; z-index: 100; pointer-events: none; }
.nav-inner {
  pointer-events: auto;
  max-width: 980px; margin: 0 auto; padding: 9px 12px 9px 22px;
  display: flex; align-items: center; gap: 26px;
  background: rgba(8, 11, 18, 0.72); backdrop-filter: blur(16px);
  border: 1px solid rgba(90, 90, 90, 0.35); border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: background 0.2s, border-color 0.2s;
}
.nav.scrolled .nav-inner { background: rgba(5, 7, 12, 0.92); border-color: rgba(9, 188, 237, 0.25); }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--chrome-300);
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 9px 22px; font-size: 13px; box-shadow: none; }
@media (max-width: 860px) {
  .nav { inset: 10px 12px auto 12px; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ----------------------------- hero ----------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 96px 0 56px; overflow: hidden;
}
@media (max-width: 980px) {
  /* CTAs must land above the fold on phones too */
  .hero { min-height: 0; padding: 110px 0 48px; }
  .hero-chips { gap: 8px; }
  .chip { min-width: 124px; padding: 10px 14px; }
  .chip-num { font-size: 22px; }
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 18% 8%, rgba(9, 188, 237, 0.13), transparent 60%),
    radial-gradient(800px 700px at 88% 92%, rgba(255, 193, 10, 0.06), transparent 55%),
    /* glow pool the blueprint sits inside, so its faded edges land on light, not black */
    radial-gradient(900px 820px at 72% 48%, rgba(40, 100, 165, 0.30), transparent 66%),
    radial-gradient(420px 420px at 72% 22%, rgba(255, 193, 10, 0.08), transparent 62%),
    linear-gradient(180deg, #04070c 0%, #000 72%);
}
.hero-bg::after {
  /* faint blueprint grid across the whole hero, present behind the art so it
     shares the same field instead of sitting on top of it */
  content: ""; position: absolute; inset: 0; opacity: 0.38;
  background-image:
    linear-gradient(#0e2a3a 1px, transparent 1px),
    linear-gradient(90deg, #0e2a3a 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image:
    radial-gradient(900px 700px at 28% 30%, #000 0%, transparent 75%),
    radial-gradient(840px 860px at 72% 48%, #000 0%, transparent 78%);
  mask-image:
    radial-gradient(900px 700px at 28% 30%, #000 0%, transparent 75%),
    radial-gradient(840px 860px at 72% 48%, #000 0%, transparent 78%);
}
.hero-inner {
  position: relative; max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(42px, 5.6vw, 72px); margin-bottom: 18px; }
.h1-line { display: block; }
.glow-line {
  color: var(--cyan); font-style: italic; padding-right: 0.12em;
  text-shadow: 0 0 18px rgba(9, 188, 237, 0.65), 0 0 60px rgba(9, 188, 237, 0.35);
}
.eyebrow-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); margin-right: 10px; vertical-align: 2px;
  box-shadow: 0 0 10px rgba(9, 188, 237, 0.9);
}
.hero-sub { font-size: 17.5px; color: var(--chrome-300); max-width: 540px; margin-bottom: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(20, 20, 20, 0.8); border: 1px solid var(--chrome-700);
  border-top: 1px solid var(--chrome-500);
  border-radius: 14px; padding: 12px 18px; min-width: 150px;
}
.chip-num {
  font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1;
  background: linear-gradient(135deg, #e8e8e8, #fff 40%, #9a9a9a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.chip-label { font-size: 11.5px; color: var(--chrome-400); letter-spacing: 0.02em; }

.hero-art { position: relative; }

/* hero blueprint image with continuous code-driven motion layered on top */
.hero-blueprint {
  position: relative; width: 100%; max-width: 600px; margin: 0 auto;
  animation: bpFloat 8s ease-in-out infinite;
  will-change: transform;
}
.hero-blueprint-img {
  width: 100%; height: auto; display: block;
  /* Luminance key: use the artwork's own brightness as its alpha. The dark base
     goes fully transparent (no rectangle, no visible image bounds); only the
     glowing structure remains, floating on the page and blending into any
     background. Degrades to the plain image on browsers without mask-mode. */
  -webkit-mask-image: url("assets/hero-blueprint.webp");
  mask-image: url("assets/hero-blueprint.webp");
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.hero-blueprint span { position: absolute; pointer-events: none; }

/* breathing glow over the 1,000 beacon (top-centre of the art) */
.bp-beacon {
  left: 50%; top: 16.5%; width: 30%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(255, 193, 10, 0.5), rgba(255, 193, 10, 0.12) 38%, transparent 70%);
  animation: bpBeacon 3.4s ease-in-out infinite;
}
@keyframes bpBeacon {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.9); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* members magnetically pulled into the gym, then fading inside on arrival.
   ~10s journey each, staggered so there is always a steady stream. */
.member {
  width: 3.4%; aspect-ratio: 1; transform: translate(-50%, -50%) scale(1);
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='3.6' fill='%2333c8f0'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7z' fill='%2333c8f0'/%3E%3C/svg%3E");
  filter: drop-shadow(0 0 5px rgba(9, 188, 237, 0.8));
  opacity: 0; animation: memberPull 10s linear infinite;
}
@keyframes memberPull {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  10% { opacity: 0.95; }
  78% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.8); }
  100% { left: 50%; top: 77%; opacity: 0; transform: translate(-50%, -50%) scale(0.16); }
}
/* start positions around the gym base, plus staggered entry */
.m1  { left: 24%; top: 85%; animation-delay: 0s; }
.m2  { left: 32%; top: 91%; animation-delay: 0.8s; }
.m3  { left: 42%; top: 95%; animation-delay: 1.6s; }
.m4  { left: 58%; top: 95%; animation-delay: 2.4s; }
.m5  { left: 68%; top: 91%; animation-delay: 3.2s; }
.m6  { left: 76%; top: 85%; animation-delay: 4.0s; }
.m7  { left: 28%; top: 80%; animation-delay: 4.8s; }
.m8  { left: 72%; top: 80%; animation-delay: 5.6s; }
.m9  { left: 38%; top: 88%; animation-delay: 6.4s; }
.m10 { left: 62%; top: 88%; animation-delay: 7.2s; }
.m11 { left: 50%; top: 94%; animation-delay: 8.0s; }
.m12 { left: 50%; top: 82%; animation-delay: 8.8s; }

/* energy particles rising up the spine from the gym to the summit */
.bp-spark {
  left: 50%; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%;
  background: #bfeeff; box-shadow: 0 0 9px 2px rgba(77, 214, 255, 0.85);
  opacity: 0; animation: bpRise 3.6s linear infinite;
}
@keyframes bpRise {
  0% { top: 74%; opacity: 0; transform: scale(0.7); }
  12% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 17%; opacity: 0; transform: scale(0.5); }
}
.bp-spark.s1 { animation-delay: 0s; }
.bp-spark.s2 { animation-delay: 0.8s; }
.bp-spark.s3 { animation-delay: 1.5s; }
.bp-spark.s4 { animation-delay: 2.2s; }
.bp-spark.s5 { animation-delay: 2.9s; }

@keyframes bpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--chrome-600); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px;
  background: var(--cyan); transform: translateX(-50%); animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ----------------------------- sections ----------------------------- */
.section { padding: 110px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-surface), #07090d 85%); }

/* reveal on scroll - progressive enhancement: only hides content when JS has
   confirmed it is running (html.js), so no-JS visitors and crawlers see
   everything immediately. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-blueprint, .bp-beacon, .bp-spark, .member { animation: none; }
  .bp-spark, .member { opacity: 0; }
  .bp-beacon { opacity: 0.55; }
  .scroll-hint span { animation: none; }
}

/* ----------------------------- problem / compare ----------------------------- */
.compare { display: grid; grid-template-columns: 1fr 64px 1fr; gap: 18px; align-items: stretch; margin-top: 14px; }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } .compare-arrow { transform: rotate(90deg); justify-self: center; } }
.compare-card { background: var(--bg-card); border-radius: 18px; overflow: hidden; border: 1px solid var(--chrome-700); }
.compare-head {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 15px; padding: 12px 22px; color: #000;
}
.compare-bad .compare-head { background: var(--chrome-500); }
.compare-good .compare-head { background: var(--cyan); }
.compare-good { border-color: rgba(9, 188, 237, 0.4); box-shadow: 0 0 50px rgba(9, 188, 237, 0.08); }
.compare-card ul { list-style: none; padding: 20px 22px; display: grid; gap: 12px; }
.compare-card li { padding-left: 26px; position: relative; font-size: 15px; color: var(--chrome-200); }
.compare-bad li::before { content: "✕"; position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.compare-good li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.compare-arrow { display: flex; align-items: center; justify-content: center; }
.compare-arrow svg { width: 44px; height: 44px; }

/* ----------------------------- blueprint interactive ----------------------------- */
.bp { margin-top: 10px; }
.bp-track {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px;
  position: relative; margin-bottom: 26px;
}
.bp-track::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 9px; height: 2px;
  background: linear-gradient(90deg, var(--chrome-600), var(--cyan) 60%, var(--amber));
  opacity: 0.5;
}
@media (max-width: 900px) {
  .bp-track { grid-template-columns: repeat(5, 1fr); row-gap: 22px; }
  .bp-track::before { display: none; }
}
.bp-stage {
  background: none; border: 0; cursor: pointer; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0 2px; color: var(--chrome-400); transition: color 0.15s;
}
.bp-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--chrome-500);
  transition: all 0.2s; position: relative; z-index: 1;
}
.bp-stage:hover .bp-dot { border-color: var(--cyan-soft); }
.bp-stage[aria-selected="true"] .bp-dot {
  background: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(9, 188, 237, 0.7);
}
.bp-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; }
.bp-name {
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.1; text-align: center;
}
.bp-stage[aria-selected="true"] { color: var(--chrome-100); }
.bp-stage[aria-selected="true"] .bp-name { color: var(--cyan-soft); }

.bp-panel {
  background: linear-gradient(135deg, #0e1726 0%, #0b0f18 55%, #15191f 100%);
  border: 1px solid var(--blue-line); border-radius: 20px; padding: 34px 38px;
  position: relative; overflow: hidden; min-height: 280px;
}
.bp-panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 230, 245, 0.5), transparent);
}
.bp-panel-head { display: flex; flex-wrap: wrap; gap: 14px; align-items: baseline; margin-bottom: 10px; }
.bp-panel-stage {
  font-family: var(--font-mono); font-size: 12px; color: var(--cyan-soft);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.bp-panel-milestone {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber);
}
.bp-panel h3 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.bp-panel p { color: var(--chrome-300); max-width: 720px; margin-bottom: 18px; }
.bp-deliverables { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
@media (max-width: 720px) { .bp-deliverables { grid-template-columns: 1fr; } }
.bp-deliverables li {
  padding-left: 26px; position: relative; font-size: 14.5px; color: var(--chrome-200);
}
.bp-deliverables li::before { content: "▸"; position: absolute; left: 0; color: var(--cyan); }
.bp-panel.switching { animation: panelswap 0.3s ease; }
@keyframes panelswap { from { opacity: 0.2; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ----------------------------- value grid ----------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px; }
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 18px;
  padding: 28px 26px; transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, #2a2a2a, #8a8a8a, #2a2a2a);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(9, 188, 237, 0.45); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(9, 188, 237, 0.12); color: var(--cyan); font-size: 20px; margin-bottom: 16px;
}
.value-card h3 { font-size: 21px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--chrome-300); }

/* ----------------------------- proof ----------------------------- */
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0 40px;
}
@media (max-width: 860px) { .proof-stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 18px;
  padding: 26px 20px; text-align: center;
}
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 52px); line-height: 1;
  background: linear-gradient(135deg, #e8e8e8, #fff 40%, #9a9a9a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12.5px; color: var(--chrome-400); display: block; margin-top: 8px; letter-spacing: 0.03em; }

/* clickable Google reviews proof strip */
.reviews-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px;
  margin: 0 0 40px; padding: 16px 24px;
  background: var(--bg-card); border: 1px solid var(--chrome-700);
  border-top: 1px solid var(--chrome-500);
  border-radius: 14px; color: var(--chrome-200);
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.reviews-strip:hover {
  color: var(--chrome-200); border-color: rgba(255, 193, 10, 0.5);
  transform: translateY(-2px); box-shadow: 0 0 34px rgba(255, 193, 10, 0.1);
}
.reviews-stars { color: var(--amber); font-size: 19px; letter-spacing: 2px; line-height: 1; }
.reviews-text { font-size: 14.5px; color: var(--chrome-300); }
.reviews-text strong { color: var(--chrome-100); }
.reviews-cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan);
}
.reviews-arrow { transition: transform 0.18s; }
.reviews-strip:hover .reviews-arrow { transform: translateX(4px); }
@media (max-width: 560px) {
  .reviews-cta { margin-left: 0; }
}

.proof-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: linear-gradient(135deg, #0e1726, #0b0f18 60%, #15191f);
  border: 1px solid var(--blue-line); border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
}
.quote-card blockquote { font-size: 19px; line-height: 1.65; color: var(--chrome-100); }
.quote-card blockquote::before { content: "“"; display: block; font-size: 64px; line-height: 0.6; color: var(--cyan); font-family: var(--font-display); margin-bottom: 14px; }
.quote-name { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan-soft); }
.quote-role { display: block; font-size: 12.5px; color: var(--chrome-400); margin-top: 2px; }
.proof-side { display: grid; gap: 18px; align-content: start; }
.proof-card { background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 18px; padding: 26px; }
.proof-card h3 { font-size: 20px; margin-bottom: 8px; }
.proof-card p { font-size: 14.5px; color: var(--chrome-300); }

/* ----------------------------- steps ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 18px;
  padding: 30px 26px; position: relative;
}
.step-num {
  position: absolute; top: -16px; left: 24px;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cyan); color: #000; font-family: var(--font-display); font-weight: 700; font-size: 18px;
  box-shadow: 0 0 22px rgba(9, 188, 237, 0.5);
}
.step h3 { font-size: 21px; margin: 10px 0 8px; }
.step p { font-size: 14.5px; color: var(--chrome-300); }

/* ----------------------------- founders ----------------------------- */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 12px; }
@media (max-width: 860px) { .founders-grid { grid-template-columns: 1fr; } }
.founder-card {
  display: grid; grid-template-columns: 180px 1fr; gap: 0;
  background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 20px;
  overflow: hidden; transition: border-color 0.2s, transform 0.2s;
}
.founder-card:hover { border-color: rgba(9, 188, 237, 0.4); transform: translateY(-3px); }
@media (max-width: 560px) { .founder-card { grid-template-columns: 1fr; } .founder-photo { min-height: 200px; } }
.founder-photo {
  position: relative; display: grid; place-items: center;
  background:
    radial-gradient(120px 160px at 50% 30%, rgba(9, 188, 237, 0.18), transparent 70%),
    linear-gradient(160deg, #0e1726, #0b0f18 70%);
  border-right: 1px solid var(--chrome-700);
}
/* real founder photo (when added) fills and crops the tile cleanly */
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-initials {
  font-family: var(--font-display); font-weight: 700; font-size: 84px; line-height: 1;
  background: linear-gradient(135deg, #e8e8e8, #fff 40%, #9a9a9a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.9;
}
.founder-photo-note {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--chrome-500); white-space: nowrap;
}
.founder-body { padding: 26px 26px 24px; }
.founder-body h3 { font-size: 26px; margin-bottom: 2px; }
.founder-role {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 12px;
}
.founder-body p:not(.founder-role) { font-size: 14.5px; color: var(--chrome-300); }

/* ----------------------------- faq ----------------------------- */
.faq-list { display: grid; gap: 12px; margin-top: 8px; }
.faq-list details {
  background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 14px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--chrome-100);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--cyan); font-size: 22px; transition: transform 0.2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; color: var(--chrome-300); font-size: 15px; }

/* ----------------------------- book ----------------------------- */
.book { overflow: hidden; }
.book-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 420px at 50% 0%, rgba(9, 188, 237, 0.14), transparent 65%),
    radial-gradient(600px 400px at 85% 100%, rgba(255, 193, 10, 0.06), transparent 60%);
}
.book .container { position: relative; }
.book-form {
  background: var(--bg-card); border: 1px solid var(--chrome-700); border-radius: 20px;
  padding: 34px; display: grid; gap: 18px; margin-top: 8px;
}
/* Calendly inline embed (shown instead of the form when CALENDLY_URL is set) */
.calendly-embed {
  min-width: 320px; height: 700px; margin-top: 8px;
  background: var(--bg-card); border: 1px solid var(--chrome-700);
  border-radius: 20px; overflow: hidden;
}
.calendly-embed[hidden] { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.book-form label {
  display: grid; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--chrome-400);
}
.book-form input, .book-form select, .book-form textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--chrome-100);
  background: var(--bg-surface); border: 1px solid var(--chrome-600); border-radius: 12px;
  padding: 13px 16px; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(9, 188, 237, 0.18);
}
.book-form textarea { resize: vertical; }
.form-note { font-size: 12.5px; color: var(--chrome-400); text-align: center; }

/* ----------------------------- footer ----------------------------- */
.footer { border-top: 1px solid var(--chrome-700); padding: 44px 0 56px; background: #050505; }
.footer-inner { display: grid; gap: 14px; justify-items: center; text-align: center; }
.footer-logo { height: 30px; width: auto; opacity: 0.9; }
.footer-line { font-size: 14px; color: var(--chrome-300); }
.footer-fine { font-size: 12px; color: var(--chrome-500); max-width: 640px; }
/* Member login: points at the separate portal app (portal.<domain>) */
.footer-login {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid var(--chrome-600); border-radius: 999px; padding: 0 22px;
  transition: border-color 0.18s, color 0.18s;
}
.footer-login:hover { border-color: var(--cyan); color: #fff; }
