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

:root {
  --bg: #080d1a;
  --bg2: #0d1424;
  --bg3: #111a2e;
  --surface: #162038;
  --border: #1e2d47;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);
  --violet: #a78bfa;
  --violet-dim: rgba(167, 139, 250, 0.12);
  --text: #e8edf5;
  --text-muted: #6b7a99;
  --text-dim: #3d4f6b;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.brand-ai {
  color: var(--cyan);
  margin-left: 2px;
}

.nav-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* === HERO === */
.hero {
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.headline-accent {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); max-width: 90px; line-height: 1.3; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* === DASHBOARD MOCKUP === */
.dashboard-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.06);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.dash-dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.dash-title { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-display); }

.dash-badge {
  font-size: 0.62rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #28c840;
  background: rgba(40,200,64,0.12);
  border: 1px solid rgba(40,200,64,0.2);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.06em;
}

.dash-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
}

/* SCORE RING */
.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.35));
}

.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.score-denom {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.score-label {
  text-align: center;
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* SUB SCORES */
.dash-right { display: flex; flex-direction: column; justify-content: center; gap: 0.65rem; }

.sub-score-row {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  align-items: center;
  gap: 0.5rem;
}

.sub-label { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-display); }

.sub-bar {
  height: 4px;
  background: var(--bg2);
  border-radius: 2px;
  overflow: hidden;
}

.sub-fill {
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 0 6px currentColor;
}

.sub-val {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
}

/* RECOMMENDATION BOX */
.recommendation-box {
  margin-top: 0.75rem;
  padding: 0.6rem 0.8rem;
  background: var(--violet-dim);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.rec-tag {
  font-size: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--violet);
}

.rec-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.rec-sub { font-size: 0.65rem; color: var(--text-muted); }

/* === AUDIT PROCESS === */
.audit-process {
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}

.audit-process .section-label,
.audit-process .section-title { text-align: center; }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 3rem auto 0;
}

.step-card {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.step-icon {
  margin: 0 auto 1.25rem;
  width: 60px;
  height: 60px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-top: 30px;
  flex-shrink: 0;
}

/* === SOLUTIONS === */
.solutions {
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.sol-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.sol-card:hover { border-color: rgba(0,212,255,0.3); }

.sol-card--featured {
  border-color: rgba(167,139,250,0.4);
  background: linear-gradient(135deg, var(--surface), rgba(167,139,250,0.04));
}

.sol-card--featured:hover { border-color: var(--violet); }

.sol-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), #8b5cf6);
  color: white;
  font-size: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.sol-icon {
  margin-bottom: 1.25rem;
}

.sol-tag {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.sol-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sol-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.sol-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sol-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.sol-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
}

/* === OUTCOMES === */
.outcomes {
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}

.outcomes .section-label,
.outcomes .section-title { text-align: center; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: 0 auto 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-item {
  padding: 2rem;
  background: var(--surface);
  text-align: center;
}

.outcome-metric {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0,212,255,0.2);
}

.outcome-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.feature-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(167,139,250,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-copy { font-size: 0.8rem; color: var(--text-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-dashboard { display: none; }
  .solution-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 2.5rem; }
  .step-connector { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .audit-process, .solutions, .outcomes, .closing { padding: 3rem 1.5rem; }
  .navbar { padding: 1rem 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .feature-bullets { grid-template-columns: 1fr; }
}
