@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* ================= IMPORTS & RESET ================= */

:root {
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  
  /* Palette */
  --color-bg: #ffffff;
  --color-text-main: #0f172a;  /* Slate 900 */
  --color-text-muted: #42474d; /* Slate 600 */
  --color-accent: #000000;
  --color-border: #e2e8f0;     /* Slate 200 */
  --color-bg-alt: #f8fafc;     /* Slate 50 */
  --noya-navy: #0B1C2E;       /* Deep Navy from logo/headings */
  --noya-blue: #0f9ed5;       /* Bright accent blue */
  --noya-text-main: #111111;  /* Primary text */
  --noya-text-body: #445566;  /* Secondary text/paragraphs */
  --noya-text-light: #778899; /* Meta/Labels */
  --noya-bg-light: #F4F8FB;   /* Light blue/grey backgrounds */
  --noya-border: #E1E8ED;  
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

/* ================= NAVBAR ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.0); /* Transparent initially */
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 5px 0;
}

body.menu-open .header {
  top: 0;
  left: 0;
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 60px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-suffix {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.navlinks {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--color-text-main);
  color: #fff;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-text-main);
  white-space: nowrap;
}

.nav-btn:hover {
  background: #ffffff;
  color: var(--color-text-main);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--color-text-main);
}

.mobile-only { display: none; }

/* ================= hero-area SECTION ================= */

.hero-area {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/map-bg.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero-area h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.hero-area p {
  font-size: 24px;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto 40px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.nv-pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nv-pill {
  background: var(--color-text-main);
  color: #fff;
  padding: 14px 36px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-text-main);
  white-space: nowrap;
}

.nv-pill:hover {
  background: #ffffff;
  color: var(--color-text-main);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ================= FEATURES (ALT SQUARES) ================= */

.alt-squares-area {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1000px;
  margin: 120px auto;
  padding: 0 25px;
}

.alt-squares-area .square-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.alt-squares-area .square-row.right {
  flex-direction: row-reverse;
}

.alt-squares-area .square {
  flex: 1;
}

.alt-squares-area .square.banner {
  max-width: 320px;
  display: inline-flex;
}

.alt-squares-area h3 {
  font-size: 34px;
  color: var(--color-text-main);
  margin: 0 0 12px;
}

.alt-squares-area p {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.square .visual-section {
  text-align: center;
  display: inline-flex;
}
.square .visual-section img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px;
  background: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns:repeat(6,1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-logo-text {
  font-size: 14px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 12px;
}

.footer-list a {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-list a:hover {
  color: var(--color-text-main);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  color: #94a3b8;
  font-size: 18px;
}

.footer-social a:hover {
  color: var(--color-text-main);
}

.footer-bottom-menu ul {
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-menu a {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-bottom-menu a:hover {
  color: var(--color-text-main);
}

.footer-copy {
  font-size: 14px;
}


/* ================= About Page ================= */

.about-page {
      background: #f8fafc;
      padding-bottom: 120px;
    }

    .about-page .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 25px;
    }

    /* ================= INNER HERO ================= */

    .about-page .inner-hero {
      text-align: center;
      padding: 100px 0 80px;
      margin: 0 auto;
    }

    .about-page .inner-hero-kicker {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--noya-blue);
      margin-bottom: 20px;
    }

    .about-page .inner-hero-title {
      font-size: 56px;
      font-weight: 700;
      line-height: 1.15;
      color: var(--color-text-main);
      margin: 0 0 28px 0;
      letter-spacing: -0.02em;
    }

    .about-page .inner-hero-subtitle {
      font-size: 24px;
      line-height: 1.7;
      max-width: 1000px;
      margin: 0 auto 40px;
      color: var(--color-text-muted);
      font-weight: 400;
    }

    .about-page .inner-hero-cta-row {
      display: flex;
      gap: 16px;
      margin: 48px 0 32px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .about-page .inner-hero-cta-row a {
      background: var(--color-text-main);
      color: #fff;
      padding: 14px 36px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.05em;
      border: 1px solid var(--color-text-main);
      white-space: nowrap;
    }

    .about-page .inner-hero-cta-row a:hover {
      background: #ffffff;
      color: var(--color-text-main);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }


    /* ================= ABOUT SECTIONS ================= */

    .about-page .about-section {
      max-width: 1000px;
      margin: 120px auto;
      padding: 0 0 120px;
      border-bottom: 1px solid #cccccc;
  }

    .about-page .about-section-header {
      text-align: center;
      margin: 0 0 60px;
    }

    .about-page .about-section-header .about-section-title {
      font-size: 40px;
      line-height: 1.4;
      font-weight: 700;
      color: var(--color-text-main);
      letter-spacing: -0.01em;
      margin: 0 0 20px;
  }

    .about-page .about-section-header p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--color-text-muted);
      margin: 0;
      text-align: center;
  }

    /* ================= CARD GRID - LIKE HOMEPAGE ================= */

    .about-page .about-section-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 80px;
      flex-direction: column;
  }

  .about-page .about-section-grid > div {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-page .about-section-grid > div:nth-child(even) {
  flex-direction: row-reverse;
}

.about-page .about-section-item-title {
  font-size: 34px;
  line-height: 1.4;
  color: var(--color-text-main);
  margin: 0 0 12px;
  font-weight: 700;
}

.about-page .about-section-item-text {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

    /* ================= ICONS IN BOXES ================= */
    
    .about-section-grid .card-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 300px;
      height: 300px;
      border-radius: 12px;
      flex-shrink: 0;
      background: var(--color-text-main);
      color: white;
  }

  .about-section-grid .content {
    display: flex;
    flex-direction: column;
    max-width: 450px;
}

  .about-section-grid .card-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
}

    /* ================= TWO COLUMN GRID ================= */

    .about-page .about-section-grid-two {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    /* ================= HOW MODEL BOXES - CARD STYLE ================= */

    .about-page .how-model-box {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 36px;
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
    }


    .about-page .how-model-box > span {
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
      display: block;
      margin-bottom: 20px;
      color: var(--noya-blue);
    }

    .about-page .how-model-box .content {
      position: relative;
      z-index: 2;
    }
    
    /* Model Box Icon */
    .how-model-icon {
        position: absolute;
        top: 40px;
        right: 36px;
        color: var(--noya-blue);
        opacity: 1;
    }
    
    .how-model-icon svg {
        width: 40px;
        height: 40px;
        stroke-width: 1.5;
    }



/* ================= Startups Page ================= */
.startups-page {
  padding: 20px 0 56px;
}

/*  info-section */
.info-section {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-bottom: 20px; /* reduce gap */
  align-items: start;  /* FIX: remove bottom gap */
}


.info-section-kicker {
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.12em;
  color:#6b7280;
  margin-bottom:8px;
  font-weight:600;
}

.info-section-title {
  font-size:32px;
  font-weight:700;
  margin-bottom:14px;
}

.info-section-subtitle {
  font-size:14px;
  color:#4b5563;
  margin-bottom:10px;
}

.info-section-cta-row {
  display:flex;
  gap:14px;
  margin:18px 0;
}

.btn-primary {
  background: var(--color-text-main);
  color: #fff;
  padding: 14px 36px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-text-main);
  white-space: nowrap;
}

.portfolio-pill {
  background:#e8f1ff;
  border:1px solid #d6e7ff;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
}

.info-section-note {
  font-size:12px;
  color:#6b7280;
  max-width:440px;
}

/* ================= info-section SIDE CARD ================= */

.info-section-card {
  background:#fff;
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:0 2px 6px rgba(15,23,42,0.06);
}

.info-section-card-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}

.info-section-card-text {
  font-size:13px;
  margin-bottom:12px;
}

.info-section-card-list {
  list-style:none;
}
.info-section-card-list li {
  padding-left:14px;
  position:relative;
  font-size:13px;
  margin-bottom:6px;
}
.info-section-card-list li::before {
  content:"•";
  position:absolute;
  left:0;
  top:0.2em;
}

/* ================= WHAT WE OFFER / LOOK FOR ================= */

.nv-offer,
.nv-offer-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 32px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(15,23,42,0.06);
}

.nv-offer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.nv-offer-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 20px;
  max-width: 720px;
}

.nv-offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.nv-offer-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.nv-offer-card p {
  font-size: 13px;
  color: #374151;
  line-height:1.6;
}

.nv-offer-triangle {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.nv-offer-box {
  background:#fff;
  padding:22px;
  border-radius:16px;
  box-shadow:0 2px 6px rgba(15,23,42,0.06);
}

.nv-offer-box h3 {
  font-size:15px;
  font-weight:700;
  margin-bottom:4px;
}

.nv-offer-box p {
  font-size:13px;
  color:#374151;
  margin-bottom:12px;
  line-height:1.6;
}
.section {
  background:#fff;
  border-radius:16px;
  padding:28px 28px 32px;
  margin-bottom:40px;
  box-shadow:0 2px 6px rgba(15,23,42,0.06);
}

.section-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.section-title {
  font-size:18px;
  font-weight:700;
  color:#111827;
}

.section-tag {
  font-size:11px;
  background:#eef2ff;
  padding:4px 12px;
  border-radius:999px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#374151;
}

.section-desc {
  font-size:14px;
  color:#4b5563;
  margin-bottom:20px;
  max-width:920px;
}

.section-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px 32px;
}

.section-item-title {
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.section-item-text {
  font-size:13px;
  line-height:1.6;
  color:#374151;
}

@media(max-width:900px){
  .section-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .section-grid { grid-template-columns:1fr; }
}

/* ================= CTA BAND ================= */
/* UNIVERSAL CTA BAND — MATCH PARTNERS PAGE */

.cta-band {
  margin-top: 40px;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(15,23,42,0.06);
}

.cta-band-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-band-text {
  font-size: 13px;
  color: #4b5563;
  max-width: 600px;
}

.cta-band .btn-primary {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #000;
  font-weight: 600;
  white-space: nowrap;
}