:root {
  --red: #ce103c;
  --red-hot: #f0184a;
  --red-dim: rgba(206, 16, 60, 0.16);
  --black: #050506;
  --ink: #0b0b0d;
  --panel: #101014;
  --panel-2: #16161c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(206, 16, 60, 0.45);
  --text: #f5f5f7;
  --muted: #9a9aa8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.brand-name,
.plan-name,
.plan-price span {
  font-family: var(--display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--red);
  color: var(--white);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.noise,
.grid-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.noise {
  z-index: 8;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.grid-bg {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 6, 0.52);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 22px;
  letter-spacing: 0.12em;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.62em;
  color: var(--red);
  padding-left: 2px;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--red-hot);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: var(--radius);
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--red);
}

.btn-primary {
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 10px 30px rgba(206, 16, 60, 0.28);
}

.btn-primary:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
}

.video-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.banner-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050506 url("../asset/banner-poster.jpg") center / cover no-repeat;
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  pointer-events: none;
}

.banner-video.is-on {
  opacity: 1;
}

.banner-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.72) 34%, rgba(5, 5, 6, 0.18) 62%, rgba(5, 5, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.35) 0%, transparent 28%, transparent 58%, rgba(5, 5, 6, 0.7) 100%);
  pointer-events: none;
}

.banner-grain {
  display: none;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
}

.banner-copy {
  max-width: 640px;
}

.video-banner h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(52px, 8vw, 88px);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.video-banner .h-line {
  display: block;
  color: inherit;
}

.video-banner .h-accent {
  color: var(--red);
}

.video-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  z-index: 3;
}

.video-banner .lede {
  color: #c8c8d0;
  max-width: 48ch;
}

.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(206, 16, 60, 0.28), transparent 64%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 18px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(206, 16, 60, 0.7);
  animation: pulse 1.8s infinite;
}

h1 {
  font-size: clamp(56px, 8vw, 96px);
  margin: 0 0 20px;
}

h1 span.h-accent {
  color: var(--red);
}

.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-pills li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 6, 0.35);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8e8ee;
}

.video-banner,
.section,
.split,
.cta-band,
#features,
#protocol,
#pricing,
#faq,
#get-started,
#trust,
#top {
  scroll-margin-top: 88px;
}

.stats {
  border-block: 1px solid var(--line);
  background: rgba(16, 16, 20, 0.7);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-row article {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.stats-row article:last-child {
  border-right: 0;
}

.stats-row strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.stats-row span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2,
.split h2,
.cta-band h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 0 0 16px;
}

.section-head p:last-child,
.split p,
.audience article p,
.faq-list p,
.cta-band p,
.footer-tag {
  color: var(--muted);
}

.feature-grid,
.audience-grid,
.pricing-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.audience-grid article,
.price-card,
.trust-grid article {
  background: linear-gradient(180deg, var(--panel), var(--ink));
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.price-card.featured::before,
.trust-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.feature-card .index,
.trust-grid .index {
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 42px;
}

.icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3,
.audience-grid h3,
.trust-grid h3,
.plan-name {
  font-size: 28px;
  margin: 0 0 10px;
}

.split {
  padding: 40px 0 96px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.split-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.split-visual img {
  width: min(380px, 80%);
  aspect-ratio: 1;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.split-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(206, 16, 60, 0.12);
}

.checklist {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 2px;
  background: var(--red);
}

.audience {
  padding-bottom: 40px;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-grid article {
  min-height: 220px;
}

.audience-grid article:hover,
.feature-card:hover,
.trust-grid article:hover,
.price-card:hover {
  border-color: var(--line-strong);
}

#pricing {
  isolation: isolate;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-tag,
.plan-note,
.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--red);
  margin: 0 0 18px;
  font-weight: 600;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 8px;
}

.plan-price span {
  font-size: 56px;
}

.plan-price small,
.plan-note {
  color: var(--muted);
}

.price-card ul {
  padding: 0;
  margin: 18px 0 28px;
  list-style: none;
  flex: 1;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-card .btn,
.price-card .paypal-plan-btn {
  width: 100%;
}

.paypal-plan-btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  min-height: 45px;
  max-width: 100%;
}

.paypal-plan-btn iframe,
.paypal-plan-btn .paypal-buttons {
  position: relative !important;
  z-index: 0 !important;
  max-width: 100%;
}

.price-card.featured {
  border-color: var(--red);
  transform: translateY(-12px);
  box-shadow: var(--shadow), 0 0 0 1px var(--red);
  background: linear-gradient(180deg, #1a0a10, var(--ink));
}

.ribbon,
.ribbon-alt {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 8px;
  font-weight: 700;
}

.ribbon-alt {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 8px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details[open] summary {
  color: var(--red-hot);
}

.faq-list p {
  margin: 0 0 18px;
  max-width: 62ch;
}

.cta-band {
  padding: 40px 0 120px;
}

.cta-inner {
  text-align: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(206, 16, 60, 0.18), transparent 55%),
    var(--panel);
  padding: 72px 24px;
}

.cta-inner img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.cta-inner .hero-actions {
  justify-content: center;
  margin: 28px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  background: #070708;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin: 0 0 8px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(206, 16, 60, 0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .faq-wrap,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .trust-grid,
  .stats-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .orbit-c,
  .split-ring {
    display: none;
  }

  .video-banner {
    min-height: 92vh;
    min-height: 92dvh;
  }

  .banner-overlay {
    padding-bottom: 32px;
  }

  .price-card.featured {
    transform: none;
  }

  .stats-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-burger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #070708;
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
    z-index: 30;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav .btn {
    margin-top: 12px;
    width: 100%;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .footer-base {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1180px, calc(100% - 28px));
  }

  h1 {
    max-width: none;
  }

  .video-banner h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .section {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orbit,
  .live-dot {
    animation: none;
  }

  .banner-video {
    display: none;
  }
}
