/* ============================================================
   BlitzFinder — dark futuristic landing
   ============================================================ */

:root {
  --bg: #08070d;
  --ink: #ece9f5;
  --muted: #a8a2bd;
  --muted-nav: #9a94b0;
  --faint: #7a748f;
  --violet: #8b6eff;
  --violet-deep: #5b3cff;
  --violet-light: #b8a6ff;
  --grad: linear-gradient(150deg, #8b6eff, #5b3cff);
  --border-soft: rgba(139, 110, 255, .12);
  --border-mid: rgba(139, 110, 255, .16);
  --border-strong: rgba(139, 110, 255, .32);
  --border-btn: rgba(139, 110, 255, .4);
  --glow: rgba(124, 92, 255, .55);
  --card-bg: rgba(255, 255, 255, .03);
  --font-sans: 'Archivo', system-ui, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(124, 92, 255, .28), transparent 60%),
    radial-gradient(700px 500px at 6% 108%, rgba(124, 92, 255, .14), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 44px;
}

/* faint grid overlay — drifts very slowly so the page feels alive */
.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 110, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 110, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  animation: gridDrift 48s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

/* scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(124, 92, 255, .7);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 90;
  pointer-events: none;
}

main, .nav, .footer { position: relative; z-index: 1; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn-sm { font-size: 13px; padding: 9px 17px; }

.btn-lg {
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 11px;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 0 22px rgba(124, 92, 255, .55);
}

/* light sheen that sweeps across primary buttons on hover */
.btn-primary, .cta-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}

.btn-primary:hover::after, .cta-primary:hover::after { left: 130%; }

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(124, 92, 255, .75);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-btn);
}

.btn-ghost:hover {
  background: rgba(139, 110, 255, .1);
  transform: translateY(-1px);
}

/* ============ nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(8, 7, 13, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .25s ease;
}

.nav.scrolled { background: rgba(8, 7, 13, .92); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 44px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(124, 92, 255, .7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-nav);
  text-decoration: none;
  transition: color .18s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; gap: 10px; }

/* burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 19px;
  height: 2px;
  background: #c4bce0;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu — slides open smoothly */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .35s ease, padding .4s ease;
}

.mobile-menu.open {
  max-height: 560px;
  opacity: 1;
  padding: 10px 20px 20px;
  border-top: 1px solid var(--border-soft);
}

.mobile-menu > a {
  padding: 13px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 110, 255, .1);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-menu-actions .btn { padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700; }

/* ============ hero ============ */
.hero { padding: 72px 0 64px; position: relative; }

/* drifting glow orbs behind the hero */
.orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 92, 255, .32), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}

.orb-1 { width: 260px; height: 260px; top: -30px; left: -90px; }
.orb-2 { width: 210px; height: 210px; bottom: -20px; right: 3%; animation-delay: -4.5s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -24px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-light);
  padding: 6px 12px;
  border: 1px solid rgba(139, 110, 255, .35);
  border-radius: 999px;
  margin-bottom: 26px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--violet); opacity: .85; }
  50% { box-shadow: 0 0 14px var(--violet); opacity: 1; }
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.035em;
  margin: 0 0 22px;
}

.grad-text {
  background: linear-gradient(110deg, #c4b5ff, #7c5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* animated sheen sweeping through gradient text */
.shimmer {
  background: linear-gradient(110deg, #c4b5ff, #7c5cff, #c4b5ff);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  from { background-position: 0% 0; }
  to { background-position: -220% 0; }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-card {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 11px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cta-card span {
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.cta-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 30px rgba(124, 92, 255, .55);
}

.cta-primary span { color: #e0d8ff; }

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(124, 92, 255, .75);
}

.cta-secondary {
  background: rgba(139, 110, 255, .1);
  border: 1px solid var(--border-btn);
  color: var(--ink);
}

.cta-secondary span { color: var(--muted); }

.cta-secondary:hover {
  background: rgba(139, 110, 255, .18);
  transform: translateY(-2px);
}

/* glowing phone */
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--glow), transparent 62%);
  filter: blur(38px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}

.phone-frame {
  position: relative;
  width: 296px;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(160deg, rgba(160, 140, 255, .5), rgba(80, 60, 180, .25));
  box-shadow: 0 0 60px rgba(124, 92, 255, .45), 0 30px 60px rgba(0, 0, 0, .6);
  transition: transform .2s ease-out;
  will-change: transform;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* ============ launch countdown ============ */
.countdown { padding: 8px 0 44px; text-align: center; }

.count-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}

.count-tile {
  min-width: 110px;
  padding: 20px 16px 16px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  box-shadow: inset 0 0 30px rgba(124, 92, 255, .06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.count-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  text-shadow: 0 0 24px rgba(124, 92, 255, .55);
  font-variant-numeric: tabular-nums;
}

.count-num.tick { animation: tick .45s ease; }

@keyframes tick {
  0% { opacity: .2; transform: translateY(-8px); }
  100% { opacity: 1; transform: none; }
}

.count-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}

.count-sep {
  align-self: center;
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--violet);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: .25; }
  50% { opacity: .85; }
}

.count-date {
  margin: 22px 0 0;
  font-size: 14.5px;
  color: var(--muted);
}

.count-date a {
  color: var(--violet-light);
  text-decoration: none;
  transition: color .18s ease;
}

.count-date a:hover { color: var(--ink); }

/* ============ industry marquee ============ */
.marquee-wrap {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 8px 0;
  margin-bottom: 56px;
}

.marquee {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-alt .marquee-track {
  animation-direction: reverse;
  animation-duration: 34s;
}

.marquee-alt .marquee-group span { color: rgba(139, 110, 255, .45); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
}

.marquee-group span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.marquee-group .marquee-star {
  color: var(--violet);
  font-size: 11px;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ app tour (scroll-driven phone) ============ */
.tour { padding: 8px 0 24px; }

.tour-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 6px;
}

.tour-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.tour-head p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.tour-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.tour-phone-wrap {
  position: sticky;
  top: 105px;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.tour-phone { position: relative; width: 300px; }

.tour-frame { position: relative; }

.tour-screen {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .5s ease, transform .5s ease;
}

.tour-screen:not(:first-child) {
  position: absolute;
  top: 11px;
  left: 11px;
  width: calc(100% - 22px);
}

.tour-screen.active {
  opacity: 1;
  transform: none;
}

.tour-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.tour-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(139, 110, 255, .25);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.tour-dots span.active {
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
  transform: scale(1.25);
}

.tour-steps { display: flex; flex-direction: column; }

.tour-step {
  padding: 15vh 0;
  opacity: .3;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
}

.tour-step.is-active { opacity: 1; transform: none; }

.tour-step:first-child { padding-top: 6vh; }
.tour-step:last-child { padding-bottom: 10vh; }

.tour-step h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}

.tour-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 460px;
}

.tour-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-points li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--muted);
}

.tour-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--violet-light);
  font-size: 12px;
}

/* per-step phone images — mobile/tablet only */
.step-phone { display: none; }

/* ============ audience split ============ */
.split { padding: 8px 0; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  padding: 34px;
  border-radius: 18px;
}

.panel-managers {
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
}

.panel-applicants {
  background: linear-gradient(160deg, rgba(124, 92, 255, .16), rgba(124, 92, 255, .04));
  border: 1px solid var(--border-strong);
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 8px;
}

.eyebrow-faint { color: var(--faint); text-align: center; margin-bottom: 16px; }

.panel h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 26px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step { display: flex; gap: 15px; }

.step-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.step-num-ghost {
  background: rgba(139, 110, 255, .16);
  color: var(--violet-light);
  border: 1px solid rgba(139, 110, 255, .3);
}

.step-num-solid {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 14px rgba(124, 92, 255, .5);
}

.step-title { font-weight: 700; font-size: 15.5px; }

.step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 2px;
}

/* ============ features ============ */
.features { padding: 64px 0 8px; }

.features-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.features-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.features-head p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

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

.feature-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* glow that fades in from the card's top edge on hover */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 140px at 50% -20%, rgba(124, 92, 255, .22), transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45), 0 0 30px rgba(124, 92, 255, .18);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 110, 255, .14);
  border: 1px solid rgba(139, 110, 255, .3);
  color: var(--violet-light);
  margin-bottom: 16px;
}

.feature-icon svg { width: 21px; height: 21px; }

.feature-icon { transition: transform .25s ease; }

.feature-card:hover .feature-icon { transform: translateY(-3px) scale(1.08); }

.feature-title {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ============ why different ============ */
.why { padding: 72px 0; }

.why-inner { text-align: center; }

.why .eyebrow { margin-bottom: 14px; }

.why h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 720px;
}

.violet { color: var(--violet-light); }

.why p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ FAQ ============ */
.faq { padding: 8px 0 56px; }

.faq-inner { text-align: center; }

.faq-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 30px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item.open {
  border-color: var(--border-strong);
  box-shadow: 0 0 24px rgba(124, 92, 255, .12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

.faq-chev {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--violet-light);
  background: rgba(139, 110, 255, .14);
  border: 1px solid rgba(139, 110, 255, .3);
  transition: transform .3s ease;
}

.faq-item.open .faq-chev { transform: rotate(45deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner { overflow: hidden; }

.faq-a-inner p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

.faq-a-inner a { color: var(--violet-light); }

/* ============ final CTA ============ */
.final { padding: 64px 0 44px; }

.final-card {
  padding: 56px 40px;
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(124, 92, 255, .3), transparent 70%),
    var(--card-bg);
  border: 1px solid rgba(139, 110, 255, .28);
}

.final-card h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 12px;
}

.final-card p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
}

.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* newsletter / launch-list form inside the final card */
.final-card .badge { margin-bottom: 18px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 470px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-mid);
  border-radius: 11px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.newsletter-form input::placeholder { color: var(--faint); }

.newsletter-form input:focus {
  border-color: var(--border-btn);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .18);
}

.final-card .form-note { margin-top: 12px; }

/* instagram pill under the signup form */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-btn);
  color: var(--violet-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.insta-link svg { width: 16px; height: 16px; }

.insta-link:hover {
  background: rgba(139, 110, 255, .12);
  color: var(--ink);
  transform: translateY(-1px);
}

/* twinkling sparks inside the final card */
.final-card {
  position: relative;
  overflow: hidden;
}

.spark {
  position: absolute;
  color: var(--violet-light);
  pointer-events: none;
  animation: twinkle 3.2s ease-in-out infinite;
}

.spark-1 { top: 22%; left: 10%; font-size: 14px; }
.spark-2 { top: 34%; right: 12%; font-size: 11px; animation-delay: -1.1s; }
.spark-3 { bottom: 26%; left: 20%; font-size: 10px; animation-delay: -2.2s; }
.spark-4 { bottom: 18%; right: 22%; font-size: 13px; animation-delay: -.6s; }

@keyframes twinkle {
  0%, 100% { opacity: .12; transform: scale(.75) rotate(0deg); }
  50% { opacity: .9; transform: scale(1.15) rotate(18deg); }
}

/* ============ mobile quick-join bar ============ */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  background: rgba(14, 12, 22, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5), 0 0 30px rgba(124, 92, 255, .18);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

.mobile-cta.show { transform: none; opacity: 1; }

.mobile-cta-text {
  font-size: 13.5px;
  color: var(--muted);
  white-space: nowrap;
}

.mobile-cta-text strong { color: var(--violet-light); font-weight: 800; }

/* ============ contact ============ */
.contact { padding: 20px 0 72px; }

.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 44px;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
}

.contact-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 12px;
}

.contact-copy p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 360px;
}

.contact-copy a {
  color: var(--violet-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 110, 255, .4);
}

.contact-copy a:hover { color: var(--ink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--faint); }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--border-btn);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .18);
}

.btn-block { width: 100%; }

.form-note {
  font-size: 13px;
  color: var(--violet-light);
  margin: 2px 0 0;
  text-align: center;
}

/* ============ footer ============ */
.footer { border-top: 1px solid var(--border-soft); }

.footer-inner {
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12.5px;
  color: var(--faint);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.footer a {
  color: var(--faint);
  text-decoration: none;
  transition: color .18s ease;
}

.footer a:hover { color: var(--ink); }

/* ============ reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

/* blur variant — headings sharpen as they fade in */
.reveal.reveal-blur {
  filter: blur(12px);
  transition: opacity .7s ease, transform .7s ease, filter .8s ease;
}

.reveal.reveal-blur.in { filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.reveal-blur { filter: none; }
  .badge-dot, .phone-glow, .orb, .shimmer, .count-sep, .count-num,
  .marquee-track, .grid-overlay, .spark { animation: none; }
  .tour-screen, .tour-step, .mobile-cta, .mobile-menu, .faq-a { transition: none; }
  .btn-primary::after, .cta-primary::after { display: none; }
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 16px 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 40px 0 8px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-sub { margin-left: auto; margin-right: auto; max-width: 420px; }
  .hero-ctas { justify-content: center; }

  .split-grid { grid-template-columns: 1fr; gap: 16px; }

  .count-tile { min-width: 88px; padding: 16px 10px 12px; }
  .count-num { font-size: 34px; }

  .features { padding: 48px 0 8px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .marquee-wrap { margin-bottom: 44px; }

  /* tour: sticky phone becomes a phone image inside each step */
  .tour-grid { grid-template-columns: 1fr; gap: 0; }
  .tour-phone-wrap { display: none; }
  .tour-head { margin-bottom: 20px; }
  .tour-step {
    opacity: 1;
    transform: none;
    padding: 30px 0;
    text-align: center;
  }
  .tour-step:first-child { padding-top: 10px; }
  .tour-step:last-child { padding-bottom: 20px; }
  .tour-step + .tour-step { border-top: 1px solid var(--border-soft); }
  .tour-step p { margin-left: auto; margin-right: auto; }
  .step-phone { display: flex; justify-content: center; margin-bottom: 22px; }
  .step-phone .phone-frame { width: 220px; border-radius: 34px; padding: 8px; }
  .step-phone .phone-frame img { border-radius: 27px; }
  .tour-points { max-width: 340px; margin: 0 auto; text-align: left; }

  .mobile-cta { display: flex; }

  .why { padding: 52px 0; }
  .why p { font-size: 15.5px; }

  .contact-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .contact-copy p { max-width: none; }
}

/* ============================================================
   RESPONSIVE — mobile (designed mobile-first: tighter rhythm,
   bigger touch targets, 16px inputs so iOS never auto-zooms)
   ============================================================ */
@media (max-width: 560px) {
  html { scroll-padding-top: 66px; }

  .container { padding: 0 18px; }

  /* --- slimmer nav --- */
  .nav-inner { padding: 11px 16px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand-mark { width: 26px; height: 26px; font-size: 14px; border-radius: 8px; }

  /* --- hero: compact, phone feels like a preview not a wall --- */
  .hero { padding: 26px 0 6px; }
  .hero-grid { gap: 30px; }
  .badge { font-size: 10.5px; padding: 5px 11px; margin-bottom: 16px; }
  .hero h1 { font-size: 33px; line-height: 1.05; margin-bottom: 12px; }
  .hero-sub { font-size: 15px; line-height: 1.5; max-width: 310px; margin-bottom: 22px; }

  .hero-ctas { flex-direction: column; gap: 10px; }
  .cta-card { align-items: center; text-align: center; padding: 15px; width: 100%; }

  .phone-glow { width: 250px; height: 250px; filter: blur(30px); }
  .phone-frame { width: 216px; border-radius: 34px; padding: 8px; }
  .phone-frame img { border-radius: 27px; }

  .orb-1 { width: 170px; height: 170px; }
  .orb-2 { display: none; }

  /* --- countdown: 4 equal tiles, tight --- */
  .countdown { padding: 2px 0 30px; }
  .count-grid { gap: 7px; }
  .count-sep { display: none; }
  .count-tile { flex: 1; min-width: 0; padding: 13px 4px 11px; border-radius: 13px; gap: 4px; }
  .count-num { font-size: 25px; }
  .count-label { font-size: 9px; letter-spacing: .11em; }
  .count-date { margin-top: 16px; font-size: 13px; }

  /* --- marquee --- */
  .marquee-wrap { margin-bottom: 34px; padding: 5px 0; }
  .marquee { padding: 5px 0; }
  .marquee-group { gap: 22px; padding-right: 22px; }
  .marquee-group span { font-size: 11.5px; letter-spacing: .18em; }

  /* --- app tour --- */
  .tour-head h2 { font-size: 26px; }
  .tour-head p { font-size: 14px; }
  .tour-step { padding: 26px 0; }
  .tour-step h3 { font-size: 21px; margin-bottom: 10px; }
  .tour-step p { font-size: 14.5px; margin-bottom: 14px; }
  .tour-step .eyebrow { font-size: 10.5px; }
  .tour-points { gap: 8px; max-width: 300px; }
  .tour-points li { font-size: 13.5px; padding-left: 22px; }
  .step-phone { margin-bottom: 18px; }
  .step-phone .phone-frame { width: 186px; }

  /* --- audience split --- */
  .split-grid { gap: 12px; }
  .panel { padding: 22px 18px; border-radius: 16px; }
  .panel h2 { font-size: 21px; margin-bottom: 18px; }
  .panel .eyebrow { font-size: 10.5px; }
  .steps { gap: 16px; }
  .step { gap: 12px; }
  .step-num { width: 27px; height: 27px; font-size: 13px; border-radius: 8px; }
  .step-title { font-size: 14.5px; }
  .step-body { font-size: 13px; line-height: 1.45; }

  /* --- features --- */
  .features { padding: 38px 0 4px; }
  .features-head { margin-bottom: 22px; }
  .features-head h2 { font-size: 26px; }
  .features-head p { font-size: 14px; }
  .features-grid { gap: 11px; }
  .feature-card { padding: 19px 18px; border-radius: 16px; }
  .feature-icon { width: 37px; height: 37px; border-radius: 10px; margin-bottom: 12px; }
  .feature-icon svg { width: 18px; height: 18px; }
  .feature-title { font-size: 15px; }
  .feature-body { font-size: 13px; line-height: 1.5; }

  /* --- why --- */
  .why { padding: 40px 0 36px; }
  .why h2 { font-size: 25px; line-height: 1.08; margin-bottom: 12px; }
  .why p { font-size: 14.5px; }

  /* --- FAQ --- */
  .faq { padding-bottom: 38px; }
  .faq-inner h2 { font-size: 25px; margin-bottom: 20px; }
  .faq-list { gap: 8px; }
  .faq-q { font-size: 14px; padding: 15px 14px; gap: 12px; }
  .faq-chev { width: 24px; height: 24px; font-size: 15px; }
  .faq-a-inner p { font-size: 13.5px; padding: 0 14px 15px; }

  /* --- launch list card --- */
  .final { padding: 4px 0 26px; }
  .final-card { padding: 30px 18px 26px; border-radius: 20px; }
  .final-card .badge { margin-bottom: 14px; }
  .final-card h2 { font-size: 26px; }
  .final-card p { font-size: 13.5px; margin-bottom: 20px; }
  .newsletter-form { flex-direction: column; gap: 9px; }
  .newsletter-form input { font-size: 16px; padding: 13px 15px; text-align: center; }
  .newsletter-form .btn { width: 100%; padding: 14px; }
  .insta-link { font-size: 13px; padding: 9px 14px; }

  /* --- contact --- */
  .contact { padding: 6px 0 40px; }
  .contact-card { padding: 24px 18px; border-radius: 20px; gap: 20px; }
  .contact-copy h2 { font-size: 23px; }
  .contact-copy p { font-size: 14px; }
  .contact-form { gap: 9px; }
  .form-row { grid-template-columns: 1fr; gap: 9px; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; padding: 12px 14px; }
  .contact-form .btn { padding: 14px; }

  /* --- footer --- */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9px;
    padding-top: 18px;
    padding-bottom: 88px; /* clears the floating quick-join pill */
    font-size: 11.5px;
  }

  /* --- quick-join pill --- */
  .mobile-cta { padding: 9px 9px 9px 16px; }
  .mobile-cta-text { font-size: 13px; }
}
