/* Butler Pro Display — self-hosted, all weights + italics */
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 300; font-display: swap; src: url('assets/fonts/ButlerPro-Light-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 300; font-display: swap; src: url('assets/fonts/ButlerPro-Light-Ital-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/ButlerPro-Roman-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 400; font-display: swap; src: url('assets/fonts/ButlerPro-Roman-Ital-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/ButlerPro-Medium-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 500; font-display: swap; src: url('assets/fonts/ButlerPro-Medium-Ital-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/ButlerPro-SemiBold-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 600; font-display: swap; src: url('assets/fonts/ButlerPro-SemiBold-Ital-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/ButlerPro-Bold-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 700; font-display: swap; src: url('assets/fonts/ButlerPro-Bold-Ital-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 800; font-display: swap; src: url('assets/fonts/ButlerPro-ExtraBold-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 800; font-display: swap; src: url('assets/fonts/ButlerPro-ExtraBold-Ital-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: normal; font-weight: 900; font-display: swap; src: url('assets/fonts/ButlerPro-Black-Ds.otf') format('opentype'); }
@font-face { font-family: 'Butler Pro'; font-style: italic; font-weight: 900; font-display: swap; src: url('assets/fonts/ButlerPro-Black-Ital-Ds.otf') format('opentype'); }

:root {
  --font-serif: 'Butler Pro', 'Playfair Display', Georgia, serif;
  --font-sans: 'Satoshi', system-ui, -apple-system, sans-serif;
  --color-text: #1a1a1a;
  --color-bg: #ffffff;
  --color-brand: #d05a28;
  /* Approx brand color if needed, but text is black/grey */
}

/* Initial site loader — covers everything until critical assets preload */
html.is-loading { overflow: hidden; }
html.is-loading body > *:not(.site-loader) { visibility: hidden; }
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: auto;
}
.site-loader.is-hiding { opacity: 0; pointer-events: none; }
/* Same Zinc lockup as the hero, a touch larger since it stands alone here */
.site-loader__mark {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.site-loader__logo-mark { height: 32px; width: auto; }
.site-loader__logo-text { height: 20px; width: auto; }
.site-loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.site-loader__fill {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.25s ease;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.parallax__header {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* Fallback color that harmonizes with the sky in hero-bottom-layer, so a
     half-loaded state doesn't flash pure black under the text. */
  background: linear-gradient(180deg, #7fb3d5 0%, #c7d9e4 55%, #e8dbc8 100%);
}

.parallax {
  width: 100%;
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.hero-logo__mark { height: 26px; width: auto; }
.hero-logo__text { height: 16px; width: auto; }

.parallax__visuals {
  width: 100%;
  position: relative;
}

.parallax__layers {
  width: 100%;
  position: relative;
}

.parallax__layer-img {
  pointer-events: none;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.parallax__layer-img[data-parallax-layer="1"] {
  position: relative;
  z-index: 1;
}

.parallax__layer-img[data-parallax-layer="4"] {
  z-index: 20;
}

/* Bottom-edge separator: fades the hero into the next section */
.hero-separator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px; /* nudge to avoid a hairline gap */
  width: 100%;
  height: auto;
  z-index: 30;
  pointer-events: none;
  user-select: none;
  display: block;
}

.parallax__layer-title {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding-top: 12vw;
}

.hero-text-container {
  text-align: center;
  color: #fff;
}

.parallax__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -4px;
  line-height: 1.1;
  margin: 0 0 0.35rem 0;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Line-mask reveal used for hero title & subtitle intro */
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em; /* leave room for descenders under the mask */
}
.hero-line__inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
/* Fallback: if JS never runs, show the text anyway */
.hero-intro-ready .hero-line__inner { transform: translateY(0); }

.parallax__title i {
  font-style: italic;
  font-weight: 500;
}

.parallax__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Second Fold */
.second-fold {
  position: relative;
  z-index: 50;
  background-color: var(--color-bg);
  padding: 4rem 2rem 8rem 2rem;
  text-align: center;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.second-fold h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 1.1;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.second-fold h2 i {
  font-style: italic;
  color: #d05a28;
  /* The orange/brown accent from the reference */
}

.paragraphs {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.paragraphs p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.paragraphs p:last-child {
  margin-bottom: 0;
}

.cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

[data-open-interest-form].is-requested {
  display: none !important;
}

.cta-subtext {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
}
/* Video Sequence Styles */
.video-sequence {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.video-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
}

.video-panel:first-child {
  opacity: 1;
  visibility: visible;
}

.video-panel video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* .glass-circle rule merged with the one further down to avoid duplicate parsing */

/* Birds Sprite Sheet Animation */
.birds-parallax-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; /* Stay behind the middle mountains */
  pointer-events: none;
}

.bird {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg');
    /* Make the bird a dark silhouette */
    filter: brightness(0) opacity(0.85);
    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;
    
    animation-name: fly-cycle;
    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
}

.bird-one { animation-duration: 1.0s; animation-delay: -0.5s; }
.bird-two { animation-duration: 0.9s; animation-delay: -0.75s; }
.bird-three { animation-duration: 1.25s; animation-delay: -0.25s; }
.bird-four { animation-duration: 1.1s; animation-delay: -0.5s; }
.bird-five { animation-duration: 0.95s; animation-delay: -0.1s; }
.bird-six { animation-duration: 1.05s; animation-delay: -0.3s; }
.bird-seven { animation-duration: 1.15s; animation-delay: -0.6s; }
.bird-eight { animation-duration: 0.85s; animation-delay: -0.8s; }

.bird-container {
	position: absolute;
	top: 10%;
    left: -10%;
	transform: scale(0) translateX(-10vw);
	will-change: transform;
	
	animation-name: fly-right-one;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
	
/* Using prime numbers for durations and varied delays so the loops overlap organically and rarely repeat the exact same pattern */
.bird-container-one { animation-duration: 17s; animation-delay: 0s; }
.bird-container-two { animation-duration: 19s; animation-delay: 2s; animation-name: fly-right-two; }
.bird-container-three { animation-duration: 23s; animation-delay: 5s; animation-name: fly-right-three; }
.bird-container-four { animation-duration: 29s; animation-delay: 11s; animation-name: fly-right-one; }
.bird-container-five { animation-duration: 13s; animation-delay: 7s; animation-name: fly-right-two; }
.bird-container-six { animation-duration: 31s; animation-delay: 4s; animation-name: fly-right-three; }
.bird-container-seven { animation-duration: 17s; animation-delay: 15s; animation-name: fly-right-two; }
.bird-container-eight { animation-duration: 23s; animation-delay: 18s; animation-name: fly-right-three; }

@keyframes fly-cycle {
	100% {
		background-position: -900px 0;
	}
}

@keyframes fly-right-one {
	0% { transform: scale(0.15) translateX(-10vw); }
	10% { transform: translateY(2vh) translateX(10vw) scale(0.2); }
	20% { transform: translateY(0vh) translateX(30vw) scale(0.25); }
	30% { transform: translateY(4vh) translateX(50vw) scale(0.3); }
	40% { transform: translateY(2vh) translateX(70vw) scale(0.3); }
	50% { transform: translateY(0vh) translateX(90vw) scale(0.3); }
	60% { transform: translateY(0vh) translateX(110vw) scale(0.3); }
	100% { transform: translateY(0vh) translateX(110vw) scale(0.3); }
}

@keyframes fly-right-two {
	0% { transform: translateY(-2vh) translateX(-10vw) scale(0.25); }
	10% { transform: translateY(0vh) translateX(10vw) scale(0.2); }
	20% { transform: translateY(-4vh) translateX(30vw) scale(0.3); }
	30% { transform: translateY(1vh) translateX(50vw) scale(0.22); }
	40% { transform: translateY(-2.5vh) translateX(70vw) scale(0.25); }
	50% { transform: translateY(0vh) translateX(90vw) scale(0.22); }
	60% { transform: translateY(0vh) translateX(110vw) scale(0.22); }
	100% { transform: translateY(0vh) translateX(110vw) scale(0.22); }
}

@keyframes fly-right-three {
	0% { transform: translateY(1vh) translateX(-10vw) scale(0.2); }
	10% { transform: translateY(-1vh) translateX(10vw) scale(0.25); }
	20% { transform: translateY(2vh) translateX(30vw) scale(0.35); }
	30% { transform: translateY(-1vh) translateX(50vw) scale(0.25); }
	40% { transform: translateY(3vh) translateX(70vw) scale(0.2); }
	50% { transform: translateY(0vh) translateX(90vw) scale(0.22); }
	60% { transform: translateY(0vh) translateX(110vw) scale(0.22); }
	100% { transform: translateY(0vh) translateX(110vw) scale(0.22); }
}

/* --- LiquidGlass Styles --- */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Satoshi', sans-serif;
  background-color: #000;
  overflow-x: hidden;
}

/* Video Backgrounds inside liquid-root */
#liquid-root .bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  background-color: #000;
  display: block;
}

#liquid-root .vid-1 {
  opacity: 1;
  visibility: visible;
}

/* Scene 1: flowers/grass video sequence + separators (coin is baked into the video) */
#liquid-root .scene-flowers {
  background: #fff;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

/* Real 3D cube reveal — each tile has 6 faces on a preserve-3d transform stack.
   The container has its own perspective at 50% 50%, so cubes near the edges
   naturally show their inner sides (camera-at-center perspective).
   Cubes at center look flat, cubes off-center reveal depth on the far side. */
#liquid-root .scene-flowers .tile-reveal {
  position: absolute;
  inset: 0;
  z-index: 25;
  perspective: 900px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}
#liquid-root .scene-flowers .tile {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
#liquid-root .scene-flowers .tile__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* No resting rotation — each cube's true orientation stays flat.
     The perspective from the container is what makes off-center cubes
     appear to show their sides. */
}

/* Face geometry. Solid opaque colors + hard 1px dark edges = crisp cube look. */
#liquid-root .scene-flowers .tile__face {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(30, 20, 10, 0.55);
}
/* Flat cream color across all cube faces. Sides slightly darker so depth
   reads when perspective reveals them. */
#liquid-root .scene-flowers .tile__face--front {
  background: #FDFBEE;
  transform: translateZ(var(--d));
}
#liquid-root .scene-flowers .tile__face--back {
  background: #FDFBEE;
  transform: translateZ(calc(var(--d) * -1)) rotateY(180deg);
}
#liquid-root .scene-flowers .tile__face--right {
  background: #F0EDD8;
  transform: rotateY(90deg) translateZ(var(--half-w));
}
#liquid-root .scene-flowers .tile__face--left {
  background: #F0EDD8;
  transform: rotateY(-90deg) translateZ(var(--half-w));
}
#liquid-root .scene-flowers .tile__face--top {
  background: #F7F4DF;
  transform: rotateX(90deg) translateZ(var(--half-h));
}
#liquid-root .scene-flowers .tile__face--bottom {
  background: #E6E2C4;
  transform: rotateX(-90deg) translateZ(var(--half-h));
}
#liquid-root .scene-flowers .scene-flowers__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Static yacht background image (replaces the frame-sequence canvas) */
#liquid-root .scene-flowers .scene-flowers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}
#liquid-root .scene-flowers .scene-flowers__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#liquid-root .scene-flowers .scene-flowers__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);   /* dark tint from Figma */
  pointer-events: none;
}
/* Top separator: white → light blue vertical gradient (from Figma). Sits over
   the top of the video to help the heading read against foliage. */
#liquid-root .scene-flowers .scene-flowers__top-separator {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 15%;
  /* Match the second-fold section's white so the cubes fade cleanly into it */
  background: linear-gradient(180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 45%,
    rgba(253, 251, 238, 0) 100%);
  pointer-events: none;
  /* Above the cube grid (z-index 25) so it visually blends the top edge */
  z-index: 26;
}
/* Bottom separator: fog/ground image that fades the video into whatever's below */
#liquid-root .scene-flowers .scene-flowers__bottom-separator {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.3;
}
#liquid-root .scene-flowers .scene-flowers__bottom-separator img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #liquid-root .scene-flowers .scene-flowers__top-separator {
    height: 15%;
  }
}

/* Scene 1 heading — full-width, vertically centered, huge display type */
.circle-1--flowers {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  padding: 0 3vw !important;
  max-width: none !important;
  z-index: 20;
  /* Let the h2's mix-blend-mode reach the video canvas below */
  isolation: auto !important;
  will-change: auto !important;
}
.circle-1--flowers h2 {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(3rem, 7.5vw, 100px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  margin: 0 !important;
  text-align: center;
  /* Warm dark brown — dark enough to read as premium, still light enough for
     multiply to visibly blend with the coin/rocks below. */
  color: #3d2b14;
  mix-blend-mode: multiply;
  /* Metallic lift: subtle highlight on top edge of letters + a soft warm
     shadow below/behind. Reads as embossed print on the scene. */
  text-shadow:
    0 1px 0 rgba(255, 245, 220, 0.35),         /* thin top highlight */
    0 2px 0 rgba(255, 235, 200, 0.18),         /* second highlight for depth */
    0 8px 24px rgba(60, 35, 10, 0.28),         /* medium warm shadow */
    0 20px 48px rgba(40, 25, 8, 0.22);         /* soft floor shadow */
}
.circle-1--flowers .flowers-line {
  display: block;
}
.circle-1--flowers .flowers-word {
  display: inline-block;
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .circle-1--flowers h2 {
    font-size: clamp(2.5rem, 14vw, 68px) !important;
  }
}

/* Glass Circles — single consolidated rule */
.glass-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
}

.circle-1 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  color: black;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.06);
}
.circle-1 p { color: #666; opacity: 0.9; }

.glass-circle h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin: 0 0 1rem 0;
}

.glass-circle p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.4;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 40px;
  min-height: 1000px;
}
/* White block at the top of the footer, fading into the mountain/gradient scene.
   The scene continues on top, ending in black at the bottom. */
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 500px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, rgba(255,255,255,0) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Layer 2 — mountain */
.footer-mountain {
  position: absolute;
  left: 50%;
  top: -140px;
  width: 92%;
  max-width: 1400px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.footer-mountain img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
}

/* Layer 3 — golden gradient OVER mountain (matches Figma layering) */
.footer-gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 380px;
  height: 1050px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255, 174, 111, 0) 0%,
    rgb(158, 100, 20) 35.222%,
    rgb(0, 0, 0) 65.92%,
    rgb(0, 0, 0) 100%);
  will-change: transform;
}

/* Layer 4 — glowing highlights */
.footer-glows {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.footer-glow {
  position: absolute;
  width: 1000px;
  height: 1000px;
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.footer-glow.g1 { left: 65%; top: 60%; }
.footer-glow.g2 { left: 50%; top: 75%; }
.footer-glow.g3 { left: -25%; top: 65%; }

/* Layer 5 — content */
.footer-inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-hero {
  text-align: center;
  padding-top: 700px;
  max-width: 956px;
  margin: 0 auto;
  color: #fff;
  will-change: transform;
}
.footer-hero h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -2.88px;
  line-height: 1.2;
  margin: 0 0 8px 0;
}
.footer-hero p {
  font-family: var(--font-sans);
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0 0 32px 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 16px 24px;
  border-radius: 38px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}
.footer-cta:hover { transform: translateY(-2px); background: #111; }
.footer-cta img { width: 20px; height: 20px; }

.footer-bottom {
  padding-top: 360px;
}
.footer-bottom hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 40px 0;
}
.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
  letter-spacing: -0.32px;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.85; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}
.footer-logo-mark { height: 40px; width: auto; }
.footer-logo-text { height: 24px; width: auto; }
.footer-copy {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #fff;
  opacity: 0.4;
  margin: 0;
  text-align: right;
  letter-spacing: -0.32px;
}

@media (max-width: 768px) {
  .site-footer { min-height: 800px; padding-bottom: 32px; }
  .footer-mountain { top: 80px; width: 160%; max-width: none; }
  .footer-gradient { top: 220px; height: 800px; }
  .footer-glow { width: 500px; height: 500px; }
  .footer-hero { padding-top: 380px; }
  .footer-hero h2 { font-size: 32px; letter-spacing: -1.2px; }
  .footer-hero p { font-size: 15px; }
  .footer-bottom { padding-top: 200px; }
  .footer-bottom-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
}

/* ============================================================
   Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero: force the whole parallax stage to fill the viewport so the
     background video/images crop-cover instead of shrinking */
  .parallax__header {
    height: 100vh;
    height: 100svh;
  }
  .parallax__visuals,
  .parallax__layers {
    height: 100%;
  }

  /* Both parallax image layers are pre-composited squares designed to stack.
     On mobile we cover the viewport so the layered composition holds regardless
     of aspect ratio. Force GPU compositing so the compositor thread paints them once. */
  .parallax__layer-img[data-parallax-layer="1"],
  .parallax__layer-img[data-parallax-layer="4"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    max-width: none;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .parallax__layer-title {
    padding-top: 18vh;
  }

  .parallax__title {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    letter-spacing: -2px;
  }

  .parallax__subtitle {
    font-size: 0.85rem;
    padding: 0 1.5rem;
  }

  /* Second fold */
  .second-fold {
    padding: 3rem 1.25rem 5rem 1.25rem;
  }
  .second-fold h2 {
    font-size: 36px;
    letter-spacing: -2px;
    margin: 0 0 1rem 0;
  }
  .paragraphs p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* Glass circle: fit portrait viewport with breathing room on the sides.
     Keep margin-based centering because GSAP animates transform. */
  .glass-circle {
    width: 76vw;
    height: 76vw;
    margin-top: -38vw;
    margin-left: -38vw;
    padding: 6vw;
  }

  .glass-circle h2 {
    font-size: 28px;
  }

  .glass-circle p {
    font-size: 0.9rem;
  }

  /* Reduce birds on mobile to save GPU */
  .bird-container-five,
  .bird-container-six,
  .bird-container-seven,
  .bird-container-eight {
    display: none;
  }
}

/* ============================================================
   Founders section
   ============================================================ */
.founders-section {
  position: relative;
  background: #fff;
  padding: 80px 24px 240px 24px;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.founders-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -3.92px;
  line-height: 1.2;
  color: #000;
  text-align: center;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 2;
}

.founders-list {
  max-width: 676px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

/* Founder card: soft-grey outer frame containing an inner white card */
.founder-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  background: rgba(220, 220, 220, 0.32);
  border-radius: 40px;
  padding: 16px;
  display: block;
  overflow: hidden;
}
.founder-card__inner {
  background: #fff;
  border: 1px solid #bdbebe;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  /* Layered drop shadow — matches Figma's 6-stop soft shadow */
  box-shadow:
    0 30px 30px -2.5px rgba(0, 0, 0, 0.03),
    0 13.647px 13.647px -2.083px rgba(0, 0, 0, 0.03),
    0 6.866px 6.866px -1.667px rgba(0, 0, 0, 0.03),
    0 3.622px 3.622px -1.25px rgba(0, 0, 0, 0.03),
    0 1.807px 1.807px -0.833px rgba(0, 0, 0, 0.03),
    0 0.707px 0.707px -0.417px rgba(0, 0, 0, 0.03);
}

.founder-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  background: #dbc8a8;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-info {
  flex: 1 0 0;
  min-width: 0;
}

.founder-info h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: #353535;
  margin: 0 0 2px 0;
  text-transform: capitalize;
}

.founder-role {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  color: #7b440a;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.founder-info ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
}

.founder-info li {
  margin: 0;
}

/* Raised + investors block */
.raised-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.raised-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.raised-headline p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #292f2c;
  letter-spacing: -0.6px;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}

.raised-headline strong {
  font-weight: 700;
}

.raised-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: #292f2c;
  opacity: 0.6;
}

.investors-row {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.investors-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  color: #000;
  white-space: nowrap;
}

.investors-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0.55;
  flex-wrap: wrap;
  justify-content: center;
}

.investors-logos li {
  display: flex;
  align-items: center;
  height: 24px;
}

.investors-logos img {
  display: block;
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* Explicit widths derived from each SVG's viewBox to preserve aspect ratio */
.investors-logos li:nth-child(1) img { width: 119px; }  /* nexus */
.investors-logos li:nth-child(2) img { width: 116px; }  /* quona */
.investors-logos li:nth-child(3) img { width: 55px; }   /* edbi */
.investors-logos li:nth-child(4) img { width: 183px; }  /* global-ventures */
.investors-logos li:nth-child(5) img { width: 48px; }   /* saison */

@media (max-width: 768px) {
  .raised-headline p {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }
  .raised-line { max-width: 40px; }
  .investors-row {
    gap: 20px;
    flex-direction: column;
  }
  .investors-logos {
    gap: 24px;
  }
  .investors-logos li { height: 20px; }
  .investors-logos img { height: 20px; }
  .investors-logos li:nth-child(1) img { width: 99px; }
  .investors-logos li:nth-child(2) img { width: 97px; }
  .investors-logos li:nth-child(3) img { width: 46px; }
  .investors-logos li:nth-child(4) img { width: 152px; }
  .investors-logos li:nth-child(5) img { width: 40px; }
}

/* Coins field (scattered across the section) */
.coins-floor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #111;
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform-origin: center center;
}

/* Inner dashed ring on the coin face */
.coin::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed #111;
  border-style: dotted;
  opacity: 0.9;
}

.coin span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: #111;
  letter-spacing: -2px;
  z-index: 1;
}

@media (max-width: 768px) {
  .founders-section {
    padding: 48px 16px 180px 16px;
    height: auto;
    min-height: 100vh;
  }
  .founders-title {
    font-size: 32px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  .founder-card {
    padding: 12px;
    border-radius: 24px;
  }
  .founder-card__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }
  .founder-photo {
    width: 100%;
    height: 220px;
    border-radius: 16px;
  }
  .founder-info h3 { font-size: 20px; }
  .founder-role { font-size: 14px; }
  .founder-info ul { font-size: 13px; }
  .coins-floor { display: none; }
}

/* ============================================================
   Interest form modal
   ============================================================ */
.interest-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.interest-modal.is-open {
  display: flex;
}
.interest-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.interest-modal.is-open .interest-modal__backdrop { opacity: 1; }
.interest-modal__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}
.interest-modal.is-open .interest-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.interest-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.interest-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}
.interest-modal__body {
  padding: 36px 32px 32px;
}
.interest-modal__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 8px 0;
  color: #111;
}
.interest-modal__lede {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 24px 0;
}
.interest-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.interest-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.interest-form__label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.1px;
}
/* Required-field marker */
.interest-form__req {
  color: #c94a2b;
  margin-right: 4px;
}
.interest-form input,
.interest-form select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #111;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.interest-form input:focus,
.interest-form select:focus {
  border-color: #111;
  background: #fff;
}
.interest-form input:invalid:not(:placeholder-shown),
.interest-form input.has-error {
  border-color: #c94a2b;
}
.interest-form__select-wrap {
  position: relative;
}
.interest-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.interest-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.interest-form__submit {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 100px;
  padding: 14px 20px;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.interest-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.interest-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.interest-form__status {
  font-family: var(--font-sans);
  font-size: 14px;
  margin: 0;
  min-height: 20px;
  text-align: center;
  color: #444;
}
.interest-form__status.is-success { color: #1d7a3b; }
.interest-form__status.is-error { color: #c94a2b; }

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  z-index: 10000;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  color: #111;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.3;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Prevent background scroll when modal is open */
html.interest-modal-open, body.interest-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .interest-modal__body { padding: 28px 22px 24px; }
  .interest-modal__title { font-size: 26px; }
  .interest-modal__lede { font-size: 14px; margin-bottom: 20px; }
}

/* ============================================================
   Hero v35: metallic coin scene + parallax sky + composited grass/fog
   Hero container is capped at viewport height. The 1:1 artboard is
   anchored to the bottom so the coin + rocks + grass (authored at the
   bottom of the 1:1 composition) sit in the visible viewport.
   ============================================================ */
.hero-v35 {
  position: relative;
  width: 100%;
  /* Full viewport height. The 1:1 artboard sits at the bottom; when the
     viewport is wider than tall, the artboard extends above the top edge
     so most of the coin/rocks live in the bottom portion of the viewport,
     leaving room for the text overlay at the top. */
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0798c5;
}
.hero-v35__artboard {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6vh;    /* small offset so rocks sit above the fog separator */
  width: 100%;
  aspect-ratio: 1 / 1;
}
/* On portrait mobile, the 1:1 artboard is too short for the tall hero and
   leaves a big blue gap at the top. Grow it to fill the height and let the
   sides crop instead (cover-fit). */
@media (max-width: 768px) {
  .hero-v35__artboard {
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    /* Ensure the square is at least as wide as the viewport */
    min-width: 100%;
  }
  .hero-logo { top: 1.5rem; gap: 6px; }
  .hero-logo__mark { height: 22px; }
  .hero-logo__text { height: 13px; }
  .site-loader__logo-mark { height: 26px; }
  .site-loader__logo-text { height: 16px; }
}
.hero-v35__background,
.hero-v35__stage,
.hero-v35__stage canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-v35__background {
  z-index: 0;
  object-fit: cover;
  will-change: transform;
  transform-origin: 50% 50%;
  user-select: none;
  pointer-events: none;
}
.hero-v35__stage {
  z-index: 1;
  pointer-events: none;
}
.hero-v35__stage canvas {
  will-change: transform;
}
.hero-v35__separator {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: auto;         /* preserve native 2048x582 aspect for a soft full fade */
  user-select: none;
  pointer-events: none;
}
.hero-v35__text {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8vw;
  pointer-events: none;
}
.hero-v35__text .hero-text-container {
  pointer-events: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-v35__text {
    padding-top: 34vw;
  }
}

/* ============================================================
   Footer v2: beach hero + black bottom bar
   Layout:
     [.footer-v2]
       [.footer-v2__scene]   (position: relative, natural image height)
         > <picture>         (fills the scene)
         > top-separator     (white fade, absolutely positioned at top)
         > bottom-separator  (black fade, absolutely positioned at bottom)
         > content           (title + subtitle + CTA, centered)
   ============================================================ */
.footer-v2 {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.footer-v2__scene {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.footer-v2__scene-img {
  display: block;
}
.footer-v2__scene-img img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.footer-v2__top-separator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 25%;
  /* White at top → transparent at bottom, so the scene above (white) blends
     smoothly into the beach below. */
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.footer-v2__bottom-separator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  /* Transparent at top → black at bottom, so the beach blends into the black
     bar below without the blurry SVG circles. */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.footer-v2__content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: min(956px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  pointer-events: none;
}
.footer-v2__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 6.6vw, 100px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: #111;
}
.footer-v2__title em {
  font-style: italic;
  font-weight: 400;
}
.footer-v2__word {
  display: inline-block;
  will-change: transform, opacity;
}
.footer-v2__subtitle {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.8);
  max-width: 640px;
}
/* Shares .cta-button's pill styling; only the overlay-specific bits differ.
   margin-top gives it a little air below the subtitle. */
.footer-v2__cta {
  pointer-events: auto;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-v2__content { gap: 20px; top: 48%; }
  .footer-v2__title { font-size: clamp(1.9rem, 8vw, 44px); }
  .footer-v2__subtitle { font-size: 14px; }
}
