/* ==========================================================
   ClipSquare — dark product design system
   Canvas: near-black indigo · Accent: violet gradient
   Display: Space Grotesk · Body: Inter
   ========================================================== */
:root {
  --bg: #0b0d12;
  --surface: #12151d;
  --raised: #191d28;
  --border: #232837;
  --text: #f2f4f8;
  --text-2: #9aa3b5;
  --violet: #6e56ff;
  --violet-2: #9b8cff;
  --mint: #3adfa5;
  --amber: #ffc24b;
  --radius: 20px;
  --pill: 999px;
  --nav-h: 68px;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h, 68px) + 28px); /* anchors clear the fixed nav */
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

.grad-text {
  background: linear-gradient(100deg, var(--violet-2), var(--violet) 55%, #4d34e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  color: #fff;
  box-shadow: 0 8px 24px rgba(110,86,255,.35);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(110,86,255,.5); }
.btn-soft {
  background: var(--raised);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 16px; }

/* ---------- Navbar ---------- */
.nav-wrap { position: fixed; inset: 0 0 auto; z-index: 100; padding: 12px 16px 18px;
  background: linear-gradient(to bottom, var(--bg) 55%, transparent);
  pointer-events: none; }
.nav-wrap .nav { pointer-events: auto; }
.nav {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  background: rgba(18,21,29,.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
}
.nav-links { display: flex; gap: 26px; margin-left: 16px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-2); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.nav-burger {
  display: none;
  margin-left: auto;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 20px);
  left: 16px; right: 16px;
  z-index: 99;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 500;
}
body.menu-open .mobile-menu { display: flex; }

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--nav-h) + 90px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 620px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(110,86,255,.28) 0%, rgba(110,86,255,0) 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
}
.badge-dot::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 52px 0 70px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.stat-label { font-size: 13px; color: var(--text-2); }
.stat-div { width: 1px; height: 34px; background: var(--border); }

/* ---------- Campaign ticker ---------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(18,21,29,.5);
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: tick 34s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }

.tcard {
  flex: none;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 20px;
}
.tcard strong { font-size: 14.5px; font-weight: 600; }
.tcard em  { font-style: normal; font-size: 14px; font-weight: 700; color: var(--mint); text-align: right; }
.tcard small { font-size: 12px; color: var(--text-2); }
.live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--mint);
}

/* ---------- Sections shared ---------- */
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.chip {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--violet-2);
  background: rgba(110,86,255,.12);
  border: 1px solid rgba(110,86,255,.25);
  border-radius: var(--pill);
  padding: 7px 14px;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.06;
}
.section-sub {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 14px;
}

/* ---------- Features ---------- */
.features { padding: 90px 0 40px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: #313952; transform: translateY(-3px); }
.feat-card h4 { font-family: var(--display); font-size: 18px; font-weight: 600; margin: 14px 0 8px; }
.feat-card p  { font-size: 14px; line-height: 1.6; color: var(--text-2); }

.ficon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(110,86,255,.14);
  border: 1px solid rgba(110,86,255,.3);
  color: var(--violet-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.ficon svg { width: 20px; height: 20px; display: block; }

/* spotlight */
.feat-spot {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(110,86,255,.16) 0%, transparent 55%),
    var(--surface);
  padding: 38px;
}
.feat-spot h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.feat-spot .feat-copy p { font-size: 15.5px; color: var(--text-2); line-height: 1.65; }

.spot-mock {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
}
.spot-balance small { font-size: 12px; color: var(--text-2); }
.spot-balance strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -.02em;
  margin: 4px 0 8px;
}
.delta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(58,223,165,.12);
  border-radius: var(--pill);
  padding: 5px 10px;
}
.spot-graph {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 110px;
}
.spot-graph i {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--violet-2), var(--violet));
  opacity: .85;
}

/* ---------- How it works ---------- */
.how { padding: 80px 0; }

.toggle {
  display: inline-flex;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 5px;
  margin-top: 26px;
}
.toggle-btn {
  border: 0;
  background: transparent;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  padding: 11px 22px;
  border-radius: var(--pill);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.toggle-btn.active {
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  color: #fff;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-no {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--violet-2);
  background: rgba(110,86,255,.12);
  border: 1px solid rgba(110,86,255,.3);
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.step-card h3 { font-family: var(--display); font-size: 19.5px; font-weight: 600; letter-spacing: -.01em; }
.step-card > p { font-size: 14px; line-height: 1.6; color: var(--text-2); }

.mini-mock {
  margin-top: auto;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 16px;
}
.mm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: 13.5px;
  font-weight: 600;
}
.mm-row.muted { color: var(--text-2); border-top: 1px solid var(--border); font-weight: 500; }
.mm-pill {
  background: rgba(58,223,165,.12);
  color: var(--mint);
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
}
.mm-ok { color: var(--mint); font-size: 12.5px; font-weight: 700; }

/* ---------- Calculator ---------- */
.calc { padding: 60px 0 110px; }
.calc-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.calc-controls {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--border);
}
.ctrl label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 12px;
}
.ctrl output { font-size: 16px; font-weight: 700; color: var(--text); }

.plat-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.plat-pill {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--raised);
  color: var(--text-2);
  border-radius: var(--pill);
  padding: 9px 17px;
  cursor: pointer;
  transition: all .15s;
}
.plat-pill.active {
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  color: #fff;
  border-color: transparent;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--raised);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--violet-2);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1.5px var(--violet-2), 0 4px 12px rgba(110,86,255,.5);
  cursor: pointer;
}
.range-ends {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 8px;
}

.calc-result { padding: 34px; display: flex; flex-direction: column; }
.calc-result > small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
}
.calc-total {
  font-family: var(--display);
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 4px 0 2px;
}
.calc-meta { font-size: 13.5px; color: var(--text-2); margin-bottom: 20px; }
.calc-rows { border-top: 1px solid var(--border); }
.crow {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.crow + .crow { border-top: 1px solid var(--border); }
.crow span:last-child { font-weight: 700; color: var(--text); }

.ladder { margin-top: 18px; }
.ladder > small { font-size: 12px; color: var(--text-2); }
.ladder-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.rung {
  text-align: center;
  font-size: 12px;
  color: var(--text-2);
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 6px;
  line-height: 1.5;
}
.rung strong { font-size: 15px; color: var(--text); }
.rung.active {
  border-color: var(--violet);
  background: rgba(110,86,255,.12);
  color: var(--violet-2);
}
.rung.active strong { color: var(--violet-2); }

.calc-disclaimer {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ---------- Social proof ---------- */
.proof { padding: 40px 0 100px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color .2s, transform .2s;
}
.quote-card:hover { border-color: #313952; transform: translateY(-3px); }
.quote-card > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.quote-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0b0d12;
  flex: none;
}
.a-1 { background: #9b8cff; }
.a-2 { background: #3adfa5; }
.a-3 { background: #ffc24b; }
.a-4 { background: #7dd3fc; }
.a-5 { background: #f9a8d4; }
.a-6 { background: #a3e635; }
.q-who { display: flex; flex-direction: column; line-height: 1.25; }
.q-who strong { font-size: 14px; }
.q-who small  { font-size: 12px; color: var(--text-2); }
.q-earn {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(58,223,165,.12);
  border-radius: var(--pill);
  padding: 5px 10px;
  white-space: nowrap;
}

.press-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.press-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.press-name {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 600;
  color: #6c7690;
}

/* ---------- FAQ ---------- */
.faq { padding: 40px 0 90px; }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-left { position: sticky; top: 110px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 22px;
  transition: border-color .2s;
}
.faq-list details[open] { border-color: rgba(110,86,255,.45); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 600;
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--violet-2);
  transition: transform .2s;
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  padding: 0 0 20px;
  max-width: 560px;
}

/* ---------- Final CTA ---------- */
.cta { padding: 20px 0 90px; }
.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(110,86,255,.22) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 74px 30px;
}
.cta-card h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 30px;
}
.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-2);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 34px;
  background: #090b0f;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
}
.foot-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 16px 0 20px;
  max-width: 280px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--raised);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s, border-color .15s;
}
.socials a:hover { color: var(--text); border-color: #313952; }

.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col h5 {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.foot-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s;
}
.foot-col a:hover { color: var(--text); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-2);
}

/* ---------- Sub-pages ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 620px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(110,86,255,.28) 0%, rgba(110,86,255,0) 70%);
  pointer-events: none;
}
.page-hero.compact { padding-bottom: 30px; }
.page-hero .hero-stats { margin-bottom: 0; }

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* campaign grid */
.camp { padding: 40px 0 100px; }
.camp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.camp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s;
}
.camp-card:hover { border-color: #313952; transform: translateY(-3px); }
.camp-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.camp-head > div { line-height: 1.25; }
.camp-head strong { font-size: 15.5px; display: block; }
.camp-head small  { font-size: 12px; color: var(--text-2); }
.camp-head .live  { margin-left: auto; }
.camp-logo {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  flex: none;
}
.camp-rate {
  font-size: 14px;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.camp-rate em {
  font-style: normal;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  color: var(--mint);
  margin-right: 4px;
}
.camp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.camp-meta span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 5px 11px;
}
.camp-join { margin-top: auto; }
.camp-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 34px;
}

/* brand contact form */
.contact { padding: 30px 0 100px; }
.brand-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .15s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--violet); }
.field ::placeholder { color: #5a6377; }
.form-ok {
  font-size: 14px;
  font-weight: 600;
  color: var(--mint);
}

/* ---------- Royal crown + sparkles ---------- */
.royal { position: relative; display: inline-block; }

.crown-top {
  position: absolute;
  top: -.42em;
  left: -.14em;
  width: .58em;
  transform: rotate(-20deg);
  filter: drop-shadow(0 0 10px rgba(255,207,92,.55));
  animation: crown-bob 3.4s ease-in-out infinite;
}

.spk {
  position: absolute;
  font-style: normal;
  color: #ffd76a;
  text-shadow: 0 0 12px rgba(255,207,92,.9);
  pointer-events: none;
  animation: twinkle 1.9s ease-in-out infinite;
}
.k1 { top: -.28em; right: -.32em; font-size: .34em; animation-delay: 0s; }
.k2 { top: .18em;  left: -.42em;  font-size: .24em; animation-delay: .55s; }
.k3 { bottom: -.12em; right: .1em; font-size: .28em; animation-delay: 1.1s; }

@keyframes twinkle {
  0%, 100% { opacity: 0;  transform: scale(.4) rotate(0deg); }
  50%      { opacity: 1;  transform: scale(1.15) rotate(24deg); }
}
@keyframes crown-bob {
  0%, 100% { transform: rotate(-20deg) translateY(0); }
  50%      { transform: rotate(-16deg) translateY(-5%); }
}

/* ---------- Headline weight (Roboto Black, YouTube-style) ---------- */
.hero-title,
.section-title,
.cta-card h2,
.feat-spot h3,
.calc-total,
.stat-num {
  font-weight: 900;
}

/* ---------- Status pills (shared) ---------- */
.pill-green {
  display: inline-block;
  background: rgba(58,223,165,.12);
  color: var(--mint);
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
}
.pill-amber {
  display: inline-block;
  background: rgba(255,194,75,.14);
  color: var(--amber);
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
}

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--raised);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex: none;
  transition: transform .15s;
}
.theme-toggle:hover { transform: scale(1.08); }

/* ---------- LIGHT THEME ---------- */
:root[data-theme="light"] {
  --bg: #f6f6fa;
  --surface: #ffffff;
  --raised: #eef0f6;
  --border: #e2e4ee;
  --text: #15171f;
  --text-2: #5c6274;
  --mint: #0a8f66;      /* darker for contrast on white */
  --amber: #a06f00;
}
[data-theme="light"] body { background: var(--bg); }
[data-theme="light"] .nav,
[data-theme="light"] .app-bar { background: rgba(255,255,255,.88); }
[data-theme="light"] .ticker  { background: rgba(255,255,255,.55); }
[data-theme="light"] .footer  { background: #eef0f6; }
[data-theme="light"] .btn-soft { background: #fff; }
[data-theme="light"] .hero::before,
[data-theme="light"] .page-hero::before { opacity: .55; }
[data-theme="light"] .cta-card,
[data-theme="light"] .feat-spot {
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(110,86,255,.10) 0%, transparent 60%),
    var(--surface);
}
[data-theme="light"] .msg-err,
[data-theme="light"] .pill-red,
[data-theme="light"] .amt-neg { color: #c23a3a; }
[data-theme="light"] .toggle-btn.active,
[data-theme="light"] .plat-pill.active { color: #fff; }
[data-theme="light"] input[type="range"]::-webkit-slider-thumb { border-color: #fff; }
[data-theme="light"] .press-name { color: #9aa0b4; }

/* ---------- Accessibility & motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .btn, .feat-card, .quote-card, .step-card { transition: none; }
  .spk, .crown-top { animation: none; }
  .spk { opacity: .9; }
}
:focus-visible {
  outline: 2px solid var(--violet-2);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection { background: rgba(110,86,255,.45); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-spot { grid-column: span 2; grid-template-columns: 1fr; }
  .calc-card { grid-template-columns: 1fr; }
  .calc-controls { border-right: 0; border-bottom: 1px solid var(--border); }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-brand { grid-column: span 2; }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .camp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .camp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .feat-spot { grid-column: span 1; }
  .stepper { grid-template-columns: 1fr; }
  .stat-div { display: none; }
  .hero-stats { gap: 22px; }
  .spot-mock { grid-template-columns: 1fr; }
}

/* ============================================================
   PREMIUM PASS (B8) — marketing site matches the app
   ============================================================ */

/* page breathes in (opacity only — transforms would break the fixed nav) */
body { animation: mkFade .45s ease; }
@keyframes mkFade { from { opacity: 0; } to { opacity: 1; } }

/* cards: lift + violet→mint glow ring on hover */
.feat-card, .step-card, .tcard, .quote-card, .calc-card, .camp-card {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover, .step-card:hover, .tcard:hover, .quote-card:hover, .camp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}
[data-theme="light"] .feat-card:hover, [data-theme="light"] .step-card:hover,
[data-theme="light"] .tcard:hover, [data-theme="light"] .quote-card:hover,
[data-theme="light"] .camp-card:hover { box-shadow: 0 18px 44px rgba(70,60,140,.14); }
.feat-card::after, .step-card::after, .tcard::after, .quote-card::after, .camp-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
  background: linear-gradient(135deg, rgba(143,123,255,.6), rgba(58,223,165,.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.feat-card:hover::after, .step-card:hover::after, .tcard:hover::after,
.quote-card:hover::after, .camp-card:hover::after { opacity: 1; }

/* the CTA card gets a slow light sweep */
.cta-card { position: relative; overflow: hidden; }
.cta-card::after { content: ""; position: absolute; top: 0; left: -70%;
  width: 40%; height: 100%; transform: skewX(-18deg); pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.06), transparent);
  animation: mkSheen 6s ease-in-out infinite; }
@keyframes mkSheen { 0% { left: -70%; } 55%, 100% { left: 140%; } }

/* LIVE means live */
.live { animation: mkLive 2.2s ease-in-out infinite; }
@keyframes mkLive { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

/* nav links: quiet until hovered */
.nav-links a { padding: 8px 13px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.nav-links a:hover { background: rgba(110,86,255,.12); }

/* tactile buttons */
.btn { transition: box-shadow .22s ease, transform .12s ease, background .2s ease; }
.btn:active { transform: scale(.97); }
.btn-primary:hover { transform: translateY(-1px); }

/* brand scrollbar + focus rings */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(110,86,255,.28); border-radius: 99px;
  border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(110,86,255,.5); background-clip: padding-box; }
:focus-visible { outline: 2px solid rgba(143,123,255,.8); outline-offset: 2px; border-radius: 6px; }

/* motion off = motion off */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
