/* =============================================================
   MOTO-STUDIO ULTIMATE PRO — Global Design System & Stylesheet
   Theme: Cyberpunk Dark Racing / Glassmorphism
   ============================================================= */

:root {
  --bg-dark: #07090E;
  --bg-card: #0F131C;
  --bg-card-hover: #151C2A;
  --bg-glass: rgba(15, 20, 32, 0.75);
  
  --border-color: #1E293B;
  --border-glow: #38BDF8;
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --neon-cyan: #38BDF8;
  --neon-emerald: #10B981;
  --neon-gold: #F59E0B;
  --neon-crimson: #EF4444;
  --neon-purple: #8B5CF6;
  
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-mono: 'Fira Code', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ── Ambient Background Glows ─────────────────────────────────── */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  top: 5%;
  left: -10%;
}
.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  top: 35%;
  right: -10%;
}
.glow-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Navigation Bar ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  padding: 16px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.logo-icon {
  color: var(--neon-cyan);
  font-size: 22px;
}
.badge-pro {
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  color: #FFFFFF;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--neon-cyan);
}
.btn-nav-activate {
  color: var(--neon-emerald) !important;
  font-weight: 600 !important;
}

.btn-primary-small {
  background: #0284C7;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary-small:hover {
  background: #0EA5E9;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.4);
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero-section {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--neon-cyan);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.gradient-text {
  background: linear-gradient(135deg, #38BDF8 0%, #34D399 50%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #0284C7, #059669);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.45);
}
.btn-hero-secondary {
  background: #1E293B;
  color: #F8FAFC;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid #334155;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: #334155;
  border-color: #475569;
}

/* ── Live Dashboard Mockup ────────────────────────────────────── */
.hero-mockup-wrapper {
  margin-top: 20px;
}
.mockup-frame {
  background: var(--bg-card);
  border: 1px solid #334155;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.15);
  overflow: hidden;
  text-align: left;
}
.mockup-header {
  background: #141923;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
}
.window-controls {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.mockup-title {
  color: var(--neon-cyan);
  font-weight: bold;
}
.mockup-status {
  color: var(--neon-emerald);
}
.mockup-body {
  padding: 20px;
}
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
}
.panel-mini {
  background: #111622;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
}
.panel-tag {
  font-size: 10px;
  font-weight: bold;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.gauge-val {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
}
.gauge-label {
  font-size: 11px;
  color: var(--text-secondary);
}
.safeguard-pill {
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
}
.egt-pill { background: rgba(245, 158, 11, 0.15); color: #FBBF24; border: 1px solid #D97706; }
.idc-pill { background: rgba(16, 185, 129, 0.15); color: #34D399; border: 1px solid #059669; }

.heatmap-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.h-cell {
  padding: 6px 2px;
  text-align: center;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: bold;
  border-radius: 3px;
}
.c-blue { background: #1E3A8A; color: #93C5FD; }
.c-green { background: #065F46; color: #6EE7B7; }
.c-orange { background: #7C2D12; color: #FDBA74; }
.c-red { background: #991B1B; color: #FCA5A5; }
.table-badge {
  font-size: 11px;
  color: var(--neon-emerald);
  font-weight: bold;
}

.afr-big {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--neon-emerald);
  font-family: var(--font-mono);
}
.afr-status {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: bold;
}
.fft-bar-group {
  display: flex;
  align-items: flex-end;
  height: 45px;
  gap: 4px;
  margin: 12px 0 8px;
  padding: 4px;
  background: #0B0E14;
  border-radius: 4px;
}
.fft-bar {
  flex: 1;
  background: #0284C7;
  border-radius: 2px 2px 0 0;
}
.knock-zone {
  background: var(--neon-gold);
}
.knock-safe-tag {
  font-size: 10px;
  color: var(--neon-emerald);
  font-weight: bold;
}

/* ── Section Structure ────────────────────────────────────────── */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.section-dark {
  background-color: #0A0D14;
  border-top: 1px solid #141923;
  border-bottom: 1px solid #141923;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-subtitle {
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
}

/* ── Feature Cards Grid ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Multi-Brand Grid ─────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.brand-card {
  background: #111622;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.brand-card:hover {
  border-color: #38BDF8;
}
.brand-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}
.honda { background: #DC2626; color: #FFF; }
.yamaha { background: #2563EB; color: #FFF; }
.kawasaki { background: #16A34A; color: #FFF; }
.suzuki { background: #0284C7; color: #FFF; }
.vespa { background: #EAB308; color: #000; }
.ktm { background: #EA580C; color: #FFF; }

.brand-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.brand-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── AI Data Bank Visual Hub ──────────────────────────────────── */
.ai-hub-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ai-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
.ai-stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 8px;
}
.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--neon-cyan);
  font-family: var(--font-heading);
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
}

.ai-neural-card {
  background: #0B0E14;
  border: 1px solid #1E293B;
  border-radius: 10px;
  padding: 24px;
  font-family: var(--font-mono);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}
.neural-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #1E293B;
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: bold;
}
.live-tag {
  background: #064E3B;
  color: #34D399;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
}
.neural-body {
  font-size: 12px;
  line-height: 2;
  color: var(--text-secondary);
}
.text-highlight {
  color: var(--neon-emerald);
  font-weight: bold;
}

/* ── Pricing Table ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}
.featured-tier {
  border-color: #0284C7;
  background: #111827;
  box-shadow: 0 0 30px rgba(2, 132, 199, 0.2);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0284C7, #10B981);
  color: #FFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.tier-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.tier-period {
  font-size: 12px;
  color: var(--neon-emerald);
  font-weight: 600;
  margin-bottom: 24px;
}
.tier-features {
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  flex: 1;
}
.tier-features li {
  margin-bottom: 12px;
}
.btn-tier-outline {
  display: block;
  text-align: center;
  border: 1px solid #334155;
  background: #1E293B;
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-tier-outline:hover {
  background: #334155;
}
.btn-tier-primary {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #0284C7, #059669);
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-tier-primary:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* ── Activation Portal Section ────────────────────────────────── */
.activation-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.activation-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-group input, .form-group select {
  width: 100%;
  background: #111622;
  border: 1px solid #334155;
  color: #FFF;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--neon-cyan);
}
.form-hint {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}
.btn-activate-submit {
  width: 100%;
  background: linear-gradient(135deg, #059669, #0284C7);
  color: #FFF;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-activate-submit:hover {
  box-shadow: 0 0 20px rgba(5, 150, 105, 0.4);
}

.activation-result {
  margin-top: 24px;
  background: #064E3B;
  border: 1px solid #10B981;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.result-box h4 {
  color: #34D399;
  font-size: 16px;
  margin-bottom: 6px;
}
.key-display {
  background: #0B0E14;
  border: 1px dashed #34D399;
  color: #34D399;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
  padding: 12px;
  border-radius: 6px;
  margin: 12px 0;
  user-select: all;
}
.btn-copy-key {
  background: #10B981;
  color: #064E3B;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

/* ── Download & Footer ────────────────────────────────────────── */
.download-box {
  background: linear-gradient(135deg, #0F172A, #064E3B);
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: 60px 30px;
}
.download-sub {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 12px auto 30px;
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-download-main {
  background: #38BDF8;
  color: #0B1120;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
}
.btn-download-sub {
  background: #1E293B;
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid #334155;
  font-size: 15px;
}
.download-specs {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 18px;
}

.footer {
  background: #05070B;
  border-top: 1px solid #141923;
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
  max-width: 320px;
}
.footer-links h4 {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--neon-cyan);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #141923;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-title { font-size: 34px; }
  .mockup-grid { grid-template-columns: 1fr; }
  .ai-hub-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
