@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #09090b;
  --surface: #131316;
  --border: rgba(255, 255, 255, 0.1);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #e5a31c;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.92);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand img {
  width: 32px;
  height: 32px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.coming-soon-panel {
  max-width: 640px;
  text-align: center;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.coming-soon-panel img.logo-horizontal {
  width: min(420px, 92vw);
  height: auto;
  margin: 0 auto 24px;
  display: block;
  aspect-ratio: 920 / 220;
}

.coming-soon-panel h1 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
}

.coming-soon-chip {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coming-soon-panel p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.coming-soon-panel p.review-note {
  margin-top: 20px;
  font-size: 0.9rem;
  font-style: italic;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 24px;
}

.footer-brand {
  justify-self: start;
}

.footer-brand img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: 920 / 220;
}

.footer-meta {
  grid-column: 2;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-meta p {
  margin: 0;
}

.footer-sponsor {
  grid-column: 3;
  justify-self: end;
}

.footer-sponsor a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-sponsor img {
  height: 32px;
  width: auto;
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-meta,
  .footer-sponsor {
    grid-column: 1;
    justify-self: center;
  }
}
