/* =========================================================
   SkipOwls VSL Landing Page
   Plain CSS — mobile-first, dark, single-CTA color
   ========================================================= */

/* ---------- Tokens (aligned to skipowls.com brand) ---------- */
:root {
  --bg: #05060B;
  --bg-elev: #0c0e18;
  --bg-elev-2: #101526;
  --fg: #F5F7FA;
  --fg-muted: #B7BCC8;
  --fg-dim: #8a90a0;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --purple: #7C2CFF;
  --purple-soft: #a970ff;
  --orange: #FF6A00;
  --gold: #F6C25A;
  --accent: var(--purple);
  --accent-hover: #8d44ff;
  --accent-ink: #ffffff;
  --danger: #ff5d5d;
  --max: 1160px;
  --max-narrow: 760px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-cta: 0 14px 36px rgba(124, 44, 255, 0.40);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------- Italic serif for headline accent ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500;1,600&display=swap');

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 700px at 18% -10%, rgba(124, 44, 255, 0.18), transparent 65%),
    radial-gradient(900px 500px at 90% 10%, rgba(246, 194, 90, 0.06), transparent 60%),
    var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.container--narrow { max-width: var(--max-narrow); }

.section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.section--dark { background: var(--bg-elev); }
.section--reveal {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.section--cta {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
}

@media (min-width: 768px) {
  .section { padding: 88px 0; }
}

/* ---------- Header (floating pill) ---------- */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 680px;
  background: rgba(12, 14, 24, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0 8px 0 20px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}
.brand:hover { color: var(--fg); }
.brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: uppercase;
}
.header__cta {
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 650;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 15px;
  line-height: 1;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease), color .16s var(--ease), filter .16s var(--ease);
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-1px) scale(1.01); }
.btn:active { transform: translateY(0) scale(1); }

.btn--primary {
  background: var(--purple);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
  border-color: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.btn--primary:hover {
  background: var(--purple-soft);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(124, 44, 255, 0.50);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.07); color: var(--fg); }

.btn--xl {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 999px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -100px 0 auto 0;
  height: 600px;
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(124, 44, 255, 0.20), transparent 70%),
    radial-gradient(500px 300px at 80% 30%, rgba(246, 194, 90, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
@media (min-width: 768px) {
  .hero { padding: 120px 0 80px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 250, 0.85);
  font-weight: 650;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(16, 21, 38, 0.6);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 194, 90, 0.18);
}
.eyebrow--center { display: inline-flex; }

.hero__headline {
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero__headline em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--purple-soft);
  font-weight: 500;
}

.accent {
  background: linear-gradient(90deg, var(--purple-soft), var(--purple), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(183, 188, 200, 0.95);
  max-width: 60ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.hero__sub strong { color: var(--fg); font-weight: 650; }

.hero__cta { margin-bottom: 0; }

/* Video placeholder */
.video {
  max-width: 880px;
  margin: 0 auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-strong);
  background: #000;
}
.video__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(circle at center, rgba(124, 44, 255, 0.22), transparent 60%),
    linear-gradient(180deg, #15172a 0%, #06070d 100%);
  color: var(--fg);
  cursor: pointer;
  transition: opacity .2s ease;
}
.video__poster:hover { opacity: 0.94; }
.video__poster:hover .video__play { transform: scale(1.05); background: linear-gradient(135deg, var(--purple-soft) 0%, var(--purple) 100%); }
.video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, #5b18d6 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cta);
  transition: transform .2s ease, background .2s ease;
}
.video__play svg { margin-left: 4px; }
.video__poster-text {
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
  font-size: 14px;
}

/* Video card (Wistia placeholder) */
.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 40%, rgba(124, 44, 255, 0.22), transparent 60%),
    linear-gradient(180deg, #15172a 0%, #06070d 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 28px auto 28px;
  cursor: pointer;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
  box-shadow:
    var(--shadow),
    0 0 60px 18px rgba(124, 44, 255, 0.45),
    0 0 120px 50px rgba(124, 44, 255, 0.20);
  overflow: hidden;
  position: relative;
}
.video-card:hover { border-color: rgba(124, 44, 255, 0.55); opacity: 0.97; }
.video-card__play {
  width: 68px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(124, 44, 255, 0.50);
  transition: transform .15s var(--ease), background .15s var(--ease);
}
.video-card__play svg { margin-left: 3px; }
.video-card__play:hover { transform: scale(1.06); background: var(--purple-soft); }
.video-card__label { color: rgba(255, 255, 255, 0.50); font-size: 13px; }

/* Hero actions — stacked on very small, side by side when room */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
@media (min-width: 400px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}
.hero__secondary {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.30);
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.hero__secondary:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.70);
}

/* Hero stats — 2+1 triangle on narrow, 3-in-a-row on wider */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  margin-top: 32px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.hero__stat:nth-child(3) {
  grid-column: 1 / -1;
}
@media (min-width: 440px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 20px 32px;
  }
  .hero__stat:nth-child(3) {
    grid-column: auto;
  }
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.hero__stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 4px;
  font-weight: 400;
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  margin-top: 44px;
  width: 100%;
}
.marquee-wrap__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.marquee {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* Trust strip */
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 24px;
}
.trust li { display: inline-flex; align-items: center; gap: 6px; }
.trust__check { color: var(--accent); font-weight: 700; }

/* ---------- Section heads ---------- */
.section__h {
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 750;
  margin-bottom: 18px;
  max-width: 24ch;
}
.section__h--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(183, 188, 200, 0.92);
  max-width: 62ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }
.muted { color: var(--fg-dim); font-size: 14px; }

/* ---------- Prose (problem section) ---------- */
.prose p {
  font-size: clamp(16px, 1.7vw, 18px);
  margin-bottom: 14px;
  color: var(--fg);
  line-height: 1.6;
}
.prose__kicker {
  margin-top: 22px !important;
  font-weight: 650;
  color: var(--fg) !important;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* ---------- Cards (cost section) ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.card__num {
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 750;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--purple-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}
.card__label {
  color: rgba(183, 188, 200, 0.92);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Compare (alternatives) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .compare { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.compare__col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.compare__h {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.compare__sub {
  display: block;
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 400;
  margin-top: 4px;
}
.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}
.compare__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: rgba(183, 188, 200, 0.92);
  line-height: 1.55;
}
.compare__list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--danger);
  font-weight: 700;
}

/* ---------- Pillars (offer) ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}
.pillar {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.pillar:hover { transform: translateY(-2px); border-color: rgba(124, 44, 255, 0.45); }
.pillar__icon {
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1;
  background: linear-gradient(90deg, var(--purple-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar__h {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.pillar p {
  font-size: 13.5px;
  color: rgba(183, 188, 200, 0.92);
  line-height: 1.55;
}

/* ---------- Steps (how it works) ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  counter-reset: stepc;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.step {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple) 0%, #5b18d6 100%);
  color: #ffffff;
  font-weight: 750;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(124, 44, 255, 0.32);
}
.step__h {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.step p { color: rgba(183, 188, 200, 0.92); font-size: 14px; line-height: 1.55; }

/* ---------- Pricing table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pricing-table th {
  background: var(--bg-elev-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.pricing-table__note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg-dim);
  text-align: center;
}
.pricing-table__note s { color: var(--danger); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  font-style: normal;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--fg);
}
.testimonial footer {
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ---------- FAQ ---------- */
.faq-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.faq-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(124,44,255,0.12);
  border: 1px solid rgba(169,112,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a970ff;
  box-shadow: 0 0 0 6px rgba(124,44,255,0.06), 0 0 24px rgba(124,44,255,0.20);
}

.faq {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 650;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--fg);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #a970ff;
  text-shadow: 0 0 10px rgba(169,112,255,0.7), 0 0 22px rgba(169,112,255,0.35);
  transition: transform .2s ease, text-shadow .2s ease;
  line-height: 1;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after {
  content: "−";
  text-shadow: 0 0 12px rgba(169,112,255,0.9), 0 0 28px rgba(169,112,255,0.45);
}
.faq__a {
  padding: 0 22px 18px;
  color: rgba(183, 188, 200, 0.92);
  line-height: 1.6;
}
.faq__a p { margin-bottom: 10px; font-size: 14px; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Form ---------- */
.form {
  margin-top: 40px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 32px;
}
@media (min-width: 768px) {
  .form { padding: 40px; }
}
.form__row { margin-bottom: 16px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form__input {
  width: 100%;
  padding: 13px 15px;
  font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 44, 255, 0.18);
}
.form__input.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 93, 93, 0.15);
}
select.form__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23a1a1aa' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form__submit {
  width: 100%;
  margin-top: 12px;
}
.form__legal {
  font-size: 13px;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  margin-top: 32px;
  background: var(--bg-elev);
  border: 1px solid rgba(124, 44, 255, 0.45);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.form-success__h {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--purple-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.form-success p {
  color: rgba(183, 188, 200, 0.92);
  margin-bottom: 14px;
  font-size: 15px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  font-size: 14px;
  color: var(--fg-muted);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--fg);
}
.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #000;
}
.footer__contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { color: var(--fg-dim); font-size: 13px; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta[hidden] { display: none; }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta__text {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}
@media (max-width: 640px) {
  .sticky-cta__text { display: none; }
  .sticky-cta__inner { justify-content: center; }
  .sticky-cta__inner .btn { width: 100%; }
  .footer { padding-bottom: 100px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
