:root {
  --bg: #050505;
  --panel: rgba(255,255,255,0.04);
  --panel-2: rgba(163,230,53,0.10);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.45);
  --lime: #a3e635;
  --lime-2: #84cc16;
  --black: #000000;
  --radius: 28px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top right, rgba(163,230,53,0.15), transparent 30%),
              radial-gradient(circle at bottom left, rgba(163,230,53,0.08), transparent 25%),
              var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .container { width: 100%; padding: 0 20px; }
.nav-inner {
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0.18em;
  color: var(--lime); font-size: 24px;
}
.brand img { height: 42px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 26px; flex-wrap: nowrap; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 600; white-space: nowrap; }
.nav-links a:hover { color: var(--lime); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 14px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 0 auto;
  background: var(--lime); border-radius: 2px; transition: 0.25s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 24px; border-radius: 18px; font-weight: 800; border: 1px solid transparent;
  transition: 0.2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--lime); color: var(--black); box-shadow: 0 12px 30px rgba(163,230,53,0.25); }
.btn-secondary { background: rgba(255,255,255,0.04); border-color: var(--border); color: var(--text); }
.btn-secondary:hover { border-color: rgba(163,230,53,0.45); color: var(--lime); }

.hero {
  padding: 70px 0 42px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
  position: relative;
}
.hero-product {
  position: absolute; top: 0; right: 0; z-index: 1;
  width: 20%; max-width: 240px; height: auto;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.55));
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(163,230,53,0.25); background: rgba(163,230,53,0.10);
  color: #d9f99d; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
h1 {
  font-size: clamp(42px, 7vw, 72px); line-height: 0.98; margin: 18px 0 0; font-weight: 900;
  letter-spacing: -0.015em;
}
.lime { color: var(--lime); }
.hero p {
  color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 680px; margin-top: 22px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.stats {
  margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; max-width: 640px;
}
.stat-card, .panel, .card {
  border: 1px solid var(--border); background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-card { padding: 22px; }
.stat-big { font-size: 40px; font-weight: 900; color: var(--lime); line-height: 1; }
.stat-small { margin-top: 10px; color: var(--muted); font-size: 14px; }

.hero-side {
  padding: 24px; background: linear-gradient(135deg, rgba(24,24,27,1), rgba(9,9,11,1));
  border: 1px solid var(--border); border-radius: 34px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-side::before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: rgba(163,230,53,0.18); filter: blur(55px); top: -60px; right: -60px;
}
.hero-side-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; }
.mini-panel { border-radius: 24px; padding: 22px; border: 1px solid var(--border); background: rgba(0,0,0,0.35); min-width: 0; overflow-wrap: break-word; }
.mini-panel h3 { margin: 0; font-size: 30px; line-height: 1.05; }
.mini-panel p, .mini-panel li { color: var(--muted); }
.mini-panel ul { padding-left: 18px; margin: 18px 0 0; }
.mini-panel li { margin: 10px 0; }

.income-box {
  margin-top: 26px; padding: 24px; border-radius: 30px; border: 1px solid rgba(163,230,53,0.22);
  background: rgba(163,230,53,0.10); box-shadow: 0 20px 60px rgba(163,230,53,0.08);
}
.income-top { display: flex; justify-content: space-between; gap: 18px; align-items: end; flex-wrap: wrap; }
.income-top h3 { margin: 8px 0 0; font-size: 34px; line-height: 1.05; }
.income-top p { margin: 10px 0 0; color: var(--muted); font-size: 14px; max-width: 600px; }
.income-total {
  background: rgba(0,0,0,0.38); border-radius: 22px; padding: 18px 20px; min-width: 230px;
  text-align: right;
}
.income-total .label { color: var(--muted-2); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.income-total .value { margin-top: 8px; font-size: 46px; font-weight: 900; color: var(--lime); }

.sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.slider-block label {
  display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 10px;
}
.slider-block strong { color: #fff; }
input[type="range"] { width: 100%; accent-color: var(--lime); }

.income-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.income-item { border: 1px solid var(--border); background: rgba(0,0,0,0.25); border-radius: 22px; padding: 18px; }
.income-item .label { color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; }
.income-item .value { margin-top: 8px; font-size: 24px; font-weight: 800; }

section { padding: 32px 0 70px; }
.section-title { font-size: 16px; color: var(--lime); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 800; }
h2 { margin: 10px 0 0; font-size: clamp(34px, 5vw, 56px); line-height: 1; font-weight: 900; letter-spacing: -0.04em; }
.section-copy { max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.7; margin-top: 18px; }

.three-grid, .gallery-grid, .two-grid { display: grid; gap: 18px; }
.three-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.two-grid { grid-template-columns: repeat(2, 1fr); }
.card { padding: 28px; }
.card h3 { margin: 0; font-size: 30px; }
.card p { color: var(--muted); line-height: 1.7; }

.gallery-card { overflow: hidden; }
.gallery-card img { height: 280px; width: 100%; object-fit: cover; }
.gallery-card .content { padding: 24px; }

.list { display: grid; gap: 12px; margin-top: 20px; }
.list-item { border: 1px solid var(--border); background: rgba(0,0,0,0.28); border-radius: 20px; padding: 16px 18px; color: rgba(255,255,255,0.82); overflow-wrap: break-word; }

.how-card { padding: 30px; display: flex; flex-direction: column; }
.how-card .pill {
  display: inline-flex; align-self: flex-start; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(163,230,53,0.25); background: rgba(163,230,53,0.10);
  color: #d9f99d; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.how-card h3 { margin: 16px 0 0; font-size: 28px; line-height: 1.1; }
.steps { display: grid; gap: 14px; margin-top: 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex: none; width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lime); color: var(--black); font-weight: 900; font-size: 16px;
}
.step-body h4 { margin: 4px 0 0; font-size: 17px; font-weight: 800; }
.step-body p { margin: 6px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.how-cta { display: flex; flex-direction: column; align-items: center; margin-top: 40px; gap: 12px; }
.how-cta .btn { font-size: 17px; padding: 18px 40px; border-radius: 20px; box-shadow: 0 16px 40px rgba(163,230,53,0.30); }
.how-cta .note { color: var(--muted-2); font-size: 13px; }
.price-box { padding: 24px; border-radius: 26px; background: rgba(0,0,0,0.34); margin-top: 26px; }
.price-box .small { color: var(--muted-2); letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.price-box .big { margin-top: 8px; font-size: 64px; font-weight: 900; color: var(--lime); line-height: 0.95; }
.price-box .note { margin-top: 10px; color: var(--muted); }

.contact-form { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 16px 16px; border-radius: 18px; border: 1px solid var(--border);
  background: rgba(0,0,0,0.40); color: #fff; font-size: 15px;
}
.contact-form textarea { min-height: 140px; resize: vertical; margin-top: 14px; }
.contact-form button { width: 100%; margin-top: 14px; }

footer {
  border-top: 1px solid var(--border); padding: 26px 0 34px; color: var(--muted-2);
}
.footer-row { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }

.social-proof-bar { background: rgba(163,230,53,0.10); border-bottom: 1px solid rgba(163,230,53,0.18); }
.social-proof-bar .container {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px; padding: 12px 0; text-align: center;
}
.social-proof-bar span { font-size: 14px; font-weight: 700; color: #d9f99d; letter-spacing: 0.04em; }
.social-proof-bar .divider { color: rgba(163,230,53,0.40); font-weight: 400; }
.mobile-only { display: none; }

/* Scrolling business banner — shown on mobile only (see media query below) */
.biz-marquee { display: none; }
@keyframes biz-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .biz-track { animation: none !important; }
}

.night-tagline {
  margin-top: 14px; font-size: clamp(30px, 4.5vw, 52px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.02; color: var(--lime); text-transform: uppercase;
}

.operators-note {
  margin-top: 12px; font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em; color: #ffffff;
}

.fee-highlight {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 16px;
  border: 1px solid rgba(163,230,53,0.30); background: rgba(163,230,53,0.12);
  color: #d9f99d; font-weight: 800; font-size: 15px; line-height: 1.4;
}

.urgency-note { color: var(--lime); font-weight: 800; font-size: 14px; text-align: center; margin: 12px 0 0; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.faq-item { border: 1px solid var(--border); background: rgba(0,0,0,0.28); border-radius: 20px; padding: 22px 24px; }
.faq-item h4 { margin: 0 0 10px; font-size: 18px; font-weight: 800; color: #fff; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 15px; }

/* Breadcrumb shown on landing + article pages */
.crumbs { padding-top: 26px; color: var(--muted-2); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--lime); }
.crumbs .sep { margin: 0 8px; color: rgba(255,255,255,0.25); }

/* Prose styles for the revenue article */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 48px; }
.prose h3 { font-size: 24px; font-weight: 800; margin: 34px 0 0; color: #fff; }
.prose p { color: var(--muted); font-size: 18px; line-height: 1.8; margin-top: 16px; }
.prose ul { color: var(--muted); font-size: 18px; line-height: 1.8; margin-top: 16px; padding-left: 22px; }
.prose li { margin: 10px 0; }
.prose strong { color: #fff; }
.revenue-table {
  width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 26px;
  border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
}
.revenue-table th, .revenue-table td {
  padding: 16px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border);
}
.revenue-table th { background: rgba(163,230,53,0.10); color: #d9f99d; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
.revenue-table td { color: var(--muted); }
.revenue-table td:last-child, .revenue-table th:last-child { text-align: right; }
.revenue-table tr:last-child td { border-bottom: none; }
.revenue-table tr td:nth-child(2) { color: var(--lime); font-weight: 800; }

/* Cross-link grid in the footer area of every page */
.seo-links { border-top: 1px solid var(--border); padding-top: 40px; margin-top: 10px; }
.seo-links h2 { font-size: 22px; }
.seo-links .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.seo-links a {
  display: block; padding: 16px 18px; border: 1px solid var(--border); border-radius: 16px;
  background: rgba(0,0,0,0.28); color: rgba(255,255,255,0.82); font-weight: 700; font-size: 15px;
}
.seo-links a:hover { border-color: rgba(163,230,53,0.45); color: var(--lime); }

@media (max-width: 980px) {
  .hero-grid, .two-grid, .three-grid, .gallery-grid, .sliders, .income-grid, .hero-side-grid, .form-grid, .buy-grid, .faq-grid, .seo-links .grid {
    grid-template-columns: 1fr;
  }
  .stats { grid-template-columns: 1fr; max-width: none; }
  /* On mobile keep only the 20% card — drop the $4 and $8 bubbles */
  .stats .stat-card:nth-child(-n+2) { display: none; }
  .income-total { width: 100%; text-align: left; }
  .income-total .value { font-size: 38px; }
  .brand { font-size: 18px; letter-spacing: 0.10em; }
  .brand img { height: 34px; }

  .eyebrow { display: none; }
  .hero-machine { display: none; }
  .hero-product { display: none; }
  .night-tagline { display: none; }
  .hero { padding: 40px 0 32px; }

  .hero-grid > div { display: flex; flex-direction: column; }
  /* Hide the operating-fee bubble on mobile */
  .fee-highlight { display: none; }
  /* Move the big 20% operating-fee stat below the income estimator on mobile */
  .stats { order: 1; margin-top: 22px; }

  .mobile-hide { display: none; }
  .mobile-only { display: inline; }
  .secure-checkout { display: none; }

  /* Replace the static "operators / limited spots" text with a scrolling business banner */
  .social-proof-bar .container { display: none; }
  .biz-marquee {
    display: block; width: 100%; overflow: hidden; padding: 11px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .biz-track {
    display: inline-flex; align-items: center; white-space: nowrap;
    will-change: transform; animation: biz-scroll 24s linear infinite;
  }
  .biz-track span {
    font-size: 13px; font-weight: 800; color: #d9f99d;
    letter-spacing: 0.06em; text-transform: uppercase; padding: 0 16px;
  }
  .biz-track span::after { content: "•"; margin-left: 32px; color: rgba(163,230,53,0.45); }

  .nav-inner { min-height: auto; padding: 12px 0; flex-wrap: wrap; gap: 10px; }
  .nav-toggle { display: flex; }
  .nav-links, .nav-actions { display: none; width: 100%; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 4px; padding-top: 6px; }
  .nav-links a {
    padding: 14px 14px; border-radius: 12px; font-size: 16px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  }
  .nav.open .nav-actions { display: flex; flex-direction: column; gap: 10px; padding-bottom: 6px; }
  .nav-actions .btn { width: 100%; flex: none; padding: 15px; border-radius: 14px; font-size: 14px; white-space: nowrap; }
}
