:root {
  --ink: #06111f;
  --ink-soft: #243247;
  --foam: #f4f8fc;
  --cyan: #2ec8ff;
  --blue: #0b6bff;
  --line: rgba(6, 17, 31, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 50% at 0% 0%, rgba(46, 200, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 40% at 100% 20%, rgba(11, 107, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

a {
  color: inherit;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  pointer-events: none;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
  box-sizing: border-box;
}

.topnav {
  position: absolute;
  top: 1.2rem;
  right: clamp(1.2rem, 4vw, 3rem);
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  margin: 0;
  pointer-events: auto;
  text-align: right;
}

.topnav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  background: #fff;
  color: var(--ink) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 12vw, 8rem) clamp(1.2rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.35) 0%, rgba(6, 17, 31, 0.22) 35%, rgba(6, 17, 31, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 17, 31, 0.55) 0%, rgba(6, 17, 31, 0.15) 55%, rgba(6, 17, 31, 0.35) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.brand-lockup {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  animation: riseIn 0.85s ease both;
}

.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  animation: riseIn 0.95s ease 0.08s both;
}

.lede {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(244, 248, 252, 0.84);
  animation: riseIn 1.05s ease 0.14s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
  animation: riseIn 1.1s ease 0.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1aa4ff 55%, var(--cyan));
  color: #041525;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.ventures-section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem) clamp(6.5rem, 14vw, 10rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a5bb8;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 16ch;
}

.section-lede {
  margin: 1rem 0 0;
  max-width: 38rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-head {
  margin-bottom: 2rem;
}

.venture {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  text-decoration: none;
  padding: 1.6rem 0 0.4rem;
  border-top: 2px solid var(--ink);
  transition: color 0.2s ease;
}

.venture:hover .venture-link {
  color: var(--blue);
}

.venture-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.venture h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
}

.venture p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.venture-link {
  display: inline-block;
  margin-top: 1.1rem;
  margin-bottom: 2.75rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease;
}

.venture-visual {
  display: block;
  width: 100%;
  max-width: 380px;
  justify-self: end;
  filter: drop-shadow(0 16px 28px rgba(4, 45, 100, 0.24));
}

.venture-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.site-footer {
  padding: 1.25rem clamp(1.2rem, 4vw, 3rem) 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-line,
.footer-address,
.footer-email {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-email a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 900px) {
  .venture {
    grid-template-columns: 1fr;
  }

  .venture-visual {
    order: -1;
    max-width: 280px;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }
}
