/* Hand-authored CSS mirroring aishwara-frontend/app/globals.css's design
   tokens (dark navy + blue accent) — no Tailwind build step for one page. */

:root {
  --color-ink: #071422;
  --color-cosmos: #0f2644;
  --color-accent: #4d8ef8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-ink);
  color: #f1f5f9;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
}

.logo {
  border-radius: 50%;
}

.wordmark {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero {
  max-width: 42rem;
  text-align: center;
}

.hero h1 {
  color: var(--color-accent);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.subheadline {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blurb {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
}

footer {
  border-top: 1px solid #334155;
  padding: 1.5rem 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.company {
  margin: 0 0 0.5rem;
}

.copyright {
  margin: 0.5rem 0 0;
  color: #64748b;
}
