:root {
  --bg: #ffffff;
  --fg: #0b1f1b;
  --muted: #5c6f6a;
}

* { box-sizing: border-box; }
html { font-size: 15px; }
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--fg);
  background: var(--bg);
  display: grid;
  grid-template-rows: auto 1fr;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #003f34;
  color: #e9fff8;
}
.navbar .container {
  height: 64px;
  display: flex;
  align-items: center;
}
.brand {
  color: #e9fff8;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  font-size: 20px;
  line-height: 1;
}
.brand-text { line-height: 1; }

/* Hero center */
.hero {
  display: grid;
  place-items: center;
  padding: 32px 16px;
}
.hero-content {
  text-align: center;
}
.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4.5vw, 42px);
}
.soon {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2.8vw, 20px);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}
