/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F9F9F9;
  color: #2A2A2A;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

/* ===================== SHARED ===================== */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #B98A55;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow-light {
  color: #D4B48A;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #2A2A2A;
  margin: 0 0 20px;
  line-height: 1.15;
}

.title-light {
  color: #FFFFFF;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5c5c5c;
  max-width: 920px;
  margin-top: 56px;
}

.section-lead.small {
  max-width: 640px;
  margin-top: 0;
  margin-bottom: 56px;
}

.accent-italic {
  color: #B98A55;
  font-style: italic;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-dark {
  background: #2A2A2A;
  color: #D4B48A;
}

.btn-outline {
  border: 1.5px solid #2A2A2A;
  color: #2A2A2A;
  background: rgba(249, 249, 249, 0.6);
}

.section {
  padding: 110px 64px;
  background: #F9F9F9;
}

.section-tint {
  background: #EDE9E4;
}

.section-dark {
  background: #1F3440;
}

/* ===================== NAV ===================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 64px;
  gap: 40px;
  background: #F9F9F9;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(42, 42, 42, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo {
  height: 72px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #2A2A2A;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2A2A2A;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===================== HERO ===================== */
/* .hero {
  padding: 56px 0 0;
} */

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  background: #F1EEE9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249, 249, 249, 0.96) 0%, rgba(249, 249, 249, 0.88) 42%, rgba(249, 249, 249, 0.55) 58%, rgba(249, 249, 249, 0.15) 72%, rgba(42, 42, 42, 0.1) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 56px;
  left: 64px;
  right: 64px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 84px;
  line-height: 0.98;
  margin: 0 0 24px;
  color: #2A2A2A;
  font-weight: 600;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 460px;
  margin: 0 0 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* ===================== STATS STRIP ===================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 64px;
  border-top: 1px solid #EDE9E4;
  border-bottom: 1px solid #EDE9E4;
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid #EDE9E4;
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #2A2A2A;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: #8a8a8a;
  margin-top: 8px;
}

/* ===================== CATALYST SUITE ===================== */
.catalyst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalyst-card {
  background: #EDE9E4;
  padding: 44px 32px;
  border-top: 3px solid #D4B48A;
}

.catalyst-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #D4B48A;
  color: #2A2A2A;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.catalyst-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2A2A2A;
  margin: 0 0 14px;
  font-weight: 600;
}

.catalyst-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5c5c5c;
  margin: 0;
}

/* ===================== VERTICALS ===================== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vertical-card {
  background: #F9F9F9;
  padding: 30px 26px;
}

.vertical-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: #B98A55;
  margin-bottom: 10px;
}

.vertical-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2A2A2A;
  margin: 0 0 8px;
}

.vertical-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #5c5c5c;
  margin: 0;
}

/* ===================== EVIDENCE ===================== */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.evidence-item {
  border-left: 2px solid #D4B48A;
  padding-left: 20px;
}

.evidence-value {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #D4B48A;
}

.evidence-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #EBC5C9;
  margin: 8px 0 6px;
}

.evidence-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #a9c0c4;
}

.theses-label {
  margin-bottom: 24px;
}

.theses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.thesis-card {
  background: #26404E;
  padding: 32px;
}

.thesis-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.thesis-num {
  font-family: 'Playfair Display', serif;
  color: #D4B48A;
  font-size: 14px;
}

.thesis-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #EBC5C9;
  background: rgba(235, 197, 201, 0.14);
  padding: 4px 10px;
  border-radius: 20px;
}

.thesis-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #FFFFFF;
  margin: 0 0 12px;
  font-weight: 600;
}

.thesis-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: #a9c0c4;
  margin: 0;
}

/* ===================== INVESTMENT STAGES ===================== */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stage-card {
  background: #26404E;
  padding: 32px;
  border-top: 3px solid #D4B48A;
}

.stage-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0 0 24px;
  font-weight: 600;
}

.stage-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.stage-row:last-child {
  margin-bottom: 0;
}

.stage-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: #EBC5C9;
}

.stage-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #a9c0c4;
}

/* ===================== VANGUARD ===================== */
.vanguard {
  position: relative;
  overflow: hidden;
}

.vanguard-quote {
  position: absolute;
  top: 56px;
  right: 64px;
  opacity: 0.55;
}

.vanguard-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.vanguard-img-wrap {
  position: relative;
}

.vanguard-img-frame {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 440px;
  border: 2px solid #D4B48A;
  z-index: 0;
}

.vanguard-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
  object-fit: cover;
  background: #EDE9E4;
  border-radius: 2px;
}

.vanguard-copy {
  max-width: 600px;
}

.vanguard-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #2A2A2A;
  margin: 0 0 4px;
  font-weight: 600;
}

.vanguard-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #2A2A2A;
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0.6;
}

.vanguard-pullquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: #2A2A2A;
  margin: 0 0 28px;
  border-left: 3px solid #D4B48A;
  padding-left: 24px;
}

.vanguard-copy p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  color: #5c5c5c;
  margin: 0 0 20px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.credential-pill {
  background: #EDE9E4;
  color: #2A2A2A;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ===================== NEXUS / CONTACT ===================== */
.nexus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  margin-bottom: 12px;
}

.inquiry-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.inquiry-pill {
  border: 1px solid #2A2A2A;
  color: #2A2A2A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  background: #F9F9F9;
  white-space: nowrap;
  line-height: 1.3;
  cursor: pointer;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  border: none;
  border-bottom: 1px solid #D6D0C6;
  padding: 12px 2px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #2A2A2A;
  background: transparent;
  outline: none;
  width: 100%;
}

.form-field::placeholder {
  color: #8a8a8a;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 28px;
  font-family: 'Inter', sans-serif;
}

.btn-submit {
  margin-top: 14px;
  align-self: flex-start;
}

/* ===================== FOOTER ===================== */
.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4B48A 50%, transparent);
  margin: 0 64px;
}

.footer {
  padding: 56px 64px 40px;
  background: #2A2A2A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #9c9c9c;
  max-width: 340px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #D4B48A;
  margin-bottom: 14px;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #e0e0e0;
  line-height: 2;
}

.footer-bottom {
  width: 100%;
  padding: 18px 64px;
  background: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #6b6b6b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tagline {
  letter-spacing: 0.08em;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nav,
  .stats-strip,
  .section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .stats-strip {
    margin-left: 40px;
    margin-right: 40px;
  }

  .hero-content {
    left: 40px;
    right: 40px;
  }

  .footer,
  .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-divider {
    margin-left: 40px;
    margin-right: 40px;
  }

  .hero-title {
    font-size: 64px;
  }

  .section-title {
    font-size: 38px;
  }

  .catalyst-grid,
  .verticals-grid,
  .stage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evidence-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .vanguard-grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F9F9F9;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    display: block;
    padding: 16px 40px;
    border-bottom: 1px solid #EDE9E4;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-img {
    height: 520px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #EDE9E4;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-title {
    font-size: 32px;
  }

  .catalyst-grid,
  .verticals-grid,
  .evidence-grid,
  .theses-grid,
  .stage-grid,
  .nexus-grid {
    grid-template-columns: 1fr;
  }

  .vanguard-grid {
    grid-template-columns: 1fr;
  }

  .vanguard-img-wrap {
    max-width: 340px;
  }

  .vanguard-quote {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    top: 32px;
  }

  .footer,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-divider {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-img {
    height: 460px;
  }

  .hero-title {
    font-size: 34px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 12px;
  }

  .nav-logo {
    height: 52px;
  }
}
