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

:root {
  --bg: #0B0F1A;
  --bg-2: #0D1221;
  --bg-3: #111827;
  --accent-1: #5B5FFF;
  --accent-2: #00C2FF;
  --gradient: linear-gradient(135deg, #5B5FFF, #00C2FF);
  --text: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(91, 95, 255, 0.3);
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-hover: rgba(255, 255, 255, 0.04);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(20px);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --section-spacing: 120px; /* Tightened from 140px */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(11,15,26,0.3) 100%);
  pointer-events: none;
  z-index: 100;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
/* Headings — Satoshi */
h1, h2, h3, h4 {
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  color: var(--text);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

/* Body — Inter */
p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Fluid body scale for larger screens */
@media (min-width: 1024px) {
  p, li, a { font-size: 1.0625rem; }
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: var(--section-spacing) 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(91,95,255,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.problem-icon-wrap, .sol-card-num {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.rla-card-num {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.btn-xl { padding: 18px 40px; font-size: 1.05rem; border-radius: 10px; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  font-style: normal;
}
.logo-text em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 22px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(11,15,26,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu .btn-primary { margin-top: 12px; text-align: center; justify-content: center; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}

/* ===== HERO v3.0 (PROPRIETARY INTERFACE) ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.intel-screen-wrap {
  position: relative;
  padding: 20px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent);
  border-radius: 40px;
}

.intel-screen {
  background: #060912;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
  position: relative;
  transform: perspective(1200px) rotateY(-5deg);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.screen-control {
  width: 8px; height: 8px;
  background: #FF5F57;
  border-radius: 50%;
  box-shadow: 14px 0 #FFBD2E, 28px 0 #27C93F;
}

.screen-title { font-size: 0.55rem; font-weight: 800; color: var(--text-dim); margin-left: 40px; letter-spacing: 0.1em; }
.screen-status { font-size: 0.55rem; font-weight: 900; color: #22D3A5; margin-left: auto; letter-spacing: 0.1em; }

.screen-main-grid {
  display: grid;
  grid-template-columns: 1fr 180px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-chart-area { padding: 32px; position: relative; }
.chart-label { font-size: 0.6rem; font-weight: 800; color: var(--text-dim); margin-bottom: 24px; letter-spacing: 0.1em; }

.intel-chart { height: 120px; width: 100%; position: relative; }
.svg-chart { width: 100%; height: 100%; }
.chart-path-bg { fill: none; stroke: rgba(91,95,255,0.1); stroke-width: 2; }
.chart-path-main { 
  fill: none; stroke: url(#chartGradient); stroke-width: 3; 
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: draw 3s ease-out forwards;
}

.metrics-sidebar {
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.01);
}

.m-card {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.m-card small { font-size: 0.55rem; font-weight: 800; color: var(--text-dim); letter-spacing: 0.05em; display: block; margin-bottom: 6px; }
.m-card strong { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; }

.screen-logs { padding: 16px 24px; font-family: monospace; font-size: 0.6rem; }
.log-entry { color: var(--text-dim); margin-bottom: 4px; }
.log-entry.success { color: #22D3A5; }

/* Floating Intel Cards */
.floating-intel-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 10;
}
.fi-header { font-size: 0.5rem; font-weight: 900; color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.1em; }
.fi-value { font-size: 1.1rem; font-weight: 900; color: var(--accent-2); }
.fi-bars { display: flex; gap: 4px; height: 10px; align-items: flex-end; }
.fi-bars span { width: 4px; background: var(--accent-1); border-radius: 1px; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .intel-screen { transform: none; }
  .screen-main-grid { grid-template-columns: 1fr; }
  .metrics-sidebar { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); flex-direction: row; }
  .m-card { flex: 1; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.05); }
}

/* ===== PROBLEM ===== */
#problem { background: var(--bg-2); position: relative; }
#problem .section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.problem-card:hover { border-color: var(--border-hover); background: var(--card-hover); transform: translateY(-4px); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { color: var(--text); margin-bottom: 10px; }

@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .problem-grid { grid-template-columns: 1fr; } }

/* ===== SOLUTION ===== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.solution-card.featured {
  background: linear-gradient(145deg, rgba(91,95,255,0.08), rgba(0,194,255,0.04));
  border-color: rgba(91,95,255,0.3);
  box-shadow: 0 0 40px rgba(91,95,255,0.1);
}
.solution-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.solution-card.featured:hover { box-shadow: 0 0 60px rgba(91,95,255,0.2); }
.sol-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--gradient);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sol-icon { font-size: 2rem; margin-bottom: 16px; }
.solution-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text); }
.solution-card > p { margin-bottom: 20px; font-size: 0.92rem; }
.sol-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sol-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.sol-list li::before { content: '→'; color: var(--accent-1); font-size: 0.8rem; }

@media (max-width: 900px) { .solution-grid { grid-template-columns: 1fr; } }


.rla-grid-container {
  position: relative;
}

.rla-float {
  position: absolute;
  padding: 10px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-2);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: float 5s ease-in-out infinite;
}

.rla-float.f-1 { top: -20px; left: -40px; border-color: rgba(91,95,255,0.3); }
.rla-float.f-2 { bottom: 100px; right: -60px; border-color: rgba(34,211,165,0.3); animation-delay: -2s; }

/* Pricing Spotlight (Elite Upgrade) */

.rla-price-spotlight {
  padding: 60px 80px;
  border-width: 3px;
}

/* WHY SECTION METRICS */
.why-metrics-micro {
  display: flex;
  gap: 40px;
}

.wm-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wm-item strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.wm-item small {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Header wrap */
.rla-header {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.rla-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; }
.rla-subtext {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Value heading */
.rla-value-heading {
  text-align: center;
  margin-bottom: 36px;
}
.rla-value-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* REVENUE LEAK AUDIT ELITE UPGRADE */
#offer {
  position: relative;
  background: var(--bg);
  padding-bottom: 0; /* Tighten flow to next section */
}

.rla-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, rgba(91,95,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.rla-header-wrap {
  padding: 100px 0 60px;
  text-align: center;
}

/* REVENUE LEAK AUDIT ELITE UPGRADE */
.rla-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.rla-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.rla-card.featured {
  grid-column: span 2;
  flex-direction: row;
  background: linear-gradient(135deg, rgba(91,95,255,0.06), rgba(0,194,255,0.03));
}

.card-visual {
  height: 280px; /* Normalized Height */
  background: #060912;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.rla-card.featured .card-visual {
  width: 45%;
  height: auto;
  min-height: 320px;
  border-bottom: none;
  border-right: 1px solid var(--glass-border);
}

/* Prototype Elite (Before/After) */
.mu-prototype-elite { width: 100%; height: 100%; padding: 40px; position: relative; }
.proto-grid { display: flex; gap: 32px; height: 100%; }
.proto-side { 
  flex: 1; background: rgba(255,255,255,0.02); border: 1px solid var(--border); 
  border-radius: 12px; padding: 20px; position: relative; 
}
.side-tag { font-size: 0.5rem; font-weight: 900; color: var(--text-dim); margin-bottom: 12px; }
.side-tag.grn { color: #22D3A5; }
.proto-dummy { display: flex; flex-direction: column; gap: 8px; opacity: 0.3; }
.p-row { height: 6px; background: var(--text-dim); border-radius: 100px; width: 100%; }
.p-leak { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #FF5F57; font-size: 1.2rem; filter: drop-shadow(0 0 10px #FF5F57); }
.p-hero-glow { height: 50px; background: var(--gradient); border-radius: 8px; opacity: 0.4; box-shadow: 0 0 30px rgba(91,95,255,0.4); }
.recovery-pill { position: absolute; bottom: 12px; right: 12px; background: #22D3A5; color: #000; font-size: 0.55rem; font-weight: 900; padding: 4px 10px; border-radius: 4px; }
.visual-scanner { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: rgba(91,95,255,0.3); animation: scan 3s linear infinite; z-index: 5; }

/* Unified Audit Module */
.mu-module-elite { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 40px; }
.mod-radar { width: 100px; height: 100px; border: 1px solid var(--border); border-radius: 50%; position: relative; }
.radar-scan { position: absolute; inset: 0; background: conic-gradient(from 0deg, var(--accent-1) 0%, transparent 20%); border-radius: 50%; border-right: 2px solid var(--accent-1); animation: rotate 3s linear infinite; }
.mod-steps { display: flex; gap: 12px; margin-bottom: 20px; }
.st { width: 10px; height: 10px; border: 1px solid var(--border); border-radius: 2px; }
.st.active { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.mod-timeline-v4 { width: 140px; height: 2px; background: var(--border); position: relative; display: flex; justify-content: space-between; }
.node { width: 8px; height: 8px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 50%; transform: translateY(-3px); }

@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }

@media (max-width: 1000px) {
  .rla-value-grid { grid-template-columns: 1fr; }
  .rla-card.featured { flex-direction: column; }
  .rla-card.featured .card-visual { width: 100%; border-right: none; border-bottom: 1px solid var(--glass-border); }
}

/* ULTRA-FIDELITY CSS MOCKUPS (1-4) */
.mu-xray-v2 { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.xray-radar { width: 100px; height: 100px; border: 1px solid var(--border); border-radius: 50%; position: relative; background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%); }
.radar-line { position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: var(--border); transform-origin: center; animation: rotate 4s linear infinite; }
.radar-dot { position: absolute; width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; box-shadow: 0 0 10px var(--accent-2); }
.radar-dot.d1 { top: 20%; left: 30%; }
.radar-dot.d2 { top: 60%; left: 70%; animation-delay: 1s; }
.radar-dot.d3 { top: 40%; left: 80%; opacity: 0.5; }

.mu-autopsy-v2 { width: 100%; height: 100%; padding: 30px; display: flex; align-items: center; justify-content: center; }
.autopsy-funnel { display: flex; flex-direction: column; gap: 8px; width: 120px; }
.f-stage { height: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 4px; position: relative; }
.f-stage.s1 { width: 100%; }
.f-stage.s2 { width: 70%; border-color: rgba(255,95,87,0.3); }
.f-leak { position: absolute; right: -15px; top: 50%; width: 10px; height: 10px; background: #FF5F57; border-radius: 50%; box-shadow: 0 0 10px #FF5F57; animation: pulse 1.5s infinite; }
.f-stage.s3 { width: 40%; }

.mu-dna-v2 { width: 100%; height: 100%; position: relative; padding: 20px; }
.dna-profile { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.dna-line { height: 2px; background: var(--border); border-radius: 10px; position: relative; }
.dna-line::after { content: ''; position: absolute; right: 0; top: 50%; width: 4px; height: 4px; background: var(--accent-1); border-radius: 50%; transform: translate(50%, -50%); }
.dna-line.l1 { width: 80%; }
.dna-line.l2 { width: 60%; }
.dna-line.l3 { width: 90%; border-color: var(--accent-1); }

.mu-gap-v2 { width: 100%; height: 100%; display: flex; align-items: flex-end; gap: 12px; padding: 30px; }
.g-bar { width: 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 4px 4px 0 0; }
.g-bar.b1 { height: 40px; }
.g-bar.b2 { height: 90px; border-color: #22D3A5; background: rgba(34,211,165,0.05); }
.g-arrow { position: absolute; top: 30%; right: 40px; width: 30px; height: 30px; border-top: 2px solid #22D3A5; border-right: 2px solid #22D3A5; transform: rotate(45deg); opacity: 0.5; }

/* ULTRA-FIDELITY CSS MOCKUPS (5-8) */
.mu-diagnosis-v2 { width: 100%; height: 100%; position: relative; padding: 20px; }
.diag-node { position: absolute; width: 14px; height: 14px; background: var(--bg-3); border: 2px solid var(--border); border-radius: 4px; box-shadow: 0 0 15px rgba(0,0,0,0.5); }
.diag-node.n1 { top: 20%; left: 20%; }
.diag-node.n2 { top: 40%; left: 50%; border-color: var(--accent-1); }
.diag-node.n3 { bottom: 20%; left: 70%; border-color: var(--accent-2); }
.diag-line { position: absolute; background: var(--border); height: 2px; transform-origin: left; }
.diag-line.l1 { width: 100px; top: 25%; left: 25%; transform: rotate(20deg); }
.diag-line.l2 { width: 80px; top: 45%; left: 55%; transform: rotate(-30deg); }
.diag-bottleneck { position: absolute; top: 35%; left: 45%; width: 20px; height: 20px; background: rgba(255,95,87,0.1); border: 1px solid #FF5F57; border-radius: 50%; box-shadow: 0 0 10px #FF5F57; animation: pulse 2s infinite; }

.mu-quickwin-v2 { width: 150px; height: 100px; background: #0D1221; border-radius: 8px; border: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.qw-slider { height: 100%; width: 100%; position: relative; }
.qw-before { width: 50%; height: 100%; background: #131929; position: absolute; left: 0; }
.qw-after { width: 50%; height: 100%; background: #1a233a; position: absolute; right: 0; padding: 10px; }
.qw-accent-glow { width: 40px; height: 8px; background: var(--gradient); border-radius: 2px; margin-top: 40px; box-shadow: 0 0 10px var(--accent-1); }
.qw-handle { position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: rgba(255,255,255,0.2); transform: translateX(-50%); }

.mu-session-v2 { width: 130px; height: 100px; background: rgba(255,255,255,0.02); border-radius: 12px; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; position: relative; }
.call-ui { width: 60px; height: 60px; background: var(--bg-3); border-radius: 50%; border: 2px solid var(--accent-2); position: relative; }
.call-avatar { width: 40px; height: 40px; background: var(--gradient); border-radius: 50%; margin: 8px auto; opacity: 0.8; }
.call-pulse { position: absolute; inset: -10px; border: 1px solid var(--accent-2); border-radius: 50%; animation: pulse-ring 2s linear infinite; }

.mu-clarity-v2 { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.roadmap-v2 { width: 180px; position: relative; height: 40px; display: flex; justify-content: space-between; align-items: center; }
.r-point { width: 12px; height: 12px; background: var(--bg-3); border: 2px solid var(--border); border-radius: 50%; z-index: 2; position: relative; }
.r-point.active { border-color: var(--accent-2); background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.r-track { position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: var(--border); transform: translateY(-50%); z-index: 1; }

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.rla-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.rla-card:hover .card-visual img {
  transform: scale(1.1);
}

.rla-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(91, 95, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
}

.rla-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.rla-card-icon { font-size: 1.6rem; line-height: 1; }
.rla-card-value {
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.rla-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.rla-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) { .rla-value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .rla-value-grid { grid-template-columns: 1fr; } }

/* Elite Pricing Highlight */
.rla-pricing-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 80px;
  margin-top: 40px;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.rla-price-main {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
  margin-bottom: 24px;
}

.featured-badge {
  font-size: 0.6rem;
  font-weight: 900;
  color: #fff;
  background: var(--accent-1);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 60%);
  z-index: 5;
  pointer-events: none;
}

/* Systems Diagnosis v3 */
.mu-diagnosis-v3 {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 30px; gap: 12px;
}
.diag-node-elite { width: 50px; height: 50px; background: rgba(255,95,87,0.1); border: 2px solid #FF5F57; border-radius: 12px; box-shadow: 0 0 20px rgba(255,95,87,0.2); }
.diag-path-elite { height: 2px; width: 80%; background: linear-gradient(90deg, #FF5F57, transparent); }
.diag-data-overlay { font-size: 0.6rem; font-weight: 850; color: #FF5F57; letter-spacing: 0.1em; }

/* Urgency Block */
.rla-urgency {
  background: rgba(255,80,80,0.05);
  border: 1px solid rgba(255,80,80,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rla-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF6B6B;
  align-self: flex-start;
}
.urgency-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF6B6B;
  position: relative;
  flex-shrink: 0;
}
.urgency-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,107,107,0.3);
  animation: pulse-ring 1.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2);   opacity: 0; }
}
.rla-urgency-headline {
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.rla-urgency-headline strong { color: #FF6B6B; }
.rla-urgency-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rla-urgency-sub strong { color: var(--text); }
.spots-bar-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.spots-bar {
  display: inline-block;
  width: 120px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.spots-bar-fill {
  display: block;
  height: 100%;
  width: var(--filled, 70%);
  background: linear-gradient(90deg, #FF6B6B, #FF9A6B);
  border-radius: 100px;
}
.spots-text { font-size: 0.8rem; }
.spots-text strong { color: #FF6B6B; }

/* CTAs Row */
.rla-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.rla-cta-primary {
  font-size: 1.05rem;
  padding: 18px 40px;
  box-shadow: 0 8px 40px rgba(91,95,255,0.35);
  animation: cta-glow 2.5s ease-in-out infinite;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 40px rgba(91,95,255,0.35); }
  50%       { box-shadow: 0 8px 60px rgba(0,194,255,0.5); }
}
.rla-cta-primary:hover { animation: none; }
.rla-cta-secondary { font-size: 1.05rem; padding: 17px 36px; }

/* Trust line */
.rla-trust-line {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  margin: 0;
}

@media (max-width: 900px) {
  .rla-pricing-inner { grid-template-columns: 1fr; }
  .rla-price-spotlight { max-width: 320px; align-self: center; margin: 0 auto; }
  .rla-pricing-block { padding: 40px 28px; }
  .rla-ctas { justify-content: center; }
  .rla-header-wrap { padding: 80px 0 48px; }
}
@media (max-width: 560px) {
  .rla-ctas { flex-direction: column; }
  .rla-cta-primary, .rla-cta-secondary { width: 100%; justify-content: center; }
  .rla-stack-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .spots-bar-wrap { display: none; }
}

/* PROCESS SECTION (CLEAN & CONNECTED) */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding-bottom: 60px;
  position: relative;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.ps-num {
  width: 80px; height: 80px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi';
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-2);
  background: var(--bg);
  z-index: 2;
}
.ps-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.ps-content p { font-size: 1.1rem; max-width: 500px; }

/* WHY JD AUXO (OUTCOME GRID) */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}
.outcome-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-label {
  font-size: 0.75rem;
  color: var(--accent-1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.outcome-item h3 { font-size: 1.8rem; line-height: 1.2; }
.outcome-item p { font-size: 1rem; color: var(--text-muted); }

/* ===== PROOF ===== */
#proof { background: var(--bg-2); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proof-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.proof-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.2);
  color: var(--accent-2);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof-problem span, .proof-insight span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.proof-problem p, .proof-insight p { font-size: 0.87rem; }
.proof-impact span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.impact-stats { display: flex; gap: 16px; }
.impact-stats div { display: flex; flex-direction: column; }
.impact-stats strong { font-size: 1.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.impact-stats small { font-size: 0.68rem; color: var(--text-dim); }

@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }

/* ===== WHY ===== */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.why-left { display: flex; flex-direction: column; gap: 20px; }
.why-right { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--border-hover); background: var(--card-hover); }
.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--gradient);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.why-item strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; margin: 0; }

@media (max-width: 900px) { .why-wrapper { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FINAL CTA ===== */
#cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,95,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { 
  position: relative; 
  z-index: 1; 
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 80px 40px;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.cta-content > p { font-size: 1.05rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-note {
  margin-top: 16px !important;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { display: inline-flex; margin-bottom: 12px; }
.footer-brand .logo-img { width: 40px; height: 40px; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--border-hover); color: var(--text); background: var(--card-hover); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); padding: 3px 0; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="400"] { transition-delay: 0.4s; }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 600px) {
  .mu-diagnosis-v2, .mu-diagnosis-v3 { padding: 10px; }
  .roadmap-v2, .mu-roadmap-elite { width: 140px; }
  .mu-quickwin-v2, .mu-quickwin-v3 { width: 120px; height: 80px; }
  .mu-session-v2 { width: 110px; height: 85px; }
  .mu-autopsy-v2 { padding: 15px; }
  .autopsy-funnel { width: 90px; }
  .mu-gap-v2 { padding: 15px; gap: 8px; }
  .g-bar { width: 18px; }
  .rla-pricing-block { padding: 40px 20px; }
}

/* TIGHTEN FLOW */
#how-it-works { margin-top: 0; position: relative; z-index: 10; }

/* ===== HERO ADDITIONS ===== */
.founder-quote {
  border-left: 3px solid var(--accent-1);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(91,95,255,0.05);
  border-radius: 0 8px 8px 0;
}
.founder-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 8px;
}
.founder-quote cite {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat strong {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-stats-row { gap: 16px; }
  .hero-stat-divider { display: none; }
}

/* ===== PROBLEM (3-col) ===== */
#problem .problem-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { #problem .problem-grid { grid-template-columns: 1fr; } }
.problem-bold-statement {
  margin-top: 56px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.problem-bold-statement p {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

/* ===== REFRAME SECTION ===== */
#reframe { background: var(--bg-2); }
.reframe-body {
  max-width: 680px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reframe-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.revenue-gap-card {
  max-width: 680px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, rgba(91,95,255,0.07), rgba(0,194,255,0.04));
  border: 1px solid rgba(91,95,255,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.revenue-gap-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.revenue-gap-card strong { color: var(--text); font-weight: 700; }
.reframe-bold {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.reframe-bold p {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

/* ===== FOUNDER STORY ===== */
#about { background: var(--bg); }
.founder-story {
  max-width: 720px;
  margin: 0 auto;
}
.founder-story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.founder-story-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.founder-closing {
  font-family: 'Satoshi', 'Inter', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  margin-bottom: 36px !important;
  letter-spacing: -0.02em;
}
.founder-credits {
  display: flex;
  gap: 48px;
  margin-bottom: 20px;
}
.founder-credit-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-credit-item strong {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.founder-credit-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.founder-subline {
  font-size: 0.9rem !important;
  color: var(--text-dim) !important;
  font-style: italic;
}

/* ===== AUXO INTELLIGENCE LAYER (6-col) ===== */
#services { background: var(--bg-2); }
.section-subheadline {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.7;
}
#services .solution-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { #services .solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { #services .solution-grid { grid-template-columns: 1fr; } }
.auxo-bold-line {
  margin-top: 64px;
  text-align: center;
  padding: 40px;
  background: rgba(91,95,255,0.05);
  border: 1px solid rgba(91,95,255,0.15);
  border-radius: var(--radius-lg);
}
.auxo-bold-line p {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  line-height: 1.6;
}
.auxo-bold-line strong { color: var(--text); }

/* ===== HOW IT WORKS ADDITIONS ===== */
.ps-phase-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ps-emotional {
  font-size: 0.92rem !important;
  color: var(--accent-1) !important;
  font-style: italic;
  margin-top: 12px !important;
}
.how-it-works-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.how-it-works-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== OFFER STACK ===== */
.offer-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}
.offer-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  transition: var(--transition);
  position: relative;
}
.offer-card:hover {
  border-color: rgba(91,95,255,0.3);
  background: rgba(255,255,255,0.04);
}
.offer-card--featured {
  background: linear-gradient(135deg, rgba(91,95,255,0.07), rgba(0,194,255,0.03));
  border-color: rgba(91,95,255,0.3);
  box-shadow: 0 0 60px rgba(91,95,255,0.08);
}
.offer-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--gradient);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.offer-num-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.offer-num {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.offer-timeline-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.2);
  padding: 3px 12px;
  border-radius: 100px;
}
.offer-title {
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  margin-bottom: 8px !important;
}
.offer-purpose {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 16px !important;
}
.offer-price {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.offer-per {
  font-size: 1.2rem;
  font-weight: 600;
}
.offer-price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.offer-card-header { margin-bottom: 36px; }
.offer-deliverables { margin-bottom: 28px; }
.offer-deliverables h4,
.offer-journey h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.offer-deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.offer-deliverables li::before {
  content: '→';
  color: var(--accent-1);
  flex-shrink: 0;
  margin-top: 1px;
}
.offer-value-line {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.offer-value-line strong { color: var(--text); }
.offer-guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(34,211,165,0.05);
  border: 1px solid rgba(34,211,165,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.guarantee-icon {
  color: #22D3A5;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 700;
}
.offer-guarantee p {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.6;
}
.offer-journey { margin-top: 32px; }
.journey-step {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.journey-step:last-child { border-bottom: none; }
.journey-step strong { color: var(--text); }
.journey-step em { color: var(--accent-2); }

@media (max-width: 768px) { .offer-card { padding: 28px 20px; } }

/* ===== SOCIAL PROOF UPDATES ===== */
.proof-card--placeholder {
  border-style: dashed;
  opacity: 0.85;
  grid-column: 1 / -1;
  max-width: 600px;
}
.proof-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  padding: 48px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.proof-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof-stat-item strong {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-stat-item span {
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 160px;
}
.proof-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .proof-stats-bar { gap: 24px; padding: 32px 20px; }
  .proof-stat-divider { display: none; }
}

/* ===== FIT / WHO THIS IS FOR ===== */
#fit { background: var(--bg-2); }
.fit-body {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.fit-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.fit-col--yes { border-color: rgba(34,211,165,0.2); }
.fit-col--no  { border-color: rgba(255,95,87,0.15); }
.fit-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.fit-check { color: #22D3A5; font-weight: 700; flex-shrink: 0; }
.fit-cross  { color: #FF5F57; font-weight: 700; flex-shrink: 0; }
@media (max-width: 700px) { .fit-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ACCORDION ===== */
#faq { background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-1);
  flex-shrink: 0;
  transition: transform var(--transition);
}
details[open] .faq-question::after { transform: rotate(45deg); }
details[open] .faq-question { color: var(--accent-2); }
.faq-answer {
  padding: 0 0 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ===== FINAL CTA ADDITIONS ===== */
.trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-signals span {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.trust-dot { opacity: 0.4; }

/* ===== FOOTER ADDITIONS ===== */
.footer-email {
  display: block;
  font-size: 0.88rem;
  color: var(--accent-2);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--text); }
.footer-mission {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
}

/* =====================
   MOBILE OPTIMISATION
   ===================== */

/* Global overflow fix — nothing bleeds off screen */

html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {

  /* CONTAINER */
  .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }

  /* NAV */
  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  /* HERO */
  .hero-container {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 48px;
  }

  .hero-content {
    width: 100%;
    text-align: left;
  }

  .hero-tag {
    font-size: 11px;
    word-break: break-word;
    white-space: normal;
  }

  h1 {
    font-size: clamp(28px, 7vw, 48px);
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.6;
  }

  .founder-quote {
    text-align: left;
  }

  .cta-stacked {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-stacked a {
    width: 100%;
    text-align: center;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-stat-divider {
    display: none;
  }

  /* HERO VISUAL — constrain on mobile */
  .hero-visual {
    width: 100%;
    overflow: hidden;
  }

  .intel-screen-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .intel-screen {
    transform: none;
    width: 100%;
  }

  .floating-intel-card {
    display: none;
  }

  /* SECTION HEADERS */
  .section-header h2 {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.25;
    word-break: break-word;
  }

  .section-header {
    text-align: center;
  }

  /* PROBLEM SECTION */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* REFRAME SECTION */
  .revenue-gap-card {
    padding: 24px 20px;
  }

  /* FOUNDER STORY */
  .founder-story {
    padding: 0;
  }

  .founder-credits {
    flex-direction: column;
    gap: 16px;
  }

  /* SOLUTION GRID — Auxo Intelligence Layer */
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* HOW IT WORKS */
  .process-timeline {
    gap: 32px;
  }

  .process-step {
    flex-direction: column;
    gap: 12px;
  }

  .ps-phase-badge {
    font-size: 12px;
    word-break: break-word;
    white-space: normal;
  }

  /* OFFER STACK */
  .offer-stack {
    flex-direction: column;
    gap: 24px;
  }

  .offer-card {
    width: 100%;
    max-width: 100%;
  }

  .offer-price {
    font-size: clamp(24px, 7vw, 36px);
  }

  .offer-value-line {
    flex-direction: column;
    gap: 8px;
  }

  /* PROOF SECTION */
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-stats-bar {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .proof-stat-divider {
    display: none;
  }

  /* FIT SECTION */
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* FAQ */
  .faq-question {
    font-size: 15px;
    line-height: 1.4;
    word-break: break-word;
  }

  /* FINAL CTA */
  #cta-final h2 {
    font-size: clamp(22px, 6vw, 36px);
    line-height: 1.3;
  }

  .trust-signals {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .trust-dot {
    display: none;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    font-size: 15px;
    padding: 14px 20px;
    white-space: normal;
    word-break: break-word;
  }

  .btn-xl {
    padding: 16px 24px;
    font-size: 16px;
  }

  /* SCREEN GRID inside hero widget */
  .screen-main-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .metrics-sidebar {
    flex-direction: row;
    gap: 12px;
  }

  /* General text safety */
  p, li, h1, h2, h3, h4, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

}

/* ===== BOOKING MODAL ===== */
.bm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.bm-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.bm-container {
  background: #0D1221;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  padding: 40px;
  position: relative;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 90vh;
  box-sizing: border-box;
}
.bm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.bm-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}

/* STEP INDICATOR */
.bm-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding-right: 40px;
}
.bm-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.bm-step.active { opacity: 1; }
.bm-step.done { opacity: 0.6; }
.bm-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.bm-step.active .bm-step-num {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}
.bm-step.done .bm-step-num {
  background: rgba(34,211,165,0.15);
  border-color: rgba(34,211,165,0.3);
  color: #22D3A5;
}
.bm-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.bm-step.active .bm-step-label { color: var(--text); }
.bm-step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 12px;
  min-width: 20px;
}

/* PANEL */
.bm-panel { display: none; }
.bm-panel.active { display: block; }
.bm-panel-header {
  margin-bottom: 28px;
}
.bm-panel-header h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bm-panel-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* FORM */
.bm-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}
.bm-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.bm-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.bm-field input,
.bm-field select,
.bm-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.bm-field input::placeholder,
.bm-field textarea::placeholder {
  color: var(--text-dim);
}
.bm-field input:focus,
.bm-field select:focus,
.bm-field textarea:focus {
  border-color: var(--accent-1);
}
.bm-field select {
  appearance: none;
  cursor: pointer;
}
.bm-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}
.bm-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  overflow: hidden;
}
.bm-radio {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.bm-radio:hover { border-color: rgba(91,95,255,0.3); }
.bm-radio input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--accent-1);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.bm-radio span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  display: inline;
}
.bm-field-error {
  font-size: 0.82rem;
  color: #FF5F57;
  min-height: 20px;
}
.bm-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* CONFIRMATION */
.bm-confirmation {
  text-align: center;
  padding: 20px 0;
}
.bm-confirm-icon {
  width: 64px;
  height: 64px;
  background: rgba(34,211,165,0.1);
  border: 1px solid rgba(34,211,165,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #22D3A5;
  margin: 0 auto 24px;
}
.bm-confirmation h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.bm-confirm-main {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.bm-confirm-what {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 28px;
}
.bm-confirm-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bm-confirm-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.bm-confirm-step:last-child { margin-bottom: 0; }
.bm-confirm-step span {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--accent-1);
  flex-shrink: 0;
  margin-top: 2px;
}
.bm-confirm-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.bm-close-final {
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
}

/* MODAL MOBILE */
@media (max-width: 640px) {
  .bm-container {
    padding: 24px 16px;
    border-radius: 16px;
    max-height: 95vh;
    overflow-x: hidden;
  }
  .bm-field-row {
    grid-template-columns: 1fr;
  }
  .bm-step-label { display: none; }
  .bm-steps { justify-content: center; gap: 8px; }
  .bm-confirm-what { padding: 20px 16px; }
  .bm-radio {
    padding: 10px 12px;
  }
  .bm-radio span {
    font-size: 0.82rem;
  }
}

