:root {
  --black: #0A0A0A;
  --black2: #111111;
  --black3: #1A1A1A;
  --white: #F5F5F0;
  --purple: #CC00FF;
  --purple2: #9B5FFF;
  --neon: #C9FF00;
  --neon2: #E0FF4F;
  --text: rgba(245,245,240,0.7);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Outfit', sans-serif;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
em { font-style: italic; color: var(--neon); }
p { text-align: justify; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

#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;
  will-change: transform;
}

.preloader-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  position: absolute;
  bottom: 100%;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo img { width: 100px; display: block; }
.preloader-logo.visible { opacity: 1; transform: translateY(0); }
.preloader-bar-wrap { width: min(320px, 60vw); height: 1px; background: rgba(204, 0, 255, 0.3); position: relative; overflow: hidden; margin-top: 10px; }
.preloader-bar { position: absolute; inset: 0; background: var(--neon); 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(--neon); margin-top: 16px; text-align: center; }
#preloader.exit { transform: translateY(-100%); transition: transform 1.2s var(--ease-in-out); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 24px;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.06em;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out-expo), transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }
.btn span { position: relative; z-index: 1; }
.btn-primary { background: var(--white); color: var(--black); }
.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);
}

.flow-sound { animation: flow-sound 2.5s infinite ease-in-out; border-radius: 3px; }

.flow-sound::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-sound {
  0%, 100% { background: var(--purple); opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--purple); }
  50% { box-shadow: 0 0 20px rgba(183, 0, 255, 0.6); transform: scale(1.05); }
}

@keyframes flow {
  0%, 100% { background: var(--neon); opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--neon); }
  50% { box-shadow: 0 0 20px rgba(201, 255, 0, 0.6); transform: scale(1.05); }
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 300;
  padding: 8px 24px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--neon); color: var(--neon); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); }
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--neon); }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,10,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); text-decoration: none; }

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  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(--neon), var(--purple));
  background-size: 80px 80px, 80px 80px, 100% 100%;
}

.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero-video-bg {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin-top: 40px;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-video-bg video {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: cover;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content { max-width: 600px; }
.hero h1 { margin-bottom: 24px; margin-top: 0 !important; }
.hero h1 span { color: var(--neon); }
.hero-sub { font-size: 1rem; color: var(--text); margin-bottom: 36px; line-height: 1.75; }
.hero-micro { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 14px; text-align: left; }

.hero-controls {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 6px;
}

.gallery-sound-btn {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--purple);
  border: 1px solid rgba(170, 255, 0, 0.5);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out-expo);
  width: max-content;
  cursor: pointer;
}

.gallery-sound-btn:hover { background: var(--purple); color: var(--neon); border-color: var(--neon); }

.phone-seek-bar { position: relative; width: 100%; max-width: 600px; height: 4px; background: rgba(255, 255, 255, 0.2); border-radius: 2px; cursor: pointer; overflow: hidden; }
.phone-seek-progress { width: 0%; height: 100%; background: var(--neon); border-radius: 2px; transition: width 0.1s linear; }

.marquee-container { width: 100%; background-color: var(--neon); padding: 24px 0; overflow: hidden; display: flex; align-items: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.marquee-track { display: flex; width: max-content; animation: scroll 30s linear infinite; }
.marquee-container:hover .marquee-track { animation-play-state: paused; }
.marquee-content { display: flex; align-items: center; gap: 80px; padding-right: 80px; }
.logo-item { display: flex; align-items: center; justify-content: center; opacity: 0.8; transition: opacity 0.3s ease; width: 130px; }
.logo-item img { height: 45px; width: 100%; object-fit: contain; filter: brightness(0); }
.logo-item:hover { opacity: 1; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(var(--marquee-move, -50%)); } }

.metric-traditional { background: var(--black3); padding: 20px 0; border-bottom: 1px solid var(--border); }
.metric-trad-text { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 300; }
.metric-trad-text strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.metric-trad-text span { opacity: 0.4; margin-left: 8px; font-size: 0.72rem; }

.metric-euvatar {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--black);
}

.metric-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.metric-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.metric-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgb(96, 0, 109) 0%, rgba(94, 0, 117, 0.7) 50%, transparent 100%);
}

.metric-euvatar-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  max-width: 600px;
}

.metric-euvatar-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 15rem);
  font-weight: 800;
  color: var(--neon);
  line-height: 0.85;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(201, 255, 0, 0.4);
  margin: 0 !important;
}

.metric-euvatar-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  max-width: 460px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.cred-bar { background: var(--black2); padding: 20px 0; border-bottom: 1px solid var(--border); }
.cred-bar-inner { display: flex; align-items: center; gap: 40px; white-space: nowrap; flex-wrap: wrap; justify-content: center; }
.cred-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cred-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--neon); flex-shrink: 0; }

.problem { background: var(--black); }
.problem h2 { margin-bottom: 24px; }
.problem-body { font-size: 1rem; color: var(--text); max-width: 640px; line-height: 1.8; }
.problem-body p + p { margin-top: 16px; }
.problem-turn { margin-top: 48px; padding: 36px; background: var(--black3); border-left: 3px solid var(--neon); font-size: 1.05rem; line-height: 1.75; color: var(--white); text-align: justify; }
.problem-turn strong { color: var(--neon); font-weight: 600; }
.problem-photo { margin-top: 48px; overflow: hidden; aspect-ratio: 16/7; background: var(--black3); }
.problem-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.features { background: var(--black2); border-top: 1px solid var(--border); }
.features h2 { margin-bottom: 16px; }
.features-lead { font-size: 1rem; color: var(--text); max-width: 580px; margin-bottom: 48px; }
.features-photo { margin-bottom: 48px; overflow: hidden; aspect-ratio: 16/7; background: var(--black3); }
.features-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-item { background: var(--black2); padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.feature-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--purple); line-height: 1; }
.feature-item p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

.audience { background: var(--black); border-top: 1px solid var(--border); }
.audience h2 { margin-bottom: 48px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.audience-card { padding: 48px; background: var(--black2); border-top: 3px solid var(--purple); }
.audience-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon); margin-bottom: 16px; }
.audience-card h3 { margin-bottom: 16px; font-size: 1.15rem; }
.audience-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

.possibilities { background: var(--black2); border-top: 1px solid var(--border); }
.possibilities h2 { margin-bottom: 16px; }
.possibilities-lead { font-size: 1rem; color: var(--text); max-width: 580px; margin-bottom: 48px; }
.poss-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.poss-item { display: flex; flex-direction: column; gap: 20px; text-align: justify; }
.poss-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: var(--black3); border-radius: 4px; }
.poss-type { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--neon); }
.poss-desc { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.poss-desc strong { color: var(--white); font-weight: 500; }

.case { background: var(--black); border-top: 1px solid var(--border); }
.case-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); margin-bottom: 24px; }
.case-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--neon); }
.case-hero-photo { margin-bottom: 48px; overflow: hidden; aspect-ratio: 16/7; background: var(--black3); }
.case-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case h2 { margin-bottom: 40px; }
.case-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.case-body { font-size: 0.95rem; color: var(--text); line-height: 1.8; }
.case-body p + p { margin-top: 16px; }
.case-pull { border-left: 3px solid var(--purple); padding-left: 24px; font-family: var(--font-display); font-size: 1.15rem; color: var(--white); line-height: 1.5; margin-bottom: 24px; text-align: left; }
.case-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.badge { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 14px; border: 1px solid rgba(123,47,255,0.4); color: var(--purple2); }

.faq { background: var(--black2); border-top: 1px solid var(--border); }
.faq h2 { margin-bottom: 48px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0; background: transparent; border: none; cursor: pointer;
  color: var(--white); transition: color 0.3s; outline: none;
}

.faq-header:hover { color: var(--neon); }
.faq-header:hover .faq-icon { stroke: var(--neon); }

.faq-q { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; text-align: left; margin: 0; padding-right: 24px; transition: color 0.3s; }

.faq-icon {
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-out-expo), stroke 0.3s;
  stroke: var(--white); flex-shrink: 0;
}

.faq-content {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out-expo);
}

.faq-content-inner { overflow: hidden; }

.faq-a {
  font-size: 0.95rem; color: var(--text); line-height: 1.7;
  max-width: 680px; padding-bottom: 32px;
  margin: 0;
}

.faq-item.active .faq-content { grid-template-rows: 1fr; }
.faq-item.active .faq-icon { transform: rotate(-180deg); stroke: var(--neon); }
.faq-item.active .faq-q { color: var(--neon); }

.form-section { background: var(--black); border-top: 1px solid var(--border); }
.form-section h2 { margin-bottom: 16px; }
.form-section h2 span { color: var(--neon); }
.form-lead { font-size: 1rem; color: var(--text); margin-bottom: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.form-field input, .form-field textarea { font-family: 'Inter', sans-serif; font-size: 0.95rem; padding: 16px; border: 1px solid var(--border); background: linear-gradient(to left, rgb(96, 0, 109) 0%, rgba(94, 0, 117, 0.7) 50%, transparent 100%); color: var(--white); outline: none; transition: border-color 0.3s; border-radius: 4px; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--purple); }
.form-field textarea { resize: vertical; min-height: 120px; }
.check-group { display: flex; gap: 24px; padding-top: 8px; flex-wrap: wrap; }
.check-label { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text); cursor: pointer; }
.check-label input[type=checkbox], .check-label input[type=radio] { accent-color: var(--purple); width: 18px; height: 18px; cursor: pointer; }
.form-status { min-height: 24px; margin-top: 16px; font-size: 0.9rem; text-align: center; }
.form-status.is-success { color: var(--neon); }
.form-status.is-error { color: #ff8f8f; }
.btn[disabled] { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-micro { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.3); text-align: center; }

.trust-strip { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); justify-content: center; }
.trust-item { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

footer { background: var(--black2); border-top: 1px solid var(--border); padding: 32px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

@media(max-width: 768px) {
  .poss-list, .features-grid, .form-grid, .audience-grid, .case-cols { grid-template-columns: 1fr; }
  .metric-photo::after { background: linear-gradient(to top, rgb(96, 0, 109) 0%, rgba(94, 0, 117, 0.7) 50%, transparent 100%); }
  .metric-euvatar-content { padding: 48px 32px; }
  section { padding: 72px 0; }
  .marquee-content { gap: 40px; padding-right: 40px; }
  .logo-item { width: 100px; }
  nav { padding: 16px 20px; }
  .nav-logo img { width: 60px !important; }
  nav .btn { padding: 8px 12px !important; font-size: 0.65rem !important; }
  .container, .container--narrow { padding: 0 20px; }
}
