@font-face {
  font-family: 'ABCCamera-Bold';
  src: url('/static/fonts/ABCCamera-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary: #0022FF;
  --secondary: #000b54;
  --bg: #F8F9FA;
  --text: #111;
  --text-muted: #666;
  --font-main: 'Inter', sans-serif;
  --font-alt: 'Raleway', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --font-title: 'ABCCamera-Bold', sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* Dot Grid Background */
.dot-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.container {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.brand-label {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-size: 1.25rem;
}

h1 {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.about {
  font-family: var(--font-alt);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 3rem auto;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-cta {
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-cta:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 34, 255, 0.2);
}
