:root {
  --bg: #07090f;
  --bg-2: #0b0f19;
  --card: #162032;
  --text: #f8fafc;
  --muted: #94a3b8;
  --teal: #2dd4bf;
  --teal-deep: #0d9488;
  --line: rgba(45, 212, 191, 0.18);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

em {
  font-style: normal;
  color: var(--teal);
}

.glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-a {
  width: 42vw;
  height: 42vw;
  top: -8vw;
  right: -10vw;
  background: rgba(45, 212, 191, 0.12);
}

.glow-b {
  width: 36vw;
  height: 36vw;
  bottom: 10vh;
  left: -12vw;
  background: rgba(13, 148, 136, 0.1);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.nav nav {
  display: flex;
  gap: 1.5rem;
}

.nav nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #042f2e;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  box-shadow: 0 0 28px rgba(45, 212, 191, 0.28);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-nav {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.eyebrow {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin: 0 auto 1.1rem;
  max-width: 16ch;
}

.lede {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.fine {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.video {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 3rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(45, 212, 191, 0.08);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: flex;
  justify-content: center;
}

.shot img {
  width: 50%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(45, 212, 191, 0.08);
}

.feature-banner img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(45, 212, 191, 0.08);
}

.how,
.testimonials,
.cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.how h2,
.testimonials h2,
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.section-copy {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2.4rem;
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.5rem;
}

.steps span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.steps h3 {
  margin: 0.55rem 0 0.4rem;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-banner {
  max-width: var(--max);
  margin: 0 auto 4.5rem;
  padding: 0 1.5rem;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quotes figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--teal);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.quotes blockquote {
  margin: 0 0 1.2rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.quotes figcaption {
  margin-top: auto;
}

.quotes figcaption strong {
  display: block;
  font-size: 0.92rem;
}

.quotes figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.cta {
  text-align: center;
  padding-bottom: 5.5rem;
}

.cta img {
  margin: 0 auto 1.1rem;
  border-radius: 18px;
}

.cta p {
  color: var(--muted);
  margin: 0 0 1.4rem;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

footer p:first-child {
  padding-top: 1.5rem;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.legal h1 {
  max-width: none;
  text-align: left;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.25rem;
}

.legal .lede {
  text-align: left;
  margin-left: 0;
}

.legal h2 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin: 2.2rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.98rem;
}

.legal strong,
.legal code {
  color: var(--text);
}

.legal code {
  font-size: 0.88em;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li {
  margin: 0.4rem 0;
}

@media (max-width: 860px) {
  .nav nav {
    display: none;
  }

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

  .shot img {
    width: 100%;
  }

  .hero {
    padding-top: 2rem;
  }
}
