:root {
  color-scheme: dark;
  --bg: #0b0a08;
  --text: #f8fafc;
  --muted: #cbd5f5;
  --muted-2: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --panel: rgba(0, 0, 0, 0.35);
  --panel-strong: rgba(0, 0, 0, 0.45);
  --accent: #14b8a6;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px circle at 50% -10%, rgba(255, 205, 140, 0.12), transparent 55%),
    radial-gradient(900px circle at 15% 30%, rgba(255, 168, 80, 0.08), transparent 60%),
    radial-gradient(900px circle at 85% 35%, rgba(120, 255, 210, 0.05), transparent 65%),
    linear-gradient(180deg, #0b0a08 0%, #050403 60%, #030303 100%);
  background-attachment: fixed;
  color: var(--text);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-surface {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .page-surface {
    padding-bottom: 0;
  }
}

.blur-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.section {
  padding: 40px 0;
  scroll-margin-top: 96px;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
    scroll-margin-top: 112px;
  }
}

.panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 36px 110px -68px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
}

.h1 {
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.body {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #e2e8f0;
  line-height: 1.65;
}

.micro {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #cbd5e1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 600;
}

.text-small {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.link {
  color: #f8fafc;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
  border: 1px solid transparent;
  min-width: 160px;
}

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

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

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

.btn-secondary {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  height: 44px;
  padding: 0 20px;
  font-size: 13px;
  min-width: 0;
}

.full {
  width: 100%;
}

.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(140deg, #0f172a, #1f2937, #334155);
  color: #fff;
}

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

.brand-title {
  font-size: 14px;
  font-weight: 600;
}

.brand-subtitle {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle .icon {
  width: 20px;
  height: 20px;
}

.close-icon {
  display: none;
}

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

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

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 20px;
}

.mobile-nav-inner a {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.mobile-nav-inner a:hover {
  background: rgba(0, 0, 0, 0.3);
}

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

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

  .header-actions {
    display: none;
  }

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

.hero-panel {
  display: grid;
  gap: 32px;
  padding: 24px;
}

@media (min-width: 768px) {
  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding: 32px;
  }
}

.hero-text {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-media {
  order: 1;
}

@media (min-width: 768px) {
  .hero-text {
    order: 1;
  }

  .hero-media {
    order: 2;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions .btn-secondary {
  width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn-secondary {
    width: auto;
  }
}

.hero-image {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 26px 90px -48px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .hero-image {
    height: 460px;
  }
}

@media (min-width: 1024px) {
  .hero-image {
    height: 590px;
  }
}

.image-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(30px);
  pointer-events: none;
}

.image-glow.alt {
  background: radial-gradient(circle at 24% 24%, rgba(34, 197, 203, 0.2), transparent 35%),
    radial-gradient(circle at 80% 12%, rgba(250, 204, 21, 0.18), transparent 32%);
}

.image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.15), transparent);
  pointer-events: none;
}

.image-fade.dark {
  background: rgba(0, 0, 0, 0.3);
}

.image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.35), transparent);
  color: #fff;
}

.caption-title {
  font-size: 18px;
  font-weight: 600;
}

.caption-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.section-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  .section-panel {
    padding: 40px;
  }
}

.steps {
  list-style: none;
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px -52px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 96px;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px -56px rgba(0, 0, 0, 0.75);
}

.step-card--wide {
  min-height: 110px;
}

@media (min-width: 768px) {
  .step-card {
    min-height: 104px;
  }

  .step-card--wide {
    min-height: 120px;
    grid-column: 1 / -1;
  }
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.step-body {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.step-link {
  color: inherit;
  text-decoration: none;
}

.perk-panel {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  padding: 24px;
}

.perks {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

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

.perks p {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

.center-actions {
  display: flex;
  justify-content: center;
}

.about-panel {
  display: grid;
  gap: 32px;
  padding: 28px;
}

@media (min-width: 1024px) {
  .about-panel {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    padding: 40px;
  }
}

.stats {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.stat-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 16px;
  box-shadow: 0 18px 60px -45px rgba(0, 0, 0, 0.7);
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #94a3b8;
  font-weight: 600;
}

.stat-value {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

.stat-detail {
  margin-top: 4px;
  font-size: 13px;
  color: #cbd5e1;
}

.about-image {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 26px 90px -48px rgba(0, 0, 0, 0.7);
}

@media (min-width: 640px) {
  .about-image {
    height: 100%;
    min-height: 380px;
  }
}

.max-w-sm {
  max-width: 320px;
  margin-top: 12px;
}

.max-w-md {
  max-width: 420px;
}

.max-w-lg {
  max-width: 560px;
}

.bullets {
  display: grid;
  gap: 12px;
}

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

.bullet-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 60px -45px rgba(0, 0, 0, 0.7);
  color: #f1f5f9;
}

.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.15);
  color: #99f6e4;
  box-shadow: 0 10px 25px -18px rgba(13, 148, 136, 0.5);
}

.bullet-icon .icon {
  width: 16px;
  height: 16px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 64px;
  font-size: 14px;
  color: #cbd5e1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 600;
  color: #e2e8f0;
}

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

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-risk {
    text-align: center;
    max-width: 520px;
  }
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

.mobile-cta-inner {
  display: flex;
  gap: 12px;
  padding: 12px 0 16px;
}

.safe-bottom {
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}
