/* ===================================================================
   IMPACT — Train Hard. Think Harder.
   Landing site. Visual system from impact-landing-v2, polished.
   =================================================================== */

:root {
  --black:      #07090c;
  --blue:       #29b6e8;
  --blue-light: #5dd0f5;
  --blue-dim:   rgba(41,182,232,0.07);
  --blue-mid:   rgba(41,182,232,0.22);
  --blue-glow:  rgba(41,182,232,0.45);
  --white:      #eef3f7;
  --grey:       #0f1418;
  --grey2:      #161d24;
  --grey3:      #1d2730;
  --muted:      #4d6070;
  --muted2:     #7a96a8;
  --border:     rgba(41,182,232,0.13);

  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 14px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* GRID BG */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(41,182,232,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,232,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ============================== NAV ============================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,9,12,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s ease, background 0.3s ease;
}
nav.scrolled { height: 60px; background: rgba(7,9,12,0.95); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; object-fit: contain; filter: drop-shadow(0 0 10px rgba(41,182,232,0.25)); transition: height 0.3s ease; }
nav.scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--ff-head);
  font-weight: 600; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted2);
  text-decoration: none; transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--black);
  background: var(--blue); padding: 11px 24px;
  text-decoration: none; transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  display: inline-block;
}
.nav-cta:hover { background: var(--blue-light); transform: translateX(2px); box-shadow: 0 6px 24px rgba(41,182,232,0.3); }

.nav-toggle { display: none; }

/* ============================== HERO ============================== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: 56px; align-items: center;
}
.hero-left { min-width: 0; }
.hero-right { min-width: 0; display: flex; align-items: center; }

/* photo background + 50% black overlay */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  filter: grayscale(0.25) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,9,12,0.82) 0%, rgba(7,9,12,0.5) 55%, rgba(7,9,12,0.42) 100%),
    rgba(7,9,12,0.5);
}

.hero-orb-1 {
  position: absolute; pointer-events: none; z-index: 1;
  width: 700px; height: 700px; border-radius: 50%;
  top: -200px; right: -250px;
  background: radial-gradient(circle, rgba(41,182,232,0.10) 0%, transparent 60%);
  animation: breathe 9s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; pointer-events: none; z-index: 1;
  width: 400px; height: 400px; border-radius: 50%;
  bottom: -80px; left: -120px;
  background: radial-gradient(circle, rgba(41,182,232,0.06) 0%, transparent 60%);
  animation: breathe 13s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%,100% { transform: scale(1) translate(0,0); }
  50%     { transform: scale(1.08) translate(15px,-15px); }
}

.hero-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 30%, var(--blue-light) 60%, transparent 100%);
  opacity: 0.85;
}

.hero-opening {
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 400;
  color: var(--blue); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-opening::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--blue); }

.hero-h1 {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(46px, 5vw, 86px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-h1 span { white-space: nowrap; }
.hero-h1 .row-1 { display: block; color: var(--white); }
.hero-h1 .row-2 { display: block; color: var(--blue); text-shadow: 0 0 60px rgba(41,182,232,0.4); }
.hero-h1 .row-3 {
  display: block; font-style: italic; color: transparent;
  -webkit-text-stroke: 1.5px rgba(238,243,247,0.28); letter-spacing: 2px;
}

.hero-manifesto { margin-top: 26px; margin-bottom: 28px; max-width: 560px; }
.manifesto-quote {
  font-family: var(--ff-head);
  font-weight: 700; font-size: clamp(18px, 2.5vw, 23px);
  line-height: 1.3; color: var(--white); letter-spacing: 0.3px;
  border-left: 3px solid var(--blue); padding-left: 20px; margin-bottom: 14px;
}
.manifesto-quote em { color: var(--blue); font-style: normal; }
.manifesto-sub { font-size: 14px; color: var(--muted2); line-height: 1.75; padding-left: 23px; }
.manifesto-sub strong { color: var(--white); }

/* OFFER STRIP */
.offer-strip {
  display: flex; gap: 0;
  background: rgba(22,29,36,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  max-width: 560px; margin-bottom: 0;
  position: relative; overflow: hidden;
}
.offer-strip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-light), transparent); }
.offer-badge {
  background: var(--blue); color: var(--black);
  font-family: var(--ff-head); font-weight: 800; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 16px 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transform: rotate(180deg);
}
.offer-list { padding: 16px 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.offer-row { display: flex; align-items: center; gap: 11px; font-size: 13px; }
.offer-row .tick { color: var(--blue); flex-shrink: 0; display: flex; }
.offer-row .tick svg { width: 15px; height: 15px; }
.offer-row strong { color: var(--white); white-space: nowrap; }
.offer-row span { color: var(--muted2); }

/* HERO FORM */
.hero-form-wrap {
  width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(13,18,22,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 32px 30px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.hero-form, .hero-form-wrap .success-msg { max-width: none; }
.hero-form-head { margin-bottom: 20px; }
.hero-form-title { font-family: var(--ff-head); font-weight: 800; font-size: clamp(24px, 2vw, 30px); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1; color: var(--white); margin-bottom: 10px; }
.hero-form-title span { color: var(--blue); }
.form-label {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted2); margin-bottom: 0; display: block;
}
.hero-form { display: flex; flex-direction: column; gap: 13px; max-width: 480px; }
.hero-form-trust { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.hero-form-trust .s { color: var(--blue); letter-spacing: 2px; font-size: 13px; }
.hero-form-trust .x { font-family: var(--ff-head); font-weight: 600; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted2); }
.form-row { display: flex; gap: 10px; }
.form-field { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-family: var(--ff-head);
  font-weight: 600; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2);
}
.form-field input {
  background: rgba(22,29,36,0.9);
  border: 1px solid var(--grey3);
  color: var(--white);
  font-family: var(--ff-body); font-size: 14px;
  padding: 13px 16px; outline: none; width: 100%; border-radius: 1px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder { color: var(--muted); }
.form-field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,182,232,0.1); }

.btn-primary {
  font-family: var(--ff-head);
  font-weight: 800; font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border: none; cursor: pointer; padding: 16px 32px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s; position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  width: 100%;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(41,182,232,0.4); }
.btn-primary:disabled { opacity: 0.7; cursor: default; transform: none; }
.btn-arrow { transition: transform 0.2s; font-size: 18px; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.form-note { font-size: 11px; color: var(--muted2); line-height: 1.6; padding-top: 2px; }

.success-msg {
  display: none;
  background: var(--blue-dim);
  border: 1px solid var(--blue-mid);
  border-left: 4px solid var(--blue);
  padding: 22px 26px; font-size: 14px; line-height: 1.7; color: var(--muted2); max-width: 480px;
}
.success-msg strong { color: var(--white); }

/* ============================== PROOF STRIP ============================== */
.proof-strip {
  position: relative; z-index: 1;
  background: var(--grey);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 30px 40px;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; padding: 6px 44px; }
.proof-num {
  font-family: var(--ff-head);
  font-weight: 900; font-size: 44px; color: var(--blue); line-height: 1;
  text-shadow: 0 0 20px rgba(41,182,232,0.3);
}
.proof-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; color: var(--muted2); text-transform: uppercase; }
.proof-div { width: 1px; height: 56px; background: var(--border); }

/* ============================== SECTIONS ============================== */
.section { position: relative; z-index: 1; padding: 96px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue);
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); display: inline-block; }

.section-h2 {
  font-family: var(--ff-head);
  font-weight: 900; font-size: clamp(44px, 7vw, 74px);
  text-transform: uppercase; line-height: 0.88; margin-bottom: 48px; letter-spacing: -0.3px;
}

/* MINDSET */
.mindset-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 980px; }
.big-stat {
  font-family: var(--ff-head);
  font-weight: 900; font-size: clamp(80px, 14vw, 150px); line-height: 0.85; color: var(--blue);
  text-shadow: 0 0 60px rgba(41,182,232,0.2); display: block;
}
.big-stat-label { font-family: var(--ff-head); font-weight: 700; font-size: 22px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }
.big-stat-sub { font-size: 13px; color: var(--muted2); margin-top: 10px; line-height: 1.6; max-width: 280px; }
.mindset-right { border-left: 1px solid var(--border); padding-left: 48px; display: flex; flex-direction: column; gap: 28px; }
.mindset-point h3 {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 19px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white);
  margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.mindset-point h3::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; box-shadow: 0 0 8px var(--blue-glow); }
.mindset-point p { font-size: 13px; color: var(--muted2); line-height: 1.7; padding-left: 18px; }

/* PHILOSOPHY 2-COLUMN */
.philosophy-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.philosophy-left .section-h2 { margin-bottom: 36px; }
.big-stat-row { display: flex; align-items: center; gap: 26px; }
.big-stat-row .big-stat { font-size: clamp(58px, 7vw, 104px); margin: 0; }
.big-stat-meta .big-stat-label { margin-top: 0; }
.philosophy-right { border-left: 1px solid var(--border); padding-left: 48px; display: flex; flex-direction: column; gap: 28px; }

/* PROCESS CENTERED */
#process .eyebrow { justify-content: center; }
#process .eyebrow::before { display: none; }
#process .eyebrow::after { content: ''; width: 20px; height: 2px; background: var(--blue); display: inline-block; }
#process .section-h2 { text-align: center; }
#process .steps { margin-left: auto; margin-right: auto; }

/* RESULTS CENTERED HEADING */
#results .eyebrow { justify-content: center; }
#results .eyebrow::before { display: none; }
#results .eyebrow::after { content: ''; width: 20px; height: 2px; background: var(--blue); display: inline-block; }
#results .section-h2 { text-align: center; }

/* ============================== CALLUM ============================== */
.callum-section {
  position: relative; z-index: 1;
  background: var(--grey);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 40px; overflow: hidden;
}
.callum-section::before {
  content: 'IMPACT';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-head);
  font-weight: 900; font-size: 280px; color: rgba(41,182,232,0.028);
  letter-spacing: -5px; pointer-events: none; white-space: nowrap; line-height: 1;
}
.callum-inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: stretch; max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.callum-name { font-family: var(--ff-head); font-weight: 900; font-size: clamp(48px, 7vw, 84px); text-transform: uppercase; line-height: 0.9; margin-bottom: 8px; white-space: nowrap; }
.callum-name span { color: var(--blue); display: inline; }
.callum-title { font-family: var(--ff-head); font-weight: 600; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted2); margin-bottom: 28px; }
.callum-bio { font-size: 14px; color: var(--muted2); line-height: 1.8; margin-bottom: 28px; }
.callum-bio strong { color: var(--white); }
.callum-bio em { color: var(--blue); font-style: normal; }
.callum-credentials { display: flex; flex-direction: column; gap: 11px; }
.cred { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted2); }
.cred svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }
.cred strong { color: var(--white); }

.callum-text { align-self: center; }
.callum-photo {
  position: relative; height: 100%; min-height: 480px;
  border: 1px solid var(--border); overflow: hidden;
}
.callum-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: grayscale(0.2) contrast(1.05); }
.callum-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--blue-dim) 0%, transparent 35%), linear-gradient(0deg, rgba(7,9,12,0.55) 0%, transparent 45%); }
.callum-photo-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(7,9,12,0.8); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-left: 3px solid var(--blue);
  padding: 10px 16px;
}
.callum-photo-tag .t { font-family: var(--ff-head); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
.callum-photo-tag .n { font-family: var(--ff-head); font-weight: 800; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-top: 2px; white-space: nowrap; }

/* ============================== FEATURES ============================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 14px; max-width: 1100px; }
.feature-card {
  background: var(--grey2); border: 1px solid var(--border);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s; cursor: default;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.feature-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); }
.feature-card:hover::after { transform: scaleX(1); }
.f-icon {
  width: 46px; height: 46px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 2px;
  background: var(--blue-dim); color: var(--blue);
}
.f-icon svg { width: 23px; height: 23px; }
.feature-card h3 { font-family: var(--ff-head); font-weight: 700; font-size: 19px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted2); line-height: 1.65; }

/* ============================== STEPS ============================== */
.steps { display: flex; flex-direction: column; max-width: 620px; }
.step { display: flex; gap: 0; }
.step-spine { display: flex; flex-direction: column; align-items: center; width: 52px; flex-shrink: 0; }
.step-node {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grey2); border: 2px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 18px; color: var(--blue);
  flex-shrink: 0; z-index: 1; transition: all 0.2s;
}
.step-node.active { background: var(--blue); color: var(--black); border-color: var(--blue-light); box-shadow: 0 0 24px rgba(41,182,232,0.4); }
.step-line { width: 2px; flex: 1; min-height: 28px; background: linear-gradient(to bottom, var(--blue-mid), transparent); }
.step-body { padding: 6px 0 36px 24px; flex: 1; }
.step-body h3 { font-family: var(--ff-head); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 13px; color: var(--muted2); line-height: 1.65; }

/* ============================== TESTIMONIALS ============================== */
.testi-section {
  position: relative; z-index: 1;
  background: var(--grey);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 88px 40px; overflow: hidden;
}
.testi-section::before {
  content: '"'; position: absolute; top: -60px; left: 10px;
  font-family: var(--ff-head); font-size: 380px; line-height: 1; color: rgba(41,182,232,0.03); pointer-events: none;
}
.testi-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 16px; }
.testi-card { background: var(--grey2); border: 1px solid var(--border); padding: 30px 28px; transition: border-color 0.2s; }
.testi-card:hover { border-color: var(--blue-mid); }
.stars { color: var(--blue); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 14px; line-height: 1.75; color: var(--muted2); font-style: italic; margin-bottom: 18px; }
.testi-card blockquote strong { color: var(--white); font-style: normal; }
.testi-author { font-family: var(--ff-head); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.testi-detail { font-size: 11px; color: var(--blue); margin-top: 3px; }

/* ============================== BOTTOM CTA ============================== */
.bottom-cta { position: relative; z-index: 1; padding: 110px 40px; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0 0 72px; z-index: 0; pointer-events: none; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; filter: grayscale(0.25) contrast(1.05); }
.cta-overlay {
  position: absolute; inset: 0 0 72px; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,9,12,0.88) 0%, rgba(7,9,12,0.74) 50%, rgba(7,9,12,0.92) 100%),
    rgba(7,9,12,0.58);
}
.cta-grid-overlay {
  position: absolute; inset: 0 0 72px; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(41,182,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,182,232,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.bottom-cta > *:not(.cta-bg):not(.cta-overlay):not(.cta-grid-overlay) { position: relative; z-index: 2; }
.bottom-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(41,182,232,0.08) 0%, transparent 65%); pointer-events: none;
}
.bottom-cta .eyebrow { justify-content: center; }
.bottom-cta .eyebrow::before { display: none; }
.bottom-cta .eyebrow::after { content: ''; width: 20px; height: 2px; background: var(--blue); display: inline-block; }
.bottom-h2 { font-family: var(--ff-head); font-weight: 900; font-size: clamp(52px, 9vw, 98px); text-transform: uppercase; line-height: 0.85; margin-bottom: 14px; letter-spacing: -0.5px; }
.bottom-h2 span { color: var(--blue); }
.bottom-h2 .italic { font-style: italic; }
.bottom-sub { font-size: 15px; color: var(--muted2); max-width: 440px; margin: 0 auto 40px; line-height: 1.75; }
.bottom-sub strong { color: var(--white); }
.bottom-form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; margin: 0 auto; }
.bottom-form-panel { max-width: 520px; margin: 0 auto; text-align: left; }
.bottom-form-panel .form-row { flex-direction: column; gap: 13px; }
.bottom-form input {
  background: var(--grey2); border: 1px solid var(--grey3); color: var(--white);
  font-family: var(--ff-body); font-size: 14px; padding: 14px 18px; outline: none; width: 100%; border-radius: 1px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bottom-form input::placeholder { color: var(--muted); }
.bottom-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,182,232,0.1); }
.bottom-form .btn-primary { clip-path: none; border-radius: 1px; }

/* ============================== FOOTER ============================== */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 30px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-left img { height: 30px; width: auto; opacity: 0.6; }
footer p { font-size: 11px; color: var(--muted); }
footer a { color: var(--muted2); text-decoration: none; }
footer a:hover { color: var(--blue); }

/* ============================== ANIMATIONS ============================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-orb-1, .hero-orb-2, .hero-opening, .hero-h1, .hero-manifesto, .offer-strip, .hero-form-wrap { animation: none; }
}

/* ============================== RESPONSIVE ============================== */
.nav-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 199;
  background: rgba(7,9,12,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 90px 30px 32px; display: flex; flex-direction: column; gap: 2px;
  transform: translateY(-110%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
body.menu-open .nav-menu { transform: translateY(0); }
.nav-menu a {
  font-family: var(--ff-head); font-size: 19px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted2); padding: 15px 0; border-bottom: 1px solid var(--border); text-decoration: none;
}
.nav-menu a:last-child { border-bottom: none; margin-top: 16px; background: var(--blue); color: var(--black); text-align: center; padding: 15px; }

@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 201; }
  .nav-toggle span { width: 26px; height: 2px; background: var(--white); display: block; transition: transform 0.3s ease, opacity 0.2s; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; max-width: 560px; }
  .hero { align-items: flex-start; padding-top: 120px; }
}

@media (max-width: 860px) {
  .mindset-block, .callum-inner, .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .mindset-right, .philosophy-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 28px; }
  .callum-photo { max-width: 460px; height: auto; min-height: 0; aspect-ratio: 4/5; }
  .callum-section::before { font-size: 200px; }
}

@media (max-width: 760px) {
  nav { padding: 0 20px; }
  .hero, .section, .callum-section, .testi-section, .bottom-cta { padding-left: 22px; padding-right: 22px; }
  .hero { padding-top: 130px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,9,12,0.55) 0%, rgba(7,9,12,0.7) 100%), rgba(7,9,12,0.5); }
  .proof-strip { padding: 22px; gap: 0; }
  .proof-item { padding: 10px 22px; }
  .proof-div { display: none; }
  .form-row { flex-direction: column; }
  footer { flex-direction: column; text-align: center; }
}
