/* ============================================================
   Dolphin Sniper Pro — Landing Page Design System
   ============================================================ */

:root {
  --bg-dark: #070b14;
  --bg-card: rgba(13, 22, 38, 0.75);
  --bg-card-hover: rgba(18, 30, 52, 0.85);
  --border: rgba(0, 229, 255, 0.16);
  --border-hover: rgba(0, 229, 255, 0.45);
  --cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  --green: #00ff9d;
  --green-glow: rgba(0, 255, 157, 0.35);
  --gold: #ffd700;
  --text-main: #f0f6fc;
  --text-muted: #8e9bb0;
  --text-dim: #546075;
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 9999px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Background Glow Orbs & Grid */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 229, 255, 0.12);
  top: -100px;
  left: 10%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: rgba(0, 255, 157, 0.08);
  top: 400px;
  right: 5%;
}

.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

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

.max-w-lg {
  max-width: 800px;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, #00e5ff 0%, #00ff9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-green { color: var(--green); }
.text-white { color: #fff; }
.text-cyan { color: var(--cyan); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-main);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00e5ff 0%, #00a3ff 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-glow {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35); }
  50% { box-shadow: 0 6px 34px rgba(0, 229, 255, 0.65); }
}

/* Navbar */
.navbar-wrap {
  position: sticky;
  top: 0;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 16px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo-gradient {
  background: linear-gradient(135deg, #00e5ff 0%, #00ff9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pro {
  padding: 2px 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8800 100%);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-proof-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
}

.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* Panel Mockup in Hero */
.hero-visual {
  position: relative;
}

.panel-mockup {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.15);
  overflow: hidden;
  animation: floatPanel 4s ease-in-out infinite alternate;
}

@keyframes floatPanel {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.mockup-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.mockup-pro-badge {
  padding: 2px 6px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8800 100%);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  border-radius: 8px;
}

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

.mockup-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.mockup-stat-box {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
}

.mockup-stat-box:first-child {
  border-right: 1px solid var(--border);
}

.mockup-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

.mockup-stat-val {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-mono);
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.mockup-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-status-dot.active {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.mockup-filter-capsule {
  margin: 12px 18px;
  padding: 10px 14px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-filter-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.mockup-buy-badge {
  color: var(--cyan);
  font-family: var(--font-mono);
}

.mockup-filter-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 6px;
}

.mockup-activity {
  padding: 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}

.mockup-log-item {
  display: flex;
  gap: 8px;
  color: var(--text-muted);
}

.log-t {
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.mockup-footer {
  padding: 12px 18px;
}

.mockup-start-btn {
  background: linear-gradient(135deg, rgba(255, 79, 79, 0.2) 0%, rgba(255, 79, 79, 0.35) 100%);
  border: 1px solid rgba(255, 79, 79, 0.5);
  color: #ff6b6b;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: rgba(4, 7, 13, 0.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.12);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-cyan { background: rgba(0, 229, 255, 0.12); color: var(--cyan); border: 1px solid rgba(0, 229, 255, 0.3); }
.icon-green { background: rgba(0, 255, 157, 0.12); color: var(--green); border: 1px solid rgba(0, 255, 157, 0.3); }
.icon-gold { background: rgba(255, 215, 0, 0.12); color: var(--gold); border: 1px solid rgba(255, 215, 0, 0.3); }
.icon-purple { background: rgba(180, 0, 255, 0.12); color: #c84dff; border: 1px solid rgba(180, 0, 255, 0.3); }

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Simulator Card */
.simulator-card {
  background: #090f1a;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  max-width: 800px;
  margin: 0 auto;
}

.simulator-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.sim-status-badge {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.simulator-terminal {
  background: #04070d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 180px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.sim-line {
  color: var(--text-muted);
}

.sim-time {
  color: var(--text-dim);
}

.simulator-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.sim-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.sim-stat-val {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-mono);
}

/* Pricing Section */
.pricing-card-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--cyan);
  border-radius: 20px;
  padding: 44px 38px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.2);
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00e5ff 0%, #00ff9d 100%);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}

.pricing-plan {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
}

.price-val {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-checklist {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.pricing-checklist li {
  font-size: 14px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: var(--green);
  font-weight: 900;
  font-size: 15px;
}

.pricing-guarantee {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.step-number {
  font-size: 44px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: rgba(0, 229, 255, 0.2);
  line-height: 1;
  margin-bottom: 14px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

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

.step-desc code {
  background: rgba(0, 229, 255, 0.12);
  color: var(--cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-main);
}

.faq-arrow {
  font-size: 20px;
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer-wrap {
  padding: 50px 0 30px;
  background: #03060a;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  max-width: 500px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

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

/* Mobile Responsiveness */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .nav-links { display: none; }
}
