:root {
  --bg-main: #0b0d12;
  --bg-soft: #11141c;
  --bg-card: #161a24;
  --bg-card-2: #1c2230;
  --text: #e6eaf2;
  --text-soft: #a6adbf;
  --text-mute: #767e93;
  --accent: #ff3d8b;
  --accent-2: #ffb020;
  --accent-glow: rgba(255, 61, 139, 0.45);
  --border: #232a3a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --gradient-accent: linear-gradient(120deg, #ff3d8b 0%, #ff6a3d 50%, #ffb020 100%);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-main);
  background-image:
    radial-gradient(1100px 600px at 88% -10%, rgba(255, 61, 139, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 176, 32, 0.08), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.topnav {
  display: flex;
  gap: 6px;
}

.topnav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.topnav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

/* Container */
.container {
  max-width: 980px;
  margin: 32px auto 64px;
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient-accent);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.breadcrumb a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--text-mute);
}

.breadcrumb [aria-current] {
  color: var(--text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 8px 0 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1a1208;
  background: var(--gradient-accent);
  border-radius: 999px;
  margin-bottom: 14px;
}

h1 {
  font-size: 38px;
  line-height: 1.18;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #ffffff 0%, #b6bdd0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lede {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 0 18px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.hero-stats > div {
  flex: 1 1 0;
  min-width: 110px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-align: center;
}

.hero-stats b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.hero-stats span {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
}

.hero-image {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card-2);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 956 / 354;
}

/* Headings */
h2, h3 {
  color: #fff;
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  border-radius: 4px;
  background: var(--gradient-accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

/* Content */
p {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 18px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 22px;
}

ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-soft);
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

th {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

/* Callout */
.callout {
  background: rgba(255, 61, 139, 0.06);
  border: 1px solid rgba(255, 61, 139, 0.25);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  color: var(--text-soft);
  margin: 24px 0;
}

.callout strong {
  color: #fff;
}

/* FAQ */
.faq {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 61, 139, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.faq p {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
}

/* Footer */
.site-footer {
  background: #06080c;
  color: var(--text-mute);
  text-align: center;
  padding: 28px 20px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
}

.site-footer p {
  margin: 6px 0;
  font-size: 13px;
  color: var(--text-mute);
}

/* Responsive */
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  h1 {
    font-size: 30px;
  }
  .container {
    margin: 16px;
    padding: 24px 18px;
  }
  .topbar-inner {
    padding: 12px 16px;
  }
  h2 {
    font-size: 22px;
  }
  .topnav a {
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px;
  }
  .lede {
    font-size: 15px;
  }
  .hero-stats b {
    font-size: 18px;
  }
}
