/* BlipJab landing page — dark neon theme matching the app.
   Accent neon green ≈ oklch(0.88 0.26 145). Background near-black. */

:root {
  --bg: #000000;
  --bg-soft: #0a0f0c;
  --surface: #10171340;
  --surface-solid: #0e1512;
  --border: #1c2a22;
  --text: #eafff2;
  --text-dim: #9fb8ac;
  --accent: #5cf07a;
  --accent-bright: #7dff96;
  --accent-glow: rgba(92, 240, 122, 0.45);
  --radius: 18px;
  --maxw: 1120px;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background glow */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 75% 8%, rgba(92, 240, 122, 0.16), transparent 70%),
    radial-gradient(50% 40% at 10% 60%, rgba(92, 240, 122, 0.08), transparent 70%),
    linear-gradient(180deg, #000 0%, #050806 60%, #000 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 18px var(--accent-glow);
}

.nav__name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  font-size: 15px;
}

.nav__links a {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  background: var(--accent);
  color: #06210f !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav__cta:hover {
  background: var(--accent-bright);
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.accent {
  color: var(--accent);
  text-shadow: 0 0 28px var(--accent-glow);
}

.hero__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 520px;
}

.hero__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Store buttons ---------- */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-row--center {
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 20px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.coming-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 26px;
  border-radius: 16px;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.coming-badge small {
  color: rgba(0, 0, 0, 0.65);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-badge strong {
  color: #05140a;
  font-size: 18px;
  font-weight: 800;
}

.store-btn__icon {
  width: 26px;
  height: 26px;
  color: var(--text);
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-btn__text small {
  font-size: 11px;
  color: var(--text-dim);
}

.store-btn__text strong {
  font-size: 17px;
  font-weight: 700;
}

/* ---------- Hero art: glowing logo with broadcast rings ---------- */
.hero__art {
  display: flex;
  justify-content: center;
}

.logo-stage {
  position: relative;
  width: 320px;
  height: 320px;
  display: grid;
  place-items: center;
}

.logo-stage--sm {
  width: 150px;
  height: 150px;
  margin: 0 auto 8px;
}

.logo-stage__img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  border-radius: 28px;
  z-index: 2;
  filter: drop-shadow(0 0 26px var(--accent-glow));
  animation: float 5s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: pulse 3s ease-out infinite;
}

.ring--1 {
  width: 55%;
  height: 55%;
  animation-delay: 0s;
}

.ring--2 {
  width: 78%;
  height: 78%;
  animation-delay: 0.8s;
}

.ring--3 {
  width: 100%;
  height: 100%;
  animation-delay: 1.6s;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Stat strip ---------- */
.strip {
  max-width: var(--maxw);
  margin: 10px auto 20px;
  padding: 22px 24px;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 8vw, 90px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip__item {
  text-align: center;
}

.strip__item strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
}

.strip__item span {
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px;
}

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(92, 240, 122, 0.03), transparent);
  max-width: none;
}

.section--alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}

.section__lead {
  text-align: center;
  color: var(--text-dim);
  margin-top: 10px;
  font-size: 17px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.step {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.step__num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #06210f;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 0 18px var(--accent-glow);
}

.step h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.step p {
  color: var(--text-dim);
  font-size: 15px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.feature {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.feature__icon {
  font-size: 30px;
}

.feature h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.feature p {
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ---------- Final CTA ---------- */
.cta {
  max-width: var(--maxw);
  margin: 20px auto 0;
  padding: 72px 24px 90px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.cta p {
  color: var(--text-dim);
  margin-top: 12px;
  font-size: 17px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer__logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.footer__links {
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.footer__links a {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__copy {
  width: 100%;
  color: var(--text-dim);
  font-size: 13px;
  opacity: 0.7;
}

/* ---------- Screenshots / phone mockups ---------- */
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
  align-items: end;
  justify-items: center;
}

.shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.shot--raised .phone {
  transform: translateY(-18px);
  box-shadow: 0 20px 60px rgba(92, 240, 122, 0.22);
}

.shot figcaption {
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
  max-width: 220px;
}

.phone {
  position: relative;
  width: 232px;
  height: 476px;
  border-radius: 40px;
  background: linear-gradient(160deg, #12211a, #060a08);
  border: 1px solid var(--border);
  padding: 12px;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(92, 240, 122, 0.08);
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(92, 240, 122, 0.12), transparent 60%), #05080699;
  overflow: hidden;
  position: relative;
}

/* Real app screenshot filling the phone screen */
.phone__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 30px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 20px;
  transition: border-color 0.2s ease;
}

.faq__item[open] {
  border-color: var(--accent);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  color: var(--text-dim);
  font-size: 15px;
  padding: 0 0 18px;
}

/* ---------- Coming soon ---------- */
.waitlist {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.waitlist .eyebrow {
  margin-bottom: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row {
    justify-content: center;
  }

  .hero__art {
    order: -1;
    margin-bottom: 10px;
  }

  .logo-stage {
    width: 240px;
    height: 240px;
  }

  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .shots {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shot--raised .phone {
    transform: none;
  }

  .waitlist {
    padding: 0 8px;
  }

  .nav__links a {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-stage__img,
  .ring {
    animation: none;
  }
}
