/* home.css — the public landing page at / */

@font-face {
  font-family: "LT Museum";
  src: url("./assets/fonts/LTMuseum-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LT Museum";
  src: url("./assets/fonts/LTMuseum-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LT Museum";
  src: url("./assets/fonts/LTMuseum-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;

  --bg: #0e0f12;
  --surface: #14161b;
  --surface-2: #191c22;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --text: #f1f3f7;
  --muted: #959dac;
  --accent: #f5c518;
  --accent-ink: #1a1400;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "LT Museum", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(80, 92, 118, 0.28), transparent 38rem),
    var(--bg);
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

/* ===== Hero ===== */

.hero {
  padding: clamp(48px, 9vw, 104px) 0 clamp(30px, 5vw, 54px);
  text-align: center;
}

.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
}

.hero-mark {
  height: clamp(68px, 10vw, 128px);
  width: auto;
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.17));
}

.hero-wordmark {
  width: clamp(250px, 46vw, 560px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.hero-tagline {
  margin: clamp(22px, 3vw, 32px) auto 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.6;
  color: #c6ccd8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.08s ease;
}

.btn:hover {
  background: #232833;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  border-color: transparent;
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: #ffd83a;
  border-color: transparent;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.35);
}

/* ===== What you can do ===== */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 56px);
}

.tile {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.tile:hover {
  border-color: rgba(245, 197, 24, 0.45);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.tile:focus-visible {
  outline: none;
  border-color: var(--accent);
}

.tile-icon {
  font-size: 26px;
  line-height: 1;
}

.tile h2 {
  margin: 13px 0 7px;
  font-size: 18px;
}

.tile p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ===== Live card strip ===== */

.strip {
  margin-top: clamp(38px, 6vw, 64px);
}

.strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.strip-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cbd2de;
}

.strip-head a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.strip-head a:hover {
  color: var(--text);
  border-bottom-color: var(--line-strong);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  min-height: 60px;
}

.strip-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
  transition: transform 0.16s ease;
}

.strip-grid a:hover img { transform: translateY(-4px); }

.strip-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ===== Footer ===== */

.site-footer {
  margin-top: clamp(44px, 7vw, 76px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .strip-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
