/* ===========================================================
   EO Houston Momentum - styles
   EO navy base + Momentum purple gradient accent
   =========================================================== */

:root {
  --eo-navy:        #0A1F44;
  --eo-navy-deep:   #061533;
  --eo-navy-soft:   #122a55;
  --purple:         #6D45D0;
  --violet:         #9B6BFF;
  --cyan:           #21C7E6;
  --ink:            #16182a;
  --body:           #3a3f55;
  --muted:          #6b7290;
  --line:           #e6e8f0;
  --bg:             #ffffff;
  --bg-soft:        #f6f7fb;
  --grad:           linear-gradient(135deg, #6D45D0 0%, #9B6BFF 100%);
  --grad-cyan:      linear-gradient(135deg, #6D45D0 0%, #21C7E6 120%);
  --radius:         18px;
  --radius-sm:      12px;
  --shadow:         0 18px 50px -20px rgba(16, 22, 60, 0.35);
  --container:      1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-text strong {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

p { margin: 0 0 1.1rem; }

a { color: var(--purple); text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(109, 69, 208, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(109, 69, 208, 0.85); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.05rem; color: var(--eo-navy); letter-spacing: -0.01em; }
.brand-sub {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav { display: flex; gap: 1.25rem; margin-left: auto; }
.nav a {
  color: var(--eo-navy);
  font-weight: 500;
  font-size: 0.92rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.nav a:hover { opacity: 1; }
.nav .nav-ext { font-weight: 600; color: var(--purple); opacity: 1; }
.nav .nav-ext:hover { color: var(--violet); }
.header-login {
  color: var(--eo-navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-login:hover { color: var(--purple); }
.header-cta { padding: 0.6rem 1.25rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--eo-navy); border-radius: 2px; transition: 0.2s; }

.mobile-nav { display: none; flex-direction: column; gap: 0.4rem; padding: 1rem 24px 1.5rem; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-nav a { color: var(--eo-navy); font-weight: 600; padding: 0.6rem 0; }
.mobile-nav .btn { margin-top: 0.5rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, var(--eo-navy-soft) 0%, var(--eo-navy) 45%, var(--eo-navy-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero-glow {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(155, 107, 255, 0.5) 0%, rgba(109, 69, 208, 0.15) 40%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-mark {
  position: absolute;
  top: -10%;
  right: -7%;
  width: min(42vw, 480px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  filter: saturate(1.3);
}
.hero-inner { position: relative; max-width: 880px; z-index: 1; }
.eyebrow {
  text-transform: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.3rem;
  letter-spacing: 0.01em;
}
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
  margin-bottom: 2rem;
}
.hero-lead strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  background: linear-gradient(135deg, #fff 0%, var(--violet) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 38px; background: rgba(255, 255, 255, 0.18); }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.kicker {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.8rem;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink); }
.center-lede { max-width: 680px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 3rem; }
.section-head.center { display: flex; flex-direction: column; align-items: center; }

.outcomes { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; gap: 0.9rem; }
.outcomes li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1.05rem; color: var(--ink); }
.check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ===== Dark section ===== */
.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--eo-navy) 0%, var(--eo-navy-deep) 100%);
  color: rgba(255, 255, 255, 0.78);
}
.journey-mark {
  position: absolute;
  bottom: -16%;
  left: -8%;
  width: min(40vw, 440px);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  filter: saturate(1.3);
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lede { color: rgba(255, 255, 255, 0.78); }
.section-dark .kicker { color: var(--cyan); }

/* ===== 3 cards ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
}
.card-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--violet);
  margin-bottom: 0.6rem;
}
.card p { color: rgba(255, 255, 255, 0.72); font-size: 0.98rem; }
.card-deliverable {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem !important;
}
.card-deliverable strong { color: var(--cyan); }

/* ===== Split (who it's for) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.fit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.fit-list li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-image: var(--grad) 1;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.fit-list li {
  border-left: 4px solid var(--purple);
  border-image: none;
}

/* ===== Investment ===== */
.invest-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; }
.invest-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.invest-card--accent {
  background: var(--grad);
  border: 0;
}
.invest-card--accent h3, .invest-card--accent p { color: #fff; }
.price-list { list-style: none; padding: 0; margin: 0.5rem 0 1.2rem; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.price-list strong { font-family: 'Sora', sans-serif; font-size: 1.6rem; color: #fff; }
.price-note { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85) !important; margin: 0; }

/* ===== About / Team ===== */
.team-group-title {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.8rem 0 1.6rem;
}
.team-group-title:first-of-type { margin-top: 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.team-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
.team-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
}
.avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.1rem;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px -10px rgba(16, 22, 60, 0.35);
}
.avatar-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
}
.team-note {
  text-align: center;
  max-width: 620px;
  margin: 1.8rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.team-card h4 { font-family: 'Sora', sans-serif; font-size: 1.15rem; color: var(--ink); margin: 0 0 0.25rem; }
.team-role { color: var(--purple); font-weight: 600; font-size: 0.9rem; margin: 0 0 0.85rem; }
.team-bio { color: var(--body); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* ===== EO Network ===== */
.section-eo {
  position: relative;
  background: radial-gradient(120% 120% at 20% 0%, var(--eo-navy-soft) 0%, var(--eo-navy) 45%, var(--eo-navy-deep) 100%);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  text-align: center;
}
.eo-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(61, 70, 242, 0.4) 0%, rgba(255, 52, 110, 0.12) 45%, transparent 68%);
  pointer-events: none;
}
.eo-watermark {
  position: absolute;
  top: 50%;
  right: -7%;
  transform: translateY(-50%);
  width: min(46vw, 520px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  filter: saturate(1.4);
}
.eo-inner { position: relative; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.eo-mark-badge {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 8px 24px rgba(61, 70, 242, 0.45));
}
.section-eo h2 { color: #fff; }
.section-eo .kicker { color: var(--cyan); }
.section-eo .lede { color: rgba(255, 255, 255, 0.82); }
.eo-stats { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; justify-content: center; margin: 2.4rem 0 1.4rem; }
.eo-stats > div { display: flex; flex-direction: column; }
.eo-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  background: linear-gradient(135deg, #fff 0%, var(--violet) 135%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eo-stat-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.eo-tagline { font-family: 'Sora', sans-serif; font-style: italic; font-size: 1.2rem; color: #fff; margin: 0.5rem 0 2rem; }
.eo-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ===== Strategic Alliance Partners ===== */
.section-partners { background: #fff; border-top: 1px solid var(--line); }
.partner-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.partner-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.partner-grid img {
  display: block;
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
  box-shadow: 0 14px 30px -16px rgba(109, 69, 208, 0.5);
}

/* ===== Collaboration ===== */
.section-collab { background: var(--bg-soft); }
.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background: radial-gradient(120% 140% at 50% 0%, var(--purple) 0%, var(--eo-navy) 55%, var(--eo-navy-deep) 100%);
  color: #fff;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(155,107,255,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.cta-mark {
  position: absolute;
  top: -12%;
  right: -5%;
  width: min(34vw, 380px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  filter: saturate(1.3);
}
.cta-title { color: #fff; position: relative; }
.cta-sub { color: rgba(255, 255, 255, 0.82); font-size: 1.15rem; margin-bottom: 2rem; position: relative; }
.cta .btn { position: relative; }
.cta-tag {
  margin: 1.8rem 0 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--violet) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

/* ===== Footer ===== */
.site-footer { background: var(--eo-navy-deep); color: rgba(255, 255, 255, 0.6); padding: 3rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand { max-width: 420px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { margin-top: 0.8rem; font-size: 0.9rem; }
.footer-eo { display: inline-block; margin-top: 1.4rem; opacity: 0.92; transition: opacity 0.15s ease, transform 0.15s ease; }
.footer-eo:hover { opacity: 1; transform: translateY(-2px); }
.footer-eo img { display: block; height: 46px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: flex-start; }
.footer-nav a { color: rgba(255, 255, 255, 0.72); font-weight: 500; font-size: 0.95rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal { padding-top: 1.5rem; }
.footer-legal p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav, .header-login { display: none; }
  .header-inner { gap: 0.7rem; }
  .header-cta { display: inline-flex; margin-left: auto; padding: 0.5rem 1.05rem; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
  .cards-3, .invest-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .team-grid--3 { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 560px) {
  /* Tighten hero so the four stats sit higher (toward above-the-fold) */
  .hero { padding: 1.9rem 0 2.3rem; }
  .eyebrow { font-size: 0.78rem; margin-bottom: 0.8rem; }
  .hero h1 { font-size: 1.95rem; margin-bottom: 0.8rem; }
  .hero-lead { font-size: 1rem; margin-bottom: 1.2rem; }
  .hero-actions { flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
  .btn-lg { width: 100%; padding: 0.85rem 2rem; }

  .hero-stats { gap: 0.45rem; flex-wrap: nowrap; }
  .hero-stats > div { min-width: 0; flex: 1 1 0; align-items: center; text-align: center; }
  .stat-num { font-size: 0.95rem; white-space: nowrap; }
  .stat-label { font-size: 0.48rem; letter-spacing: 0.02em; white-space: nowrap; }
  .hero-stats > div.stat-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
