/* ── FLOATING TOOL ICONS ──────────────────────────────────── */
.floating-icons {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.float-icon {
  position: absolute;
  font-size: 28px;
  opacity: 0;
  filter: grayscale(0.3) blur(0.3px);
  animation: floatDrift linear infinite;
  user-select: none;
  will-change: transform, opacity;
}
@keyframes floatDrift {
  0%   { transform: translateY(0px)   rotate(0deg);   opacity: 0;    }
  8%   { opacity: var(--icon-opacity); }
  90%  { opacity: var(--icon-opacity); }
  100% { transform: translateY(-80px) rotate(var(--icon-rot)); opacity: 0; }
}

/* ── FOUNDER ──────────────────────────────────────────────── */
.founder-section { background: var(--bg2); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 44px; align-items: center; }
.founder-img-wrap {
  width: 340px; height: 440px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(79,70,229,0.05) 100%);
  border: 1px solid var(--border); border-radius: 20px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.founder-img-wrap::before { content: ''; position: absolute; inset: 0; border-radius: 20px; background: radial-gradient(circle at 50% 40%, rgba(37,99,235,0.1) 0%, transparent 70%); }
.founder-placeholder { font-weight: 800; font-size: 96px; background: linear-gradient(135deg, rgba(37,99,235,0.4), rgba(79,70,229,0.3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -6px; position: relative; z-index: 1; }
.founder-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.founder-badge .badge-num   { font-weight: 800; font-size: 22px; line-height: 1; }
.founder-badge .badge-label { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 0 8px; }
.founder-name  { font-weight: 800; font-size: 36px; letter-spacing: -1.5px; margin-bottom: 4px; }
.founder-title { font-size: 13px; font-weight: 600; color: var(--accent-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.founder-bio   { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.founder-skills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.skill-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted2); font-weight: 500; }
.skill-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent2)); flex-shrink: 0; }
.founder-numbers { display: flex; gap: 32px; }
.fn-item .fn-num { font-weight: 800; font-size: 32px; letter-spacing: -2px; background: linear-gradient(135deg, var(--accent-light), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fn-item .fn-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── AUDIT / CTA ──────────────────────────────────────────── */
.audit-section { background: var(--bg); }
.audit-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(37,99,235,0.3); border-radius: 24px; padding: 48px; position: relative; overflow: hidden; box-shadow: 0 0 60px rgba(37,99,235,0.08); }
.audit-wrap::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%); pointer-events: none; border-radius: 50%; }
.audit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.audit-title { font-weight: 800; font-size: 38px; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.15; }
.audit-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.audit-perk  { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 12px; }
.audit-perk::before { content: '✓'; color: #34d399; flex-shrink: 0; margin-top: 1px; font-weight: 700; }

/* ── FORMS ────────────────────────────────────────────────── */
.audit-form { display: flex; flex-direction: column; gap: 16px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; padding: 12px 16px; outline: none; border-radius: 10px; transition: border-color 0.2s, box-shadow 0.2s; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-field textarea { resize: vertical; min-height: 90px; }
.field-error { font-size: 11px; color: #f87171; font-weight: 500; display: none; }
.form-field.has-error .field-error { display: block; }
.form-field.has-error input,
.form-field.has-error textarea { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.12); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 44px; align-items: start; }
.contact-info h2 { font-weight: 800; font-size: 36px; letter-spacing: -1.5px; margin-bottom: 16px; }
.contact-info p  { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item    { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); width: 80px; flex-shrink: 0; padding-top: 2px; }
.contact-item-value { font-size: 14px; color: var(--text); }
.contact-form-box { background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 40px; border-radius: 20px; }
.contact-form-box h3 { font-weight: 800; font-size: 22px; letter-spacing: -0.5px; margin-bottom: 6px; }
.contact-form-box p  { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.badge-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.badge { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); padding: 48px 60px; position: relative; z-index: 1; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--muted); margin-top: 12px; max-width: 240px; }
.footer-col h4  { font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; color: var(--muted2); }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ── FAB ──────────────────────────────────────────────────── */
.fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 50;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  padding: 14px 26px; border-radius: 100px; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
  animation: float 3s ease-in-out infinite;
  transition: box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
}
.fab.visible { opacity: 1; }
.fab:hover   { box-shadow: 0 12px 40px rgba(37,99,235,0.65); }

/* ── CASE CARD MOCKUPS ────────────────────────────────────── */
.case-mockup {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; margin-bottom: 20px; overflow: hidden;
  font-size: 11px;
}
.mock-header {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 10px; color: var(--muted); font-weight: 500;
}
.mock-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.r { background: #FF5F56; }
.mock-dot.y { background: #FFBD2E; }
.mock-dot.g { background: #27C93F; }
.mock-header span { margin-left: 4px; }
.mock-body { padding: 12px; display: flex; flex-direction: column; gap: 10px; }

/* Chat row for sales coach card */
.mock-chat-row { display: flex; }
.mock-chat-row.agent { justify-content: flex-start; }
.mock-chat-row.user  { justify-content: flex-end; }
.mock-bubble {
  font-size: 10px; padding: 6px 10px; border-radius: 10px; max-width: 75%;
  line-height: 1.5; color: var(--muted2);
}
.mock-chat-row.agent .mock-bubble { background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.2); border-radius: 3px 10px 10px 10px; }
.mock-chat-row.user  .mock-bubble { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px 3px 10px 10px; text-align: right; }
.mock-score-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; color: var(--muted);
}
.mock-score-bar span { white-space: nowrap; }
.mock-fill {
  flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px;
  position: relative; overflow: hidden;
}
.mock-fill::after {
  content: ''; position: absolute; inset: 0;
  width: var(--mw, 70%);
  background: linear-gradient(90deg, var(--accent-light), var(--accent2));
  border-radius: 3px; animation: fillBar 1.5s ease-out forwards;
  --target-width: var(--mw, 70%);
}
.mock-score-bar strong { font-size: 10px; font-weight: 700; color: var(--accent-light); }

/* Flow nodes for outreach card */
.mock-flow {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mock-node {
  font-size: 9px; font-weight: 600; text-align: center; line-height: 1.3;
  padding: 6px 8px; border-radius: 8px; white-space: nowrap;
  color: var(--muted2);
}
.mock-node.trigger { background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); }
.mock-node.sms     { background: rgba(52,211,153,0.1);  border: 1px solid rgba(52,211,153,0.25); }
.mock-node.ai      { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25); }
.mock-arrow { font-size: 10px; color: var(--muted); opacity: 0.5; }

/* Badges */
.mock-stat-row { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-badge {
  font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); white-space: nowrap;
}
.mock-badge.green  { color: #34d399; border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); }
.mock-badge.purple { color: var(--accent4); border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.08); }
.mock-badge.red    { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); }

/* Waveform for biometric card */
.mock-wave-row {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; height: 28px;
}
.mock-wave {
  width: 3px; background: rgba(167,139,250,0.5); border-radius: 3px;
  animation: retell-bar 1s ease-in-out infinite;
}
.mock-wave:nth-child(1) { height: 40%; animation-delay: 0.0s; }
.mock-wave:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.mock-wave:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.mock-wave:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.mock-wave:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.mock-wave:nth-child(6) { height: 90%; animation-delay: 0.5s; }
.mock-wave:nth-child(7) { height: 55%; animation-delay: 0.6s; }
.mock-wave:nth-child(8) { height: 75%; animation-delay: 0.7s; }
.mock-wave:nth-child(9) { height: 45%; animation-delay: 0.8s; }
.mock-wave:nth-child(10){ height: 85%; animation-delay: 0.9s; }
.mock-verify-row { display: flex; align-items: center; }
.mock-match {
  font-size: 10px; font-weight: 700; color: #34d399;
  background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2);
  padding: 4px 10px; border-radius: 8px;
}
.mock-match span { animation: pulse 1.5s infinite; display: inline-block; }

/* Dashboard KPIs for EdTech card */
.mock-dash-grid { display: flex; gap: 6px; }
.mock-kpi {
  flex: 1; text-align: center; padding: 6px 4px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.mock-kpi.green { border-color: rgba(52,211,153,0.2); background: rgba(52,211,153,0.06); }
.mock-kpi-num { font-weight: 800; font-size: 14px; color: var(--text); line-height: 1; }
.mock-kpi.green .mock-kpi-num { color: #34d399; }
.mock-kpi-label { font-size: 8px; color: var(--muted); letter-spacing: 0.05em; margin-top: 2px; }

/* ── HERO TWO-COLUMN LAYOUT ───────────────────────────────── */
/* Override hero alignment for two-column grid */
.hero { align-items: stretch; }
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }
.hero-left .hero-tag { margin-bottom: 28px; }
.hero-left h1 { margin-bottom: 24px; }
.hero-left .hero-sub { margin-bottom: 36px; }
.hero-left .hero-actions { margin-bottom: 44px; }

/* Inline stats below the CTA buttons */
.hero-stats-inline {
  display: flex; gap: 36px; align-items: flex-start;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-stats-inline .stat-item .num {
  font-weight: 800; font-size: 32px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; letter-spacing: -1.5px;
}
.hero-stats-inline .stat-item .label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; font-weight: 500;
}

/* RIGHT column */
.hero-right {
  position: relative; display: flex; flex-direction: column;
  gap: 20px; align-items: flex-end;
}

/* Photo card */
.hero-photo-card {
  width: 280px; height: 340px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative; align-self: flex-end;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.15);
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(79,70,229,0.05));
}
.hero-photo-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.hero-photo-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(5,5,6,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(52,211,153,0.4); border-radius: 100px;
  padding: 6px 14px; font-size: 11px; font-weight: 600; color: #34d399;
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 6px; height: 6px; background: #34d399; border-radius: 50%;
  box-shadow: 0 0 8px #34d399; animation: pulse 2s infinite; flex-shrink: 0;
}

/* Dashboard widget — overlapping the photo card */
.hero-dashboard {
  position: absolute; bottom: -16px; left: -20px;
  width: 240px;
  background: rgba(5,5,6,0.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(37,99,235,0.3); border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.dash-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.06);
  font-size: 11px; font-weight: 600; color: var(--muted2);
}
.dash-dot {
  width: 6px; height: 6px; background: #34d399; border-radius: 50%;
  box-shadow: 0 0 6px #34d399; animation: pulse 2s infinite; flex-shrink: 0;
}
.dash-live {
  margin-left: auto; font-size: 9px; color: #34d399; letter-spacing: 0.06em;
  font-weight: 700;
}
.dash-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.dash-row {
  display: grid; grid-template-columns: 1fr 60px 30px;
  align-items: center; gap: 8px;
  font-size: 10px; color: var(--muted);
}
.dash-bar {
  height: 3px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.dash-fill {
  height: 100%; border-radius: 4px;
  background: var(--c, var(--accent-light));
  width: 0; animation: fillBar 1.8s ease-out forwards;
  animation-delay: var(--d, 0s);
  --target-width: var(--w, 80%);
}
.dash-val { font-size: 10px; font-weight: 700; color: var(--text); text-align: right; }
.dash-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; border-top: 1px solid rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.04);
  font-size: 10px; font-weight: 600; color: var(--muted);
}
.dash-score {
  font-weight: 800; font-size: 14px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Metric pill — bottom right */
.hero-metric-pill {
  position: absolute; top: 32px; left: -32px;
  background: rgba(5,5,6,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(52,211,153,0.3); border-radius: 14px;
  padding: 12px 18px; display: flex; flex-direction: column;
  align-items: flex-start; gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 3;
}
.pill-num {
  font-weight: 800; font-size: 24px; letter-spacing: -1px;
  background: linear-gradient(135deg, #34d399, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.pill-label {
  font-size: 10px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.03em; white-space: nowrap;
}

/* Orbit rings — decorative, behind everything */
.hero-orbit {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px; z-index: 0; pointer-events: none;
}
.hero-orbit .orbit-ring { position: absolute; inset: 0; border: 1px dashed rgba(37,99,235,0.2); border-radius: 50%; animation: spin 20s linear infinite; }
.hero-orbit .orbit-ring:nth-child(2) { inset: 30px; animation-duration: 15s; animation-direction: reverse; border-color: rgba(79,70,229,0.15); }
.hero-orbit .orbit-dot { position: absolute; width: 5px; height: 5px; background: var(--accent-light); border-radius: 50%; top: -2.5px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 8px var(--accent-light); }

/* ── METRICS STRIP ────────────────────────────────────────── */
.metrics-strip {
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(79,70,229,0.04) 100%);
  border-top: 1px solid rgba(37,99,235,0.15);
  border-bottom: 1px solid rgba(37,99,235,0.15);
  padding: 0; position: relative; z-index: 1; overflow: hidden;
}
.metrics-strip::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.metrics-inner {
  max-width: 1200px; margin: 0 auto; padding: 52px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.metric-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 8px 24px; text-align: center;
  position: relative;
}
.metric-item + .metric-item::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(37,99,235,0.2);
}
.metric-big {
  font-weight: 800; font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -3px; line-height: 1;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label-strip {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4;
  text-align: center;
}
.metric-sub {
  font-size: 10px; color: var(--muted); opacity: 0.7; letter-spacing: 0.03em;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav                    { padding: 0 24px; }
  .nav-links             { display: none; }
  .hamburger             { display: flex; }
  .mobile-nav            { display: flex; }
  .hero                  { padding: calc(var(--nav-h) + 32px) 24px 52px; }
  .hero h1               { font-size: 40px; letter-spacing: -1.5px; }
  .hero-stats            { display: none; }
  .hero-orbit            { display: none; }
  .hero-inner            { grid-template-columns: 1fr; gap: 48px; }
  .hero-right            { align-items: center; min-height: 320px; }
  .hero-photo-card       { width: 220px; height: 270px; align-self: center; }
  .hero-dashboard        { bottom: -12px; left: -8px; width: 200px; }
  .hero-metric-pill      { top: 16px; left: -4px; }
  .hero-stats-inline     { gap: 24px; }
  .metrics-inner         { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding: 40px 24px; }
  .metric-item + .metric-item:nth-child(3)::before { display: none; }
  .section-inner         { padding: 48px 24px; }
  .problem-grid          { grid-template-columns: 1fr; }
  .service-card          { grid-template-columns: 1fr; }
  .service-num           { font-size: 28px; }
  .service-result        { text-align: left; }
  .hiw-steps             { grid-template-columns: 1fr; gap: 36px; }
  .cases-grid            { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .founder-grid          { grid-template-columns: 1fr; gap: 40px; }
  .founder-img-wrap      { width: 100%; }
  .audit-inner           { grid-template-columns: 1fr; gap: 40px; }
  .audit-wrap            { padding: 28px 20px; }
  .stack-grid            { grid-template-columns: repeat(2, 1fr); }
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner          { grid-template-columns: 1fr 1fr; }
  .fab                   { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 12px; }
  .form-row              { grid-template-columns: 1fr; }
  .terminal-body         { grid-template-columns: 1fr; }
  .demo-agent            { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 24px; }
}

@media (max-width: 480px) {
  .hero h1     { font-size: 32px; }
  .audit-title { font-size: 28px; }
  .footer-inner{ grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav                    { padding: 0 24px; }
  .nav-links             { display: none; }
  .hamburger             { display: flex; }
  .mobile-nav            { display: flex; }
  .hero                  { padding: calc(var(--nav-h) + 32px) 24px 52px; }
  .hero h1               { font-size: 40px; letter-spacing: -1.5px; }
  .hero-stats            { display: none; }
  .hero-orbit            { display: none; }
  .hero-inner            { grid-template-columns: 1fr; gap: 48px; }
  .hero-right            { align-items: center; min-height: 320px; }
  .hero-photo-card       { width: 220px; height: 270px; align-self: center; }
  .hero-dashboard        { bottom: -12px; left: -8px; width: 200px; }
  .hero-metric-pill      { top: 16px; left: -4px; }
  .hero-stats-inline     { gap: 24px; }
  .metrics-inner         { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding: 40px 24px; }
  .section-inner         { padding: 48px 24px; }
  .problem-grid          { grid-template-columns: 1fr; }
  .service-card          { grid-template-columns: 1fr; }
  .service-num           { font-size: 28px; }
  .service-result        { text-align: left; }
  .hiw-steps             { grid-template-columns: 1fr; gap: 36px; }
  .cases-grid            { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .founder-grid          { grid-template-columns: 1fr; gap: 40px; }
  .founder-img-wrap      { width: 100%; }
  .audit-inner           { grid-template-columns: 1fr; gap: 40px; }
  .audit-wrap            { padding: 28px 20px; }
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner          { grid-template-columns: 1fr 1fr; }
  .fab                   { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 12px; }
  .form-row              { grid-template-columns: 1fr; }
  .terminal-body         { grid-template-columns: 1fr; }
  .demo-agent            { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 24px; }
}

@media (max-width: 480px) {
  .hero h1     { font-size: 32px; }
  .audit-title { font-size: 28px; }
  .footer-inner{ grid-template-columns: 1fr; }
  .metrics-inner { grid-template-columns: 1fr 1fr; }
}

/* ── HERO TWO-COLUMN LAYOUT ───────────────────────────────── */
.hero { align-items: stretch; }
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }
.hero-left .hero-tag { margin-bottom: 28px; }
.hero-left h1 { margin-bottom: 24px; }
.hero-left .hero-sub { margin-bottom: 36px; }
.hero-left .hero-actions { margin-bottom: 44px; }

/* Inline stats below the CTA buttons */
.hero-stats-inline {
  display: flex; gap: 36px; align-items: flex-start;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-stats-inline .stat-item .num {
  font-weight: 800; font-size: 32px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; letter-spacing: -1.5px;
}
.hero-stats-inline .stat-item .label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; font-weight: 500;
}

/* RIGHT column */
.hero-right {
  position: relative; display: flex; flex-direction: column;
  gap: 20px; align-items: flex-end;
}

/* Photo card */
.hero-photo-card {
  width: 280px; height: 340px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative; align-self: flex-end;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.15);
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(79,70,229,0.05));
}
.hero-photo-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.hero-photo-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(5,5,6,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(52,211,153,0.4); border-radius: 100px;
  padding: 6px 14px; font-size: 11px; font-weight: 600; color: #34d399;
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 6px; height: 6px; background: #34d399; border-radius: 50%;
  box-shadow: 0 0 8px #34d399; animation: pulse 2s infinite; flex-shrink: 0;
}

/* Dashboard widget overlapping photo card */
.hero-dashboard {
  position: absolute; bottom: -16px; left: -20px;
  width: 240px;
  background: rgba(5,5,6,0.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(37,99,235,0.3); border-radius: 16px;
  overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.dash-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.06);
  font-size: 11px; font-weight: 600; color: var(--muted2);
}
.dash-dot {
  width: 6px; height: 6px; background: #34d399; border-radius: 50%;
  box-shadow: 0 0 6px #34d399; animation: pulse 2s infinite; flex-shrink: 0;
}
.dash-live {
  margin-left: auto; font-size: 9px; color: #34d399; letter-spacing: 0.06em;
  font-weight: 700;
}
.dash-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.dash-row {
  display: grid; grid-template-columns: 1fr 60px 30px;
  align-items: center; gap: 8px;
  font-size: 10px; color: var(--muted);
}
.dash-bar {
  height: 3px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.dash-fill {
  height: 100%; border-radius: 4px;
  background: var(--c, var(--accent-light));
  width: 0; animation: fillBar 1.8s ease-out forwards;
  --target-width: var(--w, 80%);
}
.dash-val { font-size: 10px; font-weight: 700; color: var(--text); text-align: right; }
.dash-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; border-top: 1px solid rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.04);
  font-size: 10px; font-weight: 600; color: var(--muted);
}
.dash-score {
  font-weight: 800; font-size: 14px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Metric pill */
.hero-metric-pill {
  position: absolute; top: 32px; left: -32px;
  background: rgba(5,5,6,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(52,211,153,0.3); border-radius: 14px;
  padding: 12px 18px; display: flex; flex-direction: column;
  align-items: flex-start; gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 3;
}
.pill-num {
  font-weight: 800; font-size: 24px; letter-spacing: -1px;
  background: linear-gradient(135deg, #34d399, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.pill-label {
  font-size: 10px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.03em; white-space: nowrap;
}

/* Orbit rings inside hero-right */
.hero-orbit {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px; z-index: 0; pointer-events: none;
}
.hero-orbit .orbit-ring { position: absolute; inset: 0; border: 1px dashed rgba(37,99,235,0.2); border-radius: 50%; animation: spin 20s linear infinite; }
.hero-orbit .orbit-ring:nth-child(2) { inset: 30px; animation-duration: 15s; animation-direction: reverse; border-color: rgba(79,70,229,0.15); }
.hero-orbit .orbit-dot { position: absolute; width: 5px; height: 5px; background: var(--accent-light); border-radius: 50%; top: -2.5px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 8px var(--accent-light); }

/* ── METRICS STRIP ────────────────────────────────────────── */
.metrics-strip {
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(79,70,229,0.04) 100%);
  border-top: 1px solid rgba(37,99,235,0.15);
  border-bottom: 1px solid rgba(37,99,235,0.15);
  position: relative; z-index: 1; overflow: hidden;
}
.metrics-strip::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.metrics-inner {
  max-width: 1200px; margin: 0 auto; padding: 52px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.metric-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 8px 24px; text-align: center;
  position: relative;
}
.metric-item + .metric-item::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(37,99,235,0.2);
}
.metric-big {
  font-weight: 800; font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -3px; line-height: 1;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label-strip {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4;
  text-align: center;
}
.metric-sub {
  font-size: 10px; color: var(--muted); opacity: 0.7; letter-spacing: 0.03em;
}

/* ── MOCK FLOW & REMAINING MOCKUP ELEMENTS ───────────────── */
.mock-flow {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mock-node {
  font-size: 9px; font-weight: 600; text-align: center; line-height: 1.3;
  padding: 6px 8px; border-radius: 8px; white-space: nowrap;
  color: var(--muted2);
}
.mock-node.trigger { background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); }
.mock-node.sms     { background: rgba(52,211,153,0.1);  border: 1px solid rgba(52,211,153,0.25); }
.mock-node.ai      { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25); }
.mock-arrow { font-size: 10px; color: var(--muted); opacity: 0.5; }
.mock-stat-row { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-badge {
  font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); white-space: nowrap;
}
.mock-badge.green  { color: #34d399; border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); }
.mock-badge.purple { color: var(--accent4); border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.08); }
.mock-badge.red    { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); }
.mock-wave-row {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; height: 28px;
}
.mock-wave {
  width: 3px; background: rgba(167,139,250,0.5); border-radius: 3px;
  animation: retell-bar 1s ease-in-out infinite;
}
.mock-wave:nth-child(1) { height: 40%; animation-delay: 0.0s; }
.mock-wave:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.mock-wave:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.mock-wave:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.mock-wave:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.mock-wave:nth-child(6) { height: 90%; animation-delay: 0.5s; }
.mock-wave:nth-child(7) { height: 55%; animation-delay: 0.6s; }
.mock-wave:nth-child(8) { height: 75%; animation-delay: 0.7s; }
.mock-wave:nth-child(9) { height: 45%; animation-delay: 0.8s; }
.mock-wave:nth-child(10){ height: 85%; animation-delay: 0.9s; }
.mock-verify-row { display: flex; align-items: center; }
.mock-match {
  font-size: 10px; font-weight: 700; color: #34d399;
  background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2);
  padding: 4px 10px; border-radius: 8px;
}
.mock-dash-grid { display: flex; gap: 6px; }
.mock-kpi {
  flex: 1; text-align: center; padding: 6px 4px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}

/* ── MOCK KPI (overflow from style.css) ──────────────────── */
.mock-kpi.green { border-color: rgba(52,211,153,0.2); background: rgba(52,211,153,0.06); }
.mock-kpi-num { font-weight:800; font-size:14px; color:var(--text); line-height:1; }
.mock-kpi.green .mock-kpi-num { color:#34d399; }
.mock-kpi-label { font-size:8px; color:var(--muted); letter-spacing:.05em; margin-top:2px; }

/* ── HERO TWO-COLUMN ─────────────────────────────────────── */
.hero { align-items: stretch; }
.hero-inner { max-width:1200px; width:100%; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.hero-left { display:flex; flex-direction:column; gap:0; }
.hero-left .hero-tag { margin-bottom:28px; }
.hero-left h1 { margin-bottom:24px; }
.hero-left .hero-sub { margin-bottom:36px; }
.hero-left .hero-actions { margin-bottom:44px; }
.hero-stats-inline { display:flex; gap:36px; align-items:flex-start; padding-top:28px; border-top:1px solid var(--border); }
.hero-stats-inline .stat-item .num { font-weight:800; font-size:32px; background:linear-gradient(135deg,var(--accent-light),var(--accent2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; letter-spacing:-1.5px; }
.hero-stats-inline .stat-item .label { font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-top:4px; font-weight:500; }
.hero-right { position:relative; display:flex; flex-direction:column; gap:20px; align-items:flex-end; }
.hero-photo-card { width:280px; height:340px; border-radius:24px; overflow:hidden; border:1px solid var(--border); position:relative; align-self:flex-end; box-shadow:0 30px 60px rgba(0,0,0,0.5),0 0 0 1px rgba(37,99,235,0.15); background:linear-gradient(135deg,rgba(37,99,235,0.08),rgba(79,70,229,0.05)); }
.hero-photo-card img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.hero-photo-badge { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); background:rgba(5,5,6,0.85); backdrop-filter:blur(12px); border:1px solid rgba(52,211,153,0.4); border-radius:100px; padding:6px 14px; font-size:11px; font-weight:600; color:#34d399; white-space:nowrap; display:flex; align-items:center; gap:8px; letter-spacing:.04em; }
.badge-dot { width:6px; height:6px; background:#34d399; border-radius:50%; box-shadow:0 0 8px #34d399; animation:pulse 2s infinite; flex-shrink:0; }
.hero-dashboard { position:absolute; bottom:-16px; left:-20px; width:240px; background:rgba(5,5,6,0.92); backdrop-filter:blur(20px); border:1px solid rgba(37,99,235,0.3); border-radius:16px; overflow:hidden; box-shadow:0 20px 40px rgba(0,0,0,0.5); z-index:2; }
.dash-header { display:flex; align-items:center; gap:8px; padding:10px 14px; border-bottom:1px solid rgba(37,99,235,0.2); background:rgba(37,99,235,0.06); font-size:11px; font-weight:600; color:var(--muted2); }
.dash-dot { width:6px; height:6px; background:#34d399; border-radius:50%; box-shadow:0 0 6px #34d399; animation:pulse 2s infinite; flex-shrink:0; }
.dash-live { margin-left:auto; font-size:9px; color:#34d399; letter-spacing:.06em; font-weight:700; }
.dash-body { padding:12px 14px; display:flex; flex-direction:column; gap:10px; }
.dash-row { display:grid; grid-template-columns:1fr 60px 30px; align-items:center; gap:8px; font-size:10px; color:var(--muted); }
.dash-bar { height:3px; background:rgba(255,255,255,0.06); border-radius:4px; overflow:hidden; }
.dash-fill { height:100%; border-radius:4px; background:var(--c,var(--accent-light)); width:0; animation:fillBar 1.8s ease-out forwards; --target-width:var(--w,80%); }
.dash-val { font-size:10px; font-weight:700; color:var(--text); text-align:right; }
.dash-footer { display:flex; justify-content:space-between; align-items:center; padding:8px 14px; border-top:1px solid rgba(37,99,235,0.2); background:rgba(37,99,235,0.04); font-size:10px; font-weight:600; color:var(--muted); }
.dash-score { font-weight:800; font-size:14px; background:linear-gradient(135deg,var(--accent-light),var(--accent2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-metric-pill { position:absolute; top:32px; left:-32px; background:rgba(5,5,6,0.9); backdrop-filter:blur(16px); border:1px solid rgba(52,211,153,0.3); border-radius:14px; padding:12px 18px; display:flex; flex-direction:column; align-items:flex-start; gap:2px; box-shadow:0 12px 32px rgba(0,0,0,0.4); z-index:3; }
.pill-num { font-weight:800; font-size:24px; letter-spacing:-1px; background:linear-gradient(135deg,#34d399,#059669); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.pill-label { font-size:10px; font-weight:500; color:var(--muted); letter-spacing:.03em; white-space:nowrap; }
.hero-orbit { position:absolute; right:-40px; top:50%; transform:translateY(-50%); width:200px; height:200px; z-index:0; pointer-events:none; }
.hero-orbit .orbit-ring { position:absolute; inset:0; border:1px dashed rgba(37,99,235,0.2); border-radius:50%; animation:spin 20s linear infinite; }
.hero-orbit .orbit-ring:nth-child(2) { inset:30px; animation-duration:15s; animation-direction:reverse; border-color:rgba(79,70,229,0.15); }
.hero-orbit .orbit-dot { position:absolute; width:5px; height:5px; background:var(--accent-light); border-radius:50%; top:-2.5px; left:50%; transform:translateX(-50%); box-shadow:0 0 8px var(--accent-light); }

/* ── METRICS STRIP ───────────────────────────────────────── */
.metrics-strip { background:linear-gradient(135deg,rgba(37,99,235,0.06) 0%,rgba(79,70,229,0.04) 100%); border-top:1px solid rgba(37,99,235,0.15); border-bottom:1px solid rgba(37,99,235,0.15); position:relative; z-index:1; overflow:hidden; }
.metrics-strip::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:200px; background:radial-gradient(ellipse,rgba(37,99,235,0.08) 0%,transparent 70%); pointer-events:none; }
.metrics-inner { max-width:1200px; margin:0 auto; padding:52px 60px; display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.metric-item { display:flex; flex-direction:column; align-items:center; gap:8px; padding:8px 24px; text-align:center; position:relative; }
.metric-item+.metric-item::before { content:''; position:absolute; left:0; top:10%; bottom:10%; width:1px; background:rgba(37,99,235,0.2); }
.metric-big { font-weight:800; font-size:clamp(40px,5vw,64px); letter-spacing:-3px; line-height:1; background:linear-gradient(135deg,var(--accent-light) 0%,var(--accent) 50%,var(--accent2) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.metric-label-strip { font-size:12px; font-weight:600; color:var(--muted); letter-spacing:.05em; text-transform:uppercase; line-height:1.4; text-align:center; }
.metric-sub { font-size:10px; color:var(--muted); opacity:.7; letter-spacing:.03em; }
