/* ── NavioaLabs Corporate Site Styles ────────────────────────────
   All classes prefixed nl-.
   ────────────────────────────────────────────────────────────────── */

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

/* Palette — deep space + Navioa family green */
:root {
  --nl-ink:        #04080F;   /* ultra deep space blue-black */
  --nl-ink-2:      #090F1C;   /* card surfaces */
  --nl-ink-3:      #0D1728;   /* elevated hover */
  --nl-ink-4:      #152034;   /* subtle borders */
  --nl-green:      #3DD68C;   /* primary accent — Navioa family green */
  --nl-green-lt:   #6BE8AD;   /* light green — hover */
  --nl-green-dk:   #28B874;   /* deep green — active */
  --nl-green-glow: rgba(61,214,140,0.10);
  --nl-violet:     #6D40FF;   /* violet — orbs only (not text) */
  --nl-white:      #E8F4FC;   /* cool off-white text */
  --nl-white-80:   rgba(232,244,252,0.80);
  --nl-white-60:   rgba(232,244,252,0.60);
  --nl-white-40:   rgba(232,244,252,0.40);
  --nl-white-20:   rgba(232,244,252,0.20);
  --nl-white-10:   rgba(232,244,252,0.10);
  --nl-white-06:   rgba(232,244,252,0.06);
  --nl-border:     rgba(232,244,252,0.08);
  --nl-border-lt:  rgba(232,244,252,0.14);
  --nl-radius:     12px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
body.nl-body {
  background: var(--nl-ink);
  color: var(--nl-white);
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
}
a { text-decoration: none; color: inherit; }

/* ── Nav ─────────────────────────────────────────────────────────── */
.nl-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,8,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nl-border);
}
.nl-nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
}
.nl-wordmark {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--nl-white);
}
.nl-wordmark span { color: var(--nl-green); }
.nl-nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nl-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--nl-white-60);
  transition: color 0.15s;
}
.nl-nav-links a:hover { color: var(--nl-white); }
.nl-nav-contact {
  font-size: 13px; font-weight: 600;
  color: var(--nl-green);
  padding: 8px 20px; border-radius: 6px;
  border: 1px solid rgba(61,214,140,0.3);
  transition: background 0.15s, border-color 0.15s;
}
.nl-nav-contact:hover {
  background: var(--nl-green-glow);
  border-color: rgba(61,214,140,0.6);
  color: var(--nl-green-lt);
}

/* ── Hero ────────────────────────────────────────────────────────── */
.nl-hero {
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 40px 80px;
}
.nl-hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.nl-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(61,214,140,0.13) 0%, transparent 65%);
  top: -200px; right: -80px;
  filter: blur(100px);
}
.nl-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,64,255,0.10) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  filter: blur(120px);
}
.nl-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,214,140,0.05) 0%, transparent 70%);
  top: 35%; left: 45%;
  filter: blur(140px);
}
.nl-hero-inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.nl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--nl-green);
  margin-bottom: 28px;
}
.nl-hero-eyebrow::before {
  content: '';
  display: inline-block; width: 24px; height: 1px;
  background: var(--nl-green); opacity: 0.6;
}
.nl-hero h1 {
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 800; line-height: 1.03; letter-spacing: -0.04em;
  color: var(--nl-white);
  max-width: 780px; margin: 0 0 28px;
}
.nl-hero h1 em {
  font-style: normal; color: var(--nl-green);
}
.nl-hero-sub {
  font-size: 18px; color: var(--nl-white-60); line-height: 1.7;
  max-width: 520px; margin: 0 0 52px;
}
.nl-hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--nl-green), transparent);
  margin-bottom: 52px;
}
.nl-hero-stats {
  display: flex; gap: 56px; flex-wrap: wrap;
}
.nl-hero-stat-val {
  display: block;
  font-size: 28px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--nl-white); margin-bottom: 4px;
}
.nl-hero-stat-lbl {
  font-size: 12px; color: var(--nl-white-40); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
}

/* ── Section shared ──────────────────────────────────────────────── */
.nl-section {
  padding: 96px 40px;
  border-top: 1px solid var(--nl-border);
}
.nl-section-inner {
  max-width: 1120px; margin: 0 auto;
}
.nl-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--nl-green); margin-bottom: 16px;
}
.nl-h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08;
  color: var(--nl-white); margin: 0 0 16px;
}
.nl-h2-sub {
  font-size: 17px; color: var(--nl-white-60); line-height: 1.7;
  max-width: 540px; margin: 0 0 64px;
}

/* ── Platforms ───────────────────────────────────────────────────── */
.nl-platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.nl-platform-card {
  background: var(--nl-ink-2);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 40px;
  transition: border-color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.nl-platform-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--nl-green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.nl-platform-card:hover { border-color: var(--nl-border-lt); background: var(--nl-ink-3); }
.nl-platform-card:hover::before { opacity: 1; }
.nl-platform-card.nl-card-future {
  border-style: dashed; opacity: 0.45;
  pointer-events: none;
}
.nl-platform-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nl-green);
  background: var(--nl-green-glow);
  border: 1px solid rgba(61,214,140,0.2);
  padding: 4px 10px; border-radius: 4px;
}
.nl-platform-tag.nl-tag-future {
  color: var(--nl-white-40);
  background: var(--nl-white-06);
  border-color: var(--nl-border);
}
.nl-platform-card h3 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--nl-white); margin: 0 0 12px;
}
.nl-platform-card p {
  font-size: 15px; color: var(--nl-white-60); line-height: 1.7;
  margin: 0 0 28px;
}
.nl-platform-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--nl-green);
  transition: gap 0.15s, color 0.15s;
}
.nl-platform-link:hover { gap: 10px; color: var(--nl-green-lt); }

/* ── Values ──────────────────────────────────────────────────────── */
.nl-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--nl-border);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  overflow: hidden;
}
.nl-value {
  background: var(--nl-ink-2);
  padding: 40px 36px;
}
.nl-value-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--nl-green); opacity: 0.7; margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.nl-value h3 {
  font-size: 19px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--nl-white); margin: 0 0 12px; line-height: 1.3;
}
.nl-value p {
  font-size: 14px; color: var(--nl-white-60); line-height: 1.7; margin: 0;
}

/* ── Platform card icon ──────────────────────────────────────────── */
.nl-platform-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.nl-platform-app-icon {
  width: 52px; height: 52px; border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.nl-navioa-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  background: rgba(61,214,140,0.08);
  border: 1px solid rgba(61,214,140,0.2);
}
.nl-platform-icon-placeholder {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--nl-ink-4); border: 1px dashed var(--nl-border-lt);
  flex-shrink: 0;
}
.nl-platform-card-header .nl-platform-tag { margin-bottom: 0; }

/* ── Careers ─────────────────────────────────────────────────────── */
.nl-careers-simple {
  max-width: 620px;
}
.nl-careers-simple p {
  font-size: 17px; color: var(--nl-white-60); line-height: 1.8; margin: 0 0 20px;
}

/* Ghost button — green outline, no fill */
.nl-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  color: var(--nl-green);
  background: transparent;
  border: 1px solid rgba(61,214,140,0.35);
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
}
.nl-btn-gold:hover {
  background: var(--nl-green-glow);
  border-color: rgba(61,214,140,0.65);
  color: var(--nl-green-lt);
  transform: translateY(-1px);
}

/* Solid form submit button */
.nl-form-submit {
  width: 100%; justify-content: center; margin-top: 4px;
  background: rgba(61,214,140,0.14) !important;
  border-color: rgba(61,214,140,0.45) !important;
}
.nl-form-submit:hover {
  background: rgba(61,214,140,0.22) !important;
}

.nl-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-size: 15px; font-weight: 600;
  color: var(--nl-white-80); border: 1px solid var(--nl-border-lt);
  transition: background 0.15s, border-color 0.15s;
}
.nl-btn-outline:hover {
  background: var(--nl-white-06); border-color: var(--nl-white-20);
  color: var(--nl-white);
}
.nl-open-roles {
  background: var(--nl-ink-2); border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius); overflow: hidden;
}
.nl-role {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--nl-border);
  transition: background 0.15s;
}
.nl-role:last-child { border-bottom: none; }
.nl-role:hover { background: var(--nl-ink-3); }
.nl-role-title { font-size: 15px; font-weight: 600; color: var(--nl-white); }
.nl-role-meta { font-size: 13px; color: var(--nl-white-40); margin-top: 3px; }
.nl-role-arrow { color: var(--nl-green); font-size: 14px; }

/* ── Contact ─────────────────────────────────────────────────────── */
.nl-contact-centered {
  max-width: 640px;
}
.nl-contact-head { margin-bottom: 40px; }
.nl-contact-lede {
  font-size: 17px; color: var(--nl-white-60); line-height: 1.8; margin: 0;
}
.nl-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.nl-contact-form {
  background: var(--nl-ink-2); border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius); padding: 36px;
}
.nl-field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.nl-field label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--nl-white-40);
}
.nl-field input, .nl-field textarea, .nl-field select {
  font: inherit; font-size: 15px;
  color: var(--nl-white);
  background: var(--nl-ink);
  border: 1px solid var(--nl-border-lt);
  border-radius: 8px; padding: 12px 14px;
  width: 100%; transition: border-color 0.15s, box-shadow 0.15s;
}
.nl-field input::placeholder, .nl-field textarea::placeholder {
  color: var(--nl-white-20);
}
.nl-field input:focus, .nl-field textarea:focus {
  outline: none;
  border-color: rgba(61,214,140,0.5);
  box-shadow: 0 0 0 3px rgba(61,214,140,0.07);
}
.nl-field textarea { resize: vertical; min-height: 100px; }
.nl-form-note {
  margin-top: 14px; font-size: 12px; color: var(--nl-white-40); line-height: 1.6;
}
.nl-form-status {
  margin-top: 14px; font-size: 14px; line-height: 1.6;
  padding: 10px 14px; border-radius: 8px; display: none;
}
.nl-form-status:not(:empty) { display: block; }
.nl-status-success {
  color: #6ee7b7; background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
}
.nl-status-error {
  color: #fca5a5; background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.nl-footer {
  border-top: 1px solid var(--nl-border);
  padding: 32px 40px;
}
.nl-footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nl-footer-copy { font-size: 13px; color: var(--nl-white-40); }
.nl-footer-links {
  display: flex; gap: 28px;
}
.nl-footer-links a {
  font-size: 13px; color: var(--nl-white-40); transition: color 0.15s;
}
.nl-footer-links a:hover { color: var(--nl-white-80); }
.nl-footer-product {
  font-size: 13px; color: var(--nl-white-40);
}
.nl-footer-product a { color: var(--nl-green); transition: color 0.15s; }
.nl-footer-product a:hover { color: var(--nl-green-lt); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nl-nav-inner { padding: 14px 20px; }
  .nl-nav-links { display: none; }
  .nl-hero { padding: 80px 20px 60px; min-height: auto; }
  .nl-hero h1 { font-size: 40px; }
  .nl-hero-stats { gap: 32px; }
  .nl-section { padding: 64px 20px; }
  .nl-platforms-grid { grid-template-columns: 1fr; }
  .nl-values-grid { grid-template-columns: 1fr; }
  .nl-form-row { grid-template-columns: 1fr; }
  .nl-footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .nl-footer-links { flex-wrap: wrap; justify-content: center; }
}
