:root {
  color-scheme: dark;
  --bg: #0d0f11;
  --bg-soft: #14171a;
  --bg-card: #1b1f23;
  --text: #ffffff;
  --text-muted: #c7cbd1;
  --accent: #ff4400;
  --accent-soft: rgba(255, 68, 0, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 1100px;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top left, #1a1d21 0%, #0d0f11 45%, #0a0c0e 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text,
.logo {
  font-family: "Rajdhani", "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.nav {
  display: flex;
  gap: 24px;
}

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

.nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 32px 0 8px;
}

.eyebrow {
  font-family: "Rajdhani", "Space Grotesk", system-ui, sans-serif;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.subline {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0b0c0d;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 68, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 68, 0, 0.4);
}

.hero-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pulse {
  position: absolute;
  inset: -40% 40% auto -40%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 68, 0, 0.4), transparent 70%);
  opacity: 0.7;
}

.panel-text {
  position: relative;
  display: grid;
  gap: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 15px 0 20px;
}

.section-header h2 {
  font-size: 1.8rem;
}

.section-header p {
  color: var(--text-muted);
}

.featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.featured-card {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}

.featured-card__content {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 12px;
}

.featured-card__content .btn {
  width: fit-content;
  align-self: flex-start;
}

.featured-card__media {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  max-width: 220px;
}

.featured-card__media img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 25px;
}

.card-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.card-body {
  color: var(--text-muted);
}

.btn {
  align-self: flex-start;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--accent);
  color: #0b0c0d;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card.small {
  min-height: 140px;
  justify-content: center;
}

.placeholder {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.about p {
  color: var(--text-muted);
  max-width: 720px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

@media (max-width: 840px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .featured-card {
    flex-direction: row;
  }

  .featured-card__media {
    max-width: 180px;
  }

  .featured-card__media img {
    height: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 24px 18px 36px;
  }

  .cta,
  .btn {
    width: 100%;
    justify-content: center;
  }

  .featured-card .btn {
    width: fit-content;
  }

  .hero-panel {
    min-height: 180px;
  }
}










.card-accent {
  color: var(--accent);
  font-size: 1.1rem;
}

.card-status {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}


.about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about p {
  text-align: center;
}

.about-icon {
  width: 20%;
  aspect-ratio: 1 / 1;
  margin-top: 20px;
  object-fit: contain;
}
