/* =============================================================
   Cam Elite Boost — design system
   Premium dark theme. One stylesheet, no framework.
   ============================================================= */

:root {
  /* palette */
  --bg:            #08080c;
  --bg-2:          #0c0c13;
  --surface:       #12121b;
  --surface-2:     #171722;
  --surface-3:     #1e1e2b;
  --border:        rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);

  --text:          #f4f4f8;
  --text-soft:     #c3c3d2;
  --text-muted:    #8b8b9e;

  --violet:        #8b5cf6;
  --violet-2:      #7c3aed;
  --pink:          #ec4899;
  --gold:          #e8b84b;
  --green:         #34d399;

  --grad:          linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --grad-soft:     linear-gradient(135deg, rgba(139,92,246,.16), rgba(236,72,153,.16));
  --glow:          0 0 60px rgba(139,92,246,.35);

  --radius:        18px;
  --radius-sm:     12px;
  --radius-lg:     26px;
  --maxw:          1180px;

  --shadow:        0 20px 50px -20px rgba(0,0,0,.7);
  --shadow-card:   0 12px 34px -18px rgba(0,0,0,.75);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
::selection { background: rgba(236,72,153,.35); color: #fff; }

/* ---------- background glow ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 40rem at 78% -8%, rgba(139,92,246,.16), transparent 60%),
    radial-gradient(50rem 40rem at 8% 8%, rgba(236,72,153,.10), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
  pointer-events: none;
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px var(--pink); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 20px 0 14px; }
.section-head p { color: var(--text-soft); font-size: 18px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.gold { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(236,72,153,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(236,72,153,.7); }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg,#f2ca63,#d99b2b); color: #241a05; box-shadow: 0 10px 30px -12px rgba(232,184,75,.6); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(8,8,12,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(8,8,12,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 16px;
  box-shadow: 0 6px 18px -6px rgba(236,72,153,.7);
}
.brand .mark svg { width: 20px; height: 20px; }
.brand b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-soft); font-size: 15px; font-weight: 500; transition: color .18s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); background: rgba(255,255,255,.03); place-items: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 72px; position: relative; text-align: center; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(34px, 6.2vw, 68px); letter-spacing: -.03em; margin: 26px auto 22px; max-width: 15ch; }
.hero .lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--text-soft); max-width: 640px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13.5px; color: var(--text-muted); }
.hero-note b { color: var(--text-soft); }
.trust-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 46px; }
.trust {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border: 1px solid var(--border); border-radius: 14px;
  background: rgba(255,255,255,.02); font-size: 14px; color: var(--text-soft);
}
.trust svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.trust b { color: var(--text); font-weight: 600; }

/* ---------- cards / features ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.card .num { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--pink); }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 20px; color: var(--violet);
}
.card .ico svg { width: 25px; height: 25px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15.5px; }

/* value / why cards */
.value { text-align: left; }
.value .k { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; display:flex; align-items:center; gap:9px; }
.value .k span { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-soft); display: grid; place-items: center; color: var(--pink); }
.value .k span svg { width: 17px; height: 17px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.price {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; display: flex; flex-direction: column;
}
.price.featured { border-color: rgba(236,72,153,.4); box-shadow: 0 0 0 1px rgba(236,72,153,.18), 0 30px 60px -30px rgba(236,72,153,.4); }
.price .badge {
  position: absolute; top: 22px; right: 22px; font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: var(--grad-soft); color: var(--pink); border: 1px solid rgba(236,72,153,.3);
}
.price .badge.gold { background: rgba(232,184,75,.12); color: var(--gold); border-color: rgba(232,184,75,.35); }
.price h3 { font-size: 22px; margin-bottom: 6px; }
.price .tag { color: var(--text-muted); font-size: 14.5px; margin-bottom: 22px; }
.price .amount { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.price .amount .now { font-family: var(--font-display); font-size: 44px; font-weight: 700; }
.price .amount .was { font-size: 19px; color: var(--text-muted); text-decoration: line-through; }
.price .save { display: inline-block; font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 20px; }
.price p.desc { color: var(--text-soft); font-size: 15px; margin-bottom: 26px; flex: 1; }
.price .btn { margin-top: auto; }

/* promo hours */
.promo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.promo {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; text-align: left;
  transition: transform .2s, border-color .2s;
}
.promo:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.promo .pill { display:inline-block; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--violet); background: var(--grad-soft); border:1px solid var(--border); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.promo .rate { display: flex; align-items: baseline; gap: 9px; margin-bottom: 4px; }
.promo .rate .big { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.promo .rate .old { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }
.promo h3 { font-size: 16.5px; margin: 14px 0 8px; }
.promo p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; min-height: 40px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.015); }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff;
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad);
  display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 8px 20px -8px rgba(236,72,153,.6);
}
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* ---------- safety band ---------- */
.safe {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(52,211,153,.06), rgba(139,92,246,.06));
  padding: 46px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.safe-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.safe-list .item { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--text-soft); font-weight: 500; }
.safe-list .item svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(255,255,255,.015); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 17px; background: none; border: none;
}
.faq-q .chev { width: 22px; height: 22px; flex: none; transition: transform .25s ease; color: var(--pink); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 24px 22px; color: var(--text-muted); font-size: 15.5px; }
.faq-item.open .faq-a { max-height: 420px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid rgba(236,72,153,.28);
  background: linear-gradient(135deg, rgba(139,92,246,.14), rgba(236,72,153,.14));
  padding: 64px 40px; text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); font-size: 18px; margin-bottom: 30px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 60px 0 34px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 340px; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-soft); font-size: 15px; margin-bottom: 11px; transition: color .18s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 13.5px; }
.footer-bottom .disclaimer { max-width: 620px; }

/* ---------- article ---------- */
.article-hero { padding: 60px 0 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--text-muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: .5; }
.article-hero h1 { font-size: clamp(30px, 5vw, 50px); max-width: 20ch; margin-bottom: 18px; }
.article-meta { display: flex; gap: 16px; align-items: center; color: var(--text-muted); font-size: 14px; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }

.prose { max-width: 760px; margin-inline: auto; font-size: 17.5px; }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 32px); margin-top: 52px; margin-bottom: 4px; }
.prose h3 { font-size: 21px; margin-top: 34px; }
.prose p { color: var(--text-soft); }
.prose strong { color: var(--text); }
.prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(236,72,153,.4); }
.prose a:hover { text-decoration-color: var(--pink); }
.prose ul, .prose ol { padding-left: 4px; color: var(--text-soft); list-style: none; }
.prose ul li, .prose ol li { position: relative; padding-left: 30px; margin-top: 12px; }
.prose ul li::before { content: ""; position: absolute; left: 6px; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.prose ol { counter-reset: li; }
.prose ol li { counter-increment: li; }
.prose ol li::before { content: counter(li); position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--pink); width: 22px; height: 22px; border-radius: 7px; background: var(--grad-soft); display: grid; place-items: center; margin-top: 2px; }
.prose blockquote { border-left: 3px solid var(--pink); padding: 6px 0 6px 22px; color: var(--text); font-size: 20px; font-family: var(--font-display); }
.callout {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px;
  background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(236,72,153,.08));
  margin-top: 40px;
}
.callout h3 { margin-top: 0; }
.prose .lead-p { font-size: 20px; color: var(--text); }

.post-nav { max-width: 760px; margin: 60px auto 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 30px; }
.post-nav a { color: var(--text-soft); font-size: 15px; max-width: 46%; }
.post-nav a:hover { color: var(--text); }
.post-nav a small { display: block; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }

/* article cards (blog index) */
.post-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2)); transition: transform .22s, border-color .22s;
}
.post-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.post-card .thumb { aspect-ratio: 16/9; background: var(--grad-soft); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.post-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-card .body { padding: 26px; }
.post-card .kw { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); }
.post-card h2 { font-size: 21px; margin: 12px 0 10px; }
.post-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.post-card .read { color: var(--text-soft); font-size: 14px; font-weight: 600; font-family: var(--font-display); display:inline-flex; align-items:center; gap:7px; }
.post-card .read svg { width: 16px; height: 16px; }

/* legal page */
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(30px,4vw,44px); margin-bottom: 10px; }
.legal .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--text-soft); font-size: 16.5px; }
.legal ul { padding-left: 4px; list-style: none; margin-top: 14px; }
.legal ul li { position: relative; padding-left: 26px; margin-bottom: 12px; }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.legal strong { color: var(--text); }

/* reveal-on-scroll — only hides when JS is present (progressive enhancement).
   Without JS the content is fully visible, so nothing is ever hidden from
   crawlers or no-JS users. */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .promo-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .safe { grid-template-columns: 1fr; padding: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .container { padding-inline: 18px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; }
  /* keep the header on one line on narrow phones */
  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { padding: 10px 16px; font-size: 14.5px; }
  .brand { font-size: 17px; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(10,10,16,.98); border-bottom: 1px solid var(--border); padding: 10px 24px 20px;
    backdrop-filter: blur(14px);
  }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .grid-2, .grid-3, .grid-4, .price-grid, .promo-grid { grid-template-columns: 1fr; }
  .value.grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 22px; }
  .prose ol li, .prose ul li { padding-left: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}
