@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;600;700&display=swap');

:root {
  /* Colors */
  --color-jetblack: #1E3231;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #8EDCFF;


  /* Fonts */
  --font-heading: 'Urbanist', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-black);
  font-family: var(--font-heading);
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero-media {
  position: absolute;
  right: -175px;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  height: 90%;
}

#hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width:1050px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#hero-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 4rem;
}

#hero-subtitle {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.blue {
  color: var(--color-blue);
}

#process {
  background-color: var(--color-black);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0px 40px;
  gap: 20px;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid var(--color-black);
  padding: 20px;
  flex: 1;
  width: 500px;
  height: 600px;
}

.process-circle {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  overflow: hidden;
  margin-bottom: 20px;
}

.process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-text {
  text-align: left;
  width: 100%;
}

.process-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.process-desc {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.6;
}

.process-card.dimmed {
  border-color: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.process-card.dimmed .process-title,
.process-card.dimmed .process-desc {
  color: grey;
  transition: all 0.3s ease;
}

.process-card.dimmed .process-circle {
  border-color: rgb(70, 70, 70);
  transition: all 0.3s ease;
}

.process-card.dimmed .process-circle img {
  filter: brightness(0.15);
  transition: all 0.3s ease;
}

.circle-thumb,
.circle-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.circle-thumb {
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.circle-video {
  z-index: 1;
  border: none;
  pointer-events: none;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 1000;
  background-color: var(--color-black);
  padding: 12px 20px;
}

#nav-logo {
  height: 40px;
  width: auto;
}

.nav-link {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
}


/* ── INVESTORS FOOTER ── */
#investors {
  background: #000000;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 90px;
}

#investors-linkedin {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

#investors-linkedin:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

#investors-linkedin svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

#investors-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.investor-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8) invert(0); /* makes any color logo white */
  opacity: 1;
  transition: opacity 0.2s;
}

.investor-logo:hover {
  opacity: 1;
}

#process-heading {
  background-color: var(--color-black);
  text-align: left;
  padding: 0px 20px 10px 40px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-white);
}


@media screen and (max-width: 1024px) {
  /* ── Navbar ── */
  #navbar {
    gap: 14px;
    padding: 10px 12px;
  }

  #nav-logo {
    height: 28px;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  /* ── Hero ── */
  #hero {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  #hero-media {
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(10%);
    width: 100%;
    height: 45vh;
  }

  #hero-text {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 20px 16px;
    text-align: left;
    gap: 8px;
  }

  #hero-title {
    font-size: 2rem;
    font-weight:bold;
  }

  #hero-subtitle {
    font-size: 1.2rem;
  }

  /* ── Process heading ── */
  #process-heading {
    font-size: 2rem;
    padding: 20px 16px 10px 16px;
  }

  /* ── Process cards ── */
  #process {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 16px 20px;
    gap: 24px;
  }

  .process-card {
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    padding: 16px;
    gap: 16px;
    border-radius: 12px;
  }

  .process-circle {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .process-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  /* ── Investors footer ── */
  #investors {
    flex-direction: column;
    height: auto;
    padding: 20px 16px;
    gap: 16px;
    text-align: center;
  }

  #investors-logos {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .investor-logo {
    height: 24px;
  }
}