/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #050816;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(55, 65, 81, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap img {
  width: 140px;
  height: 47px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 18px;
}

.logo-text-sub {
  font-size: 12px;
  color: #9ca3af;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: 14px;
  color: #d1d5db;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav a:hover {
  color: #f97316;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.45);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 35px rgba(236, 72, 153, 0.6);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: rgba(99, 102, 241, 0.1);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.burger:hover {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.05);
}

.burger.active {
  background: rgba(99, 102, 241, 0.3);
}

.burger span {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.burger.active span:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg);
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.burger.active span:nth-child(3) {
  opacity: 0;
  transform: scale(0);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 16px;
}

.nav-mobile a {
  font-size: 15px;
  color: #e5e7eb;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top, #1e293b 0, #020617 55%, #000 100%);
  padding: 56px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 40px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.7);
  background: rgba(15, 23, 42, 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-title {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.hero-title span {
  background: linear-gradient(135deg, #f97316, #fb7185, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 15px;
  color: #d1d5db;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-meta-item {
  padding: 10px 12px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.hero-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.hero-meta-value {
  font-size: 14px;
  font-weight: 600;
}

.hero-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #111827, #020617);
  border: 1px solid rgba(75, 85, 99, 0.7);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.hero-card-orbit {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.32), transparent 55%);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(75, 85, 99, 0.85);
  font-size: 11px;
  color: #e5e7eb;
}

.hero-chip span {
  color: #a5b4fc;
}

.hero-tag {
  font-size: 11px;
  color: #9ca3af;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(55, 65, 81, 0.85);
}

.hero-stat-label {
  font-size: 11px;
  color: #9ca3af;
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 600;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 12px;
}

.hero-foot-note {
  font-size: 11px;
  color: #9ca3af;
  max-width: 220px;
}

.hero-foot-badge {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(8, 47, 73, 0.85);
  color: #bae6fd;
  font-size: 11px;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.section-description {
  font-size: 14px;
  color: #d1d5db;
  max-width: 640px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: 32px;
}

.card {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #020617, #020617 45%, #030712);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 18px 18px 16px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
}

.card-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #9ca3af;
}

.card-body {
  font-size: 14px;
  color: #d1d5db;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Tables */
.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 13px;
}

.table thead {
  background: rgba(15, 23, 42, 0.9);
}

.table th,
.table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 0.85);
}

.table th {
  font-weight: 600;
  font-size: 12px;
  color: #9ca3af;
}

.table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.7);
}

.table-caption {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
}

/* Lists & text */
.text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.text-block p {
  color: #d1d5db;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 18px;
}

.list li {
  position: relative;
  padding-left: 10px;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fb923c;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.faq-q {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.faq-a {
  font-size: 14px;
  color: #d1d5db;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 18px 0 24px;
  margin-top: auto;
  background: #020617;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #f97316;
}

/* Utilities */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  font-size: 11px;
}

.badge-soft-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4ade80;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  font-size: 11px;
  color: #9ca3af;
}

.highlight {
  color: #f97316;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 32px;
  }
}

@media (max-width: 768px) {
  .header-inner {
        padding: 12px;
  }

  .nav {
    display: none;
        padding: 12px;
  }

  .burger {
    display: flex;
  }

  .nav-mobile.open {
    display: flex;
    padding: 12px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}


