/* ════════════════════════════════════════════════════
   CYBRSEC — Premium Dark Landing
   Inspired by withunio.com
   ════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:     #000000;
  --bg:        #050505;
  --card:      #0a0a0a;
  --card-h:    #0e0e0e;
  --border:    #1a1a1a;
  --border-h:  #2a2a2a;

  --green:     #53d366;
  --green-d:   #3dbb50;
  --green-bg:  rgba(83, 211, 102, 0.08);
  --green-g:   rgba(83, 211, 102, 0.15);

  --blue:      #5b9cf6;
  --blue-bg:   rgba(91, 156, 246, 0.08);

  --white:     #ffffff;
  --gray:      #999999;
  --gray-d:    #666666;
  --gray-dd:   #444444;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
strong { color: var(--white); font-weight: 600; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

::selection { background: var(--green); color: var(--black); }

/* ── NAVBAR ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-size: 30px; font-weight: 700; letter-spacing: -0.5px; color: var(--green);
}

.logo-dot { color: var(--white); }

.logo-sep {
  color: var(--gray-dd); font-weight: 300; margin: 0 2px;
}

.logo-sub {
  font-weight: 400; font-size: 14px; color: var(--gray);
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  transition: color 0.25s var(--ease); letter-spacing: -0.02em;
}
.nav-links a:hover { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 14px;
  border-radius: 100px; padding: 12px 28px; border: none; cursor: pointer;
  transition: all 0.3s var(--ease); white-space: nowrap; letter-spacing: -0.02em;
}

.btn-nav { padding: 10px 24px; font-size: 13px; }
.btn-hero { padding: 16px 36px; font-size: 15px; }

.btn-primary {
  background: var(--green); color: var(--black);
}
.btn-primary:hover {
  background: var(--green-d);
  box-shadow: 0 0 40px rgba(83, 211, 102, 0.35), 0 0 80px rgba(83, 211, 102, 0.1);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border-h);
}
.btn-ghost:hover {
  border-color: var(--gray); background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 0; overflow: hidden;
}

/* Aurora glow beams — Unio style */
.aurora {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; pointer-events: none; z-index: 0;
}

.aurora-bottom {
  top: auto; bottom: 0;
}

.aurora-img {
  position: absolute;
  top: -150px; left: 0;
  width: 100vw; height: auto;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: screen;
}

.matrix-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.12;
}

#matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#matrix-bg canvas {
  display: block;
  width: 100%; height: 100%;
  opacity: 0.10;
}

.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 900px; margin: 0 auto; padding: 0 32px;
}

.hero-h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-accent {
  color: var(--green);
}

.hero-mentoring {
  font-size: 18px; font-weight: 500; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 40px;
  font-style: italic;
}

.hero-p {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400; color: var(--gray); line-height: 1.7;
  max-width: 640px; margin: 0 auto 16px;
  letter-spacing: -0.02em;
}

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Trust strip */
.trust-strip {
  position: relative; z-index: 1;
  margin-top: 80px; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-label {
  text-align: center; font-size: 13px; font-weight: 500;
  color: var(--gray-d); margin-bottom: 20px; letter-spacing: -0.02em;
}

.trust-marquee-wrap {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trust-marquee {
  display: flex; gap: 0; white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.trust-marquee span {
  font-size: 13px; font-weight: 500; color: var(--gray-d);
  padding: 0 12px; letter-spacing: -0.01em;
}

.marquee-sep { color: var(--gray-dd); padding: 0 4px; }

/* ── SECTIONS ── */
.section { padding: 120px 0; }

.section-dark { background: var(--bg); }

.eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--green); margin-bottom: 20px;
}

.section-h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 20px; color: var(--white);
}

.section-p {
  font-size: 17px; color: var(--gray); margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-statement {
  text-align: center; font-size: 18px; font-weight: 500;
  color: var(--green); margin-top: 48px; letter-spacing: -0.02em;
}

.section-cta-block {
  text-align: center; margin-top: 40px;
}

.outcome {
  font-size: 17px; font-weight: 500; color: var(--gray);
  margin-bottom: 24px; letter-spacing: -0.02em;
}

/* ── CARDS ── */
.card {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 44px; transition: all 0.4s var(--ease);
}

.card-dark { background: var(--card); }

.card:hover { border-color: var(--border-h); transform: translateY(-2px); }

.card-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}

.tag-green { color: var(--green); background: var(--green-bg); }
.tag-blue { color: var(--blue); background: var(--blue-bg); }

.card-h3 {
  font-size: 19px; font-weight: 600; margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.card-list {
  list-style: none; margin-bottom: 28px;
}

.card-list li {
  position: relative; padding-left: 20px; margin-bottom: 14px;
  font-size: 15px; color: var(--gray); line-height: 1.6;
  letter-spacing: -0.02em;
}

.card-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gray-dd);
}

.card-quote {
  font-size: 15px; font-weight: 600; color: var(--green); font-style: italic;
  border: none; border-left: 2px solid var(--green); padding-left: 16px;
  letter-spacing: -0.02em; line-height: 1.6;
}

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px;
}

/* ── MARQUEE DIVIDER ── */
.marquee-divider {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.marquee-green {
  background: var(--green); border-color: transparent;
}

.marquee-green .marquee-track span { color: var(--black); }
.marquee-green .m-dot { background: rgba(0,0,0,0.3); }

.marquee-track {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gray-dd); padding: 0 16px;
}

.marquee-track-right { animation: scroll-left 40s linear infinite; }
.marquee-track-left { animation: scroll-right 40s linear infinite; }

.m-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gray-dd);
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── PILLAR CARDS (Core Offer) ── */
.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  transition: all 0.4s var(--ease);
}

.pillar-card:hover {
  border-color: var(--green); background: var(--card-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(83, 211, 102, 0.06);
}

.svc-num {
  font-size: 13px; font-weight: 700; color: var(--green);
  margin-bottom: 20px; letter-spacing: 1px;
}

.pillar-card h4 {
  font-size: 19px; font-weight: 600; margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.pillar-list {
  list-style: none;
}

.pillar-list li {
  position: relative; padding-left: 18px; margin-bottom: 12px;
  font-size: 14px; color: var(--gray); line-height: 1.6;
  letter-spacing: -0.02em;
}

.pillar-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  opacity: 0.6;
}

/* ── MENTORSHIP ── */
.mentor-hook {
  max-width: 1000px; margin: 28px auto 0;
  padding: 24px 32px;
  background: rgba(83, 211, 102, 0.04);
  border: 1px solid rgba(83, 211, 102, 0.12);
  border-radius: 18px;
}

.mentor-hook p {
  font-size: 15px; color: var(--gray); line-height: 1.7;
  letter-spacing: -0.02em;
}

.mentor-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 32px; max-width: 1000px; margin-left: auto; margin-right: auto;
}

.mentor-col-block {}

.mentor-audience {
  max-width: 1000px; margin: 28px auto 0; text-align: center;
}

.audience-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 16px;
}

.audience-tag {
  font-size: 13px; font-weight: 600; color: var(--green);
  background: var(--green-bg); border: 1px solid rgba(83, 211, 102, 0.15);
  padding: 8px 20px; border-radius: 100px;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease);
}

.audience-tag:hover {
  background: rgba(83, 211, 102, 0.12);
  border-color: rgba(83, 211, 102, 0.3);
  transform: translateY(-2px);
}

.mentor-list-single {
  max-width: 580px; margin: 48px auto 0;
}

.mentor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 56px; max-width: 900px; margin-left: auto; margin-right: auto;
}

.mentor-heading {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--green); margin-bottom: 14px;
}

.mentor-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; margin-bottom: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; font-size: 14px; font-weight: 500;
  color: var(--gray); letter-spacing: -0.02em;
  transition: all 0.3s var(--ease);
}

.mentor-item:hover {
  border-color: var(--border-h); color: var(--white);
  background: var(--card-h); transform: translateX(4px);
}

.mi-arrow {
  color: var(--green); font-size: 16px; flex-shrink: 0; font-weight: 600;
}

/* ── STATS ── */
.stats-row {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin: 64px auto 56px; max-width: 800px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px 32px;
}

.stat-block { text-align: center; flex: 1; }

.stat-number {
  font-size: 48px; font-weight: 700; color: var(--white);
  letter-spacing: -0.04em; line-height: 1;
}

.stat-plus { color: var(--green); }

.stat-label {
  font-size: 13px; font-weight: 500; color: var(--gray);
  margin-top: 8px; line-height: 1.4; letter-spacing: -0.01em;
}

.stat-divider {
  width: 1px; height: 60px; background: var(--border); flex-shrink: 0;
}

/* ── WHY LIST ── */
.why-list {
  max-width: 640px; margin: 0 auto;
}

.why-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 500; color: var(--gray);
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.why-row:first-child { border-top: 1px solid var(--border); }
.why-row:hover { color: var(--white); }

.why-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}

/* ── DIFFERENTIATOR ── */
.diff-checklist {
  margin-top: 48px;
}

.diff-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 500; color: var(--gray);
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.diff-row:first-child { border-top: 1px solid var(--border); }
.diff-row:hover { color: var(--white); }

/* ── STORY ── */
.story-text {
  margin-top: 48px;
}

.story-text p {
  font-size: 17px; color: var(--gray); line-height: 1.8;
  margin-bottom: 20px; letter-spacing: -0.02em;
}

.story-quote {
  font-size: 22px; font-weight: 600; color: var(--green);
  border: none; border-left: 3px solid var(--green);
  padding-left: 24px; margin-top: 40px;
  letter-spacing: -0.03em; line-height: 1.4; font-style: normal;
}

/* ── WHO'S BEHIND ── */
.behind-layout {
  display: grid; grid-template-columns: 300px 1fr; gap: 72px;
  margin-top: 56px; align-items: start;
}

.behind-photo-col {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; align-items: center;
}

.behind-photo-frame {
  position: relative; width: 220px; height: 220px;
  border-radius: 24px; overflow: hidden; margin-bottom: 28px;
}

.behind-photo-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center -20%;
  transform: scale(1.4);
  transform-origin: center 50%;
  border-radius: 24px; border: 1px solid var(--border);
}

.behind-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
}

.photo-initials {
  font-size: 72px; font-weight: 700; color: var(--green);
  opacity: 0.3; letter-spacing: -0.04em;
}

.behind-photo-glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 100px;
  background: radial-gradient(ellipse, rgba(83, 211, 102, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.behind-name-block { text-align: center; }

.behind-name {
  font-size: 22px; font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.behind-role {
  font-size: 13px; font-weight: 500; color: var(--green);
  letter-spacing: -0.01em;
}

.behind-bio-col {}

.behind-headline {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.15;
  margin-bottom: 32px;
}

.behind-text {
  font-size: 16px; color: var(--gray); line-height: 1.8;
  margin-bottom: 20px; letter-spacing: -0.02em;
}

.behind-text em {
  color: var(--white); font-style: italic;
}

.behind-focus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 36px 0;
}

.behind-focus-card {
  display: flex; gap: 14px; padding: 28px;
  background: rgba(83, 211, 102, 0.04);
  border: 1px solid rgba(83, 211, 102, 0.12);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
}

.behind-focus-card:hover {
  border-color: rgba(83, 211, 102, 0.25);
  background: rgba(83, 211, 102, 0.06);
  transform: translateY(-2px);
}

.behind-focus-icon {
  color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px;
}

.behind-focus-card h4 {
  font-size: 15px; font-weight: 600; margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.behind-focus-card p {
  font-size: 13px; color: var(--gray); line-height: 1.7;
  letter-spacing: -0.01em;
}

.behind-highlights {
  margin: 36px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}

.bh-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--gray);
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.bh-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--border); }
.bh-item:nth-child(even) { padding-left: 24px; }
.bh-item:nth-child(1), .bh-item:nth-child(2) { border-top: 1px solid var(--border); }

.bh-item:hover { color: var(--white); }

.bh-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; opacity: 0.7;
}

.behind-quote {
  font-size: 18px; font-weight: 500; color: var(--green);
  border: none; border-left: 3px solid var(--green);
  padding-left: 24px; margin-top: 40px;
  letter-spacing: -0.02em; line-height: 1.6; font-style: normal;
}

/* ── PROOF ── */
.proof-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 56px;
}

.proof-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 24px; text-align: center;
  transition: all 0.4s var(--ease);
}

.proof-card:hover {
  border-color: var(--border-h); transform: translateY(-4px);
}

.proof-num { font-size: 28px; margin-bottom: 16px; }

.proof-card p {
  font-size: 13px; font-weight: 500; color: var(--gray);
  line-height: 1.5; letter-spacing: -0.01em;
}

/* ── ENGAGEMENT MODELS ── */
.engage-detailed-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px;
}

.engage-detail-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
}

.engage-detail-card:hover {
  border-color: var(--green); background: var(--card-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(83, 211, 102, 0.06);
}

.engage-detail-card h4 {
  font-size: 17px; font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.engage-desc {
  font-size: 14px; color: var(--gray); line-height: 1.6;
  letter-spacing: -0.02em; margin-bottom: 16px;
}

.engage-includes {
  list-style: none; margin-bottom: 20px; flex: 1;
}

.engage-includes li {
  position: relative; padding-left: 16px; margin-bottom: 8px;
  font-size: 13px; color: var(--gray); line-height: 1.5;
  letter-spacing: -0.01em;
}

.engage-includes li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--green);
  opacity: 0.6;
}

.engage-meta {
  display: flex; gap: 12px; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}

.engage-timeline {
  font-size: 12px; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em;
}

.engage-tag {
  font-size: 11px; font-weight: 600; color: var(--green);
  background: var(--green-bg); padding: 4px 12px;
  border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
}

/* ── TESTIMONIALS (scrolling marquee rows) ── */
.testimonial-marquee-wrap {
  overflow: hidden;
  margin-top: 56px;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.testimonial-marquee-wrap + .testimonial-marquee-wrap {
  margin-top: 0;
}

.testimonial-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testimonial-marquee-right {
  animation: scroll-left 60s linear infinite;
}

.testimonial-marquee-left {
  animation: scroll-right 60s linear infinite;
}

.testimonial-marquee:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column;
  width: 380px; min-width: 380px;
  transition: border-color 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--border-h);
}

.testimonial-text {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  letter-spacing: -0.02em; font-style: italic; flex: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 14px; border-top: 1px solid var(--border);
}

.testimonial-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  letter-spacing: -0.02em;
}

.testimonial-role {
  font-size: 11px; font-weight: 500; color: var(--green);
  letter-spacing: -0.01em;
}

.scarcity-note {
  text-align: center; font-size: 15px; font-weight: 500;
  color: var(--gray); margin-top: 48px; max-width: 680px;
  margin-left: auto; margin-right: auto;
  letter-spacing: -0.02em; line-height: 1.7;
  padding: 24px 32px;
  border: 1px solid rgba(83, 211, 102, 0.15);
  border-radius: 16px;
  background: rgba(83, 211, 102, 0.03);
}

/* ── CTA ── */
.section-cta {
  position: relative; overflow: hidden; padding: 140px 0;
}

.cta-split {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.cta-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 56px 44px; text-align: center;
  transition: all 0.4s var(--ease);
}

.cta-box:hover {
  transform: translateY(-4px);
}

.cta-box-green:hover {
  background: rgba(83, 211, 102, 0.08);
  border-color: rgba(83, 211, 102, 0.3);
  box-shadow: 0 20px 60px rgba(83, 211, 102, 0.08), inset 0 1px 0 rgba(83, 211, 102, 0.1);
}

.cta-box-blue:hover {
  background: rgba(91, 156, 246, 0.08);
  border-color: rgba(91, 156, 246, 0.3);
  box-shadow: 0 20px 60px rgba(91, 156, 246, 0.08), inset 0 1px 0 rgba(91, 156, 246, 0.1);
}

.cta-h3 {
  font-size: 22px; font-weight: 600; line-height: 1.35;
  margin-bottom: 36px; letter-spacing: -0.03em;
}

/* ── FAQ ── */
.faq-list { margin-top: 56px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  padding: 28px 0; font-size: 16px; font-weight: 600;
  color: var(--white); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--gray-dd);
  transition: all 0.3s var(--ease); flex-shrink: 0; margin-left: 16px;
}

.faq-item[open] summary::after { content: '\2212'; color: var(--green); }
.faq-item summary:hover { color: var(--green); }

.faq-item p {
  font-size: 15px; color: var(--gray); line-height: 1.8;
  max-width: 640px; letter-spacing: -0.02em;
}

/* ── FOOTER ── */
#footer {
  border-top: 1px solid var(--border); padding: 36px 0;
}

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

.footer-copy {
  font-size: 13px; color: var(--gray-dd); letter-spacing: -0.01em;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; font-weight: 500; color: var(--gray-d);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-email {
  color: var(--gray-d); transition: color 0.25s var(--ease);
}
.footer-email:hover { color: var(--green); }

/* ── SCROLL ANIMATIONS ── */
.hero-h1, .hero-p, .hero-ctas {
  opacity: 0; animation: rise 0.9s var(--ease) forwards;
}
.hero-p { animation-delay: 0.1s; }
.hero-ctas { animation-delay: 0.2s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .engage-detailed-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .container { padding: 0 20px; }

  .hero-h1 { font-size: 30px; letter-spacing: -0.03em; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .two-col, .pillars-grid, .mentor-grid, .mentor-two-col, .cta-split, .engage-detailed-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card { width: 300px; min-width: 300px; padding: 24px 20px; }
  .testimonial-marquee-right { animation-duration: 40s; }
  .testimonial-marquee-left { animation-duration: 40s; }

  .stats-row {
    flex-direction: column; gap: 32px; padding: 36px 24px;
  }

  .section { padding: 80px 0; }
  .section-cta { padding: 100px 0; }

  .card { padding: 32px; }
  .cta-box { padding: 40px 28px; }

  .section-h2 { font-size: 30px; }

  /* Who's Behind responsive */
  .behind-layout {
    grid-template-columns: 1fr; gap: 48px;
  }

  .behind-photo-col {
    position: relative; top: auto;
    flex-direction: row; gap: 20px; justify-content: flex-start;
  }

  .behind-photo-frame {
    width: 100px; height: 100px; margin-bottom: 0; border-radius: 18px;
  }

  .photo-initials { font-size: 36px; }
  .behind-photo-glow { display: none; }
  .behind-name-block { text-align: left; }
  .behind-name { font-size: 18px; }

  .behind-focus-grid { grid-template-columns: 1fr; }

  .behind-highlights { grid-template-columns: 1fr; }
  .bh-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .bh-item:nth-child(even) { padding-left: 0; }
  .bh-item:nth-child(2) { border-top: none; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ════════════════════════════════════════════════════
   LANDING PAGE & THANK-YOU STYLES
   ════════════════════════════════════════════════════ */

/* ── Landing Navbar (no nav links) ── */
.nav-landing .nav-links { display: none; }

/* ── Landing Hero ── */
.lp-hero {
  height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 0;
  position: relative; overflow: hidden;
}

.lp-hero .hero-content { max-width: 800px; }

.lp-social-proof {
  font-size: 13px; font-weight: 500; color: var(--gray-d);
  margin-top: 24px; letter-spacing: -0.01em;
}

/* ── Pain Grid (2×2) ── */
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  transition: all 0.4s var(--ease);
}

.pain-card:hover {
  border-color: var(--border-h); transform: translateY(-2px);
}

.pain-card h4 {
  font-size: 17px; font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.03em; color: var(--white);
}

.pain-card p {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  letter-spacing: -0.02em;
}

/* ── Step List (numbered process) ── */
.step-list {
  max-width: 700px; margin: 48px auto 0;
}

.step-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.step-item:first-child { border-top: 1px solid var(--border); }

.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px; font-weight: 600; margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  letter-spacing: -0.02em;
}

/* ── Inline CTA Banner ── */
.inline-cta {
  position: relative; overflow: hidden;
  text-align: center; padding: 80px 32px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; margin-top: 80px;
}

.inline-cta h3 {
  font-size: 24px; font-weight: 600; margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.inline-cta p {
  font-size: 15px; color: var(--gray); margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* ── Comparison columns ── */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 48px;
}

.compare-col {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
}

.compare-col.compare-good { border-color: rgba(83, 211, 102, 0.25); }

.compare-col h4 {
  font-size: 15px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px;
}

.compare-col.compare-bad h4 { color: var(--gray-d); }
.compare-col.compare-good h4 { color: var(--green); }

.compare-col li {
  position: relative; padding-left: 20px; margin-bottom: 12px;
  font-size: 14px; color: var(--gray); line-height: 1.6;
  letter-spacing: -0.02em; list-style: none;
}

.compare-bad li::before {
  content: '✗'; position: absolute; left: 0; color: var(--gray-dd);
  font-size: 13px;
}

.compare-good li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green);
  font-size: 13px;
}

/* ── Thank-You Page ── */
.thankyou-section {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 32px;
}

.thankyou-inner { max-width: 560px; }

.thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 32px;
}

.thankyou-h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600; letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.thankyou-p {
  font-size: 16px; color: var(--gray); line-height: 1.7;
  margin-bottom: 40px; letter-spacing: -0.02em;
}

.thankyou-steps {
  text-align: left; margin-bottom: 40px;
}

.thankyou-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}

.thankyou-step:first-child { border-top: 1px solid var(--border); }

.thankyou-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}

.thankyou-step p {
  font-size: 15px; color: var(--gray); line-height: 1.6;
  letter-spacing: -0.02em;
}

.thankyou-home {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--green);
  transition: opacity 0.25s var(--ease);
}

.thankyou-home:hover { opacity: 0.8; }

/* ── Landing Page Responsive ── */
@media (max-width: 768px) {
  .lp-hero { height: 100vh; padding: 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .step-item { gap: 16px; }
  .inline-cta { padding: 60px 24px; }
}

/* ── SCROLL REVEAL ── */
.reveal-word {
  opacity: 0.15;
  transition: opacity 0.05s linear;
}

.reveal-word.glow {
  text-shadow: none;
  transition: opacity 0.05s linear;
}

.scroll-reveal-block {
  opacity: 0.15;
  transition: opacity 0.6s var(--ease);
}

.scroll-reveal-block.revealed {
  opacity: 1;
  text-shadow: none;
}

@media (max-width: 768px) {
  .reveal-word.glow {
    text-shadow: none;
  }
}

/* ── STAGGERED CARD ENTRANCE ── */
.stagger-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stagger-card.stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SMOOTH FAQ ACCORDION ── */
.faq-item p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding-bottom 0.4s var(--ease);
  padding-bottom: 0;
}
.faq-item[open] p {
  opacity: 1;
}


/* ── SCROLL STORYTELLING ── */

/* Hero parallax — fades and lifts on scroll */
.hero-parallax { will-change: transform, opacity; }

/* Section reveal — slides up from below */
.st-section {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.st-section.st-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-in from left */
.st-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.st-slide-left.st-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.st-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.st-slide-right.st-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-up reveal */
.st-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.st-scale.st-visible {
  opacity: 1;
  transform: scale(1);
}

/* Parallax depth elements */
.st-depth { will-change: transform; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-d));
  z-index: 200;
  transition: none;
  pointer-events: none;
}

/* Section divider glow pulse */
.st-divider-glow {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.st-divider-glow.st-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-word { opacity: 1 !important; text-shadow: none !important; }
  .scroll-reveal-block { opacity: 1 !important; }
  .stagger-card { opacity: 1 !important; transform: none !important; transition: none !important; }
  .st-section, .st-slide-left, .st-slide-right, .st-scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .scroll-progress { display: none; }
  .faq-item p { max-height: none !important; opacity: 1 !important; transition: none !important; }
}
