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

:root {
  --bg: #0a0c0f;
  --text: #e8eaed;
  --text-muted: #8b929a;
  --accent: #00a800;
  --accent-hover: #00c400;
  --border: #1e2329;
  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-heading);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
  border-top: 2px solid var(--accent);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2.5rem 1.5rem;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

.company-name {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.mission-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text-muted);
}

.mission-subheadline {
  font-family: var(--font-mono);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.contact {
  width: 100%;
}

.contact-line {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.mission {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-line a {
  color: var(--accent) !important;
  text-decoration: none;
}

.contact-line a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.footer p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
