/* ==========================================================================
   Akshay Mishra - Design System v2 "Voltage"
   Dark-native, glow-driven, high-energy. Built for conversion on mobile.

   Palette intent: electric violet primary, cyan secondary, voltage yellow
   reserved exclusively for money/numbers, hot coral for urgency only.
   Class contract is unchanged from v1 - all 8 pages restyle from this file.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Ground - near-black with a violet bias so glows sit in the same family */
  --void:      #05060B;
  --ground:    #080A12;
  --surface:   #0E111C;
  --elevated:  #151A2B;
  --raised:    #1D2338;

  /* Lines */
  --line:        rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-glow:   rgba(124, 92, 255, 0.40);

  /* Text */
  --text:      #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.74);
  --text-mute: rgba(255, 255, 255, 0.52);
  --text-dim:  rgba(255, 255, 255, 0.36);

  /* Brand */
  --violet:      #7C5CFF;
  --violet-lift: #9B82FF;
  --violet-deep: #5B3FE0;
  --cyan:        #22D3EE;
  --cyan-deep:   #0EA5C4;

  /* Semantic - yellow is money, coral is urgency. Never decorative. */
  --volt:   #FFD400;
  --coral:  #FF3B5C;
  --mint:   #2DE88E;

  /* Tints */
  --violet-10: rgba(124, 92, 255, 0.10);
  --violet-16: rgba(124, 92, 255, 0.16);
  --cyan-10:   rgba(34, 211, 238, 0.10);
  --volt-12:   rgba(255, 212, 0, 0.12);
  --coral-12:  rgba(255, 59, 92, 0.12);
  --mint-12:   rgba(45, 232, 142, 0.12);
  --glass:     rgba(255, 255, 255, 0.045);
  --glass-hi:  rgba(255, 255, 255, 0.075);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 55%, var(--cyan-deep) 130%);
  --grad-text:    linear-gradient(100deg, #FFFFFF 0%, #C9BCFF 42%, var(--cyan) 100%);
  --grad-panel:   linear-gradient(146deg, rgba(124, 92, 255, 0.13) 0%, rgba(34, 211, 238, 0.05) 48%, rgba(255, 255, 255, 0.02) 100%);
  --grad-volt:    linear-gradient(120deg, #FFE566 0%, var(--volt) 60%, #FFA800 100%);

  /* Glow */
  --glow-violet: 0 0 0 1px rgba(124, 92, 255, 0.30), 0 8px 28px rgba(124, 92, 255, 0.32), 0 0 60px rgba(124, 92, 255, 0.20);
  --glow-volt:   0 8px 30px rgba(255, 212, 0, 0.28), 0 0 60px rgba(255, 212, 0, 0.14);
  --glow-soft:   0 18px 50px rgba(0, 0, 0, 0.55);

  /* Type */
  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --wrap: 1180px;
  --wrap-narrow: 780px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Ambient page grain + top glow - sits behind everything, never intercepts clicks */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(124, 92, 255, 0.14), transparent 62%),
    radial-gradient(700px 480px at 8% 4%, rgba(34, 211, 238, 0.08), transparent 60%);
}
body > * { position: relative; z-index: 1; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.06; color: var(--text); font-family: var(--f-display); font-weight: 800; letter-spacing: -0.035em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: 0.55em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
::selection { background: var(--violet); color: #fff; }

/* ---------- 3. Type ---------- */
.display { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; }
h1, .h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); }
h2, .h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h3, .h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); font-weight: 700; letter-spacing: -0.025em; }

.lede { font-size: clamp(1.05rem, 1.75vw, 1.3rem); line-height: 1.58; color: var(--text-soft); }
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-lift);
  margin: 0 0 1rem;
}
.small { font-size: 0.87rem; }
.mute { color: var(--text-mute); }
.strike { text-decoration: line-through; color: var(--text-dim); }

/* Money and emphasis. .hi = voltage yellow, used only on numbers and payoffs. */
.hi { color: var(--volt); }
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
mark {
  background: linear-gradient(180deg, transparent 56%, rgba(255, 212, 0, 0.28) 56%);
  color: inherit; padding: 0 3px;
}

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: 22px; }
section { padding: clamp(60px, 8.5vw, 118px) 0; position: relative; }
.section-tight { padding: clamp(40px, 5vw, 68px) 0; }

/* Surface variants - all dark now. Kept as classes so page markup is unchanged. */
.dark { background: var(--void); }
.alt  { background: var(--surface); }
.warm { background: var(--elevated); }
.alt, .warm, .dark { position: relative; }

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(30px, 5vw, 62px); align-items: center; }
.center { text-align: center; }
.center-block { max-width: 760px; margin-inline: auto; }

/* Checkout leads with the form on narrow screens, so it stays above the fold. */
.split-checkout { grid-template-columns: 1fr 1.05fr; }

@media (max-width: 940px) {
  .g3, .g4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .split-checkout { grid-template-columns: 1fr; }
  .split-checkout > :last-child { order: -1; }
}
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } body { font-size: 16px; } }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--f-body);
  font-weight: 700; font-size: 1rem; letter-spacing: -0.015em;
  text-decoration: none; cursor: pointer;
  position: relative; isolation: isolate;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* Primary. .btn-gold kept as the v1 alias so page markup needs no edits. */
.btn-gold, .btn-primary {
  background: var(--grad-volt);
  color: #1A1400;
  box-shadow: var(--glow-volt);
  font-weight: 800;
}
.btn-gold:hover, .btn-primary:hover { box-shadow: 0 10px 38px rgba(255,212,0,.42), 0 0 76px rgba(255,212,0,.22); }

.btn-violet { background: var(--grad-primary); color: #fff; box-shadow: var(--glow-violet); }
.btn-violet:hover { box-shadow: 0 0 0 1px rgba(124,92,255,.5), 0 12px 40px rgba(124,92,255,.45), 0 0 80px rgba(124,92,255,.28); }

.btn-ink { background: var(--elevated); color: var(--text); border-color: var(--line-strong); }
.btn-ink:hover { background: var(--raised); }

.btn-ghost { background: var(--glass); border-color: var(--line-strong); color: var(--text); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--glass-hi); border-color: var(--line-glow); }

.btn-lg { padding: 20px 42px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }
.btn-sub { display: block; margin-top: 12px; font-size: 0.85rem; }

/* Pulsing halo on the highest-intent CTAs */
.btn-pulse::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: inherit; filter: blur(14px); opacity: .5;
  animation: halo 2.8s ease-in-out infinite;
}
@keyframes halo { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: .65; transform: scale(1.05); } }

/* ---------- 6. Surfaces ---------- */
.card {
  background: var(--grad-panel), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-glow); box-shadow: var(--glow-soft); }
.card h3 { margin-bottom: 0.42em; }
.card p:last-child { margin-bottom: 0; }
.card-flat { background: var(--glass); }
.card-flat:hover { transform: none; }

/* Feature card with a lit top edge */
.card-lit::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
  opacity: .8;
}

.pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--violet-10);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: var(--violet-lift);
  font-family: var(--f-mono);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}
.pill-signal { background: var(--mint-12); border-color: rgba(45,232,142,.3); color: var(--mint); }
.pill-volt   { background: var(--volt-12); border-color: rgba(255,212,0,.32); color: var(--volt); }
.pill-live   { background: var(--coral-12); border-color: rgba(255,59,92,.32); color: var(--coral); }
.pill-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255,59,92,.7); animation: blip 1.8s infinite;
}
@keyframes blip { 70% { box-shadow: 0 0 0 7px rgba(255,59,92,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,92,0); } }

.num {
  width: 38px; height: 38px; flex: 0 0 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--violet-16);
  border: 1px solid rgba(124,92,255,.34);
  color: var(--violet-lift);
  font-family: var(--f-mono); font-weight: 700; font-size: 0.92rem;
}

/* ---------- 7. Lists ---------- */
.check-list, .cross-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .cross-list li { position: relative; padding-left: 36px; margin-bottom: 15px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--mint-12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232DE88E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  border: 1px solid rgba(45,232,142,.26);
}
.cross-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--coral-12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF3B5C' stroke-width='3.4' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1px solid rgba(255,59,92,.26);
}

/* ---------- 8. Proof ---------- */
.avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: 0 0 54px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; font-family: var(--f-display);
  border: 1px solid var(--line-strong);
}

.stat { text-align: center; }
.stat b {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1;
  letter-spacing: -0.045em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat span { font-size: 0.84rem; color: var(--text-mute); letter-spacing: 0.01em; }

.quote { display: flex; flex-direction: column; gap: 16px; }
.quote p { font-size: 1.01rem; margin: 0; color: var(--text-soft); }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who b { display: block; font-size: 0.94rem; color: var(--text); }
.quote .who span { font-size: 0.81rem; color: var(--text-mute); }
.stars { color: var(--volt); letter-spacing: 3px; font-size: 0.95rem; }

/* ---------- 9. Accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 24px 48px 24px 0; cursor: pointer;
  font-family: var(--f-display); font-size: 1.06rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text);
  position: relative; transition: color .18s ease;
}
.faq-q:hover { color: var(--violet-lift); }
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 13px; height: 13px; margin-top: -6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C5CFF' stroke-width='3.6' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
}
.faq-item.open .faq-q::after { transform: rotate(135deg); }
.faq-a { display: none; padding: 0 44px 24px 0; color: var(--text-mute); }
.faq-item.open .faq-a { display: block; animation: fadeUp .3s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- 10. Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 10, 18, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-head.on-dark { background: rgba(5, 6, 11, 0.76); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--f-display); font-weight: 800; letter-spacing: -0.035em; font-size: 1.08rem; color: var(--text); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: 0.82rem; font-weight: 800;
  box-shadow: 0 0 22px rgba(124,92,255,.5);
}
.nav { display: flex; align-items: center; gap: 30px; }
/* Scoped to :not(.btn) so nav styling never outranks a button's own colour. */
.nav a:not(.btn) { text-decoration: none; font-size: 0.93rem; font-weight: 500; color: var(--text-mute); transition: color .16s ease; }
.nav a:not(.btn):hover { color: var(--text); }
@media (max-width: 900px) { .nav a:not(.btn) { display: none; } }
@media (max-width: 560px) {
  .head-in { height: 62px; gap: 10px; }
  .logo { font-size: 0.95rem; white-space: nowrap; }
  .logo-mark { width: 28px; height: 28px; font-size: 0.7rem; border-radius: 8px; }
  .nav .btn { padding: 11px 17px; font-size: 0.85rem; white-space: nowrap; }
}

/* ---------- 11. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--void);
  padding: clamp(64px, 9vw, 124px) 0 clamp(60px, 8vw, 104px);
}
/* Stage-light beams - the signature of the design */
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background:
    radial-gradient(680px 400px at 20% 0%, rgba(124, 92, 255, 0.30), transparent 60%),
    radial-gradient(620px 420px at 80% 6%, rgba(34, 211, 238, 0.18), transparent 62%),
    radial-gradient(900px 500px at 50% 100%, rgba(124, 92, 255, 0.12), transparent 68%);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(-2%, 0, 0) scale(1); } to { transform: translate3d(2%, 1.5%, 0) scale(1.06); } }
/* Fine grid floor */
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 42%;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 32px; }
.trust-row { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; font-size: 0.89rem; color: var(--text-mute); }
.trust-faces { display: flex; }
.trust-faces span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--elevated); border: 2px solid var(--void);
  margin-left: -11px; display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 700; color: var(--violet-lift);
  font-family: var(--f-mono);
}
.trust-faces span:first-child { margin-left: 0; }

/* ---------- 12. Funnel bits ---------- */
.bar-top {
  background: var(--grad-primary);
  color: #fff;
  text-align: center; padding: 12px 18px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: -0.01em;
  position: relative; overflow: hidden;
}
.bar-top strong { font-weight: 800; color: var(--volt); }

.countdown { display: inline-flex; gap: 9px; font-family: var(--f-mono); }
.countdown div {
  background: var(--glass);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 10px 12px; min-width: 60px; text-align: center; line-height: 1.15;
  backdrop-filter: blur(8px);
}
.countdown b { display: block; font-size: 1.34rem; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.countdown small { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }

/* Marquee ticker */
.ticker {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--void); padding: 15px 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: 44px; width: max-content; animation: slide 32s linear infinite; }
.ticker-track span {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  letter-spacing: -0.02em; color: var(--text-mute); white-space: nowrap;
}
.ticker-track span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--violet); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 13. Forms ---------- */
.form-card {
  background: var(--grad-panel), var(--elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--glow-soft);
  position: relative;
}
.form-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
}
.form-card .price-line { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.form-card .price-now {
  font-family: var(--f-display); font-weight: 800;
  font-size: 3rem; line-height: 1; letter-spacing: -0.05em;
  color: var(--volt);
}

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  background: rgba(0, 0, 0, 0.32); color: var(--text);
  outline: none; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field select option { background: var(--elevated); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--violet); background: rgba(0,0,0,.5);
  box-shadow: 0 0 0 3px var(--violet-16);
}
.field .err { color: var(--coral); font-size: 0.78rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--coral); }
.field.invalid .err { display: block; }
.phone-group { display: grid; grid-template-columns: 88px 1fr; gap: 9px; }

.bump {
  border: 1px dashed rgba(255, 212, 0, 0.55);
  background: var(--volt-12);
  border-radius: var(--r-md);
  padding: 18px; margin: 22px 0;
}
.bump label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-weight: 700; color: var(--text); }
.bump input { margin-top: 4px; width: 19px; height: 19px; accent-color: var(--volt); flex: 0 0 19px; }
.bump p { font-weight: 400; font-size: 0.89rem; color: var(--text-mute); margin: 7px 0 0; }

.order-summary { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 17px; font-size: 0.94rem; }
.order-summary .row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.order-summary .row.total {
  font-weight: 800; font-size: 1.2rem; color: var(--text);
  border-top: 1px solid var(--line); padding-top: 13px; margin-top: 13px;
  font-family: var(--f-display); letter-spacing: -0.03em;
}
.secure-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.79rem; color: var(--text-dim); margin-top: 15px; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(5, 6, 11, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-glow);
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(100%); transition: transform .28s cubic-bezier(.2,.8,.3,1);
}
.sticky-cta .sc-price { color: var(--volt); font-family: var(--f-display); font-weight: 800; line-height: 1.15; font-size: 1.05rem; letter-spacing: -0.03em; }
.sticky-cta .sc-price small { display: block; font-weight: 400; font-size: 0.72rem; color: var(--text-mute); font-family: var(--f-body); letter-spacing: 0; }
.sticky-cta.show { display: flex; transform: translateY(0); }
@media (min-width: 901px) { .sticky-cta { display: none !important; } }

/* ---------- 14. Content blocks ---------- */
.module { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.module:last-child { border-bottom: 0; }
.module h3 { font-size: 1.1rem; margin-bottom: 0.28em; }
.module p { margin: 0; color: var(--text-mute); font-size: 0.94rem; }

.stack { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.stack .row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.stack .row:last-child { border-bottom: 0; }
.stack .row b { white-space: nowrap; font-family: var(--f-mono); font-size: 0.9rem; }
.stack .row.sum { background: var(--elevated); font-weight: 700; color: var(--text); }
.stack .row.pay {
  background: var(--grad-volt); color: #1A1400; font-weight: 800; font-size: 1.14rem;
  font-family: var(--f-display); letter-spacing: -0.02em;
}
.stack .row.pay b { font-family: var(--f-display); font-size: 1.2rem; }

.guarantee {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--grad-panel), var(--surface);
  border: 1px solid rgba(255, 212, 0, 0.28);
  border-radius: var(--r-lg); padding: 28px;
}
.guarantee .seal {
  width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%;
  background: var(--grad-volt); color: #1A1400;
  display: grid; place-items: center; text-align: center;
  font-family: var(--f-display); font-weight: 800; font-size: 0.72rem; line-height: 1.08;
  box-shadow: var(--glow-volt);
}

.video-frame {
  position: relative; aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden; display: grid; place-items: center;
  box-shadow: var(--glow-soft);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play {
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--grad-volt); display: grid; place-items: center;
  box-shadow: var(--glow-volt); cursor: pointer;
  transition: transform .2s ease;
}
.video-frame:hover .play { transform: scale(1.07); }
.play::after { content: ""; border-left: 22px solid #1A1400; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }

/* ---------- 14b. Gallery / story ---------- */
/* Every tile is the same height. .g-wide takes two columns at the same height,
   so rows always line up without row-span maths. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery figure {
  position: relative; margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: zoom-in;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), border-color .3s ease, box-shadow .3s ease;
}
/* Wide tiles take the row height set by their 4:5 neighbours, so rows align exactly
   whatever photo gets dropped in. Below 620px a wide tile can be alone on its row,
   so there it falls back to its own ratio. */
.gallery figure.g-wide { grid-column: span 2; aspect-ratio: auto; height: 100%; }
.gallery figure:hover { transform: translateY(-4px); border-color: var(--line-glow); box-shadow: var(--glow-soft); }
.gallery figure:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* Absolutely positioned so a photo's intrinsic size never drives the tile height.
   Without this, a wide tile sizes itself to whatever image is dropped in and the
   row goes ragged. */
.gallery img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.3,1), filter .3s ease;
  filter: saturate(1.03);
}
.gallery figure:hover img { transform: scale(1.05); }

.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 16px 15px;
  background: linear-gradient(to top, rgba(5,6,11,.94) 12%, rgba(5,6,11,.55) 55%, transparent);
  font-size: 0.85rem; line-height: 1.4; color: var(--text);
  transform: translateY(6px); opacity: .92;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery figure:hover figcaption { transform: none; opacity: 1; }
.gallery figcaption b { display: block; font-family: var(--f-display); font-weight: 700; letter-spacing: -0.02em; font-size: 0.95rem; }
.gallery figcaption span { color: var(--text-mute); font-size: 0.78rem; }

/* Empty slot: shown until a real photo exists at the img src. */
.gallery figure.empty img { display: none; }
.gallery figure.empty {
  background: var(--grad-panel), var(--surface);
  border-style: dashed; border-color: var(--line-strong);
  cursor: default;
}
.gallery figure.empty:hover { transform: none; box-shadow: none; border-color: var(--line-strong); }
.gallery figure.empty::before {
  content: attr(data-slot);
  position: absolute; inset: 0;
  display: grid; place-content: center; align-content: center;
  gap: 8px; padding: 22px; text-align: center;
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim);
}
.gallery figure.empty::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 30px; height: 30px; margin: -52px 0 0 -15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C5CFF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .6;
}
.gallery figure.empty figcaption { background: none; position: static; padding: 0; display: none; }

@media (max-width: 940px) { .gallery { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .gallery figure.g-wide { grid-column: span 2; aspect-ratio: 8 / 5; height: auto; }
  .gallery figcaption { padding: 30px 12px 12px; font-size: 0.78rem; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3, 4, 8, 0.94);
  backdrop-filter: blur(10px);
  display: none; place-items: center;
  padding: 24px;
}
.lightbox.open { display: grid; animation: lbIn .22s ease both; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 78vh;
  width: auto; border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.lightbox .lb-cap {
  margin-top: 18px; text-align: center; color: var(--text-soft);
  max-width: 640px; font-size: 0.92rem;
}
.lightbox .lb-cap b { display: block; color: var(--text); font-family: var(--f-display); font-size: 1.05rem; letter-spacing: -0.02em; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--line-strong);
  color: var(--text); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.lb-btn:hover { background: var(--glass-hi); border-color: var(--line-glow); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close { position: absolute; top: 18px; right: 18px; transform: none; }
@media (max-width: 620px) {
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-btn { width: 44px; height: 44px; }
  .lightbox img { max-height: 66vh; }
}

/* ---------- 15. Footer ---------- */
.site-foot { background: var(--void); color: var(--text-mute); padding: 70px 0 34px; font-size: 0.92rem; border-top: 1px solid var(--line); }
.site-foot a { color: var(--text-mute); text-decoration: none; transition: color .16s ease; }
.site-foot a:hover { color: var(--violet-lift); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 46px; }
.foot-grid h4 { color: var(--text); font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.foot-grid ul { list-style: none; padding: 0; }
.foot-bar { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-dim); }
/* Below 820px the footer drops to two columns, but the brand column carries a
   paragraph and an eight-icon row, so at phone widths it was being squeezed to
   about 150px and the icons broke into a ragged 3/3/2 block. Letting the brand
   span the full width gives it room, and below 560px the whole footer stacks. */
@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}


/* ---------- 15b. Social ---------- */
.social { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.social a {
  width: 38px; height: 38px; flex: 0 0 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text-mute);
  transition: transform .18s cubic-bezier(.2,.8,.3,1), color .18s ease, border-color .18s ease, background .18s ease;
}
.social a svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.social a:hover { transform: translateY(-3px); color: var(--text); background: var(--glass-hi); border-color: var(--line-glow); }
.social a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
/* Brand tint on hover, one per platform. */
.social a[data-net="linkedin"]:hover  { color: #0A66C2; border-color: rgba(10,102,194,.55); }
.social a[data-net="youtube"]:hover   { color: #FF0033; border-color: rgba(255,0,51,.55); }
.social a[data-net="instagram"]:hover { color: #E1306C; border-color: rgba(225,48,108,.55); }
.social a[data-net="x"]:hover         { color: #FFFFFF; border-color: rgba(255,255,255,.55); }
.social a[data-net="facebook"]:hover  { color: #1877F2; border-color: rgba(24,119,242,.55); }
.social a[data-net="whatsapp"]:hover  { color: #25D366; border-color: rgba(37,211,102,.55); }
.social a[data-net="telegram"]:hover  { color: #26A5E4; border-color: rgba(38,165,228,.55); }
.social a[data-net="github"]:hover    { color: #FFFFFF; border-color: rgba(255,255,255,.55); }

/* On phones an eight-icon flex row leaves the eighth icon orphaned on a line of
   its own. An explicit 4-wide grid always lands them as a tidy 4x2 block.
   This has to sit after the base .social rules: same specificity, so source
   order is what decides it. */
@media (max-width: 560px) {
  .social { display: grid; grid-template-columns: repeat(4, 38px); gap: 10px; }
}

/* Larger labelled variant, used in the "find me" section */
.social-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}
.social-list a {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: var(--glass); border: 1px solid var(--line);
  text-decoration: none; color: var(--text);
  transition: transform .18s cubic-bezier(.2,.8,.3,1), border-color .18s ease, background .18s ease;
}
.social-list a:hover { transform: translateY(-3px); background: var(--glass-hi); border-color: var(--line-glow); }
.social-list svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 20px; }
.social-list b { display: block; font-size: 0.95rem; font-weight: 650; letter-spacing: -0.01em; }
.social-list span { display: block; font-size: 0.78rem; color: var(--text-mute); font-family: var(--f-mono); }
.social-list a[data-soon] { opacity: .5; }
.social-list a[data-soon]:hover { transform: none; }


/* Payment failure notice on the checkout page. Coral is the urgency colour and
   a declined payment is exactly that, so it earns the exception. */
.pay-alert {
  border: 1px solid rgba(255,59,92,.34);
  background: var(--coral-12, rgba(255,59,92,.12));
  color: var(--text);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: .93rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.pay-alert[hidden] { display: none; }

/* ---------- 16. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 17. Utilities ---------- */
.mt0{margin-top:0}.mt1{margin-top:10px}.mt2{margin-top:22px}.mt3{margin-top:36px}.mt4{margin-top:56px}
.mb0{margin-bottom:0}.mb1{margin-bottom:10px}.mb2{margin-bottom:22px}.mb3{margin-bottom:36px}.mb4{margin-bottom:56px}
.flex { display: flex; gap: 14px; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-sm { gap: 9px; }
.hide-mobile { display: initial; }
@media (max-width: 700px) { .hide-mobile { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
