:root {
  --bg: #07090f;
  --bg-soft: #0e1320;
  --card: rgba(16, 23, 40, 0.7);
  --card-strong: #121a2d;
  --text: #f8fafc;
  --muted: #9aa7c3;
  --accent: #2dd4bf;
  --accent-strong: #14b8a6;
  --line: rgba(148, 163, 184, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(circle at 10% -10%, #13203d 0%, var(--bg) 45%), var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  z-index: 999;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 15, 0.65);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-link.is-active,
.nav-link:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #04201b;
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.35);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.35;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 17, 0.42), rgba(4, 8, 17, 0.9) 70%);
  z-index: -1;
}

.hero-inner {
  max-width: 860px;
  text-align: center;
  padding-block: 5rem 4rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  margin-top: 0.9rem;
}

.lead {
  margin: 1.25rem auto 0;
  color: #c8d4ea;
  max-width: 670px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

main section {
  padding: 4.2rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
}

.section-head p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 680px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: linear-gradient(170deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.35));
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.4);
}

.card h3 {
  font-size: 1.17rem;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  border: 1px solid rgba(45, 212, 191, 0.5);
  color: #9ff4e7;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.media-tile {
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 360px;
  position: relative;
}

.media-tile video,
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1rem;
  background: var(--card);
}

.stat strong {
  font-size: 1.8rem;
  color: #fff;
}

.stat p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.price-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1.45rem;
  background: var(--card);
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(170deg, rgba(15, 23, 42, 0.75), rgba(20, 184, 166, 0.18));
}

.price {
  font-size: 2rem;
  margin: 0.4rem 0 0.2rem;
}

.price-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  margin-bottom: 0.5rem;
  color: #d4def0;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.45rem;
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.25), rgba(15, 23, 42, 0.5));
}

.cta-band p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .hero {
    min-height: 64vh;
  }
}
