@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a0d12;
  --ink-soft: #111720;
  --paper: #f2efe8;
  --paper-dim: #d8d5ce;
  --line: rgba(242, 239, 232, 0.16);
  --line-dark: rgba(10, 13, 18, 0.14);
  --acid: #d7ff3f;
  --blue: #6f89ff;
  --orange: #ff6b42;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 5.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 3.5vw;
  color: var(--paper);
  background: rgba(8, 11, 16, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.identity-mark {
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.84rem;
}

.desktop-nav a,
.header-link {
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  opacity: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.78rem;
}

.language-toggle {
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  font: inherit;
  cursor: pointer;
}

.language-toggle span {
  opacity: 0.44;
}

.language-toggle .active-language {
  opacity: 1;
}

.header-link {
  display: flex;
  gap: 0.4rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 7vw 5.5rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 28%, rgba(111, 137, 255, 0.24), transparent 28%),
    radial-gradient(circle at 62% 88%, rgba(255, 107, 66, 0.12), transparent 22%),
    var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 6.25vw 6.25vw;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-orbit {
  position: absolute;
  right: -10vw;
  top: 8%;
  width: min(57vw, 52rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 25%;
  left: -0.45rem;
  width: 0.9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 2rem rgba(215, 255, 63, 0.62);
}

.hero-orbit-two {
  right: -1vw;
  top: 19%;
  width: min(37vw, 34rem);
  animation: orbitPulse 8s ease-in-out infinite alternate;
}

.hero-orbit-two::after {
  top: 72%;
  left: auto;
  right: -0.35rem;
  width: 0.7rem;
  background: var(--orange);
  box-shadow: 0 0 2rem rgba(255, 107, 66, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(65rem, 79vw);
}

.eyebrow {
  margin: 0 0 2.1rem;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 10.2vw, 9.4rem);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.075em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-intro {
  max-width: 39rem;
  margin: 2.5rem 0 0;
  color: rgba(242, 239, 232, 0.72);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.7rem;
}

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0.85rem 1.1rem 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
}

.button-quiet {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-index {
  position: absolute;
  right: 3.5vw;
  bottom: 2.2rem;
  display: flex;
  gap: 1rem;
  color: rgba(242, 239, 232, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(5rem, 10vw, 9rem) 7vw;
}

.section-label {
  display: flex;
  gap: 1rem;
  color: rgba(10, 13, 18, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--orange);
}

.section-label p {
  margin: 0;
}

.statement {
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) 1.5fr;
  gap: 6vw;
}

.statement-content {
  max-width: 60rem;
}

.statement-content p {
  max-width: 43rem;
  margin: 2rem 0 0 auto;
  color: rgba(10, 13, 18, 0.62);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.statement-content .statement-lead {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.work {
  color: var(--paper);
  background: var(--ink-soft);
}

.work .section-label,
.work .section-heading h2 {
  color: var(--paper);
}

.work .section-label {
  opacity: 0.66;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) 1.5fr;
  gap: 6vw;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.3vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.venture-list {
  border-top: 1px solid var(--line);
}

.venture-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(3rem, 0.35fr) 1.65fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 220ms ease,
    background 220ms ease;
}

.venture-card:hover,
.venture-card:focus-visible {
  padding-inline: 1.25rem;
  background: rgba(255, 255, 255, 0.045);
}

.venture-number,
.venture-type {
  color: rgba(242, 239, 232, 0.42);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venture-card h3 {
  margin: 0.45rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.venture-card p {
  max-width: 42rem;
  margin: 0;
  color: rgba(242, 239, 232, 0.6);
  line-height: 1.6;
}

.venture-card .venture-type {
  color: var(--acid);
}

.venture-arrow {
  font-size: 1.3rem;
}

.principles {
  background: #e8e4dc;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.principle-grid article {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle-grid article > span {
  color: var(--orange);
  font-size: 0.75rem;
}

.principle-grid h3 {
  margin: auto 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.principle-grid p {
  min-height: 4.5rem;
  margin: 0;
  color: rgba(10, 13, 18, 0.58);
  line-height: 1.55;
}

.contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  color: var(--paper);
  background: var(--blue);
}

.contact .eyebrow {
  margin-bottom: 1.5rem;
}

.contact h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: min(100%, 18rem);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.44);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 3.5vw;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.78rem;
}

footer p {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  color: rgba(242, 239, 232, 0.52);
}

.reveal {
  animation: reveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-delay-one {
  animation-delay: 80ms;
}

.reveal-delay-two {
  animation-delay: 180ms;
}

.reveal-delay-three {
  animation-delay: 280ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitPulse {
  to {
    transform: scale(1.04) rotate(3deg);
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 4.6rem;
    padding-inline: 1.1rem;
  }

  .desktop-nav,
  .header-link {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 8rem 1.25rem 4rem;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 19vw, 6.5rem);
  }

  .hero-intro {
    max-width: 31rem;
    font-size: 1.06rem;
  }

  .hero-orbit {
    top: 38%;
    right: -56vw;
    width: 110vw;
  }

  .hero-index {
    display: none;
  }

  .hero-grid {
    background-size: 20vw 20vw;
  }

  .section-pad {
    padding: 5rem 1.25rem;
  }

  .statement,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .statement-content p {
    margin-left: 0;
  }

  .venture-card {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 0.75rem;
  }

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

  .principle-grid article {
    min-height: 16rem;
  }

  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem 1.25rem;
  }

  footer p {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
