/* BubbleRag coming soon — tokens aligned with landingpage/home/styles.css */

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

:root {
  --bg: #0d0d1a;
  --text: #f2f2f7;
  --text-secondary: #9999b3;
  --text-muted: #666680;
  --accent: #3b82f6;
  --border: #262640;
  --transition: 150ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 64px;
  text-align: center;
}

.container-narrow {
  max-width: 560px;
  width: 100%;
}

.hero-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: var(--text);
}

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

footer {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

