@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap");

/* =========================
   ROOT TOKENS
   ========================= */
:root {
  --bg: #000000;
  --fg: #ffffff;
  --accent: #FAE500;

  --logo-image: url("/assets/logo-white.png");
}

@media (prefers-color-scheme: light) {
  :root {
    --logo-image: url("/assets/logo-black.png");
  }
}

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

/* =========================
   BASE
   ========================= */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, sans-serif;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* =========================
   HERO
   ========================= */
.hero {
  margin-top: 80px;
}

/* Brand row */
.brand-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* =========================
   LOGO MARK — DESKTOP DEFAULT
   ========================= */
.logo-mark {
  width: 132px;
  height: 132px;

  background-image: var(--logo-image);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  flex-shrink: 0;
}

/* Brand heading */
.brand-heading {
  font-size: clamp(3.6rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

/* Yellow dot */
.brand-heading .dot {
  color: var(--accent);
  margin-left: 0.08em;
}

/* =========================
   TAGLINE / STATUS
   ========================= */
.tagline {
  margin-top: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.status {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================
   GRID
   ========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 120px;
}

/* =========================
   FOOTER
   ========================= */
footer {
  margin-top: 140px;
  text-align: center;
  opacity: 0.6;
  font-size: 0.75rem;
}

/* =========================
   MOBILE TUNING
   ========================= */
@media (max-width: 768px) {
  .logo-mark {
    width: 96px;
    height: 96px;
  }
}


  .logo-mark {
    width: 72px;
    height: 72px;
  }
}
