/* ═══════════════════════════════════════════
   DEMONSTRY — styles.css
   Paleta: Navy #0D1B2E | Teal #00C9C8 | Orange #F97316
   ═══════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --navy:        #0D1B2E;
  --navy-mid:    #112236;
  --navy-light:  #162D45;
  --teal:        #00C9C8;
  --teal-dim:    rgba(0,201,200,.12);
  --teal-glow:   rgba(0,201,200,.22);
  --orange:      #F97316;
  --orange-dim:  rgba(249,115,22,.12);
  --orange-glow: rgba(249,115,22,.35);
  --white:       #FFFFFF;
  --muted:       #7B90AA;
  --muted-light: #A8BDD1;
  --border:      rgba(255,255,255,.07);
  --border-teal: rgba(0,201,200,.3);

  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  40px;

  --ease: cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
/* hide injected Google Fonts span */
body > span[style] { display: none !important; visibility: hidden !important; position: absolute !important; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ─── UTILITIES ─── */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.section-wrap {
  padding: 6rem 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid var(--border-teal);
  border-radius: 999px;
  padding: .28rem .9rem .28rem .6rem;
}
.label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .35; }
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-title strong { color: var(--orange); font-weight: 800; }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.section-head.centered {
  align-items: center;
  text-align: center;
}
.section-head.centered .section-sub { margin-inline: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  transition: transform .25s var(--spring), box-shadow .25s var(--ease);
}
.btn svg { flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  font-size: 1rem;
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--orange) 0%, #E05F00 100%);
  color: var(--white);
  box-shadow: 0 6px 28px var(--orange-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--orange-glow); }

.btn-ghost {
  font-size: .92rem;
  padding: .85rem 1.6rem;
  background: transparent;
  color: var(--muted-light);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); transform: translateY(-2px); }

.btn-nav {
  font-size: .82rem;
  padding: .5rem 1.2rem;
  background: linear-gradient(135deg, var(--orange), #D95C00);
  color: var(--white);
  border-radius: var(--r-sm);
  box-shadow: 0 4px 18px var(--orange-glow);
  white-space: nowrap;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-glow); }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(13,27,46,.88);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  background: linear-gradient(130deg, #fff 30%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-tagline {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: .05rem;
}
.nav-right { display: flex; align-items: center; gap: .75rem; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}
/* Ambient glows */
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,200,.12) 0%, transparent 65%);
  top: -300px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 65%);
  bottom: -200px; left: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-badge { margin-bottom: 1.4rem; }
.hero-badge .badge-inner {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 999px;
  padding: .3rem 1rem .3rem .55rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 1.6rem;
}
.hero-h1 em { font-style: normal; color: var(--orange); }
.hero-h1 .teal { color: var(--teal); }
.hero-h1 .underline {
  position: relative;
  display: inline;
}
.hero-h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 460px;
}
.hero-desc strong { color: var(--teal); font-weight: 600; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.proof-avatars {
  display: flex;
}
.proof-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  margin-left: -8px;
}
.proof-avatars span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #00C9C8, #006B6B); }
.av2 { background: linear-gradient(135deg, #F97316, #7C3700); }
.av3 { background: linear-gradient(135deg, #3B82F6, #1E3A6E); }
.proof-text { font-size: .82rem; color: var(--muted); }
.proof-text strong { color: var(--white); }

/* Hero Right — mock platform card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-mockup {
  width: 100%;
  max-width: 440px;
  position: relative;
}
.mock-window {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px var(--border), inset 0 1px 0 rgba(255,255,255,.06);
}
.mock-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1.2rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: .4rem; }
.mock-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.d1 { background: #FF5F57; }
.d2 { background: #FEBC2E; }
.d3 { background: #28C840; }
.mock-title {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}
.mock-status {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  color: #28C840;
  font-weight: 600;
}
.mock-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28C840;
  animation: pulse 1.5s ease-in-out infinite;
}

.mock-body { padding: 1.4rem; }

.mock-task {
  background: rgba(0,201,200,.06);
  border: 1px solid rgba(0,201,200,.18);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.mock-task-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}
.mock-task-title {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.mock-task-desc { font-size: .75rem; color: var(--muted); line-height: 1.5; }

.mock-progress {
  margin-bottom: 1rem;
}
.mock-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: .4rem;
}
.mock-progress-header span:last-child { color: var(--teal); font-weight: 700; }
.mock-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), #00A0A0);
  animation: barGrow 2s ease forwards;
  width: 0;
}
@keyframes barGrow { to { width: 64%; } }

.mock-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .6rem;
}
.mock-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .65rem .6rem;
  text-align: center;
}
.mock-metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .2rem;
}
.mock-metric-val.orange { color: var(--orange); }
.mock-metric-val.green  { color: #28C840; }
.mock-metric-label { font-size: .62rem; color: var(--muted); }

/* AI Tutor bubble */
.ai-tutor-badge {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--navy-mid);
  border: 1px solid var(--border-teal);
  border-radius: var(--r-md);
  padding: .7rem .9rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  max-width: 200px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 0 1px var(--border);
  animation: floatUp 4s ease-in-out infinite;
  z-index: 5;
}
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.ai-tutor-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--teal), #006B6B);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.ai-tutor-text { font-size: .7rem; color: var(--muted-light); line-height: 1.45; }
.ai-tutor-text strong { color: var(--white); display: block; font-size: .74rem; margin-bottom: .1rem; }

.speed-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--orange) 0%, #C44A00 100%);
  border-radius: var(--r-md);
  padding: .6rem .85rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Outfit', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--orange-glow);
  animation: floatDown 4s ease-in-out infinite 1.5s;
  z-index: 5;
}
@keyframes floatDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
.speed-badge svg { opacity: .85; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-num .o { -webkit-text-fill-color: var(--orange); }
.stat-lbl {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .3rem;
  line-height: 1.4;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feat-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition: transform .3s var(--spring), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.feat-card.teal::before { background: radial-gradient(circle at 20% 20%, rgba(0,201,200,.1), transparent 60%); }
.feat-card.orange::before { background: radial-gradient(circle at 20% 20%, rgba(249,115,22,.1), transparent 60%); }
.feat-card.blue::before { background: radial-gradient(circle at 20% 20%, rgba(59,130,246,.1), transparent 60%); }
.feat-card.green::before { background: radial-gradient(circle at 20% 20%, rgba(34,197,94,.1), transparent 60%); }
.feat-card.purple::before { background: radial-gradient(circle at 20% 20%, rgba(168,85,247,.1), transparent 60%); }
.feat-card.pink::before { background: radial-gradient(circle at 20% 20%, rgba(236,72,153,.1), transparent 60%); }

.feat-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.14); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  position: relative; z-index: 1;
}
.ic-teal   { background: rgba(0,201,200,.14); }
.ic-orange { background: rgba(249,115,22,.14); }
.ic-blue   { background: rgba(59,130,246,.14); }
.ic-green  { background: rgba(34,197,94,.14); }
.ic-purple { background: rgba(168,85,247,.14); }
.ic-pink   { background: rgba(236,72,153,.14); }

.feat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .55rem;
  position: relative; z-index: 1;
}
.feat-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* Large feature span */
.feat-card.span2 {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.feat-card.span2 .feat-text { display: flex; flex-direction: column; }
.feat-card.span2 .feat-visual {
  background: rgba(0,201,200,.05);
  border: 1px solid rgba(0,201,200,.12);
  border-radius: var(--r-md);
  padding: 1rem;
}

/* ─── HOW IT WORKS ─── */
.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 24px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--teal-dim) 15%,
    var(--border-teal) 50%,
    var(--teal-dim) 85%,
    transparent 100%
  );
}
.step-item { text-align: center; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-teal);
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 2;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.step-item:hover .step-num {
  background: var(--teal-dim);
  box-shadow: 0 0 24px var(--teal-glow);
}
.step-emoji { font-size: 1.1rem; margin-bottom: .6rem; }
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.step-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ─── PROBLEM ─── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.problem-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  top: -100px; right: -60px;
  pointer-events: none;
}
.problem-card.p1::after { background: radial-gradient(circle, rgba(249,115,22,.14), transparent 70%); }
.problem-card.p2::after { background: radial-gradient(circle, rgba(0,201,200,.1), transparent 70%); }

.big-stat {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}
.big-stat span { color: var(--orange); }
.big-stat .t { color: var(--teal); }
.prob-text {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  position: relative; z-index: 1;
}
.prob-text strong { color: var(--white); }

/* ─── MVP SPOTLIGHT ─── */
.mvp-box {
  background: linear-gradient(135deg, rgba(0,201,200,.06), rgba(249,115,22,.04));
  border: 1px solid rgba(0,201,200,.2);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mvp-box::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,200,.09), transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.mvp-label { margin-bottom: 1rem; }
.mvp-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.mvp-h2 em { font-style: normal; color: var(--teal); }
.mvp-desc {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.mvp-desc strong { color: var(--white); }
.mvp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.chip {
  font-size: .76rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 999px;
  border: 1px solid;
}
.chip-teal   { color: var(--teal);   border-color: rgba(0,201,200,.3);   background: rgba(0,201,200,.07); }
.chip-orange { color: #FFAA60;       border-color: rgba(249,115,22,.3);   background: rgba(249,115,22,.07); }
.chip-blue   { color: #7CB9FF;       border-color: rgba(59,130,246,.3);   background: rgba(59,130,246,.07); }
.chip-green  { color: #4ADE80;       border-color: rgba(34,197,94,.3);    background: rgba(34,197,94,.07); }

.mvp-visual-side {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative; z-index: 1;
}
.mvp-scenario-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  transition: border-color .3s var(--ease);
}
.mvp-scenario-card:hover { border-color: rgba(0,201,200,.25); }
.mvs-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mvs-title {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.mvs-sub { font-size: .74rem; color: var(--muted); }
.mvs-badge {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.mvs-badge.soon { color: #FFAA60; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.2); }
.mvs-badge.mvp  { color: var(--teal); background: var(--teal-dim); border: 1px solid var(--border-teal); }

/* ─── LEAD FORM ─── */
.lead-outer {
  background: linear-gradient(180deg, transparent, rgba(0,201,200,.04) 50%, transparent);
  padding: 6rem 0;
}
.lead-box {
  max-width: 660px;
  margin-inline: auto;
  background: var(--navy-light);
  border: 1px solid rgba(0,201,200,.18);
  border-radius: var(--r-xl);
  padding: 3.2rem;
  position: relative;
  overflow: hidden;
}
.lead-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,200,.09), transparent 70%);
  top: -180px; right: -100px;
  pointer-events: none;
}
.lead-box::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.07), transparent 70%);
  bottom: -120px; left: -80px;
  pointer-events: none;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .03em;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: .78rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B90AA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group input::placeholder { color: rgba(123,144,170,.5); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(0,201,200,.5);
  background: rgba(0,201,200,.05);
  box-shadow: 0 0 0 3px rgba(0,201,200,.1);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: .95rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), #C44A00);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px var(--orange-glow);
  transition: transform .25s var(--spring), box-shadow .25s var(--ease);
  margin-top: .4rem;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--orange-glow); }

.form-note {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  position: relative; z-index: 1;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(34,197,94,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}
.form-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.form-success p { font-size: .92rem; color: var(--muted); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer-brand .nav-logo { margin-bottom: .1rem; }
.footer-contact {
  font-size: .8rem;
  color: var(--muted);
}
.footer-contact a {
  color: var(--teal);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--teal-light, #3DD9D9); }
.footer-copy {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.icon-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
  color: var(--muted);
}
.icon-btn:hover { background: var(--teal-dim); border-color: var(--border-teal); color: var(--teal); transform: translateY(-2px); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-card.span2 { grid-column: span 2; }
  .steps-track { grid-template-columns: repeat(3, 1fr); }
  .steps-track::before { display: none; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .mvp-box { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-card.span2 { grid-column: span 2; grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section-wrap { padding: 4rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.span2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .lead-box { padding: 2.2rem 1.5rem; }
  .mvp-box { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-copy { text-align: left; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
