:root {

  --font-display:          'Poppins', sans-serif;
  --display-weight-heavy:  800;
  --display-weight:        700;
  --display-weight-ui:     600;
  --display-spacing:       -0.2px;
  --display-spacing-lg:    -1.5px;
  --display-spacing-hero:  -1.75px;
  --display-lh:            1.2;


  --font-body:             'Bricolage Grotesque', sans-serif;
  --body-weight-normal:    400;
  --body-weight-medium:    500;
  --body-weight-bold:      600;

  

  --br:  #5F43B2;  
  --br2: #7B5FCC;
  --br3: #9B84E0;
  --br4: #C4B5F4;
  --br5: #EDE8FF;
  --br6: #F7F5FF;

  --ink:  #0D0B14;  
  --ink2: #2D2840;
  --ink3: #6B6480;
  --ink4: #A09AB8;

  --white: #fff;
  --page:  #FAFAFA;

  --bdr:  rgba(95, 67, 178, 0.12);
  --bdr2: rgba(95, 67, 178, 0.22);
  --section-divider: rgba(95, 67, 178, 0.22);


  --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(95, 67, 178, 0.08);

  --section-pad-v: 6rem;
  --section-pad-h: 3rem;

  --inner-max: 1140px; 
}


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

body, .site {
  font-family: var(--font-body);
  background: var(--page);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}


.section {
  padding: var(--section-pad-v) var(--section-pad-h);
}

.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

@media (max-width: 960px) {
  .section { padding: 5rem 2rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.5rem; }
}


.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--body-weight-bold);
  color: var(--br);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.sec-tag::before {
  content: '';
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--br);
}

.sec-h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
  line-height: var(--display-lh);
  color: var(--ink);
}

.sec-h2 .g {
  background: linear-gradient(120deg, var(--br), var(--br3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-hd .sec-tag {
  display: inline-flex;
  justify-content: center;
}

.sec-hd--left {
  text-align: left;
}

.sec-hd--left .sec-tag {
  justify-content: flex-start;
}

@media (max-width: 960px) {
  .sec-h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .sec-h2 { font-size: 24px; }
  .sec-hd { margin-bottom: 2.5rem; }
}

.hero {
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 67, 178, .09) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-orb-1 10s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 132, 224, .11) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-orb-2 13s ease-in-out infinite alternate;
}

@keyframes hero-orb-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 40px) scale(1.1); }
}

@keyframes hero-orb-2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

.hero-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--br4) 30%,
    var(--br)  50%,
    var(--br4) 70%,
    transparent 100%
  );
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(95, 67, 178, .13) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, rgba(0,0,0,.65) 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, rgba(0,0,0,.65) 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing-hero);
  line-height: var(--display-lh);
  color: var(--ink);
}

.hero h1 .g {
  background: linear-gradient(120deg, var(--br) 0%, var(--br3) 60%, var(--br2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.5vw, 17.5px);
  line-height: 1.72;
  color: var(--ink3);
  max-width: 520px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--br6);
  border: 1px solid var(--bdr2);
  border-radius: 100px;
  padding: 5px 14px 5px 7px;
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--body-weight-medium);
  color: var(--br2);
  letter-spacing: .2px;
}

.badge-pulse {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--br5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.badge-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(95, 67, 178, .18);
  animation: badge-pulse-ring 2.2s ease-in-out infinite;
}

.badge-pulse-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--br);
  position: relative;
  z-index: 1;
}

@keyframes badge-pulse-ring {
  0%   { transform: scale(.85); opacity: .8; }
  60%  { transform: scale(1.2);  opacity: 0; }
  100% { transform: scale(.85); opacity: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem; }
  .hero-inner { gap: 1.25rem; }
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s, transform .55s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 67, 178, .07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left .06s, top .06s;
}

@media (max-width: 600px) {
  .cursor-glow { display: none; }
}


.btn-white,
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: var(--body-weight-bold);
  line-height: 1;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background   0.22s ease,
    color        0.22s ease,
    border-color 0.22s ease,
    box-shadow   0.22s ease,
    transform    0.18s ease;
}

.btn-white svg,   .btn-white img,
.btn-primary svg, .btn-primary img,
.btn-secondary svg, .btn-secondary img,
.btn-ghost svg,   .btn-ghost img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn--lg {
  font-size: 15px;
  padding: 15px 30px;
}

.btn--full {
  width: 100%;
}

.btn-white {
  background: #fff;
  color: var(--br);
  border-color: transparent;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
}

.btn-white:hover {
  background: #fff;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.30);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--br);
  color: #fff;
  border-color: var(--br);
  box-shadow: 0 4px 16px rgba(95, 67, 178, 0.26);
}

.btn-primary:hover {
  background: #4a3390;
  border-color: #4a3390;
  box-shadow: 0 6px 22px rgba(95, 67, 178, 0.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--ink2);
  border-color: rgba(95, 67, 178, 0.20);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--br);
  color: var(--br);
  box-shadow: 0 4px 16px rgba(95, 67, 178, 0.12);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 6px 20px rgba(13, 11, 20, 0.22);
  transform: translateY(-1px);
}


.hdr-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: var(--body-weight-bold);
  font-family: var(--font-body);
  padding: 11px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background      0.35s ease,
    color           0.35s ease,
    border-color    0.35s ease,
    box-shadow      0.35s ease,
    backdrop-filter 0.35s ease,
    transform       0.18s ease;
}

.hdr--light .hdr-btn {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.hdr--light .hdr-btn:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(13, 11, 20, 0.22);
  transform: translateY(-1px);
}

.hdr--light.scrolled .hdr-btn {
  background: var(--br);
  color: #fff;
  border-color: var(--br);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 16px rgba(95, 67, 178, 0.26);
}

.hdr--light.scrolled .hdr-btn:hover {
  background: #4a3390;
  border-color: #4a3390;
  box-shadow: 0 6px 22px rgba(95, 67, 178, 0.36);
  transform: translateY(-1px);
}

.hdr--dark .hdr-btn,
.hdr--dark.scrolled .hdr-btn {
  background: var(--br);
  color: #fff;
  border-color: var(--br);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 16px rgba(95, 67, 178, 0.26);
}

.hdr--dark .hdr-btn:hover,
.hdr--dark.scrolled .hdr-btn:hover {
  background: #4a3390;
  border-color: #4a3390;
  box-shadow: 0 6px 22px rgba(95, 67, 178, 0.36);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .btn-white,
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    font-size: 13px;
    padding: 12px 20px;
  }

  .btn--lg {
    font-size: 14px;
    padding: 13px 24px;
  }
}


.vid-player {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #0D0B14;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, .06),
    0 12px 40px rgba(95, 67, 178, .18),
    0 32px 80px rgba(0, 0, 0, .22);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.vid-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 22px;
}

.vid-poster-layer {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  transition: opacity .45s ease;
  z-index: 2;
  pointer-events: none;
}

.vid-poster-layer.hidden {
  opacity: 0;
  pointer-events: none;
}

.vid-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: linear-gradient(145deg, #1a0f3d 0%, #3a2488 45%, #5F43B2 100%);
}

.vid-poster-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 11, 20, .18) 0%,
    rgba(95, 67, 178, .22) 55%,
    rgba(13, 11, 20, .55) 100%
  );
  border-radius: 22px;
}

.vid-play-big {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: opacity .45s ease;
}

.vid-play-big.hidden {
  opacity: 0;
  pointer-events: none;
}

.vid-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .36);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .28s cubic-bezier(.34, 1.56, .64, 1),
    background .22s,
    box-shadow .22s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
}

.vid-play-big:hover .vid-play-btn {
  transform: scale(1.12);
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .38), 0 0 0 12px rgba(255, 255, 255, .06);
}

.vid-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .28));
}

.vid-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 18px 14px;
  z-index: 4;
  background: linear-gradient(transparent, rgba(13, 11, 20, .88) 100%);
  border-radius: 0 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.vid-player:hover .vid-controls,
.vid-player.playing .vid-controls {
  opacity: 1;
  pointer-events: auto;
}

.vid-player:not(.playing) .vid-controls {
  opacity: 0;
  pointer-events: none;
}

.vid-player.playing .vid-controls.controls-hidden {
  opacity: 0;
  pointer-events: none;
}

.vid-player:fullscreen,
.vid-player:-webkit-full-screen {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}
.vid-player:fullscreen video,
.vid-player:-webkit-full-screen video {
  border-radius: 0;
  object-fit: contain;
  flex: 1;
  min-height: 0;
}
.vid-player:fullscreen .vid-controls,
.vid-player:-webkit-full-screen .vid-controls {
  border-radius: 0;
}
.vid-player:fullscreen .vid-controls.controls-hidden,
.vid-player:-webkit-full-screen .vid-controls.controls-hidden {
  opacity: 0;
  pointer-events: none;
}

.vid-progress-wrap {
  position: relative;
  height: 3px;
  border-radius: 100px;
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
  transition: height .18s;
}

.vid-progress-wrap::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -10px; bottom: -10px;
}

.vid-player:hover .vid-progress-wrap { height: 4px; }

.vid-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
  pointer-events: none;
  width: 0%;
}

.vid-progress-thumb {
  position: absolute;
  top: 50%; left: 0%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1.5px rgba(0,0,0,.2), 0 2px 8px rgba(0, 0, 0, .28);
  transition: transform .18s;
  pointer-events: none;
}

.vid-player:hover .vid-progress-thumb { transform: translate(-50%, -50%) scale(1); }

.vid-controls-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vid-ctrl-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  transition: opacity .18s, transform .18s;
  flex-shrink: 0;
}

.vid-ctrl-btn:hover {
  opacity: 1;
  transform: scale(1.12);
}

.vid-ctrl-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vid-vol-group {
  display: none;
  align-items: center;
  gap: 6px;
}

.vid-player[data-audio] .vid-vol-group { display: flex; }


.vid-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 62px;
  height: 3px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .28);
  outline: none;
  cursor: pointer;
}

.vid-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .28);
  cursor: pointer;
}

.vid-vol-slider::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
}

.vid-time {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--body-weight-medium);
  color: rgba(255, 255, 255, .72);
  font-variant-numeric: tabular-nums;
  margin-left: 2px;
  letter-spacing: .3px;
  flex: 1;
}

.vid-ctrl-btn.vid-fs { margin-left: auto; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .vid-play-btn { width: 60px; height: 60px; }
  .vid-vol-slider { width: 44px; }
  .vid-time { display: none; }
}