@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Rajdhani:wght@500;600&display=swap');

:root {
  --black: #02070b;
  --white: #f1f4f6;
  --muted: #9aa8b2;
  --blue: #79b9df;
  --line: rgba(121, 185, 223, .16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; width: 100%; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  min-height: 82px;
  padding: 0 clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  transition: background .3s ease, min-height .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(2, 7, 11, .84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(121, 185, 223, .11);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

.brand span {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .085em;
}

.brand img {
  width: 27px;
  height: 32px;
  object-fit: contain;
  flex: none;
  animation: navSpin 6s cubic-bezier(.45,0,.20,1) infinite;
}

.primary-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.primary-nav a {
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  letter-spacing: .19em;
  transition: color .2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  border: 0;
  padding: 8px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 5px 0;
  background: rgba(255,255,255,.87);
}

.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #010406;
}

.hero-background,
.hero-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  object-fit: cover;
  object-position: center 46%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.02), transparent 18%, transparent 70%, rgba(0,0,0,.28)),
    radial-gradient(circle at center, transparent 38%, rgba(0,0,0,.17) 100%);
}

 .hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.x-ambient,
.x-smoke,
.x-glint,
.x-sparkles,
.grain,
.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-particles {
  width: 100%;
  height: 100%;
}

.hero-particles-far {
  z-index: 1;
  opacity: .62;
  filter: blur(.15px);
}

.hero-particles-near {
  z-index: 3;
  opacity: .86;
  filter: blur(.05px);
}

.x-ambient {
  mix-blend-mode: screen;
  filter: blur(48px);
}

.x-ambient-a {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(110, 182, 224, .16) 0%, rgba(110, 182, 224, .07) 18%, rgba(0,0,0,0) 44%);
  animation: xPulseA 8s ease-in-out infinite;
}

.x-ambient-b {
  background:
    radial-gradient(ellipse at 48% 42%, rgba(255, 255, 255, .06) 0%, rgba(160, 212, 240, .04) 11%, rgba(0,0,0,0) 33%);
  animation: xPulseB 11s ease-in-out infinite;
}

.x-smoke {
  mix-blend-mode: screen;
  filter: blur(26px);
  opacity: .22;
  transform-origin: center center;
}

.x-smoke-a {
  background:
    radial-gradient(ellipse at 44% 36%, rgba(122, 187, 225, .34) 0%, rgba(122, 187, 225, .11) 12%, rgba(0,0,0,0) 32%),
    radial-gradient(ellipse at 55% 47%, rgba(210, 225, 236, .10) 0%, rgba(122, 187, 225, .06) 10%, rgba(0,0,0,0) 27%);
  animation: xSmokeA 16s ease-in-out infinite alternate;
}

.x-smoke-b {
  background:
    radial-gradient(ellipse at 60% 35%, rgba(122, 187, 225, .23) 0%, rgba(122, 187, 225, .10) 10%, rgba(0,0,0,0) 27%),
    radial-gradient(ellipse at 36% 48%, rgba(255,255,255,.08) 0%, rgba(122, 187, 225, .05) 8%, rgba(0,0,0,0) 24%);
  opacity: .18;
  filter: blur(38px);
  animation: xSmokeB 19s ease-in-out infinite alternate;
}

.x-smoke-c {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255,255,255,.05) 0%, rgba(122, 187, 225, .04) 9%, rgba(0,0,0,0) 22%);
  opacity: .10;
  filter: blur(62px);
  animation: xSmokeC 24s ease-in-out infinite alternate;
}

.x-glint {
  mix-blend-mode: screen;
  opacity: 0;
}

.x-glint-a {
  background:
    radial-gradient(circle at 58% 28%, rgba(223, 246, 255, .95) 0 2px, rgba(130, 208, 244, .55) 3px, rgba(0,0,0,0) 11px);
  filter: blur(2px);
  animation: xGlintA 9s ease-in-out infinite;
}

.x-glint-b {
  background:
    radial-gradient(circle at 43% 56%, rgba(219, 243, 255, .65) 0 1px, rgba(130, 208, 244, .28) 3px, rgba(0,0,0,0) 10px);
  filter: blur(1px);
  animation: xGlintB 12s ease-in-out infinite;
}

.x-sparkles {
  mix-blend-mode: screen;
  opacity: .12;
}

.x-sparkles-a {
  background:
    radial-gradient(circle at 41% 26%, rgba(255,255,255,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 28%, rgba(255,255,255,.78) 0 1px, transparent 2px),
    radial-gradient(circle at 61% 39%, rgba(122,187,225,.72) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 52%, rgba(255,255,255,.55) 0 1px, transparent 2px);
  animation: sparkleShiftA 10s ease-in-out infinite;
}

.x-sparkles-b {
  background:
    radial-gradient(circle at 47% 35%, rgba(255,255,255,.52) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 48%, rgba(122,187,225,.50) 0 1px, transparent 2px),
    radial-gradient(circle at 33% 42%, rgba(255,255,255,.42) 0 1px, transparent 2px);
  opacity: .08;
  animation: sparkleShiftB 13s ease-in-out infinite;
}

.grain {
  opacity: .06;
  background-image: radial-gradient(rgba(255,255,255,.35) .5px, transparent .7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}


.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8.5vh;
  width: min(90vw, 760px);
  transform: translateX(-50%);
  text-align: center;
  text-transform: uppercase;
}

.hero-copy p,
.hero-copy h1 {
  margin: 0;
}

.hero-kicker {
  color: var(--white);
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: .52em;
}

.hero-line {
  display: block;
  width: 43px;
  height: 1px;
  margin: 18px auto 17px;
  background: var(--blue);
  opacity: .78;
}

.hero-copy h1 {
  color: var(--blue);
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 300;
  letter-spacing: .42em;
  line-height: 1.1;
  text-indent: .42em;
  text-shadow: 0 0 20px rgba(121,185,223,.16);
}

.hero-watch {
  margin-top: 20px !important;
  color: rgba(255,255,255,.72);
  font-size: clamp(9px, .8vw, 12px);
  letter-spacing: .42em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  width: 38px;
  height: 38px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.scroll-cue span {
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(155,210,240,.7);
  border-bottom: 1px solid rgba(155,210,240,.7);
  transform: rotate(45deg);
  animation: cue 2s ease-in-out infinite;
}

.section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(3, 10, 15, .75), rgba(3, 10, 15, .75)),
    url('assets/section-texture.jpg') center / cover fixed;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 5%, rgba(76,145,185,.065), transparent 38%),
    linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.10));
}

.wide-grid,
.centred,
.contact-inner {
  position: relative;
  z-index: 1;
  width: min(1840px, calc(100% - 96px));
  margin: 0 auto;
}

.wide-grid {
  min-height: 500px;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, .85fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--white);
  font-weight: 300;
  letter-spacing: .022em;
  line-height: 1.02;
  font-size: clamp(42px, 5vw, 86px);
}

.copy {
  padding-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.6;
}

.copy p:first-child { margin-top: 0; }
.copy p:last-child { margin-bottom: 0; }

.investment .centred {
  min-height: 630px;
  padding: 116px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.investment h2 {
  max-width: 1550px;
}

.investment .centred > p:not(.eyebrow) {
  max-width: 930px;
  margin: 44px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 27px);
  line-height: 1.55;
}

.button {
  display: inline-block;
  margin-top: 42px;
  padding: 17px 25px;
  border: 1px solid rgba(121,185,223,.58);
  background: rgba(61,119,153,.07);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
}

.button:hover {
  border-color: rgba(170,220,248,.82);
  background: rgba(61,119,153,.14);
}

.contact-inner {
  min-height: 610px;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr);
  gap: clamp(80px, 10vw, 200px);
  align-items: center;
}

.contact-intro > p:not(.eyebrow) {
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px);
}

.email-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 21px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #82929d;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(121,185,223,.27);
  border-radius: 0;
  outline: none;
  background: rgba(0,0,0,.23);
  color: var(--white);
  padding: 14px 15px;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: rgba(121,185,223,.58);
}

textarea { resize: vertical; }

button {
  justify-self: start;
  border: 1px solid rgba(121,185,223,.58);
  background: rgba(61,119,153,.07);
  color: var(--white);
  padding: 15px 22px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 25px 48px;
  border-top: 1px solid var(--line);
  background: #02070b;
  color: #657681;
  font-size: 9px;
  letter-spacing: .12em;
}

footer a { text-decoration: none; }


@keyframes navSpin {
  0%, 76% { transform: rotateY(0deg); }
  92%, 100% { transform: rotateY(360deg); }
}
  86% { transform: rotateY(180deg); }
  96% { transform: rotateY(360deg); }
}

@keyframes xPulseA {
  0%, 100% { opacity: .42; transform: scale(1); }
  50% { opacity: .62; transform: scale(1.03); }
}

@keyframes xPulseB {
  0%, 100% { opacity: .18; transform: scale(1.01); }
  50% { opacity: .34; transform: scale(1.05); }
}

@keyframes xSmokeA {
  0% { transform: translate3d(-2%, -1%, 0) scale(.98); opacity: .14; }
  100% { transform: translate3d(2%, 2%, 0) scale(1.06); opacity: .25; }
}

@keyframes xSmokeB {
  0% { transform: translate3d(3%, 1%, 0) scale(.95); opacity: .10; }
  100% { transform: translate3d(-3%, -2%, 0) scale(1.08); opacity: .22; }
}

@keyframes xSmokeC {
  0% { transform: translate3d(-1%, 1%, 0) scale(1); opacity: .06; }
  100% { transform: translate3d(2%, -2%, 0) scale(1.11); opacity: .14; }
}

@keyframes xGlintA {
  0%, 70%, 100% { opacity: 0; transform: translate3d(-12px, 8px, 0); }
  78% { opacity: .85; }
  86% { opacity: 0; transform: translate3d(18px, -14px, 0); }
}

@keyframes xGlintB {
  0%, 62%, 100% { opacity: 0; transform: translate3d(10px, -6px, 0); }
  70% { opacity: .40; }
  78% { opacity: 0; transform: translate3d(-14px, 12px, 0); }
}

@keyframes sparkleShiftA {
  0%, 100% { opacity: .10; transform: translateY(0); }
  50% { opacity: .20; transform: translateY(-2px); }
}

@keyframes sparkleShiftB {
  0%, 100% { opacity: .06; }
  45% { opacity: .14; }
}

@keyframes cue {
  0%,100% { opacity: .3; transform: translateY(-3px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(4px) rotate(45deg); }
}


@media (max-width: 980px) {
  .wide-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .copy {
    padding-top: 0;
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 24px;
    height: 29px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: rgba(2,7,11,.96);
    border: 1px solid rgba(121,185,223,.16);
    backdrop-filter: blur(16px);
  }

  .primary-nav.open {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-background img {
    object-position: center top;
  }

  .hero-copy {
    bottom: 9.5vh;
  }

  .hero-kicker {
    letter-spacing: .39em;
  }

  .hero-copy h1 {
    font-size: 20px;
    letter-spacing: .30em;
    text-indent: .30em;
  }

  .hero-watch {
    letter-spacing: .26em;
  }

  .wide-grid,
  .centred,
  .contact-inner {
    width: min(100% - 40px, 1840px);
  }

  .wide-grid,
  .contact-inner {
    min-height: 0;
    padding: 78px 0;
  }

  .investment .centred {
    min-height: 0;
    padding: 88px 0;
  }

  h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .investment .centred > p:not(.eyebrow) {
    margin-top: 30px;
    font-size: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 22px 20px;
    gap: 20px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.thanks-page {
  min-height: 100svh;
  padding: 40px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(3,10,15,.75), rgba(3,10,15,.75)),
    url('assets/section-texture.jpg') center / cover;
}

.thanks-page > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

@media (max-width: 720px) {

@media (max-width: 720px) {
  .x-ambient-a {
    background: radial-gradient(ellipse at 50% 31%, rgba(110, 182, 224, .15) 0%, rgba(110, 182, 224, .06) 16%, rgba(0,0,0,0) 38%);
  }

  .x-smoke-a {
    background:
      radial-gradient(ellipse at 47% 33%, rgba(122, 187, 225, .30) 0%, rgba(122, 187, 225, .10) 11%, rgba(0,0,0,0) 25%);
  }

  .x-smoke-b {
    background:
      radial-gradient(ellipse at 54% 35%, rgba(122, 187, 225, .18) 0%, rgba(122, 187, 225, .08) 9%, rgba(0,0,0,0) 22%);
  }

  .x-glint-a {
    background: radial-gradient(circle at 57% 20%, rgba(223, 246, 255, .85) 0 2px, rgba(130, 208, 244, .45) 3px, rgba(0,0,0,0) 10px);
  }
}





/* Definitive full-bleed and layered-depth behaviour */
html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #010406;
}

.hero,
.hero-background,
.hero-background img,
.hero-atmosphere {
  width: 100vw;
  max-width: 100vw;
}

.hero {
  margin: 0;
  padding: 0;
}

.hero-background img {
  object-fit: cover;
  object-position: center center;
}

.x-smoke-a {
  z-index: 1;
}

.x-smoke-b {
  z-index: 2;
}

.x-smoke-c {
  z-index: 3;
}

.x-ambient-a {
  z-index: 1;
}

.x-ambient-b {
  z-index: 2;
}

.x-glint-a,
.x-glint-b {
  z-index: 4;
}

@media (max-width: 720px) {
  .hero,
  .hero-background,
  .hero-background img,
  .hero-atmosphere {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
  }

  .hero-background img {
    object-fit: cover;
    object-position: center 38%;
  }

  .hero-copy {
    width: calc(100vw - 32px);
    bottom: 8.2vh;
  }
}

@media (max-width: 720px) {
  .experience h2 {
    font-size: clamp(39px, 10.5vw, 56px);
    line-height: 1.04;
  }
  .experience .copy { padding-top: 0; }
}


/* FINAL MOBILE NAVIGATION FIX */
@media (max-width: 720px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: 76px !important;
    padding: env(safe-area-inset-top) 20px 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(2, 7, 11, .18) !important;
    z-index: 1000 !important;
  }

  .brand {
    position: relative !important;
    z-index: 1002 !important;
    flex: 0 0 auto !important;
  }

  .menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 1002 !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }

  .primary-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    margin: 0 !important;
    padding:
      calc(110px + env(safe-area-inset-top))
      30px
      40px
      30px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 28px !important;
    overflow-y: auto !important;
    background: rgba(2, 7, 11, .97) !important;
    backdrop-filter: blur(18px) !important;
    border: 0 !important;
    z-index: 1001 !important;
  }

  .primary-nav.open {
    display: flex !important;
  }

  .primary-nav a {
    width: 100% !important;
    padding: 12px 0 !important;
    font-size: 13px !important;
    letter-spacing: .18em !important;
    border-bottom: 1px solid rgba(121, 185, 223, .14) !important;
  }

  .hero-background img {
    object-position: center 42% !important;
  }
}
\n\n/* FINAL DESKTOP TYPOGRAPHY REBALANCE */\n@media (min-width: 981px) {\n  .wide-grid,\n  .centred,\n  .contact-inner {\n    width: min(1640px, calc(100% - 120px));\n  }\n\n  .experience .wide-grid {\n    grid-template-columns: minmax(0, 1.14fr) minmax(430px, .86fr);\n    gap: clamp(56px, 5vw, 92px);\n    align-items: start;\n  }\n\n  .experience h2 {\n    max-width: 900px;\n    font-size: clamp(46px, 4.35vw, 76px);\n    line-height: 1.06;\n    letter-spacing: .018em;\n  }\n\n  .experience .copy {\n    max-width: 620px;\n    padding-top: 36px;\n    font-size: clamp(18px, 1.18vw, 22px);\n    line-height: 1.58;\n    justify-self: start;\n  }\n\n  .investment .centred {\n    align-items: flex-start;\n    text-align: left;\n    min-height: 610px;\n    max-width: 1640px;\n  }\n\n  .investment h2 {\n    max-width: 760px;\n    font-size: clamp(50px, 4.8vw, 84px);\n    line-height: .98;\n  }\n\n  .investment .centred > p:not(.eyebrow) {\n    max-width: 760px;\n    margin: 34px 0 0;\n    font-size: clamp(18px, 1.35vw, 24px);\n    line-height: 1.55;\n  }\n\n  .investment .button {\n    margin-top: 34px;\n  }\n}\n\n@media (min-width: 1500px) {\n  .experience h2 { font-size: 72px; }\n  .experience .copy { transform: translateX(-28px); }\n}\n\n@media (max-width: 980px) {\n  .experience h2 {\n    font-size: clamp(40px, 8vw, 60px);\n    line-height: 1.06;\n  }\n  .experience .copy { max-width: 720px; }\n  .investment h2 {\n    font-size: clamp(42px, 10vw, 64px);\n    line-height: 1.02;\n  }\n}\n
.brand img {
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: transform;
}
