/* ===== RESET / BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #07080d;
  --bg-2: #0c0e16;
  --panel: #11131d;
  --panel-2: #161927;
  --border: rgba(255,255,255,0.08);
  --text: #eef0f6;
  --muted: #9aa0b4;
  --muted-2: #6f7488;
  --accent: #6c5cff;
  --accent-2: #a78bfa;
  --accent-3: #3ddc97;
  --glow: rgba(108,92,255,0.45);
  --radius: 16px;
  --maxw: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--glow); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,8,13,0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(54,243,227,0.28));
}
.brand-word { display: inline-flex; align-items: baseline; white-space: nowrap; }
.brand-grid {
  color: #39c9ee;
  background: linear-gradient(90deg, #33d8ef, #7657ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }

/* ===== HERO ===== */
.hero { position: relative; padding: 92px 0 64px; text-align: center; overflow: hidden; min-height: 780px; }
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, var(--glow), transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

/* connector wires + traveling light */
.hero-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0; animation: fadeIn 1.4s ease 0.5s forwards;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 90%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 90%);
}
.wires path { fill: none; stroke: rgba(140,124,255,0.30); stroke-width: 1.4; stroke-linecap: round; }
.flow .fl {
  fill: none; stroke: #cdbfff; stroke-width: 2.1; stroke-linecap: round;
  stroke-dasharray: 18 82; stroke-dashoffset: 0;
  animation: flowPulse 3s linear infinite; animation-delay: var(--fd, 0s);
}
@keyframes flowPulse { to { stroke-dashoffset: -100; } }

/* ===== ENTRANCE ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

/* ===== FLOATING CARDS ===== */
.float-card {
  position: absolute; z-index: 1;
  background: linear-gradient(180deg, rgba(28,31,48,0.86), rgba(13,15,24,0.9));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.85),
              inset 0 1px 0 rgba(255,255,255,0.06);
}
.float-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(181,169,255,0.18) 42%, rgba(61,220,151,0.10) 52%, transparent 72%);
  transform: translateX(-120%);
  animation: cardSweep 5.8s cubic-bezier(0.5,0,0.2,1) infinite;
  animation-delay: var(--d, 0s);
  pointer-events: none;
}
.float-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(167,139,250,0.18);
  opacity: 0.55;
  pointer-events: none;
}
.float-card.fade-up { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards var(--d); }
@keyframes cardSweep {
  0%, 38% { transform: translateX(-120%); opacity: 0; }
  48% { opacity: 1; }
  68%, 100% { transform: translateX(120%); opacity: 0; }
}

/* pills (Click) */
.fc-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--text);
  padding: 12px 20px;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 12px var(--accent-3); }

/* node card (Generating content) */
.fc-node {
  display: flex; align-items: center; gap: 13px;
  padding: 15px 18px; text-align: left;
}
.fc-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(108,92,255,0.16); border: 1px solid rgba(108,92,255,0.3);
}
.gen-pulse { animation: genPulse 1.8s ease-in-out infinite; }
@keyframes genPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,109,255,0.0); }
  50%     { box-shadow: 0 0 18px 1px rgba(124,109,255,0.45); }
}
.fc-label { font-size: 12px; color: var(--accent-2); font-weight: 600; }
.gen-body { min-width: 158px; }
.fc-title { font-size: 16px; font-weight: 700; display: inline-flex; align-items: baseline; }
/* animated "generating…" dots */
.gen-dots { display: inline-flex; gap: 3px; margin-left: 4px; }
.gen-dots i { width: 3px; height: 3px; border-radius: 50%; background: var(--accent-2); opacity: 0.3; animation: genDot 1.2s infinite; }
.gen-dots i:nth-child(2) { animation-delay: 0.2s; }
.gen-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes genDot { 0%,60%,100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
/* looping progress bar with shimmer */
.gen-bar { margin-top: 8px; height: 4px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.gen-bar span {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  width: 30%; animation: genBar 2.6s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes genBar {
  0%   { width: 8%;  margin-left: 0; }
  55%  { width: 88%; margin-left: 0; }
  80%  { width: 100%; margin-left: 0; }
  100% { width: 100%; margin-left: 100%; }
}

/* phones card */
.fc-phones { padding: 17px 16px 14px; text-align: center; }
.phones-row { display: flex; gap: 7px; align-items: flex-end; }
.phone {
  width: 31px; height: 62px; border-radius: 11px;
  background: linear-gradient(165deg, #232842 0%, #111522 58%, #080a10 100%);
  border: 1px solid rgba(179,166,255,0.16);
  padding: 3px; position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 12px 28px -16px rgba(0,0,0,0.95);
}
.phone::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(167,139,250,0.38), transparent 38%, rgba(61,220,151,0.12));
  opacity: 0.45;
  pointer-events: none;
}
.phone::after { /* subtle screen reflection sweep */
  content: ""; position: absolute; inset: 3px; border-radius: 7px; pointer-events: none;
  background: linear-gradient(150deg, rgba(255,255,255,0.08), transparent 46%);
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(124,109,255,0.14), transparent 42%),
    radial-gradient(120% 90% at 50% 22%, #2a2e50, #11131d 72%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.phone .screen::before { /* notch */
  content: ""; position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 2.5px; border-radius: 2px; background: rgba(0,0,0,0.55);
}
.phone .screen::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  width: 70%;
  left: -90%;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.42), rgba(61,220,151,0.32), transparent);
  transform: skewX(-16deg);
  animation: deviceSweep 4.6s ease-in-out infinite;
  opacity: 0;
}
.phone:nth-child(2) .screen::after { animation-delay: .22s; }
.phone:nth-child(3) .screen::after { animation-delay: .44s; }
.phone:nth-child(4) .screen::after { animation-delay: .66s; }
.phone:nth-child(5) .screen::after { animation-delay: .88s; }
@keyframes deviceSweep {
  0%, 48% { left: -90%; opacity: 0; }
  56% { opacity: 1; }
  76%, 100% { left: 120%; opacity: 0; }
}
.ig {
  width: 14px; height: 24px; border-radius: 999px; position: relative;
  background: linear-gradient(180deg, rgba(167,139,250,0.05), rgba(167,139,250,0.95) 45%, rgba(61,220,151,0.86));
  box-shadow: 0 0 13px rgba(124,109,255,0.65), 0 0 18px rgba(61,220,151,0.28);
  animation: igPulse 3s ease-in-out infinite;
}
.phone:nth-child(2) .ig { animation-delay: .3s; }
.phone:nth-child(3) .ig { animation-delay: .6s; }
.phone:nth-child(4) .ig { animation-delay: .9s; }
.phone:nth-child(5) .ig { animation-delay: 1.2s; }
.ig::before { content: ""; position: absolute; inset: 3px; border-radius: inherit; background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 70%); opacity: 0.55; }
.ig::after { content: ""; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px #fff; opacity: 0.82; }
@keyframes igPulse { 0%,100% { opacity: .78; filter: saturate(0.9); } 50% { opacity: 1; filter: saturate(1.2); } }
.fc-cap { margin-top: 10px; font-size: 11.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }

/* metric cards (Reach / Clicks / Sales) */
.fc-metric {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; min-width: 210px; text-align: left;
}
.fc-metric-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(108,92,255,0.14); border: 1px solid rgba(108,92,255,0.28);
}
.fc-metric-icon.green { background: rgba(61,220,151,0.12); border-color: rgba(61,220,151,0.3); }
.fc-metric-label { font-size: 13px; color: var(--muted); }
.fc-metric-value { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.fc-up { font-size: 12px; font-weight: 600; color: var(--accent-3); background: rgba(61,220,151,0.14); padding: 2px 7px; border-radius: 6px; vertical-align: middle; }

/* ---- funnel positions (clockwise: down the left, across, up the right) ---- */
.fc-click    { left: 8%;  top: 15%; animation-duration: 0.7s, 6s; }
.fc-generate { left: 2.5%; top: 40%; animation-duration: 0.7s, 7s; }
.fc-phones   { left: 8%;  top: 64%; animation-duration: 0.7s, 6.5s; }
.fc-reach    { right: 3%; top: 64%; animation-duration: 0.7s, 7.5s; }
.fc-clicks   { right: 5%; top: 41%; animation-duration: 0.7s, 8s; }
.fc-sales    { right: 7%; top: 15%; animation-duration: 0.7s, 6.8s; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 10px var(--accent-3);
}

.hero-title {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 34px; font-weight: 800;
  background: linear-gradient(120deg, #fff, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 14px; color: var(--muted-2); }

/* ===== LOGOS ===== */
.logos { padding: 24px 0 10px; border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; color: var(--muted-2); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.logos-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
  color: var(--muted-2); font-weight: 700; font-size: 15px; letter-spacing: 0.08em;
}
.logos-row span { opacity: 0.55; transition: opacity 0.2s; }
.logos-row span:hover { opacity: 1; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
#how { padding-bottom: 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.section-sub { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(167,139,250,0.35); }
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: rgba(108,92,255,0.12);
  border: 1px solid rgba(108,92,255,0.25);
  border-radius: 12px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }

/* clean borderless feature cards (under the dashboard) */
.feature-grid-clean { margin-top: 76px; gap: 30px 26px; }
.feature-grid-clean .feature-card { background: none; border: none; padding: 6px 4px; }
.feature-grid-clean .feature-card:hover { transform: none; border-color: transparent; }
.feature-grid-clean .feature-icon {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 20px;
  background: radial-gradient(circle at 50% 38%, rgba(124,109,255,0.32), rgba(108,92,255,0.06));
  border: 1px solid rgba(124,109,255,0.3);
  box-shadow: 0 0 34px -8px rgba(124,109,255,0.55);
}
.feature-grid-clean .feature-icon svg { width: 25px; height: 25px; fill: none; stroke: #bcaeff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* ===== SPLIT ===== */
.split-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-top: 82px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-text h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; line-height: 1.1; margin: 12px 0 18px; letter-spacing: -0.02em; }
.split-text > p { color: var(--muted); font-size: 17px; margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li {
  position: relative; padding-left: 30px; margin-bottom: 13px; color: var(--text); font-size: 16px;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-3); font-weight: 800; font-size: 13px;
  background: rgba(61,220,151,0.12); border-radius: 6px;
}

/* ===== DASHBOARD MOCKUP ===== */
.container-wide { max-width: 1240px; }
.showcase-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }

.device { position: relative; max-width: 1160px; margin: 0 auto; }
.device-glow {
  position: absolute; top: -90px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 280px; border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--glow), transparent 70%);
  filter: blur(50px); opacity: 0.55; pointer-events: none;
}
.device-frame {
  position: relative; border-radius: 22px; padding: 9px;
  background: linear-gradient(180deg, rgba(44,48,68,0.55), rgba(15,17,26,0.6));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 70px 140px -55px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: perspective(2400px) rotateX(3deg); transform-origin: center 28%;
}

.dash {
  display: grid; grid-template-columns: 232px 1fr;
  background: linear-gradient(180deg, #0e1018, #0a0c13);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden; width: 100%;
}

/* floating side cards */
.dev-card {
  position: absolute; z-index: 3; width: 218px; padding: 16px 18px;
  background: linear-gradient(180deg, rgba(28,31,48,0.94), rgba(13,15,24,0.96));
  border: 1px solid rgba(255,255,255,0.10); border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -26px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: floaty 5s ease-in-out infinite;
}
.dev-left { left: -26px; bottom: 8%; }
.dev-right { right: -26px; top: 14%; animation-delay: .7s; }
.devc-top { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.devc-ic { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(108,92,255,0.16); border: 1px solid rgba(108,92,255,0.3); }
.devc-ic svg { width: 15px; height: 15px; fill: none; stroke: #a78bfa; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.devc-ic.green { background: rgba(61,220,151,0.14); border-color: rgba(61,220,151,0.3); }
.devc-ic.green svg { fill: #3ddc97; stroke: none; }
.devc-label { font-size: 12px; color: var(--muted-2); }
.devc-big { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin: 2px 0 9px; }
.devc-row { display: flex; align-items: center; justify-content: space-between; }
.devc-sub { font-size: 12px; color: var(--muted-2); }
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 40px; margin-top: 12px; }
.mini-bars i { width: 9px; height: var(--h); border-radius: 3px; background: linear-gradient(180deg, #6f8dff, rgba(111,141,255,0.25)); }
.mini-bars i:nth-child(6) { background: linear-gradient(180deg, #3ddc97, rgba(61,220,151,0.25)); }
.mini-days { display: flex; justify-content: space-between; margin-top: 7px; font-size: 10px; color: var(--muted-2); }
.mini-days span { width: 9px; text-align: center; }
.dash-side { background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); padding: 20px 14px; }
.dash-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; padding: 4px 8px 18px; }
.dash-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(54,243,227,0.24));
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dn {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 11px; border-radius: 9px; font-size: 13.5px; color: var(--muted);
  cursor: default; transition: background 0.15s, color 0.15s;
}
.dn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dn:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.dn.active { background: rgba(108,92,255,0.16); color: #fff; box-shadow: inset 0 0 0 1px rgba(108,92,255,0.3); }
.dn.active svg { stroke: var(--accent-2); }

.dash-main { padding: 22px 24px 26px; }
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.dash-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-3); }
.dash-eyebrow.blue { color: #5b9bff; }
.live-dot.blue { background: #5b9bff; box-shadow: 0 0 10px #5b9bff; }
.dash-title { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; margin-top: 6px;
  background: linear-gradient(120deg, #fff, var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dash-acts { display: flex; gap: 8px; }
.dbtn { font-size: 12.5px; font-weight: 600; padding: 8px 13px; border-radius: 9px; }
.dbtn.ghost { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--muted); }
.dbtn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }

.dstat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.dstat {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--border); border-radius: 13px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.dstat-l { font-size: 12px; color: var(--muted-2); }
.dstat-v { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.dstat-v.green { color: var(--accent-3); }
.dstat-v.blue { color: #5b9bff; }
.dstat-v.amber { color: #febc2e; }
.dstat-d { font-size: 11.5px; color: var(--muted-2); }
.dstat-d.up { color: var(--accent-3); }

.dpanel { background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)); border: 1px solid var(--border); border-radius: 15px; padding: 18px 18px 14px; }
.dpanel-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.dpanel-title { font-size: 17px; font-weight: 700; }
.dlegend { display: flex; gap: 16px; margin-top: 8px; }
.dl { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.dot-b, .dot-g { width: 8px; height: 8px; border-radius: 50%; }
.dot-b { background: #5b9bff; }
.dot-g { background: #3ddc97; }
.dchip { font-size: 11.5px; font-weight: 600; color: #cdd6ff; background: rgba(91,155,255,0.14); border: 1px solid rgba(91,155,255,0.3); padding: 5px 11px; border-radius: 999px; }

.dchart-wrap { display: grid; grid-template-columns: 38px 1fr; grid-template-rows: 192px 16px; column-gap: 10px; }
.dchart-y { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: space-between; font-size: 10px; color: var(--muted-2); text-align: right; }
.dchart-plot { grid-column: 2; grid-row: 1; position: relative; }
.dchart-x { grid-column: 2; grid-row: 2; display: flex; justify-content: space-between; font-size: 10px; color: var(--muted-2); }
.dchart { width: 100%; height: 100%; display: block; }
.cgrid line { stroke: rgba(255,255,255,0.06); stroke-width: 1; stroke-dasharray: 3 6; }
.carea { }
.cline { fill: none; stroke: #5b9bff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(91,155,255,0.55)); }
.cline2 { fill: none; stroke: #3ddc97; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; }
.dpeak { position: absolute; top: 2px; right: 2px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; color: #cdd6ff;
  background: rgba(91,155,255,0.16); border: 1px solid rgba(91,155,255,0.32); padding: 4px 9px; border-radius: 999px; }
.dpeak-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #5b9bff; }

/* ===== SCALE NARRATIVE ===== */
.scale-note { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; margin-top: 0; }
.scale-text h3 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; line-height: 1.12; margin: 12px 0 20px; letter-spacing: -0.02em; }
.scale-intro { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
.reality-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.reality-list li { position: relative; padding-left: 30px; font-size: 16.5px; line-height: 1.55; color: var(--muted); }
.reality-list li strong { color: var(--text); font-weight: 700; }
.reality-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(108,92,255,0.55);
}

/* ===== APP SCREENSHOT MOCKUP (decorative) ===== */
.app-shot { position: relative; display: flex; justify-content: center; align-items: center; min-height: 430px; }
.as-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(108,92,255,0.18), transparent 65%); filter: blur(45px); }
.as-win {
  position: relative; z-index: 1; width: 560px; max-width: 100%;
  display: grid; grid-template-columns: 116px 1fr;
  background: linear-gradient(180deg, #11131d, #0a0c12);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden;
  box-shadow: 0 50px 110px -45px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: perspective(1700px) rotateY(-17deg) rotateX(5deg); transform-origin: 65% 50%;
  -webkit-mask-image: linear-gradient(150deg, #000 46%, rgba(0,0,0,0.32) 82%, transparent 100%);
  mask-image: linear-gradient(150deg, #000 46%, rgba(0,0,0,0.32) 82%, transparent 100%);
}
.as-side { background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.06); padding: 16px 12px; display: flex; flex-direction: column; gap: 9px; }
.as-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.as-logo { width: 24px; height: 24px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(54,243,227,0.22)); }
.as-ni { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.06); width: 100%; }
.as-ni.active { background: rgba(124,109,255,0.45); }
.as-ni:nth-child(3) { width: 78%; }
.as-ni:nth-child(4) { width: 88%; }
.as-ni:nth-child(5) { width: 68%; }
.as-ni:nth-child(6) { width: 82%; }
.as-ni:nth-child(7) { width: 60%; }
.as-main { padding: 16px 18px; display: flex; flex-direction: column; gap: 9px; }
.as-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.as-title { font-size: 16px; font-weight: 800; }
.as-search { width: 130px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); }
.as-row { display: flex; align-items: center; gap: 12px; padding: 9px 13px; border-radius: 11px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); }
.as-ava { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); flex-shrink: 0; }
.as-meta { display: flex; flex-direction: column; flex: 1; gap: 2px; min-width: 0; }
.as-meta b { font-size: 13px; font-weight: 700; }
.as-meta span { font-size: 11px; color: var(--muted-2); }
.as-pill { font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.as-pill.ok { color: var(--accent-3); background: rgba(61,220,151,0.14); }
.as-pill.warm { color: #febc2e; background: rgba(254,188,46,0.14); }
.as-pill.run { color: var(--accent-2); background: rgba(167,139,250,0.16); }

/* wide variant for results */
.as-wide { min-height: 470px; margin-top: 44px; }
.as-wide .as-win {
  width: 780px; grid-template-columns: 140px 1fr;
  transform: perspective(2200px) rotateY(-9deg) rotateX(7deg); transform-origin: center 40%;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}

/* ===== PROOF SCREENSHOTS (results) ===== */
.screenshot-showcase {
  position: relative;
  overflow: visible;
  isolation: isolate;
  margin: 18px 0 34px;
  padding: 0;
}
.screenshot-showcase::before {
  content: "";
  position: absolute;
  inset: 8% -4% -12%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 24% 34%, rgba(108,92,255,.20), transparent 46%),
    radial-gradient(ellipse at 78% 42%, rgba(61,220,151,.10), transparent 42%),
    linear-gradient(to bottom, transparent, rgba(7,8,13,.42));
  filter: blur(34px);
  pointer-events: none;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.screenshot-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  border: 0;
  border-radius: 28px;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  transition: transform .22s ease, filter .22s ease;
}
.screenshot-card:hover,
.screenshot-card:focus-visible {
  transform: translateY(-6px);
  filter: brightness(1.05);
}
.screenshot-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  background: #070910;
  box-shadow: 0 30px 78px -58px rgba(0,0,0,.92);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0,0,0,.93) 72%, rgba(0,0,0,.58) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0,0,0,.93) 72%, rgba(0,0,0,.58) 88%, transparent 100%);
}
.screenshot-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  box-shadow: inset 0 0 34px 24px rgba(7,8,13,.44);
}
.screenshot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.92) contrast(1.03);
  transition: transform .28s ease;
}
.screenshot-card:hover .screenshot-media img,
.screenshot-card:focus-visible .screenshot-media img {
  transform: scale(1.025);
}
.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.screenshot-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,5,12,.78);
  backdrop-filter: blur(14px);
}
.lightbox-panel {
  position: relative;
  width: min(920px, calc(100vw - 44px));
  max-height: calc(100vh - 54px);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18,20,32,.96), rgba(7,8,13,.98));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 110px -30px rgba(0,0,0,.85);
}
.lightbox-panel img {
  display: block;
  max-width: 100%;
  max-height: min(76vh, 880px);
  object-fit: contain;
  border-radius: 20px;
  background: #070910;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7,8,13,.78);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
body.lightbox-open { overflow: hidden; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 860px; margin: 0 auto;
}
.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: rgba(108,92,255,0.5);
  box-shadow: 0 0 60px -20px var(--glow);
  background: linear-gradient(180deg, #161430, var(--bg-2));
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 16px; border-radius: 999px;
}
.price-tag { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 8px; }
.price-card h3 { font-size: 23px; font-weight: 800; margin-bottom: 8px; }
.price-desc { color: var(--muted); font-size: 15px; margin-bottom: 22px; min-height: 44px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price-amount { font-size: 46px; font-weight: 900; letter-spacing: -0.02em; }
.price-period { color: var(--muted); font-size: 15px; }
.price-sub { color: var(--accent-3); font-size: 14px; font-weight: 600; margin: 6px 0 24px; }
.price-features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-features li {
  position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 15px; color: var(--text);
}
.price-features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent-3); font-weight: 800;
}
.operator-expertise { margin-top: 86px; }

.device-pricing {
  max-width: 860px;
  margin: 22px auto 0;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(108,92,255,0.16), transparent 32%),
    linear-gradient(180deg, rgba(22,25,39,0.78), rgba(10,12,19,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.device-pricing-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}
.device-pricing-head .eyebrow { margin-bottom: 8px; }
.device-pricing-head h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
}
.device-pricing-head strong {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.device-range {
  width: 100%;
  margin: 24px 0 12px;
  accent-color: var(--accent-2);
}
.device-ticks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.device-ticks button {
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  cursor: pointer;
}
.device-ticks button.active {
  color: #fff;
  border-color: rgba(167,139,250,0.55);
  background: linear-gradient(135deg, rgba(108,92,255,0.42), rgba(167,139,250,0.30));
  box-shadow: 0 16px 36px -26px var(--glow);
}
/* ===== RESULTS ===== */
.results-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(108,92,255,0.13), transparent 34%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 12px;
}
.result-card {
  background: linear-gradient(180deg, rgba(22,25,39,0.92), rgba(12,14,22,0.92));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 24px 70px -46px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.05);
}
.result-num {
  font-size: 40px; font-weight: 900; letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.result-label { font-size: 15px; font-weight: 600; margin-top: 4px; }
.result-meta { font-size: 13px; color: var(--muted-2); margin-top: 6px; }

.mentorship-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 34px;
  min-height: 260px;
  background:
    radial-gradient(ellipse at 9% 62%, rgba(255,196,224,0.62), transparent 29%),
    radial-gradient(ellipse at 31% 7%, rgba(255,103,74,0.62), transparent 29%),
    radial-gradient(ellipse at 53% 22%, rgba(221,65,255,0.58), transparent 28%),
    radial-gradient(ellipse at 83% 22%, rgba(95,255,151,0.52), transparent 26%),
    linear-gradient(120deg, #3438f6 0%, #6847ff 47%, #2fd18d 120%);
  border: 1px solid rgba(167,139,250,0.45);
  border-radius: 28px;
  padding: 52px 56px;
  flex-wrap: wrap;
  box-shadow: 0 34px 120px -64px rgba(108,92,255,0.85), inset 0 1px 0 rgba(255,255,255,0.28);
}
.mentorship-cta::before,
.mentorship-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.mentorship-cta::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,12,0.28), rgba(6,7,12,0.02) 48%, rgba(6,7,12,0.16)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.16), transparent 48%);
  backdrop-filter: blur(16px);
}
.mentorship-cta::after {
  width: 540px;
  height: 420px;
  right: -140px;
  top: -78px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 86px, rgba(255,255,255,0.34) 88px 90px, transparent 92px 146px);
  opacity: 0.62;
  transform: rotate(-10deg);
}
.mentorship-cta-text { max-width: 710px; }
.mentorship-cta-text h3 { color: #fff; font-size: clamp(34px, 4vw, 58px); line-height: 1; font-weight: 900; letter-spacing: -0.035em; margin-bottom: 14px; }
.mentorship-cta-text p { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.65; max-width: 680px; }
.mentorship-cta .btn {
  flex-shrink: 0;
  color: #080a13;
  background: #fff;
  border-color: rgba(255,255,255,0.76);
  box-shadow: 0 20px 46px -24px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.8);
}
.mentorship-cta .btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.built-by {
  position: relative;
  isolation: isolate;
  margin: 84px 0 0;
  padding: 94px 0 84px;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.built-by::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 28% 8%, rgba(108,92,255,0.22), transparent 42%),
    radial-gradient(ellipse at 78% 35%, rgba(61,220,151,0.08), transparent 40%),
    linear-gradient(180deg, rgba(7,8,13,0), rgba(13,15,25,0.92) 18%, rgba(9,10,17,0.96) 78%, var(--bg-2));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.built-by::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(940px, 84vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.55), rgba(61,220,151,0.25), transparent);
  box-shadow: 0 0 36px rgba(108,92,255,0.32);
  pointer-events: none;
}
.built-head {
  max-width: 960px;
  margin: 0 auto 52px;
  text-align: center;
}
.built-head h3 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 900;
}
.built-head p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}
.built-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.built-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 34px 30px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(108,92,255,0.16), transparent 40%),
    linear-gradient(180deg, rgba(28,31,50,0.58), rgba(8,10,18,0.48));
  border: 1px solid rgba(129,116,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}
.built-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent, rgba(255,255,255,0.035), transparent),
    linear-gradient(to bottom, rgba(167,139,250,0.09), transparent 46%);
  pointer-events: none;
}
.built-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 62px;
  color: var(--accent-2);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.built-card h4 {
  position: relative;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.built-card p {
  position: relative;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 17px;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent-2); font-size: 24px; font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 15.5px; padding-bottom: 20px; }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; text-align: center; padding: 110px 0; overflow: hidden; }
.final-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, var(--glow), transparent 65%);
  filter: blur(50px); opacity: 0.4; pointer-events: none;
}
.final-cta h2 { position: relative; font-size: clamp(30px, 4.5vw, 50px); font-weight: 900; letter-spacing: -0.02em; }
.final-cta p { position: relative; color: var(--muted); font-size: 18px; margin: 16px 0 32px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted-2); font-size: 14px; }

/* ===== MENTORSHIP PAGE ===== */
.mentorship-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(108,92,255,0.14), transparent 42%),
    var(--bg);
}
.mentorship-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 88px;
}
.mentorship-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(108,92,255,0.28), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(61,220,151,0.15), transparent 34%),
    linear-gradient(180deg, rgba(14,16,29,0.92), rgba(7,8,13,0.98));
  pointer-events: none;
}
.mentorship-shell {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  text-align: center;
}
.mentorship-shell h1 {
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.mentorship-shell > p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.mentorship-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.mentorship-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}
.mentorship-stat {
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.mentorship-stat strong {
  display: block;
  color: var(--text);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}
.mentorship-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.mentorship-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.mentorship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mentorship-card {
  min-height: 270px;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(129,116,255,0.16);
  background:
    radial-gradient(circle at 20% 0%, rgba(108,92,255,0.18), transparent 40%),
    linear-gradient(180deg, rgba(24,27,43,0.76), rgba(11,13,22,0.9));
}
.mentorship-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.mentorship-card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.mentorship-card p {
  color: var(--muted);
  font-size: 15px;
}
.mentorship-flow-section {
  background:
    radial-gradient(ellipse at 76% 0%, rgba(61,220,151,0.08), transparent 42%),
    var(--bg-2);
}
.mentorship-flow {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.mentorship-flow-copy h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.mentorship-flow-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.mentorship-steps {
  display: grid;
  gap: 14px;
}
.mentorship-step {
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}
.mentorship-step b {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}
.mentorship-step p {
  color: var(--muted);
}
.mentorship-final {
  padding: 96px 0;
}
.mentorship-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 240px;
  padding: 44px;
  border-radius: 28px;
  border: 1px solid rgba(129,116,255,0.24);
  background:
    radial-gradient(circle at 16% 12%, rgba(108,92,255,0.28), transparent 36%),
    radial-gradient(circle at 84% 82%, rgba(61,220,151,0.16), transparent 34%),
    linear-gradient(135deg, rgba(25,27,48,0.95), rgba(10,13,22,0.95));
}
.mentorship-final-card h2 {
  max-width: 720px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .float-card, .hero-lines { display: none; }
  .hero { min-height: 0; }
  .dev-card { display: none; }
  .device-frame { transform: none; }
  .screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up, .float-card.fade-up, .hero-lines, .hero-lines path { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 36px; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dstat-row { grid-template-columns: 1fr 1fr; }
  .scale-note { grid-template-columns: 1fr; gap: 28px; }
  .built-grid { grid-template-columns: 1fr; }
  .mentorship-grid { grid-template-columns: 1fr 1fr; }
  .mentorship-flow { grid-template-columns: 1fr; }
  .mentorship-final-card { align-items: flex-start; flex-direction: column; }
  .as-win { transform: none; width: 100%; -webkit-mask-image: none; mask-image: none; }
  .as-wide .as-win { transform: none; width: 100%; }
  .app-shot { min-height: auto; }
}
@media (max-width: 600px) {
  .feature-grid, .results-grid, .pricing-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 72px 0 48px; }
  .hero-sub { font-size: 17px; margin-bottom: 24px; }
  .hero-stats { gap: 26px; margin-top: 38px; }
  .stat-num { font-size: 30px; }
  .section { padding: 70px 0; }
  #how { padding-bottom: 0; }
  .split-section { padding-top: 64px; }
  .operator-expertise { margin-top: 58px; }
  .device-pricing { padding: 22px 18px; }
  .device-pricing-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .device-pricing-head strong { font-size: 26px; }
  .device-ticks { gap: 6px; }
  .device-ticks button { padding: 8px 4px; }
  .screenshot-showcase { margin: 16px 0 28px; padding: 0; }
  .screenshot-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-right: -20px;
    padding-right: 20px;
  }
  .screenshot-card { flex: 0 0 78%; scroll-snap-align: start; }
  .screenshot-media { border-radius: 24px; }
  .lightbox-panel { padding: 12px; border-radius: 22px; }
  .lightbox-panel img { max-height: 72vh; border-radius: 16px; }
  .mentorship-cta { flex-direction: column; text-align: center; align-items: stretch; min-height: auto; padding: 38px 24px; }
  .mentorship-cta::after { right: -260px; opacity: 0.34; }
  .mentorship-cta-text h3 { font-size: 34px; }
  .mentorship-cta-text p { font-size: 16px; line-height: 1.55; }
  .built-by { margin: 58px 0 0; padding: 64px 0 66px; }
  .built-head { margin-bottom: 34px; }
  .built-card { min-height: 0; padding: 24px 22px; }
  .built-icon { margin-bottom: 34px; }
  .mentorship-hero { padding: 82px 0 62px; }
  .mentorship-shell h1 { font-size: 46px; }
  .mentorship-shell > p { font-size: 16px; }
  .mentorship-actions { flex-direction: column; }
  .mentorship-stats, .mentorship-grid { grid-template-columns: 1fr; }
  .mentorship-section, .mentorship-final { padding: 70px 0; }
  .mentorship-card { min-height: 0; }
  .mentorship-final-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
