:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #07080b;
  --graphite: #101216;
  --ivory: #fff8ec;
  --muted: rgba(255, 248, 236, 0.7);
  --dim: rgba(255, 248, 236, 0.52);
  --line: rgba(255, 248, 236, 0.16);
  --panel: rgba(255, 248, 236, 0.07);
  --panel-strong: rgba(255, 248, 236, 0.12);
  --gold: #e8bd69;
  --cyan: #8fe9ff;
  --orange: #ff8d48;
  background: var(--ink);
  color: var(--ivory);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 8%, rgba(143, 233, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 16% 28%, rgba(232, 189, 105, 0.09), transparent 25rem),
    linear-gradient(145deg, #07080b, #11141b 54%, #06070a);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 11, 0.64);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  font-weight: 750;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(232, 189, 105, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232, 189, 105, 0.7), rgba(232, 189, 105, 0.08) 34%, transparent 58%),
    rgba(255, 248, 236, 0.06);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand-mark::before {
  inset: 0.36rem;
  border: 1px solid rgba(143, 233, 255, 0.68);
}

.brand-mark::after {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--ivory);
  box-shadow: 0 0 1rem var(--gold);
}

.brand-mark span {
  width: 1.45rem;
  height: 0.44rem;
  border: 1px solid rgba(232, 189, 105, 0.58);
  transform: rotate(-25deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-cta {
  justify-self: end;
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1rem;
  background: var(--panel);
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-cta:hover {
  border-color: rgba(232, 189, 105, 0.6);
  background: rgba(232, 189, 105, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 4rem);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 105, 0.5), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.08) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.96), rgba(7, 8, 11, 0.66) 37%, rgba(7, 8, 11, 0.22) 66%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.98), transparent 47%),
    radial-gradient(circle at 70% 36%, transparent, rgba(7, 8, 11, 0.52) 76%);
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 60rem;
  text-shadow: 0 0.12rem 1.1rem rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 45rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 1.18rem;
  font-weight: 760;
}

.primary-action {
  background: var(--ivory);
  color: var(--ink);
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ivory);
}

.hero-card {
  align-self: center;
  border: 1px solid rgba(232, 189, 105, 0.28);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(7, 8, 11, 0.62);
  backdrop-filter: blur(24px);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.22);
}

.hero-card p,
.hero-card span {
  margin: 0;
  color: var(--dim);
  line-height: 1.5;
}

.hero-card p {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 1.6rem 0 0.75rem;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.meaning-section,
.ventures-section,
.signal-section,
.contact-section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.meaning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.section-kicker h2,
.section-heading h2,
.signal-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.meaning-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.meaning-copy p,
.signal-grid p,
.venture-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.meaning-copy p {
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.meaning-copy strong {
  color: var(--ivory);
}

.section-heading {
  max-width: 65rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.venture-grid article {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.075), rgba(255, 248, 236, 0.025)),
    rgba(7, 8, 11, 0.94);
}

.venture-grid span,
.signal-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
}

.venture-grid h3,
.signal-grid h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2vw, 2.08rem);
  letter-spacing: 0;
}

.venture-grid a {
  width: fit-content;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(143, 233, 255, 0.45);
}

.signal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 10%, rgba(232, 189, 105, 0.1), transparent 22rem),
    rgba(255, 248, 236, 0.025);
}

.signal-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.signal-grid article {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  background: rgba(7, 8, 11, 0.9);
}

.contact-section {
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 74% 28%, rgba(143, 233, 255, 0.1), transparent 25rem),
    linear-gradient(180deg, rgba(255, 248, 236, 0.02), rgba(232, 189, 105, 0.05));
}

.contact-section h2 {
  max-width: 13ch;
}

.contact-section a {
  width: fit-content;
  margin-top: 2rem;
  color: var(--gold);
  font-weight: 780;
  border-bottom: 1px solid rgba(232, 189, 105, 0.58);
}

@media (max-width: 1080px) {
  .venture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .meaning-section,
  .signal-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    align-self: end;
    max-width: 28rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0.8rem 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: 6.5rem;
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 8, 11, 0.96), rgba(7, 8, 11, 0.7) 58%, rgba(7, 8, 11, 0.3)),
      linear-gradient(180deg, rgba(7, 8, 11, 0.76), rgba(7, 8, 11, 0.26) 34%, rgba(7, 8, 11, 0.92) 74%, rgba(7, 8, 11, 0.98)),
      radial-gradient(circle at 72% 24%, rgba(7, 8, 11, 0.08), rgba(7, 8, 11, 0.72) 78%);
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    justify-content: center;
  }

  .venture-grid {
    grid-template-columns: 1fr;
  }

  .venture-grid article {
    min-height: 14rem;
  }
}
