:root {
  --bg: #100d16;
  --bg-deep: #0b0910;
  --panel: rgba(10, 10, 10, 0.6);
  --panel-2: rgba(16, 13, 22, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --text: #e8dfee;
  --muted: #ccc3d8;
  --muted-soft: rgba(204, 195, 216, 0.62);
  --accent: #d2bbff;
  --accent-2: #a855f7;
  --accent-dark: #3f008e;
  --metric-bg: #2c2833;
  --page: 1440px;
  --side: clamp(20px, 6vw, 80px);
  --font-heading: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(76, 29, 149, 0.16), transparent 34rem),
    linear-gradient(180deg, #130f1a 0%, #100d16 42%, #0c0a11 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at 50% 5%, rgba(76, 29, 149, 0.18), transparent 32rem),
    linear-gradient(180deg, #130f1a 0%, #100d16 42%, #0c0a11 100%);
  position: relative;
  overflow: hidden;
}

/* HEADER LIKE SCREENSHOT */
.ve-header {
  width: 100%;
  height: 88px;
  padding: 0 clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 14, 24, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 30px;
}

.desktop-nav a {
  position: relative;
  color: rgba(232, 223, 238, 0.82);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: #fff;
  opacity: 0.85;
}

.header-cta {
  min-width: 124px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #160d20;
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(210, 187, 255, 0.18);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(210, 187, 255, 0.35);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.mobile-nav {
  display: none;
}

/* GENERAL */
.page-width {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--side);
}
.section-pad { padding-inline: var(--side); }

.hero-visual {
  min-height: clamp(330px, 54vw, 720px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(168, 85, 247, 0.8) 0 18px, transparent 20px),
    linear-gradient(135deg, rgba(148, 31, 255, 0.78), rgba(15, 10, 22, 0.2) 35%, rgba(0, 0, 0, 0.9) 48%, rgba(134, 28, 236, 0.72) 100%),
    #0b0710;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(210, 187, 255, 0.16), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(168, 85, 247, 0.18), transparent 24%),
    linear-gradient(160deg, transparent 0 40%, rgba(0, 0, 0, 0.75) 42% 53%, transparent 56%);
  mix-blend-mode: screen;
  opacity: 0.5;
}
.hero-video-noise,
.card-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-beam {
  position: absolute;
  width: 64%;
  height: 230%;
  left: 18%;
  top: -58%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.85), transparent);
  transform: rotate(45deg);
  filter: blur(6px);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(72px); opacity: 0.56; }
.orb-one { width: 420px; height: 420px; left: -110px; top: 18px; background: rgba(116, 30, 255, 0.5); }
.orb-two { width: 360px; height: 360px; right: -92px; top: 28px; background: rgba(168, 85, 247, 0.46); }
.hero-center-dot {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #8e27ff;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.92);
}

.hero-section { position: relative; padding-top: clamp(72px, 12vw, 146px); padding-bottom: clamp(82px, 12vw, 160px); text-align: center; }
.glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  filter: blur(42px);
  background: radial-gradient(circle, rgba(76, 29, 149, 0.35), transparent 70%);
}
.glow-hero { top: 32px; width: min(90vw, 600px); height: min(90vw, 600px); }
.hero-copy { position: relative; max-width: 920px; margin: 0 auto; }
.hero-copy h1, .final-cta h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(42px, 7.4vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.hero-copy h1 span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mobile-break { display: none; }
.hero-subtitle { max-width: 672px; margin: 26px auto 0; color: var(--muted); font-size: clamp(15px, 2vw, 20px); line-height: 1.6; }
.button-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 48px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 20px 40px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: #fff; color: #000; box-shadow: 0 0 20px rgba(255, 255, 255, 0.12); }
.btn-primary:hover { box-shadow: 0 0 38px rgba(255, 255, 255, 0.24); }
.btn-secondary { background: rgba(55, 51, 62, 0.5); color: #fff; border: 1px solid var(--line); backdrop-filter: blur(6px); }
.btn-secondary:hover { border-color: rgba(210, 187, 255, 0.42); background: rgba(80, 55, 108, 0.42); }

/* TRUST */
.trusted-section {
  padding: 49px 0 52px;
  background: #100d16;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 24px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(204, 195, 216, 0.6);
}
.marquee { width: 100%; overflow: hidden; opacity: 0.4; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 80px; animation: marquee 25s linear infinite; }
.marquee-track span { color: var(--text); font-family: var(--font-heading); font-size: 16px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 40px)); } }

/* SERVICES */
.services-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-block: clamp(80px, 10vw, 112px) clamp(90px, 10vw, 160px); }
.service-card {
  min-height: 372px;
  position: relative;
  overflow: hidden;
  padding: 41px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)), var(--panel);
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -30% auto;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(76, 29, 149, 0.18);
  filter: blur(38px);
  opacity: 0;
  transition: opacity 260ms ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(210, 187, 255, 0.35); background: rgba(12, 10, 17, 0.74); }
.service-card:hover::after { opacity: 1; }
.icon-box {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 31px;
  border-radius: 12px;
  background: rgba(76, 29, 149, 0.2);
}
.icon-box svg, .mini-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h2 { position: relative; margin: 0 0 16px; font-family: var(--font-heading); font-size: 32px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; color: var(--text); }
.service-card h2 span { display: block; color: var(--accent); }
.service-card p { position: relative; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* EDGE */
.edge-section { padding-block: clamp(56px, 7vw, 96px); background: rgba(16, 13, 22, 0.5); }
.edge-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
.abstract-panel {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: radial-gradient(circle at 30% 40%, rgba(210,187,255,0.18), transparent 20%), linear-gradient(135deg, rgba(36,18,51,0.85), rgba(6,5,9,0.95));
}
.abstract-panel img { position: absolute; inset: 1px; z-index: 2; width: calc(100% - 2px); height: calc(100% - 2px); object-fit: cover; }
.image-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 42% 48%, rgba(255, 170, 218, 0.38), transparent 20%), radial-gradient(ellipse at 54% 50%, rgba(210, 187, 255, 0.45), transparent 24%), linear-gradient(140deg, transparent 35%, rgba(255,255,255,0.06) 36%, transparent 38%), #0d0a12;
}
.bottom-fade, .case-overlay { position: absolute; inset: 0; z-index: 3; background: linear-gradient(0deg, #15121b, rgba(21,18,27,0) 50%); pointer-events: none; }
.edge-content h2, .section-title { margin: 0; font-family: var(--font-heading); font-size: clamp(34px, 5vw, 48px); line-height: 1.2; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.edge-list { display: grid; gap: 48px; margin-top: 40px; }
.edge-item { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 24px; }
.mini-icon { display: flex; padding-top: 4px; }
.edge-item h3 { margin: 0 0 8px; font-family: var(--font-heading); font-size: 20px; line-height: 1.6; font-weight: 800; color: var(--text); }
.edge-item p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }

/* WORK */
.work-section { padding-block: clamp(56px, 7vw, 96px); }
.section-title { text-align: center; margin-bottom: 48px; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.case-card { display: grid; gap: 32px; }
.case-image { min-height: 340px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #0c0811; }
.case-image img { position: absolute; inset: 1px; width: calc(100% - 2px); height: calc(100% - 2px); object-fit: cover; z-index: 2; transform: scale(1.02); transition: transform 420ms ease; }
.case-card:hover .case-image img { transform: scale(1.08); }
.case-image-fallback { position: absolute; inset: 0; }
.fallback-one { background: linear-gradient(180deg, rgba(168,85,247,0.35), transparent 42%), repeating-linear-gradient(90deg, transparent 0 22px, rgba(210,187,255,0.18) 23px 24px), linear-gradient(135deg, #20102d, #0a0710); }
.fallback-two { background: radial-gradient(circle at 72% 38%, rgba(210,187,255,0.5), transparent 12%), radial-gradient(circle at 68% 46%, rgba(18, 17, 21, 0.9), transparent 26%), linear-gradient(135deg, #170d20, #09070d); }
.case-overlay { background: rgba(0, 0, 0, 0.4); }
.case-label { position: absolute; z-index: 4; left: 32px; bottom: 32px; }
.case-label span { display: inline-flex; align-items: center; min-height: 24px; padding: 5px 16px; margin-bottom: 15px; border-radius: 999px; background: var(--accent); color: var(--accent-dark); font-size: 12px; line-height: 1; letter-spacing: 0.1em; font-weight: 800; text-transform: uppercase; }
.case-label h3 { margin: 0; font-family: var(--font-heading); font-size: 32px; line-height: 1.3; font-weight: 700; color: var(--text); }
.case-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; }
.case-meta p { max-width: 340px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.case-meta div { min-width: 128px; text-align: right; }
.case-meta strong, .case-meta span { font-family: var(--font-heading); font-size: 48px; line-height: 1.2; letter-spacing: -0.02em; color: var(--accent); font-weight: 800; }
.case-meta small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; letter-spacing: 0.1em; font-weight: 800; text-transform: uppercase; }

/* METRICS */
.metrics-section { padding-block: 56px; background: var(--metric-bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; align-items: center; gap: clamp(28px, 5vw, 72px); }
.metric { text-align: center; }
.metric strong, .metric span { font-family: var(--font-heading); font-size: clamp(36px, 4.5vw, 48px); line-height: 1.2; letter-spacing: -0.02em; color: var(--text); font-weight: 800; }
.metric .prefix { margin-right: 2px; }
.metric p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1; letter-spacing: 0.1em; font-weight: 800; text-transform: uppercase; }
.metric-divider { width: 1px; height: 64px; background: var(--line); }

/* TESTIMONIAL */
.testimonial-section {
  position: relative;
  overflow: hidden;
  margin-top: clamp(56px, 6vw, 96px);
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(210,187,255,0.1), transparent 13rem), var(--panel);
  backdrop-filter: blur(10px);
  text-align: center;
}
.quote-mark { position: relative; z-index: 1; color: var(--accent); font-family: var(--font-heading); font-size: 54px; line-height: 0.62; opacity: 0.8; }
.testimonial-section blockquote { position: relative; z-index: 1; max-width: 1040px; margin: 30px auto 0; font-family: var(--font-heading); font-size: clamp(24px, 4.4vw, 48px); line-height: 1.2; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
.testimonial-section cite { position: relative; z-index: 1; display: grid; gap: 4px; margin-top: 48px; font-style: normal; }
.testimonial-section cite strong { font-family: var(--font-heading); font-size: 20px; line-height: 1.6; color: var(--text); }
.testimonial-section cite span { color: var(--muted); font-size: 16px; line-height: 1.5; }
.testimonial-glow { position: absolute; top: -40px; left: -40px; width: 160px; height: 160px; border-radius: 999px; background: rgba(210, 187, 255, 0.1); filter: blur(32px); }

.anchor-section {
  min-height: 1px;
  padding: 0;
  color: transparent;
  overflow: hidden;
}

/* CTA */
.final-cta { position: relative; padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(64px, 8vw, 110px); text-align: center; }
.final-cta h2 { margin-bottom: 40px; }
.btn-large { min-height: 80px; padding: 24px 48px; font-size: 20px; }
.glow-cta { bottom: 0; width: min(92vw, 800px); height: 300px; opacity: 0.5; }

/* FOOTER LIKE SCREENSHOT */
.ve-footer {
  background: #0d0912;
  border-top: 1px solid var(--line);
  padding: 64px 80px 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 0.8fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.footer-brand p {
  max-width: 225px;
  margin: 0 0 28px;
  color: rgba(204, 195, 216, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 17px;
}

.social-row a {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--text);
  opacity: 0.92;
  transition: opacity 220ms ease, transform 220ms ease;
}

.social-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col h4 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: max-content;
  color: rgba(204, 195, 216, 0.86);
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 22px;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .ve-header { padding-inline: 40px; }
  .desktop-nav { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .services-section, .edge-grid, .case-grid { grid-template-columns: 1fr; }
  .abstract-panel { min-height: 430px; }
  .case-meta { align-items: flex-start; }
  .metrics-grid { grid-template-columns: 1fr; gap: 36px; }
  .metric-divider { width: 100%; height: 1px; }

  .desktop-nav,
  .header-cta { display: none; }

  .menu-toggle { display: block; }

  .mobile-nav {
    display: grid;
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(13, 9, 18, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 14px 4px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav a:last-child { border-bottom: 0; color: var(--accent); }
}

@media (max-width: 640px) {
  :root { --side: 14px; }
  .ve-header { height: 72px; padding: 0 18px; }
  .brand-logo { font-size: 22px; }
  .mobile-nav { top: 72px; left: 14px; right: 14px; }
  .hero-visual { min-height: 330px; }
  .hero-center-dot { top: 18px; width: 36px; height: 36px; }
  .hero-section { padding-top: 70px; }
  .mobile-break { display: block; }
  .hero-subtitle { max-width: 92%; font-size: 14px; }
  .button-row { gap: 14px; margin-top: 32px; }
  .btn { width: min(100%, 310px); min-height: 54px; padding: 17px 22px; font-size: 13px; }
  .trusted-section { padding-block: 38px; }
  .marquee-track { gap: 48px; }
  .services-section { padding-block: 70px 82px; gap: 18px; }
  .service-card { min-height: 280px; padding: 28px; }
  .service-card h2, .case-label h3 { font-size: 25px; }
  .service-card p, .edge-item p, .case-meta p, .testimonial-section cite span { font-size: 14px; }
  .edge-section, .work-section { padding-block: 56px; }
  .edge-list { gap: 30px; }
  .edge-item { grid-template-columns: 26px 1fr; gap: 16px; }
  .abstract-panel { min-height: 300px; }
  .section-title { margin-bottom: 40px; }
  .case-image { min-height: 275px; }
  .case-label { left: 22px; bottom: 22px; }
  .case-meta { display: grid; gap: 14px; }
  .case-meta div { min-width: 0; text-align: left; }
  .case-meta strong, .case-meta span { font-size: 36px; }
  .testimonial-section { margin-top: 56px; padding: 38px 22px; }
  .final-cta h2 { font-size: 40px; }
  .btn-large { font-size: 15px; }
  .ve-footer { padding: 56px 26px 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-logo { font-size: 34px; margin-bottom: 22px; }
  .footer-col h4 { margin-bottom: 20px; }
  .footer-col a { margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* HERO VIDEO UPDATE */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #050108;
  isolation: isolate;
}

.hero-visual .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero-visual .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 8%, rgba(168, 85, 247, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(16, 13, 22, 0.12) 0%, rgba(16, 13, 22, 0.35) 48%, rgba(16, 13, 22, 0.88) 100%);
  pointer-events: none;
}

.hero-visual .hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(126, 34, 206, 0.85), rgba(0, 0, 0, 0.92) 50%, rgba(88, 28, 135, 0.85)),
    #050108;
}


/* =========================================================
   HOME HERO VIDEO PLAY FIX
   ========================================================= */

.hero-visual.has-video {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #050108 !important;
}

.hero-visual.has-video::before,
.hero-visual.has-video::after {
  display: none !important;
  content: none !important;
}

.hero-visual.has-video .hero-bg-video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.hero-visual.has-video .hero-video-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  background:
    radial-gradient(circle at 50% 8%, rgba(168, 85, 247, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(16, 13, 22, 0.05) 0%, rgba(16, 13, 22, 0.18) 48%, rgba(16, 13, 22, 0.72) 100%) !important;
  pointer-events: none !important;
}

.hero-visual.has-video .hero-video-fallback {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(135deg, rgba(126, 34, 206, 0.85), rgba(0, 0, 0, 0.92) 50%, rgba(88, 28, 135, 0.85)),
    #050108 !important;
}

.hero-video-missing {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #e8dfee;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(168,85,247,.22), transparent 360px),
    #050108;
}

.hero-video-missing strong {
  color: #d2bbff;
}


.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-bg-video-desktop {
  display: block;
}

.hero-bg-video-mobile {
  display: none;
}

.hero-video-overlay,
.hero-video-fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video-overlay {
  z-index: 1;
}

.hero-video-fallback {
  z-index: -1;
}

.hero-video-missing {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
  background: #050505;
}

@media (max-width: 767px) {
  .hero-bg-video-desktop {
    display: none;
  }

  .hero-bg-video-mobile {
    display: block;
  }

  .hero-bg-video {
    object-fit: cover;
    object-position: center center;
  }
}
