:root {
  --bg: #0a0a0b;
  --bg-elevated: #111113;
  --bg-card: #161618;
  --border: #222225;
  --border-hover: #333338;
  --text: #e8e8ec;
  --text-muted: #b2b2b3;
  --text-dim: #7f7f92;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --accent-soft: #ff6b2b;
  --warning: #ffb800;
  --success: #00d68f;
  --error: #ff4d4d;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- NOISE OVERLAY --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-links a.btn-cta,
.btn-cta {
  background: var(--accent);
  color: #fff !important;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
  animation: fadeUp 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 800px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 0.75rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: fadeUp 0.8s ease 0.4s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- TERMINAL DEMO --- */
.terminal-section {
  padding: 2rem 2rem 6rem;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.5s both;
}

.terminal {
  width: 100%;
  max-width: 720px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red {
  background: #ff5f57;
}

.terminal-dot.yellow {
  background: #febc2e;
}

.terminal-dot.green {
  background: #28c840;
}

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
}

.terminal-line {
  margin-bottom: 0.25rem;
}

.terminal-prompt {
  color: var(--success);
}

.terminal-cmd {
  color: var(--text);
}

.terminal-comment {
  color: var(--text-dim);
}

.terminal-output {
  color: var(--text-muted);
}

.terminal-warn {
  color: var(--warning);
}

.terminal-error {
  color: var(--error);
}

.terminal-accent {
  color: var(--accent);
}

/* --- FEAR SECTION --- */
.fear-section {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.fear-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.fear-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  max-width: 960px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-card {
  background: var(--bg-elevated);
  padding: 2rem 1.5rem;
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number.orange {
  color: var(--accent);
}

.stat-number.yellow {
  color: var(--warning);
}

.stat-number.red {
  color: var(--error);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

/* --- HOW IT WORKS --- */
.how-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.how-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 1rem;
}

.how-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 960px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.step-card {
  background: var(--bg-elevated);
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-icon {
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 77, 0, 0.1);
  color: var(--accent);
  border-radius: 50%;
}

.step-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

/* --- PROBLEM SECTION --- */
.problem-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}

.problem-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.problem-item:hover {
  border-color: var(--border-hover);
}

.problem-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 6px;
  margin-top: 2px;
}

.problem-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem-text strong {
  color: var(--text);
  font-weight: 600;
}

/* --- AUDIENCE SECTION --- */
.audience-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.audience-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.audience-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: border-color 0.2s;
}

.audience-card:hover {
  border-color: var(--border-hover);
}

.audience-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --- PRICING SECTION --- */
.pricing-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255, 77, 0, 0.05);
  transform: scale(1.03);
  z-index: 1;
}

.tier-badge {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.price-box {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-period {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

.price-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.feature-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.cta-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-style: italic;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* --- FOOTER --- */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.footer-left {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-right a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--text-muted);
}

/* --- MODAL & CONTACT FORM --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  width: 90%;
  max-width: 500px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-header {
  margin-bottom: 2.5rem;
}

.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, background-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: rgba(255, 77, 0, 0.5);
}

.error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.4rem;
}

.error-msg.active {
  display: block;
}

.form-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.form-success-msg h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success-msg p {
  color: var(--text-muted);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(20, 20, 22, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-links a:not(.btn-cta) {
    display: none;
  }

  .pricing-grid,
  .steps-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlight {
    transform: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .problem-section,
  footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}