@font-face {
  font-family: Gt Walsheim;
  src: url('../fonts/GT-Walsheim-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gt Walsheim;
  src: url('../fonts/GT-Walsheim-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gt Walsheim;
  src: url('../fonts/GT-Walsheim-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Eight Capital Color Variables - Premium VC Edition */
:root {
  --dark-blue: #072541;
  --grey: #374d62;
  --white: white;
  --cream: #fcf5ed;
  --light-grey: #7a8896;
  --blue: #1e40af;
  
  /* Premium additions */
  --dark-blue-rich: #051a2e;
  --blue-gradient: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  --cream-gradient: linear-gradient(135deg, #fcf5ed 0%, #f8f0e3 100%);
  --shadow-subtle: 0 1px 3px rgba(7, 37, 65, 0.06);
  --shadow-medium: 0 4px 16px rgba(7, 37, 65, 0.08);
  --shadow-large: 0 8px 32px rgba(7, 37, 65, 0.12);
  --shadow-premium: 0 20px 40px rgba(7, 37, 65, 0.15);
}

/* Base Styles - Using Inter like React design */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark-blue);
  background-color: var(--white);
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
}

.w-layout-blockcontainer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: var(--dark-blue);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(7, 37, 65, 0.15);
  z-index: 999;
  width: auto;
  height: auto;
  text-decoration: none;
  font-weight: 500;
}

/* Navigation - Premium VC styling */
.navbar-clean {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(7, 37, 65, 0.08);
  box-shadow: var(--shadow-subtle);
}

.nav-container-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: auto;
}

.nav-menu-clean {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-menu-clean {
    gap: 2rem;
  }
}

.nav-link-clean {
  font-size: 0.75rem;
  color: var(--grey);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .nav-link-clean {
    font-size: 0.875rem;
  }
}

/* Override Webflow's mobile navigation hiding */
.w-nav[data-collapse='medium'] .nav-menu-clean.w-nav-menu {
  display: flex !important;
  gap: 1rem;
}

@media (min-width: 768px) {
  .w-nav[data-collapse='medium'] .nav-menu-clean.w-nav-menu {
    gap: 2rem;
  }
}

/* Ensure navigation buttons are always visible */
.nav-buttons-clean {
  display: flex !important;
}

/* Mobile navigation optimization */
@media screen and (max-width: 991px) {
  .nav-container-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
  
  .nav-menu-clean.w-nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem !important;
    width: 100%;
    justify-content: flex-start;
  }
  
  .nav-link-clean {
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 0.25rem 0.5rem;
  }
  
  .nav-buttons-clean {
    gap: 0.5rem !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  
  .button-primary, .button-outline {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

.nav-link-clean:hover {
  color: var(--dark-blue);
}

.nav-buttons-clean {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-buttons-clean {
    gap: 0.75rem;
  }
}

/* Premium VC Buttons */
.button-primary {
  display: inline-flex;
  align-items: center;
  background: var(--blue-gradient);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.button-primary:hover::before {
  opacity: 1;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  border: 2px solid rgba(7, 37, 65, 0.12);
  color: var(--dark-blue);
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-subtle);
}

.button-outline:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Hero Section - React layout with Eight Capital colors */
.hero-section-modern {
  padding: 4rem 0;
  background: var(--white);
}

.hero-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid-modern {
    grid-template-columns: 2fr 1fr;
    padding: 2rem 0;
  }
}

.hero-content-modern {
  max-width: 42rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark-blue-rich);
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.04em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
    line-height: 1.05;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--grey);
  margin: 0 0 2rem 0;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-focus-modern {
  display: flex;
  align-items: flex-start;
}

/* Premium Focus Card */
.focus-card {
  background: var(--cream-gradient);
  border: 1px solid rgba(7, 37, 65, 0.08);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-gradient);
}

.focus-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(7, 37, 65, 0.12);
  border-radius: 24px;
  font-size: 0.75rem;
  color: var(--dark-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s;
}

.tag-pill:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.focus-note {
  font-size: 0.875rem;
  color: var(--grey);
  margin: 0;
}

/* Spotlight Section */
.spotlight-section-modern {
  background-color: var(--cream);
  padding: 3rem 0;
}

.section-label-modern {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.spotlight-grid-modern {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .spotlight-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spotlight-card-modern {
  display: block;
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(7, 37, 65, 0.06);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.spotlight-card-modern:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
  border-color: rgba(24, 106, 255, 0.2);
}

.card-date-modern {
  font-size: 0.875rem;
  color: var(--light-grey);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.card-title-modern {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.spotlight-card-modern:hover .card-title-modern {
  color: var(--blue);
}

.card-link-modern {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 500;
}

/* Company Grid Section */
.batch-section-modern {
  padding: 4rem 0;
  background: var(--white);
}

.section-heading-modern {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-blue-rich);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.035em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.section-description-modern {
  color: var(--grey);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 0 2rem 0;
}

.company-grid-modern {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .company-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .company-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

.company-card-modern {
  display: block;
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(7, 37, 65, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.company-card-modern:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-6px);
  border-color: rgba(24, 106, 255, 0.3);
}

.company-card-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.company-card-modern:hover::after {
  opacity: 0.02;
}

.company-name-modern {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.company-description-modern {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.5;
}

/* About Section */
.about-section-modern {
  padding: 4rem 0;
  background: var(--cream);
}

.about-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-column-modern {
  max-width: 32rem;
}

.feature-list-modern {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.feature-list-modern li {
  color: var(--grey);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.feature-list-modern li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.feature-bold {
  font-weight: 600;
  color: var(--dark-blue);
}

.engagement-list-modern {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  counter-reset: item;
}

.engagement-list-modern li {
  color: var(--grey);
  margin-bottom: 0.75rem;
  counter-increment: item;
  padding-left: 1.5rem;
  position: relative;
}

.engagement-list-modern li::before {
  content: counter(item) ") ";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* Portfolio News Section */
.portfolio-news-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.news-grid-modern {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .news-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card-modern {
  display: block;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(7, 37, 65, 0.08);
}

.news-card-modern:hover {
  box-shadow: 0 4px 12px rgba(7, 37, 65, 0.15);
  transform: translateY(-2px);
}

.news-meta-modern {
  font-size: 0.875rem;
  color: var(--light-grey);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.news-title-modern {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

/* Investors Section */
.investors-section-modern {
  padding: 4rem 0;
  background: var(--cream);
}

.investor-content-modern {
  max-width: 48rem;
  margin: 1rem 0 2rem 0;
}

.investor-content-modern p {
  margin-bottom: 1rem;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.6;
}

.investor-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Subscribe Section */
.subscribe-section-modern {
  padding: 4rem 0;
  background: var(--white);
}

.subscribe-form-modern {
  display: flex;
  gap: 0.75rem;
  max-width: 36rem;
  margin-top: 1.5rem;
}

.input-field-modern {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(7, 37, 65, 0.15);
  border-radius: 8px;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--dark-blue);
  font-family: inherit;
}

.input-field-modern:focus {
  outline: none;
  border-color: var(--blue);
}

.input-field-modern::placeholder {
  color: var(--light-grey);
}

/* Original Footer Styles - Keep as is */
.footer {
  color: var(--white);
}

.bgdark {
  background-color: var(--dark-blue);
}

.section_wrapper {
  padding: 2rem 0;
}

.div-block-8 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .div-block-8 {
    grid-template-columns: 1fr 1fr;
  }
}

.div-block-9 {
  margin-bottom: 1.5rem;
}

.link-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--light-grey);
  margin-bottom: 1rem;
}

.link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.link:hover {
  color: var(--cream);
}

.link.small {
  display: inline-block;
  margin-right: 1rem;
}

.text-block-6 {
  color: var(--light-grey);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.inputfield {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 4px;
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.button {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: var(--cream);
  color: var(--dark-blue);
}

.div-block-14 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.big_logo {
  height: 2rem;
}

.div-block-11 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.div-block-12 {
  display: flex;
  gap: 1rem;
}

/* Form States */
.w-form-done, .w-form-fail {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.w-form-done {
  background: rgba(34, 197, 94, 0.1);
  color: rgb(34, 197, 94);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.w-form-fail {
  background: rgba(239, 68, 68, 0.1);
  color: rgb(239, 68, 68);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Responsive Design */
@media (max-width: 767px) {
  .nav-buttons-clean {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .subscribe-form-modern {
    flex-direction: column;
  }
  
  .investor-buttons {
    flex-direction: column;
  }
  
  .investor-buttons .button-primary,
  .investor-buttons .button-outline {
    text-align: center;
  }
}

/* Hero visual elements */
.hero-visual {
  text-align: center;
  margin-bottom: 1rem;
}

.hero-icon {
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

/* Investor section icons */
.investor-icon {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  display: inline-block;
}

/* Section separators */
.hero-section-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--blue-gradient);
  border-radius: 1px;
}

.hero-section-modern {
  position: relative;
}

/* Visual separators between major sections */
.spotlight-section-modern::before,
.companies-section-modern::before,
.about-section-modern::before,
.portfolio-news-section::before,
.investors-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--grey) 20%, var(--grey) 80%, transparent 100%);
  opacity: 0.2;
}

.spotlight-section-modern,
.companies-section-modern,
.about-section-modern,
.portfolio-news-section,
.investors-section-modern {
  position: relative;
}

/* Menu Button */
.menu-button {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
}