:root {
  --base: #050507;
  --ink: #0f0f12;
  --ember: #b91c1c;
  --ember-dark: #7f1d1d;
  --ash: #9ca3af;
  --white: #f8fafc;
  --card-bg: rgba(15, 15, 18, 0.88);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(185, 28, 28, 0.3);
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 45px -24px rgba(0, 0, 0, 0.65);
  --font-sans: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #1a1a1a url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiGAAAAA1BMVEX///+nxBvIAAAAIElEQVR42mP8/f//PwMDAwMTEyYg1gABXgYGJmIQBgYgDACQFQEAlwsVRsQAAAAASUVORK5CYII=');
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(12px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ash);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ash);
}

.nav-links a.btn {
  letter-spacing: 0.24em;
}

.hero {
  padding: 5rem 0 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f97316;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  text-align: center;
}

.hero-heading {
  display: grid;
  gap: 1.8rem;
  max-width: 920px;
}

.hero-heading .badge {
  margin: 0 auto;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin: 1.8rem auto 1.1rem;
  text-transform: uppercase;
  max-width: 800px;
}

.hero-lead {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.82);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

.hero-video {
  width: 100%;
  max-width: 860px;
}

.video-shell {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(185, 28, 28, 0.4);
  background: #09090b;
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  display: grid;
  gap: 2.4rem;
  width: 100%;
  max-width: 880px;
}

.stat-grid {
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ash);
}

.stat-value {
  font-size: 1.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.018em;
}

.section-note {
  font-size: 0.82rem;
  color: rgba(248, 250, 252, 0.6);
  margin: 0.45rem auto 0;
  max-width: 19rem;
  line-height: 1.45;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ember), var(--ember-dark));
  border-color: transparent;
  box-shadow: 0 20px 35px -22px rgba(185, 28, 28, 0.6);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d52424, var(--ember));
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
}

.meta-line {
  margin: 0 auto;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ash);
  text-align: center;
}

.section {
  padding: 4.5rem 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  margin-bottom: 2rem;
  display: grid;
  gap: 0.8rem;
  max-width: 50rem;
}

.section-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ember);
  font-weight: 600;
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin: 0;
  text-transform: uppercase;
}

.section p.lead {
  font-size: 1rem;
  color: rgba(248, 250, 252, 0.78);
}

.card-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 860px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  border-radius: var(--radius-md);
  background: rgba(28, 28, 28, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  display: grid;
  gap: 1.25rem;
  transition: all 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

.card-header {
  display: grid;
  gap: 0.4rem;
}

.card-eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ember);
  font-weight: 600;
}

.card-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.95rem;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ember), #f97316);
}

.proof-card {
  border-radius: var(--radius-md);
  background: rgba(185, 28, 28, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(185, 28, 28, 0.45);
  padding: 2.4rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.columns-2 {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 880px) {
  .columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.columns-2 .card {
  border-color: rgba(255, 255, 255, 0.08);
}

.next-steps {
  border-radius: var(--radius-lg);
  background: rgba(185, 28, 28, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(185, 28, 28, 0.4);
  padding: 3rem;
  display: grid;
  gap: 1.8rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.next-steps ol {
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.9rem;
  color: rgba(248, 250, 252, 0.78);
}

.next-steps li::marker {
  color: var(--ember);
  font-weight: 600;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-accordion details {
  border-radius: var(--radius-md);
  background: rgba(28, 28, 28, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.faq-accordion details[open] {
  border-color: rgba(185, 28, 28, 0.45);
  background: rgba(15, 15, 18, 0.92);
}

.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-accordion summary::after {
  content: ' +';
  font-weight: 400;
  color: var(--ash);
  transition: transform 0.2s ease;
}

.faq-accordion details[open] summary::after {
  transform: rotate(45deg);
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion p {
  margin: 0.9rem 0 0;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.55);
}

.footer-inner {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ash);
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ash);
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-links {
    margin-top: 0;
    margin-left: auto;
  }
}


@media (max-width: 880px) {
  .hero {
    padding: 4.2rem 0 3.5rem;
  }

  .next-steps {
    padding: 2.4rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero-stack {
    gap: 2.6rem;
  }

  .video-shell {
    min-height: 240px;
  }

  .next-steps {
    padding: 2.2rem;
  }
}

@media (max-width: 520px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .cta-group {
    display: grid;
    gap: 1rem;
  }
}


