@font-face {
  font-family: 'Relationship Melodrame';
  src: url('./assets/RelationshipMelodrame.woff2') format('woff2'),
       url('./assets/RelationshipMelodrame.woff') format('woff'),
       url('./assets/RelationshipMelodrame.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --pure-black: #000000;
  --white: #f5f4f0;
  --pure-white: #ffffff;
  --off-white: #ece9e3;
  --grey-200: #2c2c2c;
  --grey-300: #4a4a4a;
  --grey-500: #8a8a8a;
  --grey-600: #b0b0b0;
  --accent: #c8b89a;
  --brand-green: #C9FF00;
  --brand-green-dark: #799a00;
  --brand-purple: #CC00FF;
  --font-display: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-display);
  background: var(--black);
  color: var(--white);
  overflow-x: clip; 
  cursor: auto;
}

.view-wrap {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.view-wrap.fade-out {
  opacity: 0;
}

.hidden-section {
  display: none !important;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: none; font-family: inherit; }

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(204, 255, 0, 0.628);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out-expo), height 0.35s var(--ease-out-expo), border-color 0.2s;
  mix-blend-mode: difference;
}

body.cursor-hover #cursor-dot { width: 12px; height: 12px; }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: rgba(204, 255, 0, 0.7); }

#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}

.preloader-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.preloader-logo img {
  width: 200px;
  margin-bottom: 8px;
}

.preloader-logo.visible { opacity: 1; transform: translateY(0); }

.preloader-bar-wrap {
  width: min(374px, 100vw);
  height: 1px;
  background: var(--brand-purple);
  position: relative;
  overflow: hidden;
}

.preloader-bar {
  position: absolute;
  inset: 0;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

.preloader-percent {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.25em;
  color: var(--brand-green);
  margin-top: 12px;
}

.preloader-message {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

#preloader.exit {
  transform: translateY(-100%);
  transition: transform 1s var(--ease-in-out);
}

#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo), color 0.3s;
}

.nav-logo img {
  width: 100px;
  mix-blend-mode: difference;
}

.nav-logo.visible { opacity: 1; transform: translateY(0); }
.nav-logo:hover { color: var(--accent); }

.header-right {
  position: absolute;
  right: 40px;
  display: flex;
}

.btn-nav {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  padding: 10px;
}

.btn-nav:hover {
  color: var(--brand-green);
}

.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 26px;
  background: var(--brand-green);
  color: var(--black);
  border-radius: 3px;
  box-shadow: 0 0 28px rgba(201, 255, 0, 0.8);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 1;
  mix-blend-mode: normal;
  overflow: hidden;
  position: relative;
  transition: color 0.4s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.btn-nav-contact:hover {
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 0 36px rgba(201, 255, 0, 0.9);
}

.btn-nav-contact span {
  position: relative;
  display: block;
  z-index: 1;
}

.btn-nav-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-in-out);
  z-index: 0;
}

.btn-nav-contact:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

main { position: relative; }

#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center; 
  justify-content: space-between; 
  padding: 100px 60px 40px;
  gap: 40px; 
}

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

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 60%, transparent 100%);
}

.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, var(--white) 1px, transparent 1px),
    linear-gradient(to bottom, var(--white) 1px, transparent 1px),
    linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  background-size: 80px 80px, 80px 80px, 100% 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1; 
  max-width: 600px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-top: 5px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out-expo) 0.3s, transform 1s var(--ease-out-expo) 0.3s;
}

.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(35px, 5vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease-out-expo) 0.55s, transform 1.1s var(--ease-out-expo) 0.55s;
}

.hero-h1 em {
  font-style: italic;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--brand-green);
  font-weight: normal;
  font-family: 'Relationship Melodrame', serif;
}

.hero-h1.visible { opacity: 1; transform: translateY(0); }

.hero-cta-wrap {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out-expo) 1.1s, transform 0.9s var(--ease-out-expo) 1.1s;
}

.hero-cta-wrap.visible { opacity: 1; transform: translateY(0); }

.hero-scroll-hint {
  position: absolute;
  bottom: 50px; right: 5px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 1s 1.5s;
}

.hero-scroll-hint.visible { opacity: 1; }

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-green);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--grey-300);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollLine 2s var(--ease-in-out) infinite 2s;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

.phone-video-screen {
  object-fit: cover;
}

.gallery-sound-btn {
  position: absolute;
  z-index: 10;
  bottom: 50px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out-expo);
  width: max-content;
}

.gallery-sound-btn:hover {
  background: var(--white);
  color: var(--black);
}

.phone-seek-bar {
  position: absolute;
  bottom: 25px; 
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: rgba(201, 255, 0, 0.3);
  border-radius: 2px;
  cursor: pointer;
  z-index: 10;
}

.phone-seek-bar .phone-seek-progress {
  width: 0%;
  height: 100%;
  background: var(--brand-green);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out-expo);
  cursor: none;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary.flow {
  background: var(--brand-green);
  color: var(--black);
  box-shadow: 0 0 10px var(--brand-green);
}

.btn-primary:hover {
  animation-play-state: paused;
  color: var(--white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-in-out);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.flow {
  animation: flow 2.5s infinite ease-in-out;
  border-radius: 3px;
}

.flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  color: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-in-out);
  z-index: 0;
  box-shadow: 0 0 20px var(--black);
}

@keyframes flow {
  0%, 100% {
    background: var(--brand-green);
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px var(--brand-green);
  }
  50% {
    background: var(--brand-green);
    box-shadow: 0 0 20px var(--brand-green);
    transform: scale(1.1); 
  }
}

.marquee-container {
  width: 100%;
  background-color: var(--brand-green);
  padding: 20px 0;
  overflow: hidden; 
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite; 
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7; 
  transition: opacity 0.3s ease;
  width: 100px;
}

.logo-item img {
  height: 40px; 
  width: auto;
  object-fit: contain;
}

.logo-item:hover {
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--marquee-move, -50%)); } 
}

#about {
  position: relative;
  background: var(--black); 
  overflow: hidden;
}

#about .gallery-layout {
  height: auto; 
  min-height: 100vh;
}

#about .about-text-col {
  background: var(--off-white);
  color: var(--black);
}

#about .about-media-col {
  background: var(--off-white); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 4vw; 
}

.about-images-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 1 / 1.1; 
}

.about-img-item {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--brand-green); 
}

.about-img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 5;
}

.about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
  display: block;
}

.about-img-item:hover img {
  transform: scale(1.08);
}

.img-main {
  top: 0;
  right: 0;
  width: 75%;
  height: 75%;
  z-index: 1;
  border: none; 
}

.img-sub-1 {
  bottom: 5%;
  left: 0;
  width: 50%;
  height: 50%;
  z-index: 2;
}

.img-sub-2 {
  bottom: -5%;
  right: 15%;
  width: 40%;
  height: 45%;
  z-index: 3;
}

@media (max-width: 900px) {
  .header-right { right: 50px; }
  #about .gallery-layout {
    flex-direction: column-reverse; 
  }
  #about .about-text-col {
    padding: 60px 32px 80px;
    background: var(--black); 
    color: var(--white);
  }
  #about .about-media-col {
    padding: 80px 32px 60px;
    background: var(--black); 
  }
  .about-img-item {
    border-color: var(--brand-green);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  .about-images-wrapper {
    max-width: 100%;
    aspect-ratio: 1 / 1.2;
  }
  .img-sub-1 {
    width: 55%;
    height: 45%;
    bottom: 10%;
  }
  .img-sub-2 {
    width: 45%;
    height: 40%;
    right: 5%;
    bottom: 0;
  }
}

#gallery {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.gallery-scroller { position: relative; }

.gallery-sticky-container {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.gallery-layout {
  display: flex;
  flex-direction: row; 
  width: 100%;
  min-height: 100vh;
}

.gallery-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw;
  position: relative;
  z-index: 2;
  background: var(--off-white);
  color: var(--black);
}

.gallery-media-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.gallery-loader {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s var(--ease-in-out);
}

.gallery-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-loader-bar-wrap {
  width: 150px;
  height: 1px;
  background: var(--brand-purple);
  position: relative;
  overflow: hidden;
}

.gallery-loader-bar {
  position: absolute;
  inset: 0;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s linear;
}

.gallery-text-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 40vh;
  min-height: 350px;
}

.g-text-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.8s, opacity 0.5s ease;
}

.g-text-item.active {
  opacity: 1;
  pointer-events: none; 
  visibility: visible;
  transition: visibility 0s 0s, opacity 0.5s ease;
}

.g-text-item.active > * {
  pointer-events: auto; 
}

.g-eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--brand-green-dark); margin-bottom: 6px; }
.g-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 6px; }
.g-title em { font-style: italic; font-family: 'Relationship Melodrame', serif; color: var(--brand-green-dark); font-weight: normal; }
.g-subtitle { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--brand-green-dark); margin-bottom: 12px; }
.g-desc { width: 300px; display: block; font-size: 13px; font-weight: 300; line-height: 1.8; margin-bottom: 40px; text-align: justify;}

.g-text-item > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.g-text-item.active .g-eyebrow { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.g-text-item.active .g-title { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.g-text-item.active .g-subtitle { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.g-text-item.active .g-desc { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.g-btn-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 15px;
}
.g-text-item.active .g-btn-wrap { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

.g-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s var(--ease-out-expo), transform 1.5s var(--ease-out-expo);
  pointer-events: none;
  overflow: hidden;
}

.g-media-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto; 
}

.g-media-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  pointer-events: none; 
  z-index: 5; 
}

.g-media-item video,
.g-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#static-feature {
  position: relative;
  background: var(--black);
  color: var(--white);
  height: 100vh;
  overflow: hidden;
  display: flex; 
}

#static-feature .gallery-layout {
  flex: 1;
  height: 100%;
}

#static-feature .gallery-text-col {
  background: var(--off-white);
  color: var(--black);
}

.static-text-box {
  width: 100%;
  max-width: 500px;
}

.static-media-wrap {
  position: absolute; 
  inset: 0;
  width: 100%;
  height: 100%;
}

.static-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.static-media-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

#intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

#intro img {
  width: 50%;
  position: absolute;
  top: 5%; left: 25%;
  opacity: 0.5;
  padding: 50px;
  object-fit: contain;
}

.intro-video-bg { position: absolute; inset: 0; z-index: 0; }
.intro-video-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.55); }

.intro-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(16px);
  opacity: 0.3;
}

.intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.intro-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 2vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  width: 100%;
}

.intro-headline em { font-style: italic; color: var(--brand-green); font-family: 'Relationship Melodrame', serif; font-weight: normal;}

.card {
  position: relative;
  padding: 60px 40px 40px;
  border-radius: 24px; 
  transition: transform 0.6s var(--ease-out-expo);
  cursor: none;
  z-index: 1;
  height: 100%; 
  display: flex;
  flex-direction: column; 
  margin: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  max-width: 1100px; 
  margin: auto; 
  position: relative;
  z-index: 2;
  align-items: stretch; 
}

.title-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 68px); 
  font-weight: 900;
  line-height: 1.05; 
  letter-spacing: -0.02em; 
  color: var(--white);
  text-align: center;
  max-width: 850px; 
  margin: 90px; 
  position: relative;
  z-index: 2;
  justify-content: center;
  text-align: left;
}

.title-quote em {
  font-style: italic;
  font-family: 'Relationship Melodrame', serif; 
  color: var(--brand-green);
  font-weight: normal; 
  padding: 0 4px; 
  text-shadow: 0 0 25px rgba(201, 255, 0, 0.25);
}

.card-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.2), rgba(10, 10, 10, 0.6));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: -1;
  overflow: hidden; 
  transition: all 0.6s var(--ease-out-expo);
}

.card-bg::before,
.card-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(45px); 
  opacity: 0.25;
  transition: all 0.8s var(--ease-out-expo);
}

.card-bg::before {
  width: 140px; height: 140px;
  background: var(--brand-green);
  top: -30px; left: -30px;
}

.card-bg::after {
  width: 120px; height: 120px;
  background: var(--brand-purple);
  bottom: -30px; right: -30px;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-12px);
  }
  .card:hover .card-bg {
    border-color: rgba(201, 255, 0, 0.15);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 30px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 255, 0, 0.05); 
  }
  .card:hover .card-bg::before {
    transform: translate(40px, 40px) scale(1.4);
    opacity: 0.6;
  }
  .card:hover .card-bg::after {
    transform: translate(-40px, -40px) scale(1.4);
    opacity: 0.6;
  }
}

.number-bubble {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0,0,0,0.5);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -32px; 
  left: 40px; 
  z-index: 5;
  transition: all 0.6s var(--ease-out-expo);
}

.number-text {
  font-size: 20px; 
  background: linear-gradient(135deg, var(--brand-green), var(--pure-white));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:hover .number-bubble {
  border-color: rgba(204, 0, 255, 0.3); 
  transform: translateY(-5px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 15px 25px rgba(0,0,0,0.6), 0 0 20px rgba(204, 0, 255, 0.15);
}

.card-title {
  color: var(--pure-white); 
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 900; 
  letter-spacing: -0.02em;
}

.card-list {
  list-style: none; 
  padding: 0;
  color: var(--grey-600); 
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: auto;
  text-align: justify; 
}

.card-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  transition: color 0.4s ease;
}

.card:hover .card-list li {
  color: var(--white);
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; 
  height: 1px; 
  background: var(--brand-green);
  transition: width 0.4s var(--ease-out-expo), background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.card:hover .card-list li::before {
  width: 12px;
  background: var(--brand-purple);
  box-shadow: 0 0 8px rgba(204, 0, 255, 0.6);
}

@media (max-width: 900px) {
  #how-it-works { padding: 80px 0; }
  .title-quote { margin: 20px; }
  .cards-grid { grid-template-columns: 1fr; gap: 70px; }
  .card { padding: 50px 30px 30px; }
  .number-bubble { width: 60px; height: 60px; top: -30px; }
  .number-text { font-size: 24px; }
}

#contact {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 200px);
}

.contact-left {
  padding: 120px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--grey-200);
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 32px;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.contact-headline em { font-style: italic; color: var(--brand-green); font-family: 'Relationship Melodrame', serif; font-weight: normal; }

.contact-body {
  font-size: 13px;
  font-weight: 200;
  line-height: 1.9;
  color: var(--pure-white);
  max-width: 380px;
  margin-top: 12px;
  margin-bottom: 30px;
}

.contact-right { padding: 120px 60px 80px 80px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field { position: relative; }

.form-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--grey-200);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 200;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--white);
}

.form-field textarea { resize: none; height: 80px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--white); opacity: 1; }

.form-field select option { background: var(--black); }

.form-line-grow {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--white);
  transition: width 0.4s var(--ease-out-expo);
}

.form-field input:focus ~ .form-line-grow,
.form-field textarea:focus ~ .form-line-grow { width: 100%; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.form-note { font-size: 10px; color: var(--white); letter-spacing: 0.1em; }

.form-status {
  min-height: 18px;
  color: var(--brand-green);
  font-size: 12px;
  line-height: 1.5;
}

.form-status.error { color: #ff6b6b; }

.contact-socials { display: flex; gap: 20px; margin-top: 12px; }

.social-link {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.social-link:hover { color: var(--white); border-color: var(--white); }

footer {
  background: var(--black);
  border-top: 1px solid var(--grey-200);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.overlay-footer-link {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-500);
  transition: color 0.3s;
  cursor: none;
}

.overlay-footer-link:hover {
  color: var(--white);
}

#privacy {
  padding: 150px 6vw 80px;
  min-height: calc(100vh - 200px);
  background: var(--black);
}

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  margin-top: 40px;
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin: 40px 0 16px;
  font-weight: 400;
}

.privacy-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

@media (max-width: 900px) {
  #privacy { 
    padding: 120px 32px 60px; 
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
}

.footer-logo img { width: 100px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-500);
  transition: color 0.3s;
}

.footer-link:hover { color: var(--white); }
.footer-copy { font-size: 10px; color: var(--grey-500); letter-spacing: 0.1em; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (max-width: 900px) {
  #hero { flex-direction: column; justify-content: center; padding: 80px 32px 60px; gap: 20px; }
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0; margin-bottom: 25px; }
  .hero-phone-mockup { width: min(280px, 35vh); }
  #header { padding: 0 24px; }
  .gallery-sticky-container { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-left { border-right: none; padding: 80px 32px; }
  .contact-right { padding: 40px 32px 80px; }
  footer { flex-direction: column; gap: 32px; align-items: flex-start; }
  .btn { gap: 12px; padding: 8px 28px; font-size: 8px; }
}

@media (max-width: 767px) {
  .gallery-scroller,
  .gallery-sticky-container,
  .gallery-layout {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  .gallery-layout { 
    flex-direction: column; 
  }
  .gallery-media-col { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 9 / 16; 
    height: auto; 
    z-index: 1; 
  }
  .gallery-text-col {
    position: relative;
    background: var(--black);
    color: var(--white);
    justify-content: flex-start; 
    padding: 20px 32px 60px 32px;
    height: auto;
    z-index: 2;
    pointer-events: auto; 
  }
  .gallery-text-wrapper { 
    height: 380px; 
    min-height: auto;
    pointer-events: none; 
    margin-top: 20px;
  }
  .g-eyebrow { color: var(--brand-green); margin-bottom: 4px; }
  .g-title { font-size: clamp(24px, 7vw, 32px); margin-bottom: 4px; }
  .g-title em { color: var(--brand-green); }
  .g-subtitle { font-size: 14px; margin-bottom: 8px; color: var(--brand-green); }
  .g-desc { color: var(--white); width: 100%; font-size: 13px; line-height: 1.5; margin-bottom: 15px;}
  .g-btn-wrap { gap: 16px; margin-top: 10px; flex-wrap: wrap; }
  #static-feature { 
    height: auto !important; 
    min-height: auto !important;
  }
  #static-feature .gallery-text-col {
    background: var(--black);
    color: var(--white);
  }
  .static-media-wrap {
    position: relative;
    height: 100%;
  }
}

@media (max-width: 480px) {
  #hero { padding: 90px 24px 20px; gap: 15px; }
  .hero-h1 { font-size: clamp(36px, 10vw, 45px); }
  .hero-cta-wrap { margin-top: 24px; }
  .hero-phone-mockup { width: min(190px, 28vh); }
}
