.nl-wrap, .nl-wrap * { box-sizing: border-box; }
.nl-wrap {
  --nl-navy: #0f2044;
  --nl-navy-hero: #122a57;
  --nl-navy-hero-deep: #10244d;
  --nl-gold: #c9a84c;
  --nl-gold-light: #e8c97a;
  --nl-text-mid: #4a5568;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a2e;
}

.nl-container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nl-hero {
  background: linear-gradient(180deg, var(--nl-navy-hero) 0%, var(--nl-navy-hero-deep) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0 42px;
}
.nl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.18), transparent 36%);
  pointer-events: none;
}
.nl-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.nl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: center;
}
.nl-hero-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d7f3e8;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 1.35rem;
}
.nl-hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 14ch;
}
.nl-hero-content p {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
}
.nl-hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.nl-btn-primary {
  background: #c9a84c;
  color: #10244d;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15,32,68,0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.nl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15,32,68,0.3);
  background: #e0bf68;
}
.nl-btn-outline {
  background: rgba(255,255,255,0.06);
  color: #eef8ff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
}
.nl-btn-outline:hover { background: rgba(255,255,255,0.12); }

.nl-founder-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,32,68,0.1);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 22px 46px rgba(6,37,57,0.25);
  max-width: 470px;
  justify-self: end;
}
.nl-founder-card img {
  width: 100%;
  border-radius: 12px;
  height: 255px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}
.nl-founder-card small {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0f5f74;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.nl-founder-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--nl-navy);
}
.nl-founder-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #35506e;
  line-height: 1.6;
}

.nl-hero-trust {
  max-width: 1120px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.26);
  padding-top: 1rem;
  color: rgba(245,255,251,0.95);
  font-size: 0.88rem;
}
.nl-hero-trust strong { color: #b8ffe2; }

.nl-projects {
  background: linear-gradient(180deg, #f3f8fb 0%, #eef7f5 100%);
  padding: 80px 0;
}
.nl-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #72591a;
  margin-bottom: 0.75rem;
  display: block;
}
.nl-section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #123154;
  line-height: 1.25;
}
.nl-section-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #0b7b94, #23ad7a);
  margin-bottom: 2rem;
}
.nl-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.nl-project-card {
  background: #fff;
  border: 1px solid rgba(11,66,97,0.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16,61,88,0.11);
  display: flex;
  flex-direction: column;
}
.nl-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(16,61,88,0.16);
}
.nl-project-media-link { display: block; }
.nl-project-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.nl-project-body {
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nl-project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.65rem;
}
.nl-project-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: #123154;
  line-height: 1.3;
}
.nl-project-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b7b94;
  border: 1px solid rgba(11,123,148,0.3);
  background: rgba(11,123,148,0.08);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 600;
}
.nl-project-card p {
  font-size: 0.86rem;
  color: #4b6480;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.nl-project-link {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
  font-size: 0.84rem;
  color: #0a6177;
  font-weight: 600;
  border: 1px solid rgba(10,97,119,0.25);
  border-radius: 8px;
  padding: 8px 12px;
}
.nl-project-link:hover {
  background: #0a6177;
  color: #fff;
  border-color: #0a6177;
}

@media (max-width: 960px) {
  .nl-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .nl-founder-card img { height: 220px; }
}
@media (max-width: 600px) {
  .nl-hero {
    padding: 84px 0 34px;
  }
  .nl-hero-content h1 { max-width: none; }
  .nl-hero-trust {
    font-size: 0.82rem;
    margin-top: 1.4rem;
  }
  .nl-project-media { height: 190px; }
}
