/* ===================================
   OrbitHQ — Landing Page Styles (Bold/High-Energy)
   =================================== */

:root {
  --bg-primary: #05051a;
  --bg-surface: #09072a;
  --bg-card: #100d3a;
  --accent: #8b5cf6;
  --accent-dim: rgba(139, 92, 246, 0.15);
  --accent-hot: #c084fc;
  --accent-glow: #a78bfa;
  --text-primary: #f0f0ff;
  --text-secondary: #a8a8d0;
  --text-muted: #5a5a80;
  --border: rgba(139, 92, 246, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --gradient-hero: linear-gradient(135deg, #1a0a3e 0%, #0d0820 40%, #05051a 100%);
  --gradient-accent: linear-gradient(135deg, #7c3aed, #a78bfa);
  --gradient-accent-rev: linear-gradient(135deg, #a78bfa, #7c3aed);
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.4);
  --glow-purple-sm: 0 0 16px rgba(139, 92, 246, 0.3);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--gradient-hero);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 26, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(139, 92, 246, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo svg circle:first-child { fill: var(--accent); }
.logo svg circle:nth-child(2) { stroke: var(--accent); }
.logo svg circle:last-child { stroke: var(--accent); opacity: 0.4; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--text-primary); }

.btn-nav-cta {
  background: var(--gradient-accent);
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: var(--glow-purple-sm);
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}

.btn-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--glow-purple);
}

/* Hero */
.hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(139, 92, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 60%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-shadow: none;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glow-purple), 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-subtle);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.mockup-body {
  display: flex;
  min-height: 360px;
}

.mockup-sidebar {
  width: 140px;
  padding: 16px 0;
  border-right: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
}

.sidebar-item.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
}

.mockup-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.mockup-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 10px;
}

.metric-card.highlight {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
}

.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-card.highlight .metric-val { color: var(--accent-hot); }

.metric-lbl {
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.3;
}

.outreach-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.outreach-item:last-child { border-bottom: none; }

.outreach-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.outreach-seq {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seq-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.seq-badge.sent { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.seq-badge.reply { background: rgba(139, 92, 246, 0.15); color: var(--accent-hot); }
.seq-badge.booked { background: rgba(139, 92, 246, 0.2); color: var(--accent-hot); }

.seq-time {
  font-size: 9px;
  color: var(--text-muted);
}

/* Proof bar */
.proof {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.proof-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.proof-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-logo {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.proof-logo:hover { color: var(--accent-hot); }

/* Features */
.features {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 16px;
  text-align: center;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 30%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* How it works */
.how {
  padding: 100px 0;
  background: var(--bg-surface);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  gap: 20px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

/* Objections */
.objections {
  padding: 100px 0;
  background: var(--bg-primary);
}

.objections-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.objection-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.objection-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.objection-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.objection-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.objection-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    var(--bg-primary);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.closing-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 30%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 56px;
}

.closing-comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  text-align: left;
  box-shadow: var(--glow-purple-sm);
}

.compare-item {
  flex: 1;
  padding: 32px;
}

.compare-item.highlight {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(167, 139, 250, 0.08) 100%);
  border-left: 1px solid rgba(139, 92, 246, 0.3);
}

.compare-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.compare-cost {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.compare-item.highlight .compare-cost {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compare-cost span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
}

.compare-pros {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-pros li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.compare-pros li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.compare-divider {
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex-shrink: 0;
}

.closing-final {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4), 0 1px 0 rgba(255,255,255,0.1) inset;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.55), 0 1px 0 rgba(255,255,255,0.1) inset;
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--accent-hot);
  box-shadow: none;
  opacity: 1;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 12px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Compare links bar */
.compare-links-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-links-bar span { font-weight: 500; }

.compare-links-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.compare-links-bar a:hover { opacity: 0.75; }

/* Calendly CTA section */
.calendly-cta {
  padding: 100px 0;
  background: var(--bg-surface);
  text-align: center;
}

.calendly-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

.calendly-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px auto 48px;
  max-width: 520px;
}

.calendly-widget-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 24px;
}

.cal-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
}

.calendly-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Closing CTAs */
.closing-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .objection-list { grid-template-columns: 1fr; }
  .closing-comparison { flex-direction: column; }
  .compare-item.highlight { border-left: none; border-top: 1px solid var(--border); }
  .header-nav { display: none; }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .proof-logos { gap: 24px; }
  .hero-stats { flex-wrap: wrap; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
