: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;
}
.brand img { height: 42px; width: auto; max-width: 220px; 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); }
.preorder-badge {
  display: inline-block; margin-right: 8px; padding: 3px 9px; border-radius: 999px;
  background: color-mix(in srgb, currentColor 16%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  vertical-align: middle; line-height: 1;
}
.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); }
/* Purchase section grid — kept in CSS (not inline) so the mobile media query can collapse it */
.buy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.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; }
.footer-logo { height: 38px; width: auto; max-width: 200px; object-fit: contain; }

.social-proof-bar { background: rgba(163,230,53,0.10); border-bottom: 1px solid rgba(163,230,53,0.18); }
.social-proof-bar .container {
  position: relative;
  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; }

/* Instagram, purchase, and call links in the social proof bar */
.sp-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: #d9f99d; text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.social-proof-bar .sp-link span { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: inherit; }
.sp-link:hover, .sp-link:focus-visible { color: var(--lime); }
.sp-icon { width: 16px; height: 16px; flex: 0 0 auto; }
/* Header actions sit together at the right edge of the bar */
.sp-desktop-actions {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 8px;
}
.sp-desktop-actions .sp-purchase { position: static; transform: none; }
.sp-purchase {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  gap: 6px; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--lime); background: var(--lime); color: var(--black);
}
.sp-purchase:hover, .sp-purchase:focus-visible { background: var(--lime-2); border-color: var(--lime-2); color: var(--black); }
.sp-call {
  gap: 6px; padding: 5px 12px; border-radius: 999px;
  border: 2px solid var(--lime); background: #ffffff; color: var(--black);
}
.sp-call:hover, .sp-call:focus-visible { background: #e8e8e8; border-color: var(--lime-2); color: var(--black); }
.sp-mobile-actions { display: none; }
.mobile-only { display: none; }

/* Static trust line — shown on mobile only (see media query below) */
.mobile-trust { display: none; }

.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; }
.pos-note { margin-top: 14px; border: 1px solid rgba(163,230,53,0.28); background: rgba(163,230,53,0.07); border-radius: 20px; padding: 14px 16px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.pos-note strong { color: #fff; font-weight: 800; }

.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; }

/* Inline text link, e.g. the out of country pricing link in copy */
.inline-link { color: var(--lime); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: #fff; }

/* 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); }

.no-fee-band { padding: 28px 0 0; }
.no-fee-inner {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  padding: 44px 44px 40px; border-radius: 34px;
  border: 1px solid rgba(163,230,53,0.35);
  background: linear-gradient(135deg, rgba(163,230,53,0.20), rgba(163,230,53,0.05) 55%, rgba(0,0,0,0.35));
  box-shadow: 0 26px 70px rgba(163,230,53,0.12);
}
.no-fee-inner::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(163,230,53,0.22); filter: blur(90px);
  top: -210px; left: 50%; transform: translateX(-50%);
}
.no-fee-badge {
  display: inline-flex; padding: 8px 15px; border-radius: 999px;
  border: 1px solid rgba(163,230,53,0.30); background: rgba(163,230,53,0.12);
  color: #d9f99d; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.no-fee-headline {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-top: 20px;
}
.no-fee-zero {
  font-size: clamp(72px, 11vw, 132px); font-weight: 900; line-height: 0.82;
  color: var(--lime); letter-spacing: -0.05em; text-shadow: 0 0 70px rgba(163,230,53,0.40);
}
.no-fee-words {
  font-size: clamp(32px, 5.4vw, 62px); font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; text-transform: uppercase; text-align: left; max-width: 8.5em;
}
.no-fee-sub { margin: 22px auto 0; max-width: 780px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.no-fee-sub strong { color: #fff; font-weight: 800; }
.no-fee-points {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.no-fee-point {
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.32);
  color: rgba(255,255,255,0.86); font-size: 14px; font-weight: 700;
}
@media (max-width: 720px) {
  .no-fee-inner { padding: 30px 20px 28px; border-radius: 26px; }
  .no-fee-headline { gap: 8px; margin-top: 16px; }
  .no-fee-words { text-align: center; max-width: none; }
  .no-fee-sub { margin-top: 16px; font-size: 15px; }
  .no-fee-points { gap: 8px; margin-top: 18px; }
  .no-fee-point { padding: 9px 14px; font-size: 13px; }
}

@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 operating-fee 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 img { height: 34px; }
  .footer-logo { height: 32px; }

  .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 no-fee bubble on mobile — the no-fee band above already covers it */
  .fee-highlight { display: none; }
  /* Move the hero stats 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 single trust line */
  .social-proof-bar .container { display: none; }
  .mobile-trust {
    display: block; width: 100%; text-align: center; padding: 11px 16px;
    font-size: 13px; font-weight: 800; color: #d9f99d;
    letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.5;
  }
  .mobile-trust .mt-fee { display: block; font-size: 18px; color: #ffffff; font-weight: 900; }
  .mobile-trust .mt-rest { display: block; margin-top: 1px; }
  .social-proof-bar .mobile-trust { padding-bottom: 7px; }

  /* Follow, purchase, and call actions stay reachable on small screens */
  .sp-mobile-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 4px 12px 11px;
  }
  .sp-mobile-actions .sp-link {
    flex: 1 1 0; justify-content: center; min-width: 0; max-width: 132px; height: 34px; padding: 5px 10px;
    border: 2px solid var(--lime); border-radius: 999px; background: #ffffff; color: var(--black);
  }
  .sp-mobile-actions .sp-link:hover,
  .sp-mobile-actions .sp-link:focus-visible { background: #e8e8e8; border-color: var(--lime-2); color: var(--black); }
  .sp-mobile-actions .sp-purchase { position: static; transform: none; }
  .social-proof-bar .sp-mobile-actions span {
    font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  }
  .social-proof-bar .sp-mobile-actions .sp-link span { color: var(--black); }
  .sp-mobile-actions .sp-icon { width: 15px; height: 15px; }

  .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; }
}
