/* Voxa marketing — plain CSS, dark sales-floor look */

:root {
  --bg: #040d1a;
  --bg-elevated: #0a1628;
  --surface: #0d1f33;
  --border: rgba(139, 255, 240, 0.14);
  --text: #ffffff;
  --text-muted: rgba(211, 223, 241, 0.74);
  --text-dim: rgba(211, 223, 241, 0.55);
  --teal: #22e7d3;
  --teal-deep: #14b8a6;
  --teal-glow: rgba(34, 231, 211, 0.28);
  --accent-label: #6dffec;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --radius: 24px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(20, 184, 166, 0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
}

/* —— Layout —— */

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }
}

.section {
  padding: 40px 0;
}

.section--tight {
  /* Pull video up under the subhead — no big air gap */
  padding-top: 0;
  padding-bottom: 20px;
}

/* —— Hero —— */

.hero {
  text-align: center;
  padding: 40px 0 12px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero h1 {
  margin: 0 auto 12px;
  max-width: 18ch;
  font-size: clamp(30px, 5.2vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero .subhead {
  margin: 0 auto;
  max-width: 38ch;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.45;
  color: #94a3b8;
  text-wrap: pretty;
}

/* —— Video card —— */

.vsl {
  margin: 0 auto;
  max-width: 960px;
}

.vsl-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #030712;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.vsl-player wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

/* —— CTA —— */

.cta-block {
  margin: 16px auto 0;
  max-width: 520px;
  text-align: center;
}

.btn-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: inherit;
  font-size: clamp(17px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1;
  color: #020d17;
  background: linear-gradient(180deg, #22e7d3 0%, #0fbeae 100%);
  box-shadow: 0 16px 46px var(--teal-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 52px rgba(34, 231, 211, 0.4);
}

.btn-cta:active {
  transform: translateY(1px);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Inline iClosed */

.iclosed-inline {
  margin: 8px auto 0;
  max-width: 720px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-elevated);
  min-height: 560px;
}

.iclosed-inline iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #fff;
}

/* —— Proof —— */

.proof-head {
  text-align: center;
  margin: 0 auto 22px;
  max-width: 18ch;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    gap: 12px;
  }
}

.proof-card {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 31, 51, 0.82) 0%, rgba(6, 17, 31, 0.92) 100%);
  min-height: 100%;
}

.proof-card .name {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-label);
}

.proof-card h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.proof-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* —— FAQ —— */

.faq-head {
  text-align: center;
  margin: 0 0 20px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(139, 255, 240, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* —— Footer —— */

.site-footer {
  margin-top: 8px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.95);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin: 0 0 6px;
}

.tagline {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(211, 223, 241, 0.45);
}

/* —— Modal (iClosed popup control) —— */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(100%, 560px);
  height: min(88vh, 780px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.75);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.modal__panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Booked page —— */

.booked {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 16px;
}

.booked h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.booked p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36ch;
}

/* —— Dev banner (local only — remove before prod cutover) —— */

.dev-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  background: #1e293b;
  color: #e2e8f0;
  border-bottom: 1px solid #334155;
}

.dev-banner a {
  color: var(--teal);
  margin-left: 8px;
}

/* —— Mobile spacing polish —— */

@media (max-width: 600px) {
  .hero {
    padding: 28px 0 10px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(28px, 8.2vw, 36px);
    max-width: 14ch;
  }

  .hero .subhead {
    font-size: 15px;
    max-width: 32ch;
  }

  .section {
    padding: 28px 0;
  }

  .section--tight {
    padding-top: 0;
    padding-bottom: 12px;
  }

  .vsl-card {
    border-radius: 14px;
  }

  .cta-block {
    margin-top: 14px;
  }

  .btn-cta {
    padding: 16px 24px;
    font-size: 18px;
  }

  .proof-head {
    margin-bottom: 16px;
    font-size: 22px;
    max-width: 16ch;
  }

  .proof-card {
    padding: 16px 18px;
  }

  .faq-head {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .faq-item {
    padding: 14px 16px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .iclosed-inline {
    min-height: 520px;
    border-radius: 14px;
  }

  .iclosed-inline iframe {
    height: 600px;
  }

  .site-footer {
    padding: 20px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
