/* Narviana — Coming Soon site
   Mobile-first, plain CSS, no JS. Palette from docs/brand/BRAND_KIT.md. */

:root {
  --green: #14a86b;
  --green-deep: #0a603c;
  --green-mist: #c4f0d8;
  --blue: #1e88e5;
  --yellow: #f5c01e;
  --ink: #0f172a;
  --cream: #f4f1ea;
  --paper: #ffffff;
  --coral: #fca5a5;
  --muted: #4b5563;
  --radius: 16px;
  --maxw: 760px;
  --pad: 20px;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark { width: 28px; height: 33px; }

.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.status-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-mist);
  border: 1px solid rgba(10, 96, 60, 0.18);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Layout ---------- */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.section {
  background: var(--paper);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  padding: 26px 22px;
  margin: 16px 0;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }

h2 { font-size: 22px; color: var(--green-deep); }
h3 { font-size: 17px; }

p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

.section-lead { color: var(--muted); margin-bottom: 18px; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 40px var(--pad) 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.subhead {
  max-width: 540px;
  margin: 0 auto 16px;
  font-size: clamp(16px, 4.4vw, 19px);
  color: var(--muted);
}

.tagline {
  font-weight: 700;
  color: var(--green-deep);
}

/* ---------- Bullets ---------- */
.bullets, .pilot-list, .checks { list-style: none; margin: 0; padding: 0; }

.bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
/* Material rows lead with a glyph instead of the dot. */
.bullets li:has(.glyph) { padding-left: 0; display: flex; align-items: baseline; gap: 10px; }
.bullets li:has(.glyph)::before { display: none; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 14px; }

.card {
  background: var(--cream);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 18px;
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}

/* ---------- Pilots ---------- */
.pilot-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.pilot-list li:first-of-type { border-top: 0; }
.glyph { font-size: 20px; line-height: 1; }

/* ---------- Privacy ---------- */
.privacy { border-color: rgba(20, 168, 107, 0.25); }

.checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

/* ---------- Future direction ---------- */
.future { background: var(--green-mist); border-color: rgba(10, 96, 60, 0.18); }
.future h2 { color: var(--green-deep); }

/* ---------- Coming soon ---------- */
.coming { text-align: center; background: var(--green-deep); color: #fff; }
.coming h2 { color: #fff; }
.coming-ask { font-size: 18px; font-weight: 700; }
.contact-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--green-mist);
  border: 1px dashed rgba(196, 240, 216, 0.5);
  border-radius: 999px;
  padding: 6px 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  max-width: var(--maxw);
  margin: 8px auto 0;
  padding: 26px var(--pad) 40px;
  text-align: center;
  color: var(--muted);
}
.site-footer .fine { font-size: 13px; opacity: 0.85; }

/* ---------- Larger screens ---------- */
@media (min-width: 680px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 30px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
