/* Nordlith Public Surface — Authoritative clean Style 1 / Resource Mesh layer
   Pure white field, Poppins bold hierarchy, light cards, red signal / blue control,
   generous air, mobile-first. Neutralizes editorial-refresh where needed.
   Link this AFTER editorial-refresh.css.
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --nl-navy: #09111b;
  --nl-signal-red: #c84a3a;
  --nl-control-blue: #3a6ea5;
  --nl-white: #ffffff;
  --nl-ink: #111827;
  --nl-muted: #6b7280;
  --nl-line: rgba(23, 23, 23, 0.08);
}

/* Base neutralization for public pages */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  background: var(--nl-white) !important;
  color: var(--nl-ink) !important;
}

/* Typography */
.display, h1, h2, .section-title {
  font-family: 'Poppins', system-ui, sans-serif !important;
  font-weight: 600 !important;
  line-height: 0.92;
}

/* Header — clean white to match light enterprise field */
.site-header {
  background: var(--nl-white) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--nl-line);
}

.nav-links { color: var(--nl-muted); }
.nav-link { font-size: 14px; font-weight: 500; }

/* Buttons — restrained, not heavy pills on narrow screens */
.button {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 18px;
}
.button.primary { background: var(--nl-ink); color: #fff; border-color: var(--nl-ink); }

/* Cards — light, thin border, generous padding */
.light-card, .card {
  background: var(--nl-white);
  color: var(--nl-ink);
  border: 1px solid var(--nl-line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* Hero — mobile-first: stack by default preference, clear sticky header */
.hero {
  padding: 100px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 820px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 1fr);
    gap: 56px;
  }
  .hero {
    padding: 80px 0 48px;
  }
}

.hero-visual {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--nl-line);
}
.hero-visual img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

/* Actions — stack on mobile, row on wide */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
@media (max-width: 768px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* Eyebrow / small labels */
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
}
.red-accent { color: var(--nl-signal-red); }
.blue-accent { color: var(--nl-control-blue); }

/* General breathing */
.section { padding: 48px 0; }
.thin-line { height: 1px; background: var(--nl-line); margin: 20px 0; }

.minimal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .minimal-grid { grid-template-columns: 1fr; }
}
