:root {
  color-scheme: dark;
  --bg: #110D14;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.74);
  --gold-1: #FFF1A6;
  --gold-2: #FFD24D;
  --gold-3: #D9A441;
  --gold-grad: linear-gradient(135deg, var(--gold-1), var(--gold-2) 45%, var(--gold-3));
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(255, 210, 77, 0.16), transparent 60%),
    radial-gradient(700px 360px at 85% 25%, rgba(217, 164, 65, 0.14), transparent 62%),
    var(--bg);
  color: var(--text);
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 16px 20px; }
main { max-width: 1100px; margin: 0 auto; padding: 28px 20px 56px; }

/* Anchor scrolling (account for sticky header) */
#home,
section[id] {
  scroll-margin-top: 90px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(17, 13, 20, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand { font-weight: 800; letter-spacing: 0.2px; }
.brand a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.site-logo { width: 36px; height: 36px; object-fit: contain; display: block; }
.site-name { font-weight: 900; }

.topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sc-nav { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sc-nav a { color: rgba(255, 255, 255, 0.86); font-weight: 800; font-size: 14px; padding: 6px 10px; border-radius: 999px; }
.sc-nav a:hover { color: #fff; text-decoration: none; background: rgba(255, 210, 77, 0.10); border: 1px solid rgba(255, 210, 77, 0.22); padding: 5px 9px; }

.actions { display: flex; gap: 10px; align-items: center; }
.sc-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
}
.sc-btn:hover { text-decoration: none; border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.05); }
.sc-btn-primary {
  background: var(--gold-grad);
  color: #1b121a;
  border-color: rgba(255, 210, 77, 0.55);
  box-shadow: 0 10px 30px rgba(255, 210, 77, 0.10);
}
.sc-btn-primary:hover {
  border-color: rgba(255, 241, 166, 0.75);
  box-shadow: 0 14px 40px rgba(255, 210, 77, 0.14);
}

.g-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.g-col-12 { grid-column: span 12; }
.g-col-8 { grid-column: span 8; }
.g-col-6 { grid-column: span 6; }
.g-col-4 { grid-column: span 4; }

@media (max-width: 920px) {
  .g-col-8, .g-col-6, .g-col-4 { grid-column: span 12; }
  .sc-nav { display: none; }
}

.sc-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

/* Section wrapper */
.section {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.section > .g-col-12 > h2 {
  margin-top: 0;
}

@media (max-width: 920px) {
  .section { padding: 14px; }
}

.muted { color: var(--muted); }

.pill {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 210, 77, 0.10);
  border: 1px solid rgba(255, 210, 77, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}

h1, h2, h3 { letter-spacing: -0.02em; }

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 12px 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */
.hero {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(255, 210, 77, 0.18), transparent 60%),
    radial-gradient(700px 360px at 88% 20%, rgba(217, 164, 65, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.30);
}

.hero-copy {
  padding: 12px 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.80);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.hero-side {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

@media (max-width: 920px) {
  .hero { padding: 14px; }
  .hero-copy { padding: 6px 4px; }
}

h2 { font-size: 26px; margin: 0 0 12px 0; }
h3 { font-size: 18px; margin: 0 0 8px 0; }

p { margin: 0 0 12px 0; line-height: 1.7; }

.list { margin: 0; padding-left: 18px; }
.list li { margin: 8px 0; color: rgba(255, 255, 255, 0.85); line-height: 1.6; }

.hr { height: 1px; background: rgba(255, 255, 255, 0.08); border: 0; margin: 18px 0; }

.kpi { font-weight: 900; font-size: 20px; }
.small { font-size: 14px; }

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0,0,0,0.16);
}

.footer-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.footer-col-3 { grid-column: span 3; }
.footer-col-4 { grid-column: span 4; }
.footer-col-12 { grid-column: span 12; }

@media (max-width: 920px) {
  .footer-col-3,
  .footer-col-4 { grid-column: span 12; }
}

.footer-title { font-weight: 900; margin: 0 0 10px 0; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: 8px 0; }
.footer-note { margin-top: 12px; color: rgba(255,255,255,0.70); font-size: 13px; line-height: 1.6; }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; display: block; }

.footer-disclaimer {
  margin-top: 8px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.65;
}

/* Section head (title + action) */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* About section design */
.about-section {
  padding: 22px 18px;
}

.about-hero-card {
  display: flex;
  gap: 24px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.about-hero-content {
  flex: 1 1 400px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.about-hero-content p {
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  gap: 16px;
  flex: 0 1 auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 210, 77, 0.20);
  background: rgba(255, 210, 77, 0.08);
  min-width: 100px;
}

.about-stat-value {
  font-weight: 900;
  font-size: 24px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.about-feature {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: all 280ms ease;
}

.about-feature:hover {
  border-color: rgba(255, 210, 77, 0.28);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.about-icon {
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1;
}

.about-feature h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 920px) {
  .about-hero-card {
    flex-direction: column;
    padding: 18px;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .about-stat-item {
    flex: 1 1 auto;
    min-width: 80px;
  }
}

/* Category bar (2nd navigation) */
.catbar {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.catbar-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.catbar-track::-webkit-scrollbar { height: 10px; }
.catbar-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
}

.catbar-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  white-space: nowrap;
}

.catbar-tab:hover {
  border-color: rgba(255, 210, 77, 0.25);
  background: rgba(255, 210, 77, 0.06);
}

.catbar-tab[aria-selected="true"] {
  border-color: rgba(255, 210, 77, 0.42);
  background: rgba(255, 210, 77, 0.10);
}

.catbar-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
  flex: 0 0 auto;
}

.catbar-ico img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.catbar-label {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 14px;
}

/* Category panels */
.catpanel { margin-top: 14px; }

.catcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 920px) {
  .catcards { grid-template-columns: repeat(2, 1fr); }
}

.catcard {
  display: block;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.catcard:hover {
  text-decoration: none;
  border-color: rgba(255, 210, 77, 0.28);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.catcard-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.catcard-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(255, 210, 77, 0.18), transparent 55%),
    radial-gradient(520px 220px at 80% 70%, rgba(217, 164, 65, 0.16), transparent 60%),
    rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

/* When you add real images later, drop an <img> inside .catcard-thumb */
.catcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catcard-meta {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.5;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
}

.carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 420ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

@media (max-width: 920px) {
  .carousel-slide img { aspect-ratio: 16 / 8; }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(17, 13, 20, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  border-color: rgba(255, 210, 77, 0.40);
  box-shadow: 0 12px 30px rgba(255, 210, 77, 0.10);
}

.carousel-btn-prev { left: 12px; }
.carousel-btn-next { right: 12px; }

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(17, 13, 20, 0.50);
  backdrop-filter: blur(10px);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  background: var(--gold-grad);
  border-color: rgba(255, 210, 77, 0.55);
}

.carousel-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(17, 13, 20, 0.55);
  backdrop-filter: blur(10px);
  max-width: min(560px, calc(100% - 28px));
}

.carousel-caption strong { display: block; margin-bottom: 2px; }
.carousel-caption span { color: rgba(255,255,255,0.76); font-size: 13px; line-height: 1.5; }
