/* ============================================================
   PRIMEVITAS AI — styles.css
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #080810;
  color: #F2F2FF;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS VARIABLES --- */
:root {
  --bg:        #080810;
  --bg-card:   #0E0E1A;
  --bg-high:   #141428;
  --violet:    #7B5CF5;
  --cyan:      #00D4FF;
  --green:     #10B981;
  --amber:     #F59E0B;
  --red:       #EF4444;
  --text-1:    #F2F2FF;
  --text-2:    #9090B0;
  --text-3:    #55557A;
  --border:    rgba(255,255,255,0.07);
  --border-accent: rgba(123,92,245,0.4);
  --glow-v:    0 0 80px rgba(123,92,245,0.3);
  --glow-c:    0 0 60px rgba(0,212,255,0.2);
  --radius:    16px;
  --transition: cubic-bezier(0.16,1,0.3,1);
}

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(42px, 7vw, 96px); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 16px; font-weight: 700; }
.mono { font-family: 'JetBrains Mono', monospace; }
.gradient-text {
  background: linear-gradient(135deg, #7B5CF5, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

/* --- LAYOUT --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
@media(max-width:768px){ .section { padding: 72px 0; } }
.section-header { text-align: center; margin-bottom: 72px; }
.section-sub { color: var(--text-2); font-size: 18px; max-width: 600px; margin: 20px auto 0; line-height: 1.7; }

/* --- GLASS CARD --- */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  transition: transform 200ms var(--transition), border-color 200ms, box-shadow 200ms;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123,92,245,0.3);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 32px rgba(123,92,245,0.1);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #7B5CF5, #6040E0);
  color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer;
  transition: all 200ms var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-1px); box-shadow: var(--glow-v); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.4);
  font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; cursor: pointer;
  transition: all 200ms var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(0,212,255,0.08); border-color: var(--cyan); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 18px; }
.btn-full { width: 100%; margin-top: 24px; }

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--transition), transform 600ms var(--transition);
  transition-delay: var(--delay, 0ms);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 200ms;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.nav-logo-text { font-size: 18px; font-weight: 800; color: var(--text-1); }
.nav-logo-ai { color: var(--violet); }
.nav-links { display: flex; gap: 32px; margin: 0 auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color 200ms; }
.nav-links a:hover { color: var(--text-1); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all 200ms; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(8,8,16,0.98); border-top: 1px solid var(--border);
  padding: 8px 24px 24px;
}
.nav-mobile a { padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--border); transition: color 200ms; }
.nav-mobile a:last-child { border-bottom: none; margin-top: 16px; }
.nav-mobile a:hover { color: var(--text-1); }
.nav-mobile.open { display: flex; }

@media(max-width:900px){
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0;
}
.hero-orb-left { background: rgba(123,92,245,0.15); top: -100px; left: -100px; }
.hero-orb-right { background: rgba(0,212,255,0.10); top: 0; right: -200px; }
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-inner {
  flex: 1; display: flex; align-items: center; gap: 64px;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px 60px;
  position: relative; z-index: 2;
}
.hero-content { flex: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(123,92,245,0.5);
  background: rgba(123,92,245,0.1);
  font-size: 13px; font-weight: 500; color: var(--text-2);
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(123,92,245,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(123,92,245,0); }
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.hero-headline { margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--text-2); margin-bottom: 36px; max-width: 520px; }
.hero-sub strong { color: var(--cyan); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { font-size: 13px; color: var(--text-3); }
.hero-partner-badges { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.partner-badge-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.partner-badge-link { display: inline-flex; align-items: center; opacity: 0.85; transition: opacity 0.2s; }
.partner-badge-link:hover { opacity: 1; }
.partner-badge-img { height: 120px; width: auto; background: #000; border-radius: 10px; padding: 12px 24px; }
.nvidia-badge-text { font-size: 13px; color: #76b900; font-weight: 600; letter-spacing: 0.04em; border: 1px solid #76b90055; border-radius: 4px; padding: 3px 10px; }
.footer-partner-badges { margin-bottom: 12px; display: flex; gap: 12px; align-items: center; }
.footer-partner-badge-img { height: 28px; width: auto; opacity: 0.85; transition: opacity 0.2s; background: #000; border-radius: 4px; padding: 3px 6px; }
.footer-partner-badge-img:hover { opacity: 1; }
.footer-badge-bar { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 40px; padding: 36px 0 20px; display: flex; justify-content: center; align-items: center; }
.footer-badge-bar-img { height: 100px; width: auto; background: #000; border-radius: 12px; padding: 14px 28px; opacity: 0.9; transition: opacity 0.2s; }
.footer-badge-bar-img:hover { opacity: 1; }

/* Hero Visual */
.hero-visual { flex: 0 0 400px; display: flex; flex-direction: column; gap: 16px; }
.hero-card { padding: 20px; }
.hero-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); animation: dotPulse 1s ease-in-out infinite; }
.hero-card-title { font-size: 13px; font-weight: 500; color: var(--text-2); font-family: 'JetBrains Mono', monospace; }
.hero-card-agents { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.agent-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.agent-name { color: var(--text-2); }
.agent-status { font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 2px 8px; border-radius: 4px; }
.agent-status.checking { background: rgba(245,158,11,0.15); color: var(--amber); }
.agent-status.pass { background: rgba(16,185,129,0.15); color: var(--green); }
.hero-card-result { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.result-badge { font-size: 14px; font-weight: 700; color: var(--green); }
.result-badge.pass { color: var(--green); }
.result-time { font-size: 13px; color: var(--cyan); }
.hero-code-card { padding: 18px 20px; }
.hero-result-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.hero-result-check { font-size: 16px; color: var(--green); font-weight: 900; }
.hero-result-title { font-size: 14px; font-weight: 600; color: var(--text-1); flex: 1; }
.hero-result-ms { font-size: 12px; color: var(--cyan); }
.hero-result-verdict { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-verdict-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-verdict-pass { font-size: 15px; font-weight: 900; color: var(--green); letter-spacing: 0.05em; }
.hero-verdict-conf { font-size: 11px; color: var(--text-2); margin-left: auto; }
.hero-result-detail { font-size: 11px; color: var(--text-3); margin: 0; line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 10px; }

/* Marquee */
.marquee-wrap { position: relative; z-index: 2; overflow: hidden; padding: 18px 0; border-top: 1px solid var(--border); margin-top: auto; }
.marquee-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--text-3); text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.marquee-dot { color: var(--violet) !important; font-size: 10px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media(max-width:1024px){
  .hero-inner { flex-direction: column; padding-top: 60px; }
  .hero-visual { flex: none; width: 100%; max-width: 480px; align-self: center; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { text-align: center; }
  .hero-badge { align-self: center; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: #0E0E1A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 0; }
.stat-item { text-align: center; padding: 0 32px; }
.stat-number { font-size: clamp(36px, 4vw, 52px); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.stat-sub { font-size: 12px; color: var(--text-3); }
.stat-divider { width: 1px; height: 64px; background: var(--border); }
@media(max-width:768px){ .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .stat-divider { display: none; } .stat-item { padding: 0; } }
@media(max-width:480px){ .stats-inner { grid-template-columns: 1fr; } }

/* ============================================================
   INDUSTRY GRID
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  overflow: hidden; display: flex; flex-direction: column;
  padding: 0;
}
.industry-card-wide { grid-column: span 3; flex-direction: row; }
.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.industry-card-wide .card-image { width: 400px; height: auto; min-height: 220px; }
.card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.badge-live { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.badge-soon { background: rgba(255,255,255,0.06); color: var(--text-3); border: 1px solid var(--border); }
.card-content h3 { font-size: 18px; margin-bottom: 10px; }
.card-content p { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.card-link { font-size: 14px; font-weight: 600; color: var(--violet); transition: color 200ms; margin-top: auto; }
.card-link:hover { color: var(--cyan); }

@media(max-width:1024px){ .industry-grid { grid-template-columns: repeat(2,1fr); } .industry-card-wide { grid-column: span 2; flex-direction: column; } .industry-card-wide .card-image { width: 100%; height: 200px; } }
@media(max-width:640px){ .industry-grid { grid-template-columns: 1fr; } .industry-card-wide { grid-column: span 1; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: #0A0A14; }
.steps-row { display: flex; align-items: flex-start; gap: 0; margin-bottom: 64px; }
.step-card { flex: 1; padding: 32px; }
.step-arrow { font-size: 24px; color: var(--violet); padding: 40px 16px 0; flex-shrink: 0; }
.step-number { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--violet); font-family: 'JetBrains Mono', monospace; margin-bottom: 12px; }
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* Terminal */
.terminal-card { overflow: hidden; }

/* ============================================================
   VERIFY DEMO PANEL
   ============================================================ */
.verify-demo { overflow: hidden; position: relative; }

/* Scanlines overlay */
.verify-demo::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  border-radius: var(--radius);
  z-index: 5;
}

.verify-header {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}
.verify-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-3); text-transform: uppercase; margin-left: 8px;
}
.verify-body {
  display: grid; grid-template-columns: 1fr 48px 1fr;
}
.verify-input-panel {
  padding: 28px; border-right: 1px solid var(--border);
}
.verify-panel-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--violet);
  font-family: 'JetBrains Mono', monospace; margin-bottom: 14px;
}
.verify-doc-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(123,92,245,0.12); color: var(--violet);
  border: 1px solid rgba(123,92,245,0.3);
  padding: 3px 10px; border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 14px;
}
.verify-doc-quote {
  font-size: 14px; color: var(--text-2); line-height: 1.75;
  font-style: italic; margin-bottom: 14px;
}
.verify-doc-quote strong { color: var(--cyan); font-style: normal; font-weight: 600; }
.verify-doc-meta {
  display: flex; gap: 8px;
  font-size: 11px; color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}

/* Flow column */
.verify-flow-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  overflow: hidden; position: relative; gap: 8px;
}
.verify-flow-track {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.verify-flow-pulse {
  width: 2px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--violet), transparent);
  animation: flowPulse 2s ease-in-out infinite;
}
@keyframes flowPulse {
  0% { transform: translateY(-120px); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(120px); opacity: 0; }
}
.verify-flow-icon {
  font-size: 18px; color: var(--violet); opacity: 0.6;
  position: relative; z-index: 1;
}

/* Results panel */
.verify-results-panel {
  padding: 28px;
  opacity: 0; transition: opacity 600ms ease;
}
.verify-results-panel.active { opacity: 1; }

/* Check rows */
.verify-checks { margin-bottom: 20px; }
.verify-check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0; transform: translateX(12px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.verify-check.visible { opacity: 1; transform: translateX(0); }
.verify-check:last-child { border-bottom: none; }
.check-icon { font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; font-family: 'JetBrains Mono', monospace; }
.check-pass { color: var(--green); }
.check-warn { color: var(--amber); }
.check-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.check-text strong { color: var(--amber); font-weight: 600; }

/* Verdict box */
.verify-verdict-box {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 10px; padding: 16px 18px;
  opacity: 0; transition: opacity 400ms ease;
}
.verify-verdict-box.visible { opacity: 1; }
.verdict-top-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.verdict-label-text {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}
.verdict-warn-badge {
  font-size: 11px; font-weight: 700;
  color: var(--amber); background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 3px 10px; border-radius: 100px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em;
}
.verdict-description { font-size: 13px; color: var(--text-2); line-height: 1.65; margin-bottom: 10px; }
.verdict-latency-text { font-size: 11px; color: var(--cyan); font-family: 'JetBrains Mono', monospace; font-weight: 600; }

@media(max-width:768px) {
  .verify-body { grid-template-columns: 1fr; }
  .verify-flow-col { display: none; }
  .verify-input-panel { border-right: none; border-bottom: 1px solid var(--border); }
}

/* Live status badge */
.terminal-live-badge {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  transition: color 400ms;
}
.term-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3);
  transition: background 400ms;
}
.terminal-live-badge.analyzing { color: var(--amber); }
.terminal-live-badge.analyzing .term-live-dot { background: var(--amber); animation: dotPulse 0.6s ease-in-out infinite; }
.terminal-live-badge.verified { color: var(--green); }
.terminal-live-badge.verified .term-live-dot { background: var(--green); }

/* Response panel animation */
.terminal-response { opacity: 0.15; filter: blur(3px); transition: opacity 700ms ease, filter 700ms ease; }
.terminal-response.active { opacity: 1; filter: blur(0); }

/* Verdict pulse */
@keyframes verdictPulse {
  0%,100% { opacity: 1; text-shadow: none; }
  50% { opacity: 0.5; text-shadow: 0 0 12px currentColor; }
}
.verdict-pulse { animation: verdictPulse 0.6s ease 3; }

/* Terminal footer */
.terminal-footer {
  display: flex; gap: 32px; padding: 10px 20px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}
.term-footer-item {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}
@media(max-width:640px){ .terminal-footer { gap: 16px; flex-wrap: wrap; } }
.terminal-header { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.3); }
.terminal-dots { display: flex; gap: 8px; }
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-red { background: #FF5F57; }
.t-yellow { background: #FFBD2E; }
.t-green { background: #28CA41; }
.terminal-tabs { display: flex; gap: 2px; margin-left: 8px; }
.terminal-tab { font-size: 12px; padding: 4px 12px; border-radius: 6px 6px 0 0; color: var(--text-3); cursor: pointer; transition: all 150ms; }
.terminal-tab.active { background: rgba(123,92,245,0.2); color: var(--text-1); }
.terminal-body { display: grid; grid-template-columns: 1fr 1fr; }
.terminal-panel { padding: 24px; overflow: auto; }
.terminal-panel:first-child { border-right: 1px solid var(--border); }
.terminal-response { background: rgba(16,185,129,0.03); }
.terminal-code { font-size: 13px; line-height: 1.7; color: var(--text-2); white-space: pre; overflow-x: auto; }
.code-method { color: #7B5CF5; font-weight: 700; }
.code-key { color: #00D4FF; }
.code-str { color: #10B981; }
.code-num { color: #F59E0B; }
.code-bool { color: #7B5CF5; }
.code-warn { color: #EF4444; }
.code-comment { color: var(--text-3); font-style: italic; }

@media(max-width:768px){
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0 0 0 16px; align-self: center; }
  .terminal-body { grid-template-columns: 1fr; }
  .terminal-panel:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ============================================================
   AV DEEP DIVE
   ============================================================ */
.av-deep-section { position: relative; overflow: hidden; }
.av-orb { position: absolute; width: 700px; height: 700px; border-radius: 50%; filter: blur(160px); pointer-events: none; }
.av-orb-left { background: rgba(0,212,255,0.06); top: -100px; left: -300px; }
.av-orb-right { background: rgba(123,92,245,0.06); bottom: 100px; right: -300px; }

/* Scenario Header */
.av-scenarios-header { text-align: center; margin-bottom: 40px; }
.av-scenarios-sub { color: var(--text-2); font-size: 15px; margin-top: 12px; }

/* Scenario Cards Grid */
.av-scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
@media(max-width:1024px){ .av-scenarios-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px){ .av-scenarios-grid { grid-template-columns: 1fr; } }

.av-scenario-card { overflow: hidden; }
.av-scenario-terrain { height: 96px; position: relative; display: flex; align-items: flex-end; padding: 12px 16px; }
.av-terrain-label { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; color: rgba(255,255,255,0.75); text-transform: uppercase; font-family: 'JetBrains Mono', monospace; background: rgba(0,0,0,0.45); padding: 3px 8px; border-radius: 4px; }

/* Terrain Gradients */
.av-terrain-ice { background: linear-gradient(160deg, #050e1a 0%, #0c2040 40%, #164a80 70%, #2a7dd2 100%); }
.av-terrain-slope { background: linear-gradient(160deg, #0a0600 0%, #2a1a06 40%, #5a3810 70%, #8b5e20 100%); }
.av-terrain-split { background: linear-gradient(100deg, #111 0%, #1e1e1e 48%, #5a4a2a 52%, #8b7040 100%); }
.av-terrain-crosswalk { background: linear-gradient(160deg, #140800 0%, #3a1800 40%, #7a3000 70%, #c45000 100%); }
.av-terrain-emergency { background: linear-gradient(160deg, #140000 0%, #380000 40%, #740000 70%, #c00000 100%); }
.av-terrain-collision { background: linear-gradient(160deg, #14000a 0%, #38001a 40%, #740035 70%, #c40055 100%); }

.av-scenario-content { padding: 20px; }
.av-scenario-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }
.av-badge-danger { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.4); color: #F59E0B; }
.av-badge-critical { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.4); color: #EF4444; }
.av-scenario-card h4 { font-size: 15px; margin-bottom: 8px; }
.av-scenario-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.av-veto-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.av-veto-badge { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.5); color: #EF4444; font-size: 11px; font-weight: 800; padding: 2px 10px; border-radius: 4px; white-space: nowrap; letter-spacing: 0.05em; }
.av-veto-reason { font-size: 11px; color: var(--text-2); font-family: 'JetBrains Mono', monospace; }
.av-veto-time { font-size: 12px; color: var(--cyan); opacity: 0.8; }

/* Checks Grid */
.av-checks-section { margin-bottom: 72px; }
.av-checks-header { text-align: center; margin-bottom: 48px; }
.av-checks-sub { color: var(--text-2); font-size: 15px; max-width: 560px; margin: 12px auto 0; line-height: 1.7; }
.av-checks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: start; }
@media(max-width:1024px){ .av-checks-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px){ .av-checks-grid { grid-template-columns: 1fr; } }
.av-check-group-label { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); padding: 8px 0 4px; border-bottom: 1px solid var(--border); margin-top: 16px; }
.av-check-card { display: flex; gap: 12px; align-items: flex-start; padding: 16px; }
.av-check-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.av-check-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.av-check-card p { font-size: 12px; color: var(--text-2); line-height: 1.5; }

/* Speed Row */
.av-speed-row { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 48px; margin-bottom: 48px; flex-wrap: wrap; }
.av-speed-item { text-align: center; padding: 0 32px; }
.av-speed-num { display: block; font-size: 48px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.av-speed-label { font-size: 13px; color: var(--text-2); }
.av-speed-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
@media(max-width:768px){ .av-speed-divider { display: none; } .av-speed-item { padding: 16px; } }

/* AV Demo */
.av-demo { overflow: hidden; }
@media(max-width:768px){ .av-orb { display: none; } }

/* Hero Scenario Card */
.av-hero-scenario { overflow: hidden; margin-bottom: 72px; }
.av-hero-img-wrap { position: relative; height: 260px; overflow: hidden; }
.av-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.av-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,16,0.3) 0%, rgba(8,8,16,0.85) 100%); }
.av-hero-location-tag { position: absolute; bottom: 16px; left: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 4px; }
.av-hero-body { padding: 32px; }
.av-hero-cols { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 32px; }
@media(max-width:900px){ .av-hero-cols { grid-template-columns: 1fr; } .av-hero-divider { display: none; } }
.av-hero-divider { background: var(--border); width: 1px; }
.av-hero-decision-text { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.av-hero-context { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.av-hero-verdict-label { font-size: 14px; color: var(--text-2); }
.av-go-badge { display: inline-block; background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.5); color: #EF4444; font-size: 13px; font-weight: 800; padding: 2px 12px; border-radius: 4px; margin-left: 8px; letter-spacing: 0.05em; }
.av-result-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.av-result-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; padding: 8px 12px; border-radius: 6px; }
.av-result-warn { background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.2); }
.av-result-crit { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); }
.av-r-icon { flex-shrink: 0; font-size: 14px; }
.av-hero-veto-box { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.3); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.av-veto-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.av-veto-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-3); }
.av-veto-badge-lg { background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.6); color: #EF4444; font-size: 14px; font-weight: 800; padding: 3px 14px; border-radius: 5px; letter-spacing: 0.05em; }
.av-veto-count { font-size: 13px; color: var(--text-2); }
.av-veto-sub { font-size: 13px; color: var(--text-2); }
.av-hero-footnote { font-size: 12px; color: var(--text-3); font-style: italic; line-height: 1.6; }

/* Speed Comparison Table */
.av-speed-compare { margin-bottom: 80px; }
.av-speed-table { overflow: hidden; margin-bottom: 20px; }
.av-speed-thead { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.2fr; gap: 0; padding: 12px 24px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.av-speed-thead .av-sc-col { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-3); }
.av-speed-row-item { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.2fr; gap: 0; padding: 14px 24px; border-bottom: 1px solid var(--border); align-items: center; }
.av-speed-row-item:last-child { border-bottom: none; }
.av-speed-row-us { background: rgba(0,212,255,0.04); border-top: 1px solid rgba(0,212,255,0.2) !important; }
.av-sc-col { font-size: 14px; }
.av-t-bad { color: var(--text-2); }
.av-sc-no { color: var(--red); font-size: 13px; font-weight: 600; }
.av-sc-partial { color: var(--amber); font-size: 13px; font-weight: 600; }
.av-sc-yes { color: var(--green); font-size: 13px; font-weight: 700; }
.av-speed-note { font-size: 14px; color: var(--text-2); text-align: center; line-height: 1.7; }
@media(max-width:768px){ .av-speed-thead,.av-speed-row-item { grid-template-columns: 1fr 1fr; } .av-sc-dist { display: none; } }

/* Scenario Cards with Images */
.av-scenario-img-wrap { position: relative; height: 140px; overflow: hidden; }
.av-scenario-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.av-scenario-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,16,0.2) 0%, rgba(8,8,16,0.7) 100%); }
.av-terrain-label { position: absolute; bottom: 10px; left: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.07em; color: rgba(255,255,255,0.8); text-transform: uppercase; font-family: 'JetBrains Mono', monospace; background: rgba(0,0,0,0.5); padding: 3px 8px; border-radius: 4px; }

/* Section CTA */
.av-section-cta { display: flex; gap: 16px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }

/* ============================================================
   LEGAL DEEP DIVE
   ============================================================ */
.legal-section { position: relative; overflow: hidden; }
.legal-orb { position: absolute; width: 800px; height: 800px; border-radius: 50%; filter: blur(160px); pointer-events: none; background: rgba(123,92,245,0.08); top: -200px; left: -300px; }
.legal-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 64px; }
.legal-feature-card { padding: 24px; }
.legal-feature-icon { font-size: 28px; margin-bottom: 12px; }
.legal-feature-card h4 { font-size: 15px; margin-bottom: 8px; }
.legal-feature-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
@media(max-width:1024px){ .legal-features { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .legal-features { grid-template-columns: 1fr; } }

/* Comparison Table */
.comparison-wrap { max-width: 800px; margin: 0 auto; }
.comparison-title { text-align: center; font-size: 24px; margin-bottom: 32px; }
.comparison-table { overflow: hidden; }
.comparison-header, .comparison-row { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; }
.comparison-header { background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border); }
.comp-col { padding: 14px 20px; font-size: 14px; }
.comparison-header .comp-col { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); }
.comparison-row { border-bottom: 1px solid var(--border); transition: background 200ms; }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: rgba(255,255,255,0.02); }
.comp-feature { color: var(--text-2); font-size: 14px; }
.comp-competitor { color: var(--text-3); font-size: 14px; }
.comp-us { font-size: 14px; font-weight: 600; }
.comp-yes { color: var(--green); }
.comp-no { color: var(--text-3); }
.comp-us .comp-yes { color: var(--green); }
@media(max-width:640px){ .comp-col { padding: 12px; font-size: 12px; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: #0A0A14; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pricing-card { padding: 28px; display: flex; flex-direction: column; position: relative; }
.pricing-card-featured {
  border-color: var(--border-accent) !important;
  box-shadow: 0 0 40px rgba(123,92,245,0.2), 0 4px 32px rgba(0,0,0,0.4) !important;
  transform: scale(1.02);
}
.pricing-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-popular {
  font-size: 11px; font-weight: 700; color: var(--violet);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pricing-plan { font-size: 14px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.price-dollar { font-size: 24px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--text-2); }
.price-period { font-size: 16px; font-weight: 400; color: var(--text-3); }
.pricing-desc { font-size: 13px; color: var(--text-2); margin-bottom: 20px; line-height: 1.5; min-height: 40px; }
.pricing-features { flex: 1; margin-bottom: 16px; }
.pricing-features li { font-size: 13px; color: var(--text-2); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-savings { font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.pricing-note { text-align: center; font-size: 14px; color: var(--text-3); margin-top: 40px; }
@media(max-width:1100px){ .pricing-grid { grid-template-columns: repeat(2,1fr); } .pricing-card-featured { transform: none; } }
@media(max-width:640px){ .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY DETERMINISTIC
   ============================================================ */
.det-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.det-card { padding: 28px; }
.det-icon { font-size: 32px; font-weight: 700; margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; }
.det-icon.violet { color: var(--violet); }
.det-icon.cyan { color: var(--cyan); }
.det-card h3 { font-size: 17px; margin-bottom: 12px; }
.det-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
@media(max-width:1024px){ .det-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .det-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TRUST
   ============================================================ */
.trust-section { background: #0A0A14; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 64px; }
.trust-card { padding: 32px; }
.trust-icon { font-size: 32px; margin-bottom: 16px; }
.trust-card h3 { font-size: 18px; margin-bottom: 16px; }
.trust-card li { font-size: 14px; color: var(--text-2); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.trust-card li:last-child { border-bottom: none; }
.benchmark-row { display: flex; align-items: center; justify-content: center; gap: 0; padding: 40px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); }
.benchmark-item { flex: 1; text-align: center; }
.benchmark-num { font-size: 48px; font-weight: 700; display: block; margin-bottom: 8px; }
.benchmark-label { font-size: 14px; color: var(--text-2); }
.benchmark-divider { width: 1px; height: 60px; background: var(--border); }
@media(max-width:768px){ .trust-grid { grid-template-columns: 1fr; } .benchmark-row { flex-direction: column; gap: 32px; } .benchmark-divider { width: 60px; height: 1px; } }

/* Compliance badges */
.comply-strip { margin-top: 56px; }
.comply-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--text-3); text-align: center; text-transform: uppercase; margin-bottom: 28px; }
.comply-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.comply-badge { padding: 20px 20px 22px; display: flex; flex-direction: row; align-items: flex-start; gap: 15px; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.comply-badge:hover { transform: translateY(-2px); border-color: rgba(123,92,245,0.35); }
.comply-badge-icon { width: 40px; height: 40px; flex-shrink: 0; margin-top: 2px; }
.comply-badge-name { font-size: 13px; font-weight: 700; color: var(--text-1); margin: 0 0 5px; line-height: 1.2; }
.comply-badge-sub { font-size: 11px; color: var(--text-2); line-height: 1.55; margin: 0; }
.comply-badge-glow { position: absolute; width: 120px; height: 120px; border-radius: 50%; opacity: 0.06; top: -40px; right: -40px; pointer-events: none; }
@media(max-width:900px){ .comply-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:540px){ .comply-grid { grid-template-columns: 1fr; } }

/* ============================================================
   API SECTION
   ============================================================ */
.api-section { }
.api-logo-hero { text-align: center; margin-bottom: 56px; position: relative; display: flex; justify-content: center; }
.api-logo-glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(123,92,245,0.35) 0%, rgba(0,212,255,0.15) 50%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; filter: blur(20px); }
.api-logo-img { width: 120px; height: 120px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 0 24px rgba(123,92,245,0.6)) drop-shadow(0 0 48px rgba(0,212,255,0.3)); animation: api-logo-pulse 4s ease-in-out infinite; }
@keyframes api-logo-pulse { 0%, 100% { filter: drop-shadow(0 0 24px rgba(123,92,245,0.6)) drop-shadow(0 0 48px rgba(0,212,255,0.3)); } 50% { filter: drop-shadow(0 0 36px rgba(123,92,245,0.9)) drop-shadow(0 0 64px rgba(0,212,255,0.5)); } }
.api-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.api-content h2 { margin-bottom: 20px; }
.api-content p { font-size: 16px; color: var(--text-2); margin-bottom: 28px; }
.api-features { margin-bottom: 32px; }
.api-features li { font-size: 14px; color: var(--text-2); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.api-features li:last-child { border-bottom: none; }
.api-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.api-terminal { overflow: hidden; }

/* API Steps Card */
.api-steps-card { overflow: hidden; }
.api-steps-header {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}
.api-steps-body { padding: 8px 0; }
.api-step-item { display: flex; gap: 20px; padding: 24px 28px; align-items: flex-start; }
.api-step-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--violet); font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0; padding-top: 3px;
}
.api-step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-1); }
.api-step-content p { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.api-step-divider { height: 1px; background: var(--border); margin: 0 28px; }
.api-steps-footer {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 16px 28px; border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2); margin-top: 8px;
}
.api-steps-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--cyan); font-family: 'JetBrains Mono', monospace;
}
@media(max-width:900px){ .api-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative; overflow: hidden;
  text-align: center; background: var(--bg);
}
.cta-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.cta-orb-left { background: rgba(123,92,245,0.12); top: -100px; left: -150px; }
.cta-orb-right { background: rgba(0,212,255,0.08); bottom: -100px; right: -150px; }
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta-inner h2 { margin-bottom: 20px; }
.cta-sub { font-size: 18px; color: var(--text-2); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-trust-line { font-size: 13px; color: var(--text-3); }

/* ============================================================
   INDUSTRY SITEMAP
   ============================================================ */
.ind-sitemap {
  padding: 64px 0 56px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.012);
}
.ind-sitemap-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
  margin: 0 0 36px;
}
.ind-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ind-sitemap-col {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ind-sitemap-col:nth-child(5),
.ind-sitemap-col:nth-child(10) {
  border-right: none;
}
.ind-sitemap-col:nth-child(n+6) {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.ind-sitemap-title {
  font-size: 13px;
  font-weight: 700;
  color: #F2F2FF;
  text-decoration: none;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.4;
}
.ind-sitemap-title:hover { color: var(--cyan); }
.ind-sitemap-link {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.18s;
}
.ind-sitemap-link:hover { color: var(--text-1); }
.ind-status-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #10B981;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.ind-status-beta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #A78BFA;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.ind-status-early {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .ind-sitemap-grid { grid-template-columns: repeat(5, 1fr); }
  .ind-sitemap-col { padding: 18px 14px; }
  .ind-sitemap-title { font-size: 12px; }
}
@media (max-width: 800px) {
  .ind-sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
  }
  .ind-sitemap-col { border-right: 1px solid var(--border); }
  .ind-sitemap-col:nth-child(2n) { border-right: none; }
  .ind-sitemap-col:nth-child(5),
  .ind-sitemap-col:nth-child(10) { border-right: 1px solid var(--border); }
  .ind-sitemap-col:nth-child(2n):last-child { border-right: none; }
  .ind-sitemap-col:nth-child(n+3) { border-top: 1px solid var(--border); }
  .ind-sitemap-col:nth-child(n+6) { background: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060608;
  border-top: 1px solid var(--border);
  padding: 72px 0 48px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; }
.footer-logo-text { font-size: 18px; font-weight: 800; }
.footer-tagline { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.footer-contact-line { font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.footer-contact-line a { color: var(--text-2); transition: color 200ms; }
.footer-contact-line a:hover { color: var(--cyan); }
.footer-copy { font-size: 12px; color: var(--text-3); margin-top: 8px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-2); padding: 5px 0; transition: color 200ms; }
.footer-col a:hover { color: var(--text-1); }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT / FOUNDER SECTION
   ============================================================ */
.about-section { position: relative; overflow: hidden; background: #0A0A14; }
.about-orb { position: absolute; width: 700px; height: 700px; border-radius: 50%; filter: blur(150px); pointer-events: none; }
.about-orb-right { background: rgba(0,212,255,0.06); top: -100px; right: -200px; }

/* Quote-only banner (no background image) */
.founder-banner-quote-only {
  position: relative;
  padding: 56px 60px;
  margin-bottom: 48px;
  border-left: 3px solid var(--violet);
}
.founder-banner-quote-only blockquote {
  font-size: 18px; line-height: 1.8; color: var(--text-1);
  font-style: italic; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.founder-banner-quote-only cite {
  font-size: 13px; color: var(--cyan); font-style: normal; font-weight: 600;
}
@media(max-width:768px){
  .founder-banner-quote-only { padding: 40px 32px; }
  .founder-banner-quote-only blockquote { font-size: 16px; }
}

/* Timeline */
.founder-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.timeline-card { padding: 28px; }
.timeline-marker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--violet);
  margin-bottom: 12px;
}
.timeline-card h4 { font-size: 16px; margin-bottom: 10px; }
.timeline-card p { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.timeline-card-highlight {
  border-color: var(--border-accent) !important;
  background: rgba(123,92,245,0.05) !important;
}
.timeline-card-highlight .timeline-marker { color: var(--cyan); }
.timeline-card-warning {
  border-color: rgba(239,68,68,0.25) !important;
  background: rgba(239,68,68,0.03) !important;
}
.timeline-card-warning .timeline-marker { color: var(--red); }

/* Founder card */
.founder-card {
  display: grid; grid-template-columns: 300px 1fr;
  overflow: hidden; max-width: 960px; margin: 0 auto 48px;
}
.founder-card-img {
  width: 100%; min-height: 400px;
  object-fit: contain; object-position: center center; background: #0E0E1A;
}
.founder-card-content {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Darwin quote */
.darwin-quote {
  max-width: 720px; margin: 0 auto 48px;
  text-align: center;
}
.darwin-inner {
  padding: 48px 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.darwin-mark {
  font-size: 64px; line-height: 1;
  color: var(--violet); opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute; top: 16px; left: 28px;
}
.darwin-inner blockquote {
  font-size: 20px; line-height: 1.7;
  color: var(--text-1); font-style: italic;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.darwin-inner cite {
  font-size: 13px; color: var(--text-3);
  font-style: normal; font-weight: 500; letter-spacing: 0.04em;
}

/* Responsive */
@media(max-width:1100px) {
  .founder-timeline { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
  .founder-banner-overlay { padding: 40px 32px; }
  .founder-banner-quote blockquote { font-size: 16px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card-img { min-height: 300px; max-height: 380px; }
  .founder-card-content { padding: 36px 32px; }
  .darwin-inner blockquote { font-size: 17px; }
}
@media(max-width:768px) {
  .founder-banner { min-height: 480px; }
  .founder-banner-overlay {
    background: linear-gradient(180deg, rgba(8,8,16,0.4) 0%, rgba(8,8,16,0.97) 55%);
    align-items: flex-end;
  }
  .founder-timeline { grid-template-columns: 1fr; }
  .darwin-quote { padding: 0 8px; }
  .darwin-inner { padding: 36px 24px; }
}

/* ============================================================
   HARDWARE SECTION
   ============================================================ */
.hardware-section { position: relative; overflow: hidden; background: #060610; }
.hw-orb { position: absolute; width: 700px; height: 700px; border-radius: 50%; filter: blur(140px); pointer-events: none; }
.hw-orb-left { background: rgba(0,212,255,0.08); top: -150px; left: -200px; }
.hw-orb-right { background: rgba(123,92,245,0.1); bottom: -150px; right: -200px; }

.hw-chips-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 56px;
}
.hw-chip-card { overflow: hidden; display: flex; flex-direction: column; }

.hw-chip-visual {
  height: 240px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hw-chip-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--transition);
  display: block;
}
.hw-chip-card:hover .hw-chip-img { transform: scale(1.05); }

/* Brand-colored glow overlay */
.hw-chip-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(6,6,16,0.8) 100%);
}
.hw-glow-nvidia::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(118,185,0,0.18) 0%, transparent 65%);
}
.hw-glow-amd::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(237,28,36,0.18) 0%, transparent 65%);
}
.hw-glow-intel::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,113,197,0.22) 0%, transparent 65%);
}
.hw-chip-content { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.hw-chip-maker {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace; margin-bottom: 6px;
}
.hw-chip-name { font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.hw-chip-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.hw-waitlist-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan); background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 8px 16px; border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  transition: all 200ms var(--transition);
  align-self: flex-start;
}
.hw-waitlist-btn:hover { background: rgba(0,212,255,0.15); border-color: var(--cyan); transform: translateY(-1px); }
.hw-btn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: dotPulse 1.5s ease-in-out infinite;
}
.hw-bottom-bar {
  text-align: center; padding: 48px;
  background: rgba(0,212,255,0.03);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--radius);
}
.hw-bottom-text { font-size: 20px; font-weight: 600; color: var(--text-1); margin-bottom: 24px; }
@media(max-width:900px){ .hw-chips-grid { grid-template-columns: 1fr; } }
@media(max-width:640px){ .hw-chip-visual { height: 200px; } }

/* ============================================================
   DATA SECURITY SECTION
   ============================================================ */
.datasec-section { position: relative; overflow: hidden; background: #050510; }
.datasec-orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(130px); pointer-events: none; }
.datasec-orb-left { background: rgba(0,212,255,0.07); top: -100px; left: -150px; }
.datasec-orb-right { background: rgba(123,92,245,0.09); bottom: -100px; right: -150px; }

.datasec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}
.datasec-card {
  padding: 32px 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.datasec-card-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(123,92,245,0.05));
  border-color: rgba(0,212,255,0.15);
  flex-direction: column;
}
.datasec-card-hero h3 { font-size: 24px; margin-bottom: 0; }
.datasec-card-hero p { font-size: 15px; color: var(--text-2); line-height: 1.8; max-width: 780px; }
.datasec-card-hero p strong { color: var(--cyan); }

.datasec-icon-wrap {
  position: relative; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.datasec-pulse-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(0,212,255,0.4);
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 1; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}
.datasec-icon { font-size: 28px; }

.datasec-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.datasec-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; font-family: 'JetBrains Mono', monospace;
  color: var(--cyan); background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 4px 12px; border-radius: 100px;
}

.datasec-small-icon { font-size: 28px; margin-bottom: 4px; }
.datasec-card h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.datasec-card p { font-size: 14px; color: var(--text-2); line-height: 1.75; }

.datasec-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 40px;
  background: rgba(123,92,245,0.04);
  border: 1px solid rgba(123,92,245,0.12);
  border-radius: var(--radius);
}
.datasec-bar-item { flex: 1; min-width: 140px; text-align: center; padding: 16px 24px; }
.datasec-bar-num { display: block; font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.datasec-bar-label { display: block; font-size: 12px; color: var(--text-2); letter-spacing: 0.03em; }
.datasec-bar-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

@media(max-width:900px){
  .datasec-grid { grid-template-columns: 1fr; }
  .datasec-card-hero { grid-column: 1; }
  .datasec-bar { flex-direction: column; gap: 0; }
  .datasec-bar-divider { width: 80px; height: 1px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(123,92,245,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* ============================================================
   MOBILE PERFORMANCE & SMOOTHNESS
   ============================================================ */

/* GPU-accelerate the marquee and key animations */
.marquee-track { will-change: transform; }
.hero-orb, .legal-orb, .about-orb, .cta-orb, .hw-orb, .datasec-orb { will-change: transform; }

/* Smooth scrolling on iOS */
html { -webkit-overflow-scrolling: touch; }

/* On mobile: tone down heavy effects that cause jank */
@media (max-width: 768px) {
  /* Disable blur-heavy orbs on mobile — biggest jank culprit */
  .hero-orb, .legal-orb, .about-orb, .cta-orb, .hw-orb, .datasec-orb {
    display: none;
  }
  /* Simplify glass cards — backdrop-filter is expensive on mobile */
  .glass-card {
    background: rgba(14,14,26,0.95) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Reduce hero grain texture cost */
  .hero-grain { display: none; }
  /* Simpler fade-up — no translateY shift causing layout recalc */
  .fade-up { opacity: 0; transition: opacity 500ms ease; transform: none !important; }
  .fade-up.visible { opacity: 1; }
  /* Reduce marquee animation repaints */
  .marquee-wrap { overflow: hidden; }
  /* Chip images — no hover zoom on touch */
  .hw-chip-card:hover .hw-chip-img { transform: none; }
  /* Navigation — smoother open/close */
  .nav-mobile { transition: max-height 300ms ease, opacity 300ms ease; }
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
