:root {
  /* ---------- Vyb6 — neon / retro-futurist (late 80s / early 90s) ---------- */
  --bg: #08061A;            /* deep space indigo */
  --bg-2: #0E0A24;          /* raised panel */
  --surface: #140F30;       /* cards */
  --surface-2: #1B1440;     /* card hover / inputs */
  --ink: #F5F3FF;           /* near-white */
  --ink-2: #C9C2F0;         /* soft lavender text */
  --muted: #8B84B8;         /* muted lavender-grey */
  --line: rgba(176,38,255,.18);
  --line-strong: rgba(176,38,255,.4);

  /* neon accents */
  --magenta: #FF2E9A;
  --magenta-deep: #E01480;
  --cyan: #00E5FF;
  --purple: #B026FF;
  --violet: #7C3AED;
  --orange: #FF8A00;
  --yellow: #FFD23F;

  --accent: var(--magenta);
  --accent-2: var(--cyan);

  /* signature gradients */
  --grad-brand: linear-gradient(120deg, #00E5FF 0%, #B026FF 52%, #FF2E9A 100%);
  --grad-cta: linear-gradient(120deg, #FF2E9A 0%, #B026FF 100%);
  --grad-sunset: linear-gradient(120deg, #FF2E9A 0%, #FF8A00 60%, #FFD23F 100%);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 8px 30px rgba(0,0,0,.45), 0 0 0 1px rgba(176,38,255,.12);
  --shadow-lg: 0 24px 70px rgba(0,0,0,.55);
  --glow-magenta: 0 0 24px rgba(255,46,154,.5);
  --glow-cyan: 0 0 24px rgba(0,229,255,.45);

  --container: 1120px;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* subtle synthwave grid glow behind everything */
  background-image:
    radial-gradient(900px 500px at 80% -10%, rgba(176,38,255,.20), transparent 60%),
    radial-gradient(800px 500px at 10% 0%, rgba(0,229,255,.14), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--magenta);
  color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  padding: 11px 22px; transition: all .25s var(--ease); white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--glow-magenta); background-size: 160% 160%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(255,46,154,.7); background-position: 100% 0; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); background: rgba(0,229,255,.06); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--cyan); }

/* On dark hero */
.hero .btn-secondary { color: #EAF0FF; border-color: rgba(0,229,255,.4); }
.hero .btn-secondary:hover { background: rgba(0,229,255,.08); border-color: var(--cyan); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,6,26,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(8,6,26,.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { color: var(--cyan); flex: none; filter: drop-shadow(0 0 6px rgba(0,229,255,.6)); }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav { display: flex; gap: 30px; }
.nav a { font-size: 15px; color: var(--ink-2); font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--cyan); }
.header-cta { display: flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); color: #EAF0FF; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover; background-position: center;
  opacity: .5; filter: saturate(1.3) hue-rotate(8deg);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 78% 20%, rgba(255,46,154,.35), transparent 60%),
    radial-gradient(600px 400px at 12% 30%, rgba(0,229,255,.28), transparent 60%),
    linear-gradient(180deg, rgba(8,6,26,.55) 0%, rgba(8,6,26,.72) 60%, rgba(8,6,26,.95) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: clamp(70px, 12vw, 130px) 0 clamp(80px,12vw,140px); max-width: 820px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.35);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 26px;
  box-shadow: 0 0 16px rgba(0,229,255,.2) inset;
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 7vw, 82px); line-height: 1.03; letter-spacing: -.03em;
  color: #fff; margin-bottom: 24px;
  text-shadow: 0 0 32px rgba(176,38,255,.4);
}
.hero-title br + * , .hero-title { }
.hero-sub { font-size: clamp(17px, 2.2vw, 21px); line-height: 1.6; color: #CFC8F5; max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #A99FDD; }
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 12px var(--magenta); flex: none; }

/* ---------- Trust strip ---------- */
.strip { background: var(--bg-2); color: #EAF0FF; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 40px; padding: 26px 24px; flex-wrap: wrap; }
.strip-item { display: flex; flex-direction: column; text-align: center; gap: 2px; }
.strip-item strong { font-size: 16px; color: #fff; font-weight: 600; }
.strip-item span { font-size: 13.5px; color: var(--muted); }
.strip-divider { width: 1px; height: 34px; background: var(--line-strong); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 680px; margin: 0 auto clamp(44px,6vw,64px); text-align: center; }
.section-head .eyebrow { color: var(--magenta); background: rgba(255,46,154,.08); border-color: rgba(255,46,154,.35); box-shadow: 0 0 16px rgba(255,46,154,.15) inset; }
.section-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.12; letter-spacing: -.025em; color: var(--ink);
}
.section-lede { margin-top: 16px; font-size: 18px; color: var(--muted); }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-cta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; box-shadow: var(--glow-magenta);
}
.step h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.step p { font-size: 15.5px; color: var(--ink-2); }
.how-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-strong); }
.how-visual img { width: 100%; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); background: var(--surface-2); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(176,38,255,.14);
  border: 1px solid rgba(176,38,255,.3);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--ink-2); }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-2); color: #EAF0FF; }
.pricing .section-title { color: #fff; }
.pricing .section-head .eyebrow { color: var(--cyan); background: rgba(0,229,255,.08); border-color: rgba(0,229,255,.35); }
.pricing .section-lede { color: var(--muted); }
.price-card {
  max-width: 460px; margin: 0 auto; background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong); position: relative;
}
.price-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .7; pointer-events: none;
}
.price-top { text-align: center; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.price-name {
  font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 10px;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: 62px; line-height: 1; color: #fff; letter-spacing: -.03em; }
.price-amount .currency { font-size: 30px; vertical-align: super; color: var(--cyan); }
.price-amount .per { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-tag { margin-top: 12px; font-size: 15px; color: var(--muted); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.price-list li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--ink-2); }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(0,229,255,.15); border: 1px solid rgba(0,229,255,.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.price-fine { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; transition: border-color .2s; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 16.5px;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--cyan); font-weight: 400; transition: transform .25s var(--ease); flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px; font-size: 15.5px; color: var(--ink-2); }

/* ---------- Final CTA ---------- */
.cta-final { padding: clamp(64px,9vw,110px) 0; background: var(--grad-cta); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(0,229,255,.4), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px,4.5vw,46px); letter-spacing: -.025em; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 0 30px rgba(0,0,0,.3); }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; }
.cta-final .btn-primary { background: #fff; color: var(--magenta-deep); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.cta-final .btn-primary:hover { background: #F5F3FF; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); color: var(--muted); padding: 56px 0 30px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-brand p { margin-top: 8px; font-size: 14px; max-width: 280px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: 14.5px; color: var(--ink-2); transition: color .2s; }
.footer-nav a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--muted); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .strip-divider { display: none; }
  .strip-inner { gap: 22px; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .price-card { padding: 32px 22px; }
}
