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

:root {
  --bg:          #0B0F1A;
  --bg2:         #0D1220;
  --bg3:         #111827;
  --blue:        #2563EB;
  --blue-mid:    #1D4ED8;
  --blue-light:  #3B82F6;
  --blue-dim:    rgba(37,99,235,0.12);
  --orange:      #F97316;
  --orange-lt:   #FB923C;
  --orange-dim:  rgba(249,115,22,0.12);
  --white:       #FFFFFF;
  --off-white:   #F0F4FF;
  --gray:        #9CA3AF;
  --gray-dim:    #4B5563;
  --card:        rgba(255,255,255,0.035);
  --border:      rgba(255,255,255,0.07);
  --border-blue: rgba(37,99,235,0.28);
  --border-org:  rgba(249,115,22,0.25);
  --glow-blue:   rgba(37,99,235,0.22);
  --glow-org:    rgba(249,115,22,0.18);
  --bebas:       'Bebas Neue', sans-serif;
  --serif:       'Instrument Serif', Georgia, serif;
  --sans:        'Geist', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; }

body {
  background: #080C14;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Persistent full-page glows */
.bg-glow-teal {
  position: fixed; top: -10%; left: -15%;
  width: 55vw; height: 80vh;
  background: radial-gradient(ellipse at 30% 40%, rgba(0,180,180,0.13) 0%, rgba(0,100,180,0.08) 35%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.bg-glow-orange {
  position: fixed; bottom: -10%; right: -10%;
  width: 55vw; height: 70vh;
  background: radial-gradient(ellipse at 70% 70%, rgba(249,115,22,0.16) 0%, rgba(180,60,0,0.07) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}

::selection { background: rgba(37,99,235,0.35); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 2px; }

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.5;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: rgba(11,15,26,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled { background: rgba(11,15,26,0.96); border-color: rgba(255,255,255,0.09); }

.logo {
  font-family: var(--bebas);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}
.logo .v { color: var(--orange); }

.nav-center { display: flex; gap: 2.5rem; list-style: none; }
.nav-center a {
  color: var(--gray); text-decoration: none;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--white); }

.nav-right { display: flex; gap: 0.75rem; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.25rem; border-radius: 7px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  text-decoration: none; white-space: nowrap; transition: all 0.22s;
}
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--gray); }
.btn-outline:hover { border-color: rgba(255,255,255,0.18); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 0 18px var(--glow-blue); }
.btn-blue:hover { background: var(--blue-light); box-shadow: 0 0 28px rgba(37,99,235,0.38); transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--white); font-weight: 600; box-shadow: 0 0 20px var(--glow-org); }
.btn-orange:hover { background: var(--orange-lt); box-shadow: 0 0 32px rgba(249,115,22,0.38); transform: translateY(-2px); }
.btn-xl { padding: 0.85rem 2.2rem; font-size: 0.875rem; border-radius: 9px; letter-spacing: 0.05em; }

.mob-toggle {
  display: none; background: none;
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--white); padding: 0.4rem 0.6rem;
  cursor: pointer; font-size: 0.95rem;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
}
.hero-glow-l {
  position: absolute; top: -20%; left: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse, rgba(37,99,235,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow-r {
  position: absolute; bottom: -15%; right: -8%;
  width: 55vw; height: 55vw;
  background: radial-gradient(ellipse, rgba(249,115,22,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.048) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 28px;
  animation: fadeUp 0.7s 0.05s ease both;
}
.hero-eyebrow::before { content: '●'; font-size: 0.45rem; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-h1 {
  font-family: var(--bebas);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.0; letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-h1 .orange { color: var(--orange); }
.hero-h1 .blue-lt { color: var(--blue-light); }

.hero-tagline {
  font-size: 0.88rem; font-weight: 500; color: var(--blue-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-sub {
  font-size: 0.975rem; font-weight: 300; color: var(--gray);
  max-width: 450px; line-height: 1.8; margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; animation: fadeUp 0.7s 0.28s ease both; }

.hero-trust {
  display: flex; align-items: center; gap: 1.75rem;
  animation: fadeUp 0.7s 0.36s ease both;
}
.trust-div { width: 1px; height: 28px; background: var(--border); }
.trust-val { font-family: var(--bebas); font-size: 1.8rem; font-weight: 400; color: var(--white); line-height: 1; letter-spacing: 0.05em; }
.trust-label { font-size: 0.68rem; color: var(--gray-dim); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 3px; }

/* ─── HERO PHONE (floating, auto-scrolling) ─── */
.hero-phone-col {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  animation: fadeUp 0.8s 0.18s ease both;
}
.hero-phone-glow {
  position: absolute;
  width: 360px; height: 640px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.22) 0%, transparent 65%);
  filter: blur(50px); pointer-events: none;
}

/* Float cards */
.float-card {
  position: absolute; background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 9px;
  padding: 8px 13px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45); white-space: nowrap; z-index: 10;
}
.fc1 { top: 20px; right: -30px; border-color: var(--border-blue); animation: floatY 4s ease-in-out infinite; }
.fc2 { bottom: 30px; left: -30px; border-color: var(--border-org); animation: floatY 4s 2s ease-in-out infinite; }
.fc-pip { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pip-b { background: var(--blue); box-shadow: 0 0 5px var(--blue); }
.pip-o { background: var(--orange); box-shadow: 0 0 5px var(--orange); }
.fc-text { font-size: 0.68rem; color: var(--off-white); font-weight: 500; }

.phone-frame {
  width: 290px; height: 600px;
  background: #06090F;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden; position: relative;
  box-shadow: 0 50px 120px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.06),
              0 0 0 1px rgba(37,99,235,0.15);
  animation: float-phone 6s ease-in-out infinite;
}
@keyframes float-phone {
  0%,100%{transform:translateY(0) rotate(0.8deg)}
  50%{transform:translateY(-14px) rotate(-0.5deg)}
}

.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; background: #050810;
  border-radius: 20px; z-index: 5;
}

.phone-screen {
  width: 100%; height: 100%; overflow: hidden; position: relative;
  background: linear-gradient(160deg, #080D18 0%, #0C1A2E 100%);
}

.phone-scroll-content {
  position: absolute; top: 0; left: 0; right: 0;
  animation: auto-scroll 14s ease-in-out infinite;
  padding-top: 56px;
}
@keyframes auto-scroll {
  0%    { transform: translateY(0); }
  14%   { transform: translateY(0); }
  30%   { transform: translateY(-200px); }
  44%   { transform: translateY(-200px); }
  60%   { transform: translateY(-430px); }
  74%   { transform: translateY(-430px); }
  90%   { transform: translateY(-640px); }
  100%  { transform: translateY(0); }
}

/* Phone UI */
.psc-section { padding: 14px 16px; }
.psc-label { font-size: 8px; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); font-weight: 700; margin-bottom: 6px; }
.psc-label.blue { color: var(--blue-light); }
.psc-title { font-family: var(--bebas); font-size: 15px; letter-spacing: 0.05em; margin-bottom: 10px; line-height: 1.2; }

.p-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px; margin-bottom: 7px;
}
.p-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.p-pill {
  font-size: 6.5px; text-transform: uppercase; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 3px; font-weight: 700;
}
.pp-b { background: var(--blue-dim); color: var(--blue-light); border: 1px solid var(--border-blue); }
.pp-o { background: var(--orange-dim); color: var(--orange-lt); border: 1px solid var(--border-org); }
.pp-g { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.p-card-time { font-size: 7px; color: var(--gray-dim); }
.p-card-title { font-size: 10px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.p-card-sub { font-size: 8px; color: var(--gray); line-height: 1.4; }
.p-card-footer { display: flex; gap: 10px; margin-top: 6px; }
.p-cf { font-size: 7px; color: rgba(255,255,255,0.4); }
.p-cf b { color: var(--white); }

.p-av-row { display: flex; margin-top: 7px; }
.p-av {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #06090F; margin-left: -4px;
  font-size: 5px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.p-av:first-child { margin-left: 0; }
.pav-a { background: linear-gradient(135deg,#2563EB,#60a5fa); }
.pav-b { background: linear-gradient(135deg,#F97316,#fbbf24); }
.pav-c { background: linear-gradient(135deg,#8b5cf6,#a78bfa); }
.pav-d { background: linear-gradient(135deg,#10b981,#34d399); }

.p-stats-row { display: flex; gap: 6px; margin-bottom: 10px; }
.p-stat {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 7px; text-align: center;
}
.p-stat-n { font-family: var(--bebas); font-size: 14px; color: var(--orange); line-height: 1; }
.p-stat-n.blue { color: var(--blue-light); }
.p-stat-l { font-size: 6px; color: var(--gray-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.p-rep-bar { background: rgba(255,255,255,0.06); border-radius: 20px; height: 3.5px; margin: 3px 0; overflow: hidden; }
.p-rep-fill { height: 100%; border-radius: 20px; }
.prf-b { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.prf-o { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }
.prf-g { background: linear-gradient(90deg, #10b981, #34d399); }

.p-rep-row { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.p-rep-lbl { font-size: 7.5px; color: var(--gray); width: 85px; }
.p-rep-bar-wrap { flex: 1; background: rgba(255,255,255,0.06); border-radius: 10px; height: 3.5px; }
.p-rep-bar-fill { height: 100%; border-radius: 10px; }
.p-rep-val { font-size: 7.5px; font-weight: 700; width: 20px; text-align: right; }

.p-chat-bubble {
  max-width: 78%; padding: 7px 10px; border-radius: 10px;
  font-size: 8px; line-height: 1.4; margin-bottom: 6px;
}
.pcb-them { background: rgba(255,255,255,0.06); border-radius: 10px 10px 10px 2px; color: var(--white); align-self: flex-start; }
.pcb-me { background: var(--blue); border-radius: 10px 10px 2px 10px; color: #fff; align-self: flex-end; }
.p-chat-name { font-size: 6.5px; color: var(--gray-dim); margin-bottom: 3px; }
.p-chat-wrap { display: flex; flex-direction: column; }
.p-chat-me { display: flex; justify-content: flex-end; }

.p-divider {
  width: 100%; height: 1px; margin: 4px 0 12px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.35), transparent);
}


/* ─── SHARED ─── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
section { position: relative; z-index: 1; }
footer { position: relative; z-index: 1; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; display: block; width: 14px; height: 1.5px; background: var(--orange); border-radius: 1px; }
.eyebrow.blue { color: var(--blue-light); }
.eyebrow.blue::before { background: var(--blue-light); }

.h2 {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.05; letter-spacing: 0.04em; margin-bottom: 0.8rem;
}
.h2 em { font-style: normal; color: var(--blue-light); }
.h2 .orange { color: var(--orange); }
.lead { font-size: 0.93rem; font-weight: 300; color: var(--gray); line-height: 1.78; max-width: 500px; }

/* ─── PROBLEM ─── */
#problem { padding: 120px 0; }
.problem-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.problem-left .lead { max-width: 300px; }
.problem-grid { display: flex; flex-direction: column; gap: 1px; }
.prob-row {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 2rem; border: 1px solid var(--border); border-bottom: none;
  background: var(--card); transition: background 0.22s, border-color 0.22s;
  position: relative; overflow: hidden;
}
.prob-row:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.prob-row:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); }
.prob-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--orange); opacity: 0; transition: opacity 0.3s;
}
.prob-row:hover { background: rgba(249,115,22,0.035); border-color: rgba(249,115,22,0.18); }
.prob-row:hover::before { opacity: 1; }
.prob-num {
  font-family: var(--bebas); font-size: 2.8rem; font-weight: 400;
  color: rgba(255,255,255,0.06); line-height: 1; flex-shrink: 0; width: 44px;
  letter-spacing: 0.05em; transition: color 0.3s;
}
.prob-row:hover .prob-num { color: rgba(249,115,22,0.22); }
.prob-title { font-size: 0.975rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.prob-desc { font-size: 0.83rem; color: var(--gray); font-weight: 300; line-height: 1.65; }

/* ─── SOLUTION ─── */
#solution { padding: 120px 0; }
.solution-head { text-align: center; margin-bottom: 4rem; }
.solution-head .lead { margin: 0 auto; text-align: center; }
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.sol-card {
  padding: 2.25rem 2rem; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--border);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.sol-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.sol-card:hover { border-color: var(--border-blue); background: rgba(37,99,235,0.05); transform: translateY(-4px); }
.sol-card:hover::after { opacity: 1; }
.sol-num { font-family: var(--bebas); font-size: 3.5rem; font-weight: 400; color: rgba(37,99,235,0.18); line-height: 1; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.sol-title { font-size: 0.975rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.sol-desc { font-size: 0.83rem; color: var(--gray); font-weight: 300; line-height: 1.65; }

/* ─── SCROLL-PHONE FEATURES ─── */
#features { padding: 0; }
.scroll-features-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}

/* Sticky phone left */
.sticky-phone-col {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sp-phone-wrap { position: relative; }
.sp-phone-glow {
  position: absolute;
  width: 420px; height: 700px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.sp-phone {
  width: 300px; height: 630px;
  background: #06090F;
  border-radius: 46px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden; position: relative;
  box-shadow: 0 50px 120px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05),
              0 0 0 1px rgba(37,99,235,0.12);
}
.sp-phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 25px; background: #050810;
  border-radius: 20px; z-index: 5;
}

/* Panels */
.sp-panels { position: absolute; inset: 0; }
.sp-panel {
  position: absolute; inset: 0;
  padding: 68px 20px 24px;
  opacity: 0; transition: opacity 0.55s ease, transform 0.55s ease;
  transform: translateY(8px);
  overflow: hidden;
}
.sp-panel.active { opacity: 1; transform: translateY(0); }

.sp-panel-1 { background: linear-gradient(160deg, #080D18 0%, #0C1A2E 100%); }
.sp-panel-2 { background: linear-gradient(160deg, #0A0D18 0%, #0D0C1F 100%); }
.sp-panel-3 { background: linear-gradient(160deg, #100A08 0%, #1A0C08 100%); }
.sp-panel-4 { background: linear-gradient(160deg, #080E0A 0%, #0B1810 100%); }

.sp-lbl { font-size: 7.5px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 7px; }
.sp-h { font-family: var(--bebas); font-size: 16px; letter-spacing: 0.05em; line-height: 1.2; margin-bottom: 12px; }

/* Panel content */
.sp-mock-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px; margin-bottom: 7px;
}
.sp-mc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; }
.sp-mc-title { font-size: 10px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.sp-mc-sub { font-size: 8px; color: var(--gray); }
.sp-mc-footer { display: flex; gap: 10px; margin-top: 6px; }
.sp-mc-stat { font-size: 7px; color: rgba(255,255,255,0.4); }
.sp-mc-stat b { color: var(--white); }

/* Features text column */
.features-text-col {
  padding: 120px 80px 120px 60px;
  display: flex; flex-direction: column;
}
.feature-block {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 0;
}
.feat-num-bg {
  font-family: var(--bebas); font-size: 5rem; font-weight: 400;
  color: rgba(255,255,255,0.03); line-height: 1; margin-bottom: -22px;
  letter-spacing: 0.05em;
}
.feat-tag-inline {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 18px;
}
.ft-blue { background: var(--blue-dim); color: var(--blue-light); border: 1px solid var(--border-blue); }
.ft-orange { background: var(--orange-dim); color: var(--orange-lt); border: 1px solid var(--border-org); }
.ft-green { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.ft-purple { background: rgba(139,92,246,0.1); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }

.feat-h {
  font-family: var(--bebas);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.05; letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.feat-h .orange { color: var(--orange); }
.feat-h .blue-lt { color: var(--blue-light); }
.feat-p { font-size: 0.93rem; font-weight: 300; color: var(--gray); line-height: 1.78; max-width: 450px; margin-bottom: 24px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.87rem; font-weight: 300; color: rgba(255,255,255,0.7);
}
.feat-list li::before {
  content: '→'; color: var(--orange); font-weight: 700;
  font-size: 0.85rem; flex-shrink: 0; margin-top: 1px;
}

/* ─── HOW IT WORKS ─── */
#how { padding: 120px 0; }
.how-head { margin-bottom: 5rem; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how-step { padding: 0 2.5rem; border-right: 1px solid var(--border); }
.how-step:first-child { padding-left: 0; }
.how-step:last-child { border-right: none; padding-right: 0; }
.step-index {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bebas); font-size: 1.8rem; font-weight: 400; margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.si-1 { background: rgba(37,99,235,0.1); border: 2px solid rgba(37,99,235,0.32); color: var(--blue-light); }
.si-2 { background: rgba(249,115,22,0.1); border: 2px solid rgba(249,115,22,0.28); color: var(--orange-lt); }
.si-3 { background: linear-gradient(135deg,rgba(37,99,235,0.1),rgba(249,115,22,0.07)); border: 2px solid rgba(99,179,237,0.28); color: var(--white); }
.step-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.step-desc { font-size: 0.83rem; color: var(--gray); font-weight: 300; line-height: 1.65; }

/* ─── PROOF BANNER ─── */
#proof { padding: 110px 0; }
.proof-banner {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--card); position: relative; overflow: hidden;
}
.proof-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.07), transparent 50%, rgba(249,115,22,0.04));
  pointer-events: none;
}
.banner-slogan {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1; letter-spacing: 0.06em;
  text-align: center; position: relative;
}
.banner-slogan .orange { color: var(--orange); }

/* ─── AUDIENCE ─── */
#audience { padding: 120px 0; }
.aud-head { text-align: center; margin-bottom: 4rem; }
.aud-head .lead { margin: 0 auto; text-align: center; }
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.aud-panel {
  padding: 3rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.aud-panel-student { background: linear-gradient(135deg,rgba(37,99,235,0.08),rgba(37,99,235,0.02)); }
.aud-panel-student:hover { border-color: var(--border-blue); }
.aud-panel-uni { background: linear-gradient(135deg,rgba(249,115,22,0.08),rgba(249,115,22,0.02)); }
.aud-panel-uni:hover { border-color: var(--border-org); }
.aud-kicker { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
.aud-kicker.blue { color: var(--blue-light); }
.aud-kicker.org { color: var(--orange-lt); }
.aud-title { font-family: var(--bebas); font-size: 2.2rem; font-weight: 400; line-height: 1.05; margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.aud-sub { font-size: 0.83rem; color: var(--gray); font-weight: 300; margin-bottom: 2rem; }
.aud-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.aud-item { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.85rem; color: var(--gray); font-weight: 300; line-height: 1.5; }
.aud-check {
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 2px; font-weight: 700; color: var(--white);
}
.ac-b { background: var(--blue); }
.ac-o { background: var(--orange); }

/* ─── CTA ─── */
#cta { padding: 60px 0; position: relative; overflow: hidden; }
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(37,99,235,0.08), transparent 70%);
  pointer-events: none;
}
.cta-card { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 2; }
.cta-card-inner {
  background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(13,18,32,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 3.5rem;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(249,115,22,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.cta-card-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(249,115,22,0.10) 0%, transparent 55%),
              radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.cta-card-inner::after {
  content: ''; position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.4), rgba(37,99,235,0.3), transparent);
}
.cta-h2 {
  font-family: var(--bebas);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.0; letter-spacing: 0.03em;
  margin-bottom: 1rem; position: relative;
}
.cta-h2 .orange { color: var(--orange); }
.cta-sub {
  font-family: var(--sans);
  font-size: 0.875rem; color: var(--gray); font-weight: 300;
  margin-bottom: 2rem; line-height: 1.75;
  max-width: 420px; margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 32px 0 20px; background: rgba(8,12,20,0.7); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.f-logo { font-family: var(--bebas); font-size: 1.3rem; letter-spacing: 0.1em; }
.f-logo .v { color: var(--orange); }
.f-desc { font-size: 0.8.rem; color: var(--gray); line-height: 1.72; max-width: 240px; margin-top: 8px; }
.f-social { display: flex; gap: 0.6rem; margin-top: 12px; }
.f-soc {
  width: 30px; height: 30px; border-radius: 6px; background: var(--card);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--gray); text-decoration: none;
  font-size: 0.68rem; font-weight: 700; transition: all 0.2s;
}
.f-soc:hover { border-color: var(--border-blue); color: var(--blue-light); }
.f-col-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.f-links a { color: var(--gray); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.f-links a:hover { color: var(--white); }
.f-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.f-copy { font-size: 0.72rem; color: var(--gray-dim); }
.f-legal { display: flex; gap: 1.5rem; }
.f-legal a { font-size: 0.72rem; color: var(--gray-dim); text-decoration: none; }
.f-legal a:hover { color: var(--gray); }
.f-emails { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.f-email-link { color: var(--gray); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.f-email-link:hover { color: var(--white); }
.f-brand { display: flex; flex-direction: column; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-center { display: none; }
  .mob-toggle { display: flex; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-phone-col { display: none; }
  .problem-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .sol-grid { grid-template-columns: 1fr; }
  .scroll-features-wrap { grid-template-columns: 1fr; }
  .sticky-phone-col { display: none; }
  .features-text-col { padding: 60px 5vw; }
  .feature-block { min-height: auto; padding: 40px 0; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .how-step { border-right: none; padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
  .how-step:last-child { border-bottom: none; padding-bottom: 0; }
  .aud-grid { grid-template-columns: 1fr; }

}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-card-inner { padding: 2.25rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
