:root {
  --bg: #050816;
  --bg-elevated: #0b1020;
  --card-bg: #0f172a;
  --card-border: #1e293b;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --danger: #f97373;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.35);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 52%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.90),
    rgba(15, 23, 42, 0.78)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #f9fafb;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fed7aa, #f97316 40%, #7c2d12 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.85),
    0 0 0 8px rgba(248, 250, 252, 0.02),
    0 18px 40px rgba(15, 23, 42, 0.90);
  font-size: 0.75rem;
  color: #111827;
  font-weight: 800;
}

.logo span {
  opacity: 0.65;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.86rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.1rem;
}

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

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #facc15);
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(148, 163, 184, 0.32);
}

.pill-nav a {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
  white-space: nowrap;
}

.pill-nav a:hover {
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
}

.site-main {
  flex: 1;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1rem 3.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: #f9fafb;
}

.hero-lede {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-sub {
  font-size: 0.86rem;
  color: var(--text-soft);
  max-width: 36rem;
}

.hero-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.9);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.95);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 250, 252, 0.65);
  color: #f9fafb;
  text-decoration: none;
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-panel {
  border-radius: 22px;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.1rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.hero-pill {
  font-size: 0.72rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-panel-foot {
  font-size: 0.76rem;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
  margin-right: 0.35rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  font-size: 0.72rem;
  color: #bbf7d0;
  white-space: nowrap;
}

.section {
  margin-bottom: 2.75rem;
}

.section-header {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.section-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 34rem;
}

.seo-text {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.seo-text h2,
.seo-text h3 {
  color: #e5e7eb;
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.seo-text p {
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.seo-text ul {
  margin: 0.2rem 0 0.75rem 1.1rem;
  padding: 0;
}

.seo-text li {
  margin-bottom: 0.25rem;
}

.faq {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #111827 0, #020617 52%, #000 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow-subtle);
  margin-top: 1rem;
}

.faq h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

details {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] {
  background: rgba(15, 23, 42, 1);
}

details p {
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-weight: 400;
}

.faq-note {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.cb-grid {
  position: relative;
  margin-top: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, #111827 0, #020617 52%, #000 100%);
  padding: 0.9rem;
  min-height: 140px;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.cb-grid__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.9rem;
}

.cb-grid__loading,
.cb-grid__empty,
.cb-grid__error {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 1rem;
}

.cb-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
  transition: transform 0.14s ease, box-shadow 0.14s ease,
    border-color 0.14s ease, background 0.14s ease;
}

.cb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 250, 252, 0.35);
  background: #020617;
}

.cb-card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: radial-gradient(circle at center, #1f2937 0, #020617 55%, #000 100%);
}

.cb-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-card__badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.cb-badge {
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cb-badge--hd {
  background: rgba(22, 163, 74, 0.14);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.7);
}

.cb-badge--new {
  background: rgba(249, 115, 22, 0.16);
  color: #fed7aa;
  border: 1px solid rgba(249, 115, 22, 0.8);
}

.cb-card__viewers {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #e5e7eb;
  font-size: 0.73rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cb-card__body {
  padding: 0.6rem 0.7rem 0.7rem;
}

.cb-card__title {
  margin: 0 0 0.1rem;
  font-size: 0.95rem;
  color: #f9fafb;
}

.cb-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.cb-card__desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  padding: 1.4rem 1rem 1.6rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-soft);
}

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

.disclosure {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-top: 0.4rem;
  max-width: 40rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .site-nav {
    display: none;
  }

  .page {
    padding-top: 1.25rem;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 1.1rem 0.9rem 3rem;
  }

  .cb-grid__inner {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}