:root {
  color-scheme: dark;
  --background: #050607;
  --foreground: #e5e7eb;
  --panel-bg: rgba(10, 12, 14, 0.72);
  --panel-border: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.7);
  --muted-strong: rgba(255, 255, 255, 0.8);
  --muted-soft: rgba(255, 255, 255, 0.55);
  --check-color: rgba(255, 255, 255, 0.75);
  --accent: #34d399;
  --accent-soft: rgba(16, 185, 129, 0.15);
  --shadow-panel: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 90px -60px rgba(0, 0, 0, 0.9);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(900px 600px at 85% 18%, rgba(245, 158, 11, 0.14), transparent 55%),
    radial-gradient(900px 600px at 85% 85%, rgba(14, 165, 233, 0.1), transparent 60%),
    var(--background);
  color: var(--foreground);
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.page-surface {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.page-surface::before,
.page-surface::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.page-surface::before {
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.75);
}

.page-surface::after {
  background:
    radial-gradient(circle at 76% 78%, rgba(34, 197, 94, 0.1), transparent 38%),
    radial-gradient(circle at 18% 80%, rgba(245, 158, 11, 0.08), transparent 36%);
  filter: blur(120px);
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3.5rem 0;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: 28px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(24px);
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .panel {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .panel {
    padding: 3rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px -18px rgba(0, 0, 0, 0.7);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle .icon-close {
  display: none;
}

.site-header.nav-open .nav-toggle .icon-open {
  display: none;
}

.site-header.nav-open .nav-toggle .icon-close {
  display: inline-flex;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
}

.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
}

.mobile-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header.nav-open .mobile-nav {
  display: block;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.hero {
  display: grid;
  gap: 2.5rem;
}

.hero-content {
  display: flex;
  align-items: center;
}

.hero-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.hero-subkicker {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.1rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-check-item {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.hero-check-item::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  line-height: inherit;
  font-weight: 400;
  opacity: 0.75;
}

.hero-check-icon {
  display: none;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: 0 !important;
  transform: none !important;
}

.cta-row {
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 30px -18px rgba(15, 23, 42, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #1f2937;
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 90px -55px rgba(0, 0, 0, 0.8);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 197, 203, 0.26), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(250, 204, 21, 0.2), transparent 30%);
  filter: blur(28px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0));
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
}

.section-header h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: #fff;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 60px -50px rgba(0, 0, 0, 0.75);
  transition: transform 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.access-pill-grid .card {
  align-items: center;
  gap: 12px;
}

.access-pill-grid {
  margin-top: 10px;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px -58px rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease, background 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.step-content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.step-link {
  display: block;
  color: inherit;
  transition: opacity 0.2s ease;
}

.step-link:hover {
  opacity: 0.85;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.step-media {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.step-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.body-copy {
  display: grid;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.access-final-note {
  margin-bottom: 24px;
  line-height: 1.5;
}

.body-copy .strong {
  color: #fff;
  font-weight: 600;
}


.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  color: #fff;
  font-weight: 600;
}

.footer-risk {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-risk-text {
  max-width: 640px;
  padding: 0 1.25rem;
  text-align: center;
  color: inherit;
}

.footer-links {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer-inner {
    align-items: center;
  }
}

.blob-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.7;
}

.blob-1 {
  top: -140px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(16, 185, 129, 0.2);
}

.blob-2 {
  top: -60px;
  right: 6%;
  width: 220px;
  height: 220px;
  background: rgba(245, 158, 11, 0.18);
}

.blob-3 {
  top: 16%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.16);
}

.blob-4 {
  top: 26%;
  right: -140px;
  width: 320px;
  height: 320px;
  background: rgba(251, 191, 36, 0.16);
}

.blob-5 {
  top: 44%;
  left: 14%;
  width: 230px;
  height: 230px;
  background: rgba(163, 230, 53, 0.18);
}

.blob-6 {
  top: 52%;
  right: 8%;
  width: 260px;
  height: 260px;
  background: rgba(14, 165, 233, 0.16);
}

.blob-7 {
  bottom: 26%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.16);
}

.blob-8 {
  bottom: 18%;
  right: 6%;
  width: 240px;
  height: 240px;
  background: rgba(16, 185, 129, 0.18);
}

.blob-9 {
  bottom: -120px;
  left: 22%;
  width: 320px;
  height: 320px;
  background: rgba(245, 158, 11, 0.18);
}

.blob-10 {
  bottom: -80px;
  right: 36%;
  width: 260px;
  height: 260px;
  background: rgba(52, 211, 153, 0.16);
}

.blob-11 {
  top: 68%;
  left: 38%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.16);
}

.blob-12 {
  top: 10%;
  right: 38%;
  width: 180px;
  height: 180px;
  background: rgba(132, 204, 22, 0.16);
}
