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

/* ── Variables ── */
/* cache-bust: v2 */
:root {
  --bg:      #000000;
  --bg2:     #060000;
  --bg3:     #0d0000;
  --red:     #e8000f;
  --red2:    #ff2020;
  --border:  rgba(232,0,15,0.18);
  --border2: rgba(232,0,15,0.30);
  --tx:      #f0e0e0;
  --muted:   #9a7070;
  --dim:     #5a3535;
  --card:    rgba(30,8,8,0.85);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--tx);
  font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background canvas (stars + lines) ── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── All sections sit above canvas ── */
.ticker-wrap, .nav, .hero, .store, .why, .faq, .refunds, .footer {
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────────────
   TICKER
─────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  height: 32px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.ticker-track span::before {
  content: "· ";
  opacity: 0.6;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ───────────────────────────────────────────────
   NAV
─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 14px 24px;
}

.nav-inner {
  background: rgba(20,4,4,0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 720px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ───────────────────────────────────────────────
   RED GLOW BLOBS
─────────────────────────────────────────────── */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(232,0,15,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(232,0,15,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ───────────────────────────────────────────────
   HERO
─────────────────────────────────────────────── */
.hero {
  padding: 80px 24px 100px;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,8,8,0.7);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

.hero-icon {
  margin-bottom: 32px;
  filter: drop-shadow(0 0 24px rgba(232,0,15,0.4));
}

.hero-icon svg, .hero-icon img {
  border-radius: 18px;
  display: block;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', serif;
}

.hero-red { color: var(--red); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }

.btn-ghost {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(30,8,8,0.8);
  border: 1px solid var(--border2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  margin-bottom: 32px;
}
.btn-discord:hover { border-color: rgba(114,137,218,0.5); color: #fff; }

.hero-checks {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-checks span::before { content: "✓ "; color: var(--red); }

/* ───────────────────────────────────────────────
   SHARED SECTION TOKENS
─────────────────────────────────────────────── */
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-family: Georgia, 'Times New Roman', serif;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.alert-error {
  background: rgba(232,0,15,0.1);
  border: 1px solid var(--red);
  border-radius: 8px;
  color: #ff8888;
  padding: 12px 18px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* ───────────────────────────────────────────────
   STORE
─────────────────────────────────────────────── */
.store {
  padding: 80px 0 90px;
}

.store-email-row {
  margin-bottom: 36px;
}

.store-email-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 8px;
}

.store-email-row input {
  width: 100%;
  max-width: 420px;
  background: rgba(20,4,4,0.7);
  border: 1px solid var(--border2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  display: block;
  transition: border-color 0.2s;
}
.store-email-row input:focus { border-color: var(--red); }

.email-hint {
  display: block;
  color: var(--dim);
  font-size: 12px;
  margin-top: 6px;
}

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

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.15s;
  backdrop-filter: blur(8px);
}
.product-card:hover { border-color: var(--border2); transform: translateY(-2px); }

.product-featured { border-color: rgba(232,0,15,0.35); }

.product-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.tag-popular { color: var(--red); }
.tag-value   { color: #ff9900; }
.tag-longterm{ color: #6699ff; }

.product-icon {
  margin-bottom: 14px;
}

.product-icon svg, .product-icon img {
  border-radius: 12px;
  display: block;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.product-duration {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}

.btn-buynow {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-buynow:hover { background: var(--red2); transform: translateY(-1px); }

.store-tos {
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  margin-top: 16px;
}

/* ───────────────────────────────────────────────
   WHY US
─────────────────────────────────────────────── */
.why {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--border2); }

.why-icon { font-size: 26px; margin-bottom: 14px; }

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

.why-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ───────────────────────────────────────────────
   FAQ
─────────────────────────────────────────────── */
.faq {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}
.faq-item.faq-open { border-color: var(--border2); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--tx);
  font-size: 14px;
  font-weight: 500;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: #fff; }
.faq-item.faq-open .faq-q { color: #fff; }

.faq-arrow {
  font-size: 20px;
  color: var(--red);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.faq-open .faq-arrow { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 20px;
}
.faq-item.faq-open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* ───────────────────────────────────────────────
   REFUNDS
─────────────────────────────────────────────── */
.refunds {
  padding: 40px 0 80px;
}

.refund-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
  backdrop-filter: blur(8px);
}

.refund-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.refund-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.refund-card p:last-child { margin-bottom: 0; }

/* ───────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

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

/* ───────────────────────────────────────────────
   SUCCESS / CANCEL
─────────────────────────────────────────────── */
.status-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.status-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 52px 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
}

.status-icon  { font-size: 54px; margin-bottom: 20px; line-height: 1; }
.status-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.status-body  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.status-note  { font-size: 13px; color: var(--dim); line-height: 1.6; margin-bottom: 32px; }

.btn-back {
  display: inline-block;
  background: rgba(30,8,8,0.8);
  color: var(--tx);
  border: 1px solid var(--border2);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-back:hover { border-color: var(--red); }

/* ───────────────────────────────────────────────
   FOUNDER LOGIN
─────────────────────────────────────────────── */
.login-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 44px 40px;
  width: 100%;
  max-width: 400px;
}

/* ───────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .hero-title    { font-size: 32px; }
  .hero-btns     { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-inner  { flex-direction: column; text-align: center; }
  .status-card   { padding: 36px 24px; }
  .refund-card   { padding: 24px 20px; }
}
