/* Akkurat LL - self-hosted webfonts licensed by Lineto for
   www.basinghallpartners.com and its subdomains (<50K monthly pageviews). 
*/

/* 1 - Fonts */
@font-face {
  font-family: "AkkuratLLWeb-Light";
  font-style: normal;
  font-weight: 300;
  src:
    url("fonts/AkkuratLLWeb-Light.woff2") format("woff2"),
    url("fonts/AkkuratLLWeb-Light.woff") format("woff");
}
@font-face {
  font-family: "AkkuratLLSub-Light";
  font-style: normal;
  font-weight: 300;
  src:
    url("fonts/AkkuratLLSub-Light.woff2") format("woff2"),
    url("fonts/AkkuratLLSub-Light.woff") format("woff");
}

/* 2 - Design tokens */
:root {
  --sans: "AkkuratLLSub-Light", "AkkuratLLWeb-Light", "Helvetica Neue", Inter,
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;

  --ink: #171717;
  --muted: #6d6d6d;
  --paper: #f8f7f4;
  --white: #ffffff;
  --line: #deddd8;
  --brand: #ff3f01;
  --brand2: #ff8146;
  --brandSoft: #fff0eb;
  --brandDeep: #eb132d;

  --radius: 18px;
  --max: 1240px;
}

/* 3 - Base & reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
  cursor: url("assets/cursor.png") 8 8, auto;
  cursor: -webkit-image-set(
      url("assets/cursor.png") 1x,
      url("assets/cursor@2x.png") 2x
    )
    8 8, auto;
  cursor: image-set(
      url("assets/cursor.png") 1x,
      url("assets/cursor@2x.png") 2x
    )
    8 8, auto;
}

a,
button,
[role="button"],
summary,
label,
input,
select,
textarea {
  cursor: url("assets/cursor-blur.png") 16 16, pointer;
  cursor: -webkit-image-set(
      url("assets/cursor-blur.png") 1x,
      url("assets/cursor-blur@2x.png") 2x
    )
    16 16, pointer;
  cursor: image-set(
      url("assets/cursor-blur.png") 1x,
      url("assets/cursor-blur@2x.png") 2x
    )
    16 16, pointer;
}

/* Custom JS cursor — animated height/blur on interactive hover. */
html.has-cursor-js,
html.has-cursor-js * {
  cursor: none !important;
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.2s ease;
  will-change: transform;
}
.cursor.is-visible {
  opacity: 1;
}
.cursor__dot {
  display: block;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background: #ff3f01;
  border-radius: 50%;
  will-change: transform;
  transition: transform 0.15s ease-out, filter 0.15s ease-out;
}
.cursor.is-interactive .cursor__dot {
  transform: scale(1.1);
  filter: blur(3px);
}
.cursor.is-light .cursor__dot {
  background: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  .cursor,
  .cursor__dot {
    transition: none;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 300 15px/1.6 var(--sans);
  letter-spacing: -0.008em;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

::selection {
  background: var(--brand);
  background-color: var(--brand);
  color: #ffffff;
}
::-moz-selection {
  background: var(--brand);
  background-color: var(--brand);
  color: #ffffff;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
  color: var(--ink);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: 4px;
}

/* 4 - Typography */
h1,
h2,
h3,
p {
  margin-top: 0;
}

/* 5 · Scaffold & shared layout */
.wrap {
  width: min(calc(100% - 42px), var(--max));
  margin: auto;
}

.eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--brand);
  margin-bottom: 1rem;
}

section {
  padding: 112px 0;
  border-top: 1px solid var(--line);
}
#why,
#why .sectionHead h2,
#why .sectionHead p,
#why .eyebrow,
#why .proof,
#why .proof article,
#why .proof h3,
#why .proof p {
  transition-property: color, border-color;
  transition-duration: 0.65s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.sectionHead {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 54px;
  margin-bottom: 58px;
}
.sectionHead h2 {
  font: 400 clamp(40px, 5vw, 70px) / 1.01 var(--sans);
  letter-spacing: -0.045em;
}
.sectionHead h2 em {
  font-style: normal;
  color: var(--brand);
}
.sectionHead p {
  font-size: 1.25rem;
  line-height: 1.65;
  color: #4d4f55;
  max-width: 720px;
  margin: 0px;
}

/* 6 - Buttons & actions */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  transition-property: color, opacity;
  transition-duration: 100ms;
  transition-timing-function: ease;
}
.links a {
  opacity: 1;
}
.links a:hover {
  opacity: 0.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 23px;
  border: 1px solid var(--brand);
  transition: 0.2s ease;
  font-size: 1.3rem;
  background-color: var(--brand);
  color: var(--white);
}
.btn:hover {
  background-color: var(--white);
  box-shadow: 0 1px 16px 0 var(--brand);
  color: var(--brand);
  opacity: 1;
}

.btn.dark {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}
.btn.dark:hover {
  background: var(--white);
  color: var(--ink);
}

.btn.light {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn.ghost {
  border-color: var(--line);
  background-color: var(--paper);
  color: var(--ink);
}
.btn.ghost:hover {
  background: var(--white);
}

.contact .btn {
}
.contact .btn:hover {
  background: white;
  color: var(--brandDeep);
}

.btn .border {
}

.btnIcon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  flex: none;
  transition: background-color 0.3s ease;
}
.btnIcon svg {
  width: 11px;
  height: 11px;
  color: var(--brand);
  transition: color 0.3s ease;
}
.btn:hover .btnIcon {
  background: var(--brand);
}
.btn:hover .btnIcon svg {
  color: var(--white);
}

.navcta {
  font-size: 1.1rem;
  white-space: nowrap;
}

/* 7 - Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition-property: border-bottom-color;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  padding: 16px 0 16px 0;
}
.nav-scrolled {
  border-bottom-color: rgba(17, 21, 16, 0.09);
}
.navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  transform: scale(1);
  transform-origin: left center;
  transition-property: opacity, transform;
  transition-duration: 0.2s, 0.35s;
  transition-timing-function: ease, cubic-bezier(0.2, 0, 0, 1);
  width: 100;
  height: auto;
}
.nav-scrolled .brand {
  transform: scale(0.6);
}
.brand:hover {
  opacity: .5;
}
.brand img {
  height: 100%;
  width: 100%;
  display: block;
  flex: none;
}

.mobile {
  display: none;
}

.langSwitch {
  color: var(--brand);
  width: 24px;
}
.langSwitch::after {
  content: attr(data-dest);
}

/* 8 - Hero */
.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 92px 0 70px;
  overflow: hidden;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.hero h1 {
  font: 400 clamp(58px, 7.2vw, 108px) / 1 var(--sans);
  letter-spacing: -0.055em;
  margin: 24px -8px 24px;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--brand);
}

.lede {
  font-size: 1.4rem;
  line-height: 1.62;
  font-weight: 400;
  max-width: 650px;
  color: #3f4146;
}

.heroArt {
  position: relative;
  min-height: 560px;
  height: 100%;
}

.frame {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
}
.frame.main {
  background: radial-gradient(
      circle at 78% 24%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(145deg, #5f5853 0%, #4e4844 58%, #433f3c 100%);
  box-shadow: 0 34px 70px rgba(30, 24, 20, 0.12);
  inset: 0px 0 0 0;
}
.heroVisual {
  isolation: isolate;
  pointer-events: none;
}
/* The art card reveals via filter blur in the shared reveal — but a filter on
   this ancestor would trap the takeover's position:fixed inside it. Give it an
   opacity-only fade instead (visually equivalent, no containing block). */
html.reveal-ready .reveal.inview > .heroArt {
  animation: heroArtReveal 0.5s ease both;
  animation-delay: 0.3s;
  filter: none;
}
@keyframes heroArtReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Content layer: circles + copy sit here so they stay anchored while the grey
   surface grows around them. JS drives its clip-path every frame so the
   visible region always mirrors the rising card's edge. */
.heroStage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  clip-path: inset(0 round 26px);
  pointer-events: none;
}
/* Takeover open: the grey surface becomes a backdrop that sits below every
   piece of text on the page. */
html.hero-cover .heroVisual {
  z-index: 0;
}
html.hero-cover .heroGrid > :first-child {
  position: relative;
  z-index: 2;
}
/* Everything reading on the grey flips to white while the cover is open. */
html.hero-cover .nav {
  background: transparent;
}
html.hero-cover .nav.nav-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
html.hero-cover .nav a:not(.langSwitch) {
  color: #fff;
}
html.hero-cover .nav .langSwitch {
  color: var(--brand);
}
html.hero-cover .brand img {
  filter: brightness(0) invert(1);
}
html.hero-cover .hero .eyebrow,
html.hero-cover .hero h1,
html.hero-cover .hero .lede {
  color: #fff;
}
/* Keep the next section readable when it is exposed beneath the takeover. */
html.hero-cover #why {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.18);
}
html.hero-cover #why .eyebrow,
html.hero-cover #why .sectionHead h2,
html.hero-cover #why .proof h3 {
  color: #fff;
}
html.hero-cover #why .sectionHead p,
html.hero-cover #why .proof p {
  color: rgba(255, 255, 255, 0.72);
}
html.hero-cover #why .proof,
html.hero-cover #why .proof article {
  border-color: rgba(255, 255, 255, 0.18);
}
/* Exit: keep the frame and hero copy layered while both the surface and its
   foreground colours retreat together. */
html.hero-exit .heroVisual {
  z-index: 0;
}
html.hero-exit .heroGrid > :first-child {
  position: relative;
  z-index: 2;
}
html.hero-exit .nav {
  transition:
    background-color 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.hero-exit .nav a {
  transition: color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.hero-exit .brand img {
  transition: filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.hero-exit .hero .eyebrow,
html.hero-exit .hero h1,
html.hero-exit .hero .lede {
  transition: color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.heroVisual:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.heroDisc {
  position: absolute;
  z-index: 2;
  width: 560px;
  height: 560px;
  right: -238px;
  top: -86px;
  border-radius: 50%;
  background: #e9322a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.heroGradient {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}
.heroGradient::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 32%,
    #ff9a5d 0%,
    #ff754b 26%,
    #ff4f2f 58%,
    #e9322a 100%
  );
  transform: translate3d(0, 0, 0) scale(1.02);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.heroRing {
  position: absolute;
  z-index: 1;
  width: 610px;
  height: 610px;
  right: -263px;
  top: -111px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.heroBall {
  position: absolute;
  z-index: 3;
  width: 72px;
  height: 72px;
  left: 50%;
  top: 50%;
  margin: -36px 0 0 -36px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 28%,
    #606568 0%,
    #2b2f31 45%,
    #111315 100%
  );
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  --r: 280px;
  will-change: transform;
  animation: orbit 12s linear infinite;
}
@keyframes orbit {
  from {
    transform: rotate(-155deg) translateX(var(--r)) rotate(155deg);
  }
  to {
    transform: rotate(205deg) translateX(var(--r)) rotate(-205deg);
  }
}
/* Scale the disc separately from its inner fill so the growth remains
   interruptible while the gradient floats independently. */
.heroArt:not(.is-scroll-dismissed):hover .heroDisc {
  transform: scale(1.05);
}
.heroArt:not(.is-scroll-dismissed):hover .heroGradient::before {
  animation: heroDiscGradientFloat 8s ease-in-out infinite alternate;
}
@keyframes heroDiscGradientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-4%, -3%, 0) scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .heroBall {
    animation: none;
    transform: rotate(-155deg) translateX(var(--r)) rotate(155deg);
  }
  .heroDisc {
    transition: none;
  }
  .heroArt:not(.is-scroll-dismissed):hover .heroDisc {
    transform: none;
  }
  .heroGradient::before {
    transition: none;
  }
  .heroArt:not(.is-scroll-dismissed):hover .heroGradient::before {
    animation: none;
  }
  html.reveal-ready .reveal,
  html.reveal-ready .reveal > *,
  html.reveal-ready .reveal .ventureGrid > *,
  html.reveal-ready .reveal .founders > *,
  html.reveal-ready .reveal .routes > * {
    opacity: 1;
    filter: none;
    transition: none;
  }
  html.hero-exit .nav,
  html.hero-exit .nav a,
  html.hero-exit .brand img,
  html.hero-exit .hero .eyebrow,
  html.hero-exit .hero h1,
  html.hero-exit .hero .lede,
  #why,
  #why .sectionHead h2,
  #why .sectionHead p,
  #why .eyebrow,
  #why .proof,
  #why .proof article,
  #why .proof h3,
  #why .proof p {
    transition: none;
  }
}
.artcopy {
  position: absolute;
  z-index: 4;
  left: 36px;
  right: 36px;
  bottom: 34px;
  color: #fff;
}
.artcopy strong {
  font: 400 42px/1.08 var(--sans);
  letter-spacing: -0.035em;
  display: block;
  max-width: 365px;
}
.artcopy small {
  display: block;
  margin-top: 18px;
  max-width: 335px;
  color: var(--paper);
}

/* 9 · Proof */
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.proof article {
  padding: 30px 28px 10px 0;
  border-right: 1px solid var(--line);
}
.proof article + article {
  padding-left: 28px;
}
.proof article:last-child {
  border-right: 0;
}
.proof .num {
  font: 500 4rem/1 var(--sans);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  color: var(--brand);
}
.proof h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 10px;
}
.proof p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

/* 10 - Strategies */
.strategies {
  background: radial-gradient(
      circle at 88% 8%,
      rgba(255, 79, 47, 0.24),
      transparent 30%
    ),
    var(--ink);
  color: var(--white);
}
.strategies .sectionHead p {
  color: #bdb9b6;
}
.strategies .eyebrow {
  color: var(--paper);
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.strategy {
  min-height: 480px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  gap: 2rem;
}
.strategy:hover {
  border-color: var(--brand2);
}
.strategy .kicker {
  font-size: 1rem;
  color: var(--brand2);
}
.strategy h3 {
  font: 400 2.5rem/1.04 var(--sans);
  letter-spacing: -0.035em;
  margin: 18px 0;
}
.strategy p {
  color: #bdc2bd;
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 95%;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.spec {
  padding: 12px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec span {
  display: block;
  color: #8e958e;
  font-size: .85rem;
}
.spec b {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* 11 - Portfolio */
.portfolioGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.featureCard {
  background: linear-gradient(
    145deg,
    var(--brandDeep),
    var(--brand) 62%,
    var(--brand2)
  );
  color: white;
  border-radius: var(--radius);
  min-height: 520px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.featureCard:hover {
  transform: translateY(-2px);
}
.featureCardMark {
  position: absolute;
  right: -25px;
  top: 64px;
  font: 700 170px/0.8 var(--sans);
  letter-spacing: -0.08em;
  color: #fff;
  opacity: 0.06;
  pointer-events: none;
}
.featureCard h3 {
  font: 400 58px/1 var(--sans);
  letter-spacing: -0.045em;
  max-width: 490px;
  margin: 16px 0;
}
.featureCard p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 480px;
}

.tag {
  display: inline-flex;
  width: max-content;
  padding: 7px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 1rem;
  opacity: 1;
}
.featureCard .visitCompany {
  border-color: var(--white);
  transition-property: background-color, box-shadow, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.featureCard .visitCompany:hover {
  background-color: var(--white);
  box-shadow: 0 1px 16px 0 var(--brand);
  color: var(--brand);
}
.ventureGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.venture {
  background: var(--white);
  min-height: 160px;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: 0.2s ease;
  transition-property: all;
}
.venture:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.venture b {
  font: 500 28px/1.08 var(--sans);
  letter-spacing: -0.025em;
}
.ventureMeta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.venture span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1;
}
.exit {
  font-size: 9px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand) !important;
  font-weight: 600;
}

/* 12 - Team */
.team {
  background: var(--white);
}
.teamLayout {
  display: grid;
  gap: 18px;
}
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.personCard {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s ease;
  transition-property: transform, color;
}
.personCard:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
}
.personCard .role {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 600;
}
.personCard h3 {
  font: 400 clamp(34px, 3vw, 46px) / 1.03 var(--sans);
  letter-spacing: -0.04em;
  margin: 10px 0 28px;
}
.personLinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.personLinks a {
  font-size: 1rem;
  border-bottom: 1.5px solid var(--brand);
  padding-bottom: 3px;
}
.personLinks a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.teamSupport {
  display: block;
}
.teamLabel {
  border-top: 1px solid var(--ink);
  padding: 22px 0 8px;
  font: 400 20px/1.45 var(--sans);
  letter-spacing: -0.018em;
}

/* 13 - Investors */
.investors {
  background: var(--brandSoft);
}
.investorGrid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 72px;
}
.investorGrid h2 {
  font: 400 clamp(48px, 6vw, 82px) / 0.99 var(--sans);
  letter-spacing: -0.05em;
}
.investorGrid .lead {
  font-size: 18px;
  color: #44474f;
}
.routes {
  display: grid;
  gap: 14px;
}
.route {
  padding: 27px 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 79, 47, 0.16);
  border-radius: 16px;
  transition: 0.2s ease;
}
.route:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.routeTop {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.route .n {
  font: 500 4rem/1 var(--sans);
  letter-spacing: -0.03em;
  color: var(--brand);
}
.route h3 {
  font: 500 28px/1.15 var(--sans);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.route p {
  margin: 0;
  color: #5c6068;
  font-size: 14px;
}
.alignment {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 21, 16, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.alignment b {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
.alignment span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.2;
}
.notice {
  margin-top: 22px;
  font-size: 11px;
  line-height: 1.5;
  color: #6b7169;
}

/* 14 - Contact */
.contact {
  background: linear-gradient(
145deg,
    var(--brandDeep),
    var(--brand) 60%,
    var(--brand2)
  );
  color: white;
}
.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact h2 {
  font: 400 clamp(50px, 6vw, 86px) / 0.99 var(--sans);
  letter-spacing: -0.05em;
}
.contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  max-width: 580px;
}
.offices {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.office {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.office b {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1.5rem;
}
.office span {
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.58);
}

/* 15 - Footer */
footer {
  padding: 26px 0;
  background: #09090b;
  color: #9d9da3;
  font-size: 11px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot a {
  margin-left: 18px;
  color: #c9c9ce;
}
.footerNotice {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.55;
}
.lang {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 16 - Scroll reveal */
html.reveal-ready .reveal {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 0.5s ease 0.12s,
    filter 0.5s ease 0.12s;
}
html.reveal-ready .reveal.inview {
  opacity: 1;
  filter: none;
}

/* Keep the hero grid out of the fixed-art containing-block chain. Its children
   still receive the normal staggered reveal below. */
html.reveal-ready .heroGrid.reveal {
  opacity: 1;
  filter: none;
}

html.reveal-ready .reveal > *,
html.reveal-ready .reveal .ventureGrid > *,
html.reveal-ready .reveal .founders > *,
html.reveal-ready .reveal .routes > * {
  opacity: 0;
  filter: blur(6px);
}
html.reveal-ready .reveal.inview > *,
html.reveal-ready .reveal.inview .ventureGrid > *,
html.reveal-ready .reveal.inview .founders > *,
html.reveal-ready .reveal.inview .routes > * {
  animation: revealStagger 0.5s ease both;
}

@keyframes revealStagger {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: none;
  }
}

html.reveal-ready .reveal.inview > :nth-child(1),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(1),
html.reveal-ready .reveal.inview .founders > :nth-child(1),
html.reveal-ready .reveal.inview .routes > :nth-child(1) {
  animation-delay: 0.2s;
}
html.reveal-ready .reveal.inview > :nth-child(2),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(2),
html.reveal-ready .reveal.inview .founders > :nth-child(2),
html.reveal-ready .reveal.inview .routes > :nth-child(2) {
  animation-delay: 0.3s;
}
html.reveal-ready .reveal.inview > :nth-child(3),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(3),
html.reveal-ready .reveal.inview .founders > :nth-child(3),
html.reveal-ready .reveal.inview .routes > :nth-child(3) {
  animation-delay: 0.4s;
}
html.reveal-ready .reveal.inview > :nth-child(4),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(4),
html.reveal-ready .reveal.inview .founders > :nth-child(4),
html.reveal-ready .reveal.inview .routes > :nth-child(4) {
  animation-delay: 0.5s;
}
html.reveal-ready .reveal.inview > :nth-child(5),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(5),
html.reveal-ready .reveal.inview .founders > :nth-child(5),
html.reveal-ready .reveal.inview .routes > :nth-child(5) {
  animation-delay: 0.6s;
}
html.reveal-ready .reveal.inview > :nth-child(6),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(6),
html.reveal-ready .reveal.inview .founders > :nth-child(6),
html.reveal-ready .reveal.inview .routes > :nth-child(6) {
  animation-delay: 0.7s;
}
html.reveal-ready .reveal.inview > :nth-child(7),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(7),
html.reveal-ready .reveal.inview .founders > :nth-child(7),
html.reveal-ready .reveal.inview .routes > :nth-child(7) {
  animation-delay: 0.8s;
}
html.reveal-ready .reveal.inview > :nth-child(8),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(8),
html.reveal-ready .reveal.inview .founders > :nth-child(8),
html.reveal-ready .reveal.inview .routes > :nth-child(8) {
  animation-delay: 0.9s;
}
html.reveal-ready .reveal.inview > :nth-child(9),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(9),
html.reveal-ready .reveal.inview .founders > :nth-child(9),
html.reveal-ready .reveal.inview .routes > :nth-child(9) {
  animation-delay: 1s;
}
html.reveal-ready .reveal.inview > :nth-child(10),
html.reveal-ready .reveal.inview .ventureGrid > :nth-child(10),
html.reveal-ready .reveal.inview .founders > :nth-child(10),
html.reveal-ready .reveal.inview .routes > :nth-child(10) {
  animation-delay: 1.1s;
}

/* 17 - Responsive */
@media (max-width: 1050px) {
  .links > a:not(.langSwitch):not(.btn) {
    display: none;
  }
}

@media (max-width: 850px) {
  .heroDisc {
    width: 500px;
    height: 500px;
    right: -250px;
    top: -70px;
  }
  .heroRing {
    width: 546px;
    height: 546px;
    right: -273px;
    top: -93px;
  }
  .heroBall {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    --r: 250px;
  }
  .hero {
    padding-top: 64px;
  }
  .heroGrid,
  .sectionHead,
  .investorGrid,
  .contactGrid,
  .portfolioGrid {
    grid-template-columns: 1fr;
  }
  .heroGrid {
    gap: 30px;
  }
  .heroArt {
    min-height: 430px;
  }
  .sectionHead {
    gap: 20px;
  }
  .proof {
    grid-template-columns: 1fr;
  }
  .proof article,
  .proof article + article {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tabs {
    grid-template-columns: 1fr;
  }
  .portfolioGrid {
    gap: 12px;
  }
  .ventureGrid {
    grid-template-columns: 1fr 1fr;
  }
  .investorGrid,
  .contactGrid {
    gap: 32px;
  }
  .hero h1 {
    font-size: 58px;
  }
  section {
    padding: 78px 0;
  }
  .teamLayout {
    grid-template-columns: 1fr;
  }
  .founders,
  .teamSupport {
    grid-template-columns: 1fr;
  }
  .offices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .heroDisc {
    width: 420px;
    height: 420px;
    right: -235px;
    top: -42px;
  }
  .heroRing {
    width: 460px;
    height: 460px;
    right: -254px;
    top: -62px;
  }
  .heroBall {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    --r: 210px;
  }
  .artcopy {
    left: 26px;
    right: 26px;
    bottom: 26px;
  }
  .artcopy strong {
    font-size: 32px;
  }
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }
  .btn {
    font-size: 1.05rem;
    padding: 11px 16px;
    gap: 7px;
  }
  .btnIcon {
    width: 18px;
    height: 18px;
  }
  .personCard {
    padding: 24px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .heroArt {
    min-height: 380px;
  }
  .frame.main {
}
  .ventureGrid,
  .alignment {
    grid-template-columns: 1fr;
  }
  .strategy {
    padding: 26px;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
  }
  .tabs {
    grid-auto-rows: max-content;
  }
  .featureCard {
    padding: 28px;
  }
  .featureCard h3 {
    font-size: 45px;
  }
  .navin {
    height: 64px;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav-scrolled .brand {
    transform: none;
  }
  .brand img {
    height: 30px;
    width: auto;
    max-width: 100%;
  }
  .links {
    gap: 10px;
    flex: none;
  }
  .btn.navcta {
    font-size: 1.1rem;
    padding: 8px 12px;
    gap: 6px;
  }
  .btn.navcta .btnIcon {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 360px) {
  .btn.navcta .btnIcon {
    display: none;
  }

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