/* =====================================================
   NEXISPHOS · styles.css  ·  Premium dark UI
   Silicon Valley lab aesthetic — v2
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --bg:            #04080f;
  --surface:       #080e1c;
  --card:          rgba(255, 255, 255, 0.035);
  --card-border:   rgba(255, 255, 255, 0.09);
  --text:          #f1f5f9;
  --muted:         #64748b;
  --muted-lt:      #94a3b8;
  --student:       #06ffa5;
  --student-dim:   rgba(6, 255, 165, 0.12);
  --student-glow:  0 0 40px rgba(6, 255, 165, 0.28);
  --business:      #ff6b35;
  --business-dim:  rgba(255, 107, 53, 0.12);
  --business-glow: 0 0 40px rgba(255, 107, 53, 0.28);
  --accent:        #818cf8;
  --r:             18px;
  --r-sm:          12px;
  --r-pill:        999px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────── */
.container { width: min(1140px, calc(100% - 2.5rem)); margin-inline: auto; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(4, 8, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
}
.brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--student);
  box-shadow: 0 0 10px var(--student);
  flex-shrink: 0;
}
.desktop-nav {
  display: flex;
  gap: 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-lt);
}
.desktop-nav a { transition: color 0.2s; }
.desktop-nav a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  padding: 0.52rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-nav:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(4, 8, 15, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.mobile-nav.open { display: flex; }
.mob-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted-lt);
  display: block;
  padding: 0.45rem 0;
  transition: color 0.2s;
}
.mob-link:hover { color: #fff; }
.mob-cta { margin-top: 1.8rem; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--r-pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn-student {
  background: linear-gradient(135deg, #06ffa5 0%, #00d4e8 100%);
  color: #012820;
  box-shadow: 0 8px 30px rgba(6, 255, 165, 0.35);
}
.btn-student:hover { box-shadow: 0 14px 42px rgba(6, 255, 165, 0.5); }
.btn-business {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd166 100%);
  color: #2a0e00;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}
.btn-business:hover { box-shadow: 0 14px 42px rgba(255, 107, 53, 0.5); }
.btn-cta { padding: 0.95rem 2.2rem; font-size: 1rem; margin-top: 2.5rem; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 4.75rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.3;
}
.orb-teal {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #06ffa5, transparent 70%);
  top: -250px; left: -180px;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-violet {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: 60px; right: -120px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.orb-orange {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #ff6b35, transparent 70%);
  bottom: 80px; right: 180px;
  opacity: 0.2;
  animation: orbFloat 11s ease-in-out infinite 4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(35px, -25px) scale(1.04); }
  66%       { transform: translate(-22px, 32px) scale(0.97); }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* Hero layout */
.hero-layout {
  position: relative; z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 0 2.5rem;
}

/* Hero chip */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: var(--muted-lt);
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.chip-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--student);
  box-shadow: 0 0 8px var(--student);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--student); }
  50%       { opacity: 0.4; box-shadow: 0 0 3px var(--student); }
}

/* Hero headline */
h1 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.06;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
}
.hl { display: block; }
.hl-student {
  background: linear-gradient(120deg, #06ffa5, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hl-business {
  background: linear-gradient(120deg, #ff6b35, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hl-gap { height: 0.55em; display: block; }

.hero-sub {
  color: var(--muted-lt);
  font-size: 1.05rem;
  max-width: 52ch;
  line-height: 1.72;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.htag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted-lt);
}

/* Terminal + badges */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.terminal-card {
  background: #060d1b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  overflow: hidden;
  width: 100%;
  max-width: 490px;
  box-shadow:
    0 35px 90px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.8rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-red   { background: #ff5f57; }
.t-amber { background: #ffbd2e; }
.t-green { background: #28ca41; }
.t-label {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
.t-body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
  color: #7ee8a2;
  padding: 1.3rem 1.4rem;
  margin: 0;
  min-height: 230px;
  white-space: pre;
}

/* Floating badges */
.f-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(6, 14, 30, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  padding: 0.7rem 1.05rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
  pointer-events: none;
}
.f-badge strong { font-size: 0.9rem; font-weight: 700; color: #fff; }
.f-badge span { font-size: 0.72rem; color: var(--muted-lt); }
.badge-live {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--student);
  box-shadow: 0 0 8px var(--student);
  margin-right: 5px;
  vertical-align: middle;
}
.fb-a { top: -22px; right: -22px; animation: floatA 5s ease-in-out infinite; }
.fb-b { bottom: 25px; right: -26px; animation: floatB 6.5s ease-in-out infinite 1.2s; }
.fb-c {
  bottom: -20px; left: 26px;
  flex-direction: row;
  align-items: center;
  animation: floatA 4.8s ease-in-out infinite 2.5s;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(-2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(1.5deg); }
  50%       { transform: translateY(-16px) rotate(1.5deg); }
}

/* Stats bar */
.hero-stats-bar {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.018);
  padding: 2.2rem 0;
  margin-top: 2rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.4rem; }
.stat-numwrap {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-sfx { font-size: 1.3rem; color: var(--muted-lt); margin-left: 2px; }
.stat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

/* ── Marquee ─────────────────────────────────────────── */
.marquee-band {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  padding: 1.05rem 0;
}
.mq-track { overflow: hidden; }
.mq-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: mqScroll 30s linear infinite;
}
.mq-inner span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mq-inner .sep { color: rgba(255,255,255,0.13); padding: 0; }
@keyframes mqScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page sections ───────────────────────────────────── */
.page-section { padding: 6.5rem 0; }
.page-section--alt   { background: rgba(255,255,255,0.016); }
.page-section--proof { background: rgba(6, 255, 165, 0.015); }
.page-section--cta   { padding: 5rem 0; }

.sec-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}
.sec-head { max-width: 70ch; margin-bottom: 3.8rem; }
.sec-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}
.eyebrow-student {
  background: var(--student-dim);
  color: var(--student);
  border: 1px solid rgba(6, 255, 165, 0.22);
}
.eyebrow-business {
  background: var(--business-dim);
  color: var(--business);
  border: 1px solid rgba(255, 107, 53, 0.22);
}
.sec-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.sec-desc { color: var(--muted-lt); font-size: 1.02rem; max-width: 62ch; }

/* Gradient headings */
.grad-student {
  background: linear-gradient(120deg, #06ffa5, #38bdf8 58%, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-business {
  background: linear-gradient(120deg, #ff6b35, #ffd166 60%, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Cards ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 4.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 4.5rem;
}
.g-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.g-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r) var(--r) 0 0;
}
.g-card--student::before  { background: linear-gradient(90deg, #06ffa5, #38bdf8); }
.g-card--business::before { background: linear-gradient(90deg, #ff6b35, #ffd166); }
.g-card--student:hover {
  transform: translateY(-7px);
  box-shadow: var(--student-glow);
  border-color: rgba(6, 255, 165, 0.3);
}
.g-card--business:hover {
  transform: translateY(-7px);
  box-shadow: var(--business-glow);
  border-color: rgba(255, 107, 53, 0.3);
}
.g-card--glow {
  background: linear-gradient(148deg, rgba(6, 255, 165, 0.06), rgba(56, 189, 248, 0.03));
}
.g-card--highlight {
  background: linear-gradient(148deg, rgba(255, 107, 53, 0.08), rgba(255, 209, 102, 0.04));
}
.free-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  background: linear-gradient(135deg, #ff6b35, #ffd166);
  color: #2a0e00;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  border-radius: var(--r-pill);
  padding: 0.22rem 0.6rem;
}
.g-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.icon-student {
  background: var(--student-dim);
  color: var(--student);
  border: 1px solid rgba(6, 255, 165, 0.22);
}
.icon-business {
  background: var(--business-dim);
  color: var(--business);
  border: 1px solid rgba(255, 107, 53, 0.22);
}
.g-card h3  { font-size: 1.06rem; margin-bottom: 0.6rem; color: #fff; }
.g-card p   { color: var(--muted-lt); font-size: 0.9rem; line-height: 1.6; }

.card-list {
  list-style: none;
  padding: 0;
  color: var(--muted-lt);
  font-size: 0.88rem;
}
.card-list li {
  padding: 0.32rem 0 0.32rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--student);
  font-size: 0.75rem;
}
.card-pill {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 0.25rem 0.7rem;
}
.card-pill--student {
  background: var(--student-dim);
  color: var(--student);
}

/* ── Timeline ─────────────────────────────────────────── */
.timeline-wrap { max-width: 780px; }
.tl-heading { font-size: 1.35rem; margin-bottom: 2rem; color: #fff; }
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.tl-item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  position: relative;
}
.tl-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.tl-num--student {
  background: var(--student-dim);
  color: var(--student);
  border: 2px solid rgba(6, 255, 165, 0.4);
}
.tl-num--business {
  background: var(--business-dim);
  color: var(--business);
  border: 2px solid rgba(255, 107, 53, 0.4);
}
.tl-body { padding: 0.65rem 0; }
.tl-body strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 0.3rem; }
.tl-body p { color: var(--muted-lt); font-size: 0.9rem; }
.tl-body a { color: var(--student); }
.tl-body a:hover { text-decoration: underline; }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2.1rem 1.9rem 1.7rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.38);
}
.testi-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(6, 255, 165, 0.25);
  position: absolute;
  top: 0.8rem; left: 1.5rem;
  pointer-events: none;
}
.testi-card p {
  color: var(--muted-lt);
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
  padding-top: 1.3rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.avatar-student  { background: linear-gradient(135deg, #06ffa5, #38bdf8); color: #012820; }
.avatar-business { background: linear-gradient(135deg, #ff6b35, #ffd166); color: #2a0e00; }
.testi-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testi-author span   { font-size: 0.78rem; color: var(--muted); }

/* ── CTA card ─────────────────────────────────────────── */
.cta-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 4.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
}
.cta-orb-1 { width: 380px; height: 380px; background: #06ffa5; top: -160px; left: -120px; }
.cta-orb-2 { width: 320px; height: 320px; background: #ff6b35; bottom: -130px; right: -90px; }
.cta-over {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
  position: relative;
}
.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub {
  color: var(--muted-lt);
  max-width: 52ch;
  margin: 0 auto 2.2rem;
  font-size: 1rem;
  position: relative;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  position: relative;
}
.cta-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
}
.cta-contact-row a { color: var(--muted-lt); transition: color 0.2s; }
.cta-contact-row a:hover { color: #fff; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(3, 6, 12, 0.85);
  padding: 4.5rem 0 0;
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand-col .brand { margin-bottom: 0.8rem; }
.footer-brand-col p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 36ch;
  line-height: 1.65;
  margin-top: 0.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-lt);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 0.65rem; }
.footer-col a { color: var(--muted-lt); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.contact-list li { color: var(--muted); font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.3rem 0;
}
.footer-bottom span { font-size: 0.82rem; color: var(--muted); }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .hero-layout { grid-template-columns: 1fr; padding: 2.6rem 0 1.8rem; gap: 1.8rem; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .cta-card { padding: 3rem 2rem; }
  .timeline::before { left: 20px; }
  .tl-num { width: 40px; height: 40px; font-size: 0.72rem; }
  .tl-item { gap: 1rem; }
}

@media (max-width: 640px) {
  .container { width: min(1140px, calc(100% - 1.5rem)); }
  .cards-grid, .services-grid, .testimonials { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-chip { margin-bottom: 1rem; }
  h1 { font-size: clamp(1.95rem, 10vw, 2.5rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.4rem; }
  .hero-btns { flex-direction: column; gap: 0.65rem; margin-bottom: 1.3rem; }
  .btn { justify-content: center; width: 100%; }
  .hero-tags { gap: 0.38rem; }
  .htag { font-size: 0.7rem; padding: 0.24rem 0.58rem; }
  .hero-stats-bar { margin-top: 1rem; padding: 1.5rem 0; }
  .stats-row { grid-template-columns: 1fr; gap: 0.7rem; }
  .stat-item { padding: 0.25rem; }
  .stat-numwrap { font-size: 2.05rem; }
  .stat-sfx { font-size: 1.02rem; }
  .sec-head { margin-bottom: 2.4rem; }
  .sec-head h2 { font-size: clamp(1.55rem, 8vw, 2.05rem); }
  .sec-desc { font-size: 0.93rem; }
  .g-card { padding: 1.25rem; }
  .g-card h3 { font-size: 1rem; }
  .g-card p, .card-list { font-size: 0.84rem; }
  .tl-heading { font-size: 1.15rem; margin-bottom: 1.2rem; }
  .tl-item { padding: 0.85rem 0; }
  .tl-body p { font-size: 0.84rem; }
  .testi-card { padding: 1.6rem 1.2rem 1.3rem; }
  .testi-quote { font-size: 3.3rem; left: 1rem; }
  .testi-card p { font-size: 0.85rem; }
  .cta-card { padding: 2rem 1.1rem; border-radius: 20px; }
  .cta-card h2 { font-size: clamp(1.65rem, 9vw, 2.15rem); }
  .cta-sub { font-size: 0.92rem; margin-bottom: 1.4rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-contact-row { font-size: 0.78rem; gap: 0.35rem; }
  .cta-contact-row span[aria-hidden="true"] { display: none; }
  .site-footer { padding-top: 3rem; }
  .footer-layout { gap: 1.5rem; padding-bottom: 2rem; }
  .footer-brand-col p { max-width: none; }
  .mob-link { font-size: 1.55rem; }
  .page-section { padding: 4.5rem 0; }
}

@media (max-width: 420px) {
  .nav-inner { height: 4.25rem; }
  .brand { font-size: 1.08rem; }
  .btn-nav { padding: 0.45rem 0.8rem; font-size: 0.75rem; }
  .hero-layout { padding-top: 2.15rem; }
  .hero-chip { font-size: 0.69rem; padding: 0.34rem 0.72rem; }
  h1 { font-size: clamp(1.75rem, 11vw, 2.1rem); }
  .hero-sub { font-size: 0.9rem; }
  .section-label { letter-spacing: 0.14em; }
  .sec-label { font-size: 0.62rem; letter-spacing: 0.14em; margin-bottom: 1.4rem; }
  .page-section { padding: 3.7rem 0; }
  .tl-num { width: 34px; height: 34px; font-size: 0.65rem; }
  .timeline::before { left: 16px; }
  .testi-author { gap: 0.55rem; }
  .testi-avatar { width: 36px; height: 36px; font-size: 0.68rem; }
  .cta-contact-row { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════════
   v2 ADDITIONS — Founding cohort, qualification gate, pricing,
   FAQ, application form CTAs
   ═══════════════════════════════════════════════════════════════ */

/* Founding badge — replaces fake testimonials */
.founding-banner {
  position: relative;
  margin-top: 2.5rem;
  padding: 2.25rem 1.75rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.25);
  text-align: center;
  overflow: hidden;
}
.founding-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(20, 184, 166, 0.18), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.16), transparent 50%);
  pointer-events: none;
}
.founding-banner > * { position: relative; z-index: 1; }
.founding-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: #5eead4;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
}
.founding-pill .pulse-dot {
  width: 7px; height: 7px;
  background: #14b8a6;
  border-radius: 50%;
  animation: pulseDotF 1.6s infinite;
}
@keyframes pulseDotF {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0); }
}
.founding-banner h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #f8fafc;
}
.founding-banner p {
  color: #cbd5e1;
  max-width: 580px;
  margin: 0 auto 1.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
}
.founding-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fs-item { text-align: center; }
.fs-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #14b8a6;
  display: block;
}
.fs-lbl {
  font-size: 0.72rem;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Qualification gate banner (for Free MVP) */
.qual-gate {
  margin-top: 1.5rem;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  background: rgba(251, 146, 60, 0.06);
  border: 1px solid rgba(251, 146, 60, 0.25);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.qual-gate-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(251, 146, 60, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fb923c;
}
.qual-gate-text {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.55;
}
.qual-gate-text strong { color: #fb923c; }

/* Pricing tiles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.price-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.35);
}
.price-card--featured {
  border-color: rgba(20, 184, 166, 0.4);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08), rgba(15, 23, 42, 0.6));
}
.price-card--business { border-color: rgba(251, 146, 60, 0.3); }
.price-card--business:hover { border-color: rgba(251, 146, 60, 0.5); }
.price-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
}
.price-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #f1f5f9;
}
.price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0.4rem 0 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}
.price-amount .price-sfx {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 0.25rem;
}
.price-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
}
.price-list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  color: #cbd5e1;
  line-height: 1.5;
}
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: 700;
}
.price-card--business .price-list li::before { color: #fb923c; }

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: #f1f5f9;
  padding: 0.25rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #14b8a6;
  margin-left: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 0.85rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Trust signal strip (replaces testimonial section) */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.trust-card {
  padding: 1.4rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
}
.trust-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #f1f5f9;
}
.trust-card p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* CTA tweaks */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.cta-secondary:hover { color: #14b8a6; }

/* Form-link buttons (Tally / Cal.com) */
.btn-form {
  background: rgba(255, 255, 255, 0.06);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-form:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
}

/* Mobile responsiveness for new components */
@media (max-width: 720px) {
  .founding-banner { padding: 1.75rem 1.25rem; }
  .founding-stats { gap: 1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 1.4rem 1.2rem; }
  .qual-gate { flex-direction: column; gap: 0.6rem; }
  .qual-gate-icon { width: 28px; height: 28px; }
}
