﻿
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');


:root {
  --blue:        #0067b8;   /* Microsoft blue */
  --blue-dark:   #005196;
  --blue-light:  #e8f1fb;
  --ink:         #1a1a1a;
  --ink-2:       #3d3d3d;
  --ink-3:       #6e6e6e;
  --ink-4:       #9e9e9e;
  --border:      #e0e0e0;
  --border-2:    #ebebeb;
  --surface:     #ffffff;
  --surface-2:   #f5f5f5;
  --surface-3:   #fafafa;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   22px;

  --shadow-xs:   0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.11);

  --ease:        cubic-bezier(.22,.61,.36,1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overscroll-behavior: none; }
body { font-family: var(--font); color: var(--ink); background: var(--surface); overflow-x: hidden; line-height: 1.6; overscroll-behavior: none; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }


.btn-filled {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s;
  white-space: nowrap;
}
.btn-filled:hover { background: #2e2e2e; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-filled i { width: 17px; height: 17px; }

.btn-filled.btn-white {
  background: #fff; color: var(--blue);
}
.btn-filled.btn-white:hover { background: #f0f0f0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  color: var(--ink-2); font-size: 15px; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--ink);
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s, transform .15s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--ink-3); background: var(--surface-2); transform: translateY(-1px); }

.btn-outline.btn-outline-white {
  color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-outline.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-lg i { width: 18px; height: 18px; }


.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}

/* Nav links white on dark hero, switch to dark on scroll */
.header:not(.scrolled) .nav-item,
.header:not(.scrolled) .btn-ghost {
  color: rgba(255,255,255,.75);
}
.header:not(.scrolled) .nav-item:hover,
.header:not(.scrolled) .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.header:not(.scrolled) .brand {
  color: #fff;
}
.header:not(.scrolled) .brand img {
  border-color: rgba(255,255,255,.35);
}
.header:not(.scrolled) .btn-filled {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.header:not(.scrolled) .btn-filled:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}
.header:not(.scrolled) .burger-icon span {
  background: #fff;
}

.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  height: 66px;
  display: flex; align-items: center; gap: 40px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 800; color: var(--ink);
  flex-shrink: 0;
}
.brand img { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.15); }
.brand--white { color: #fff; }

.nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: 8px;
}
.nav-item {
  padding: 7px 14px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-3);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav-item:hover { background: var(--surface-2); color: var(--ink); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ── Burger button ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 40px; height: 40px;
  padding: 0;
  margin-left: auto;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .2s, border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.burger::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}
.header.scrolled .burger {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.1);
}
.burger:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
  transform: scale(1.05);
}
.header.scrolled .burger:hover {
  background: rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.18);
}

/* Three-bar icon - using a single SVG approach via spans */
.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}
.burger-icon span {
  display: block;
  width: 18px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .32s cubic-bezier(.22,.61,.36,1),
              opacity   .22s ease,
              width     .28s cubic-bezier(.22,.61,.36,1);
}
.header.scrolled .burger-icon span { background: var(--ink); }

/* open state - morphs to X */
.burger.is-open .burger-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.is-open .burger-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger.is-open .burger-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile drawer - liquid glass panel ── */
.mobile-drawer {
  display: flex;
  flex-direction: column;

  /* Positioning: drop below the header */
  position: fixed;
  top: 66px;
  left: 12px;
  right: 12px;
  z-index: 899;

  /* Liquid glass surface */
  background: rgba(10, 10, 24, 0.55);
  backdrop-filter: blur(48px) saturate(220%) brightness(1.18);
  -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(1.18);

  /* Shape */
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-top-color: rgba(255,255,255,.32);

  /* Depth */
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.28),
    inset 0 -1px 0 rgba(0,0,0,.2),
    inset 1px 0 0 rgba(255,255,255,.06),
    inset -1px 0 0 rgba(255,255,255,.06),
    0 32px 80px rgba(0,0,0,.45),
    0  8px 24px rgba(0,0,0,.3);

  /* Hide / show via clip-path + opacity for premium feel */
  clip-path: inset(0 0 100% 0 round 20px);
  opacity: 0;
  pointer-events: none;
  transition:
    clip-path .42s cubic-bezier(.22,.61,.36,1),
    opacity   .32s ease;

  padding: 10px 14px 18px;
  overflow: hidden;
}

/* Top refraction sheen */
.mobile-drawer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.12) 0%,
    rgba(255,255,255,.04) 50%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Subtle prismatic edge - bottom */
.mobile-drawer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(120,160,255,.35) 30%,
    rgba(200,140,255,.35) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* open state */
.mobile-drawer.open {
  clip-path: inset(0 0 0% 0 round 20px);
  opacity: 1;
  pointer-events: auto;
}

/* ── Drawer nav items ── */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 4px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: 12px;
  letter-spacing: .01em;
  transition: background .18s, color .18s, transform .18s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.drawer-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.07);
  opacity: 0;
  border-radius: inherit;
  transition: opacity .18s;
}
.drawer-item:hover {
  color: #fff;
  transform: translateX(4px);
}
.drawer-item:hover::before { opacity: 1; }

.drawer-item:active {
  transform: scale(.98) translateX(4px);
}

/* Staggered entrance animation */
.mobile-drawer.open .drawer-nav .drawer-item {
  animation: drawerItemIn .38s cubic-bezier(.22,.61,.36,1) both;
}
.mobile-drawer.open .drawer-nav .drawer-item:nth-child(1) { animation-delay: .06s; }
.mobile-drawer.open .drawer-nav .drawer-item:nth-child(2) { animation-delay: .10s; }
.mobile-drawer.open .drawer-nav .drawer-item:nth-child(3) { animation-delay: .14s; }
.mobile-drawer.open .drawer-nav .drawer-item:nth-child(4) { animation-delay: .18s; }

@keyframes drawerItemIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Divider ── */
.drawer-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.15) 20%,
    rgba(255,255,255,.15) 80%,
    transparent 100%
  );
  margin: 6px 0 10px;
}

/* ── CTA section at bottom ── */
.drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 2px 4px;
}

.drawer-cta-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  transition: background .18s, color .18s, border-color .18s;
  text-decoration: none;
}
.drawer-cta-signin:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-top-color: rgba(255,255,255,.42);
  border-radius: 12px;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  transition: background .2s, transform .18s, box-shadow .2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 4px 16px rgba(0,0,0,.3);
  text-decoration: none;
}
.drawer-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, transparent 100%);
  pointer-events: none;
}
.drawer-btn:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 8px 24px rgba(0,0,0,.35);
}
.drawer-btn:active {
  transform: scale(.98);
}

/* Stagger the CTA items too */
.mobile-drawer.open .drawer-cta-signin {
  animation: drawerItemIn .38s cubic-bezier(.22,.61,.36,1) .22s both;
}
.mobile-drawer.open .drawer-btn {
  animation: drawerItemIn .38s cubic-bezier(.22,.61,.36,1) .27s both;
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
}


.hero {
  padding: 160px 0 100px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13.5px; font-weight: 600;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-eyebrow i { width: 15px; height: 15px; }

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-3);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-trust {
  display: inline-flex; flex-wrap: wrap; align-items: center;
  gap: 10px 20px;
  justify-content: center;
  font-size: 13.5px; font-weight: 500; color: var(--ink-3);
}
.hero-trust i { width: 15px; height: 15px; color: var(--blue); vertical-align: -2px; margin-right: 4px; }
.divider-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--border); display: inline-block;
}


.stats-band {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1 1 160px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 16px 24px; text-align: center;
}
.stat-num {
  font-size: 2.4rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
  line-height: 1;
}
.stat-num small { font-size: .9rem; font-weight: 600; color: var(--ink-3); }
.stat-lbl { font-size: 13px; font-weight: 500; color: var(--ink-4); }
.stat-sep {
  width: 1px; height: 48px; background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) { .stat-sep { display: none; } }


.section { padding: 100px 0; }
.section--gray { background: var(--surface-3); }

.section-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--ink); margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem; color: var(--ink-3); max-width: 560px;
  line-height: 1.75; margin-bottom: 60px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #c9d9f5;
}

.feat-card--large {
  grid-column: span 2;
}
@media (max-width: 900px) { .feat-card--large { grid-column: span 2; } }
@media (max-width: 600px) { .feat-card--large { grid-column: span 1; } }

.feat-card--accent {
  background: var(--surface-2);
}

.feat-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-icon i { width: 22px; height: 22px; color: var(--blue); }

.feat-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feat-card p  { font-size: .95rem; color: var(--ink-3); line-height: 1.7; }

.feat-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px;
}
.feat-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .925rem; color: var(--ink-2);
}
.feat-list li i { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }

.perf-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.perf-pills span {
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}


.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .sec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sec-grid { grid-template-columns: 1fr; } }

.sec-card {
  background: var(--surface);
  padding: 32px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: background .2s;
}
.sec-card:hover { background: var(--blue-light); }

.sec-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.sec-icon i { width: 20px; height: 20px; color: var(--blue); }

.sec-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.sec-card p  { font-size: .875rem; color: var(--ink-3); line-height: 1.65; }

.compliance-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.compliance-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: var(--surface);
}
.compliance-badge i { width: 14px; height: 14px; color: var(--blue); }

.steps {
  display: flex; flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: var(--surface-3); }

.step-left { display: flex; justify-content: center; }
.step-num {
  font-size: 2rem; font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.04em;
  /* outlined text trick */
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
  line-height: 1;
}
.step-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.step-body p  { font-size: .9rem; color: var(--ink-3); line-height: 1.7; }

.step-icon {
  display: flex; justify-content: center; align-items: center;
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  margin-left: auto;
}
.step-icon i { width: 24px; height: 24px; color: var(--blue); }

@media (max-width: 640px) {
  .step { grid-template-columns: 50px 1fr; gap: 16px; padding: 24px 20px; }
  .step-icon { display: none; }
  .step-num { font-size: 1.5rem; }
}


.faq-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; gap: 40px; }
  .faq-title, .faq-sub { max-width: 100%; }
}

.faq-title  { margin-bottom: 12px; }
.faq-sub    { font-size: .95rem; max-width: 100%; margin-bottom: 0; }
.faq-sub a  { color: var(--blue); }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1rem; font-weight: 600; color: var(--ink);
  cursor: pointer;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); }
.faq-q i { width: 18px; height: 18px; color: var(--ink-4); flex-shrink: 0; transition: transform .3s var(--ease); }
details[open] .faq-q i { transform: rotate(45deg); }

.faq-a {
  padding: 0 4px 20px;
  font-size: .95rem; color: var(--ink-3); line-height: 1.75;
}


.cta-section {
  background: #f0f0f0;
  padding: 48px 0;
}
.cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 24px;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(32px) saturate(180%) brightness(1.15);
  -webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.15);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(0,0,0,.06),
    0 24px 64px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}
/* subtle top sheen */
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
  position: relative;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(0,0,0,.5);
  margin-bottom: 36px;
  position: relative;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}

/* CTA primary button - solid dark */
.cta-actions .btn-filled.btn-white {
  background: #111;
  color: #fff;
  border: none;
  font-weight: 700;
}
.cta-actions .btn-filled.btn-white:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* CTA ghost button - dark glass */
.cta-actions .btn-outline.btn-outline-white {
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.7);
  border: 1px solid rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cta-actions .btn-outline.btn-outline-white:hover {
  background: rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.3);
  transform: translateY(-2px);
}


.footer {
  background: #111;
  color: #aaa;
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 28px;
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: .875rem; color: #777; line-height: 1.7; max-width: 240px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }

.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col h5 {
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #fff; margin-bottom: 4px;
}
.footer-col a {
  font-size: .875rem; color: #888;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 12px;
}
.footer-bottom p { font-size: .8125rem; color: #555; }
.footer-badges {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.footer-badges span {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: #555;
}
.footer-badges i { width: 13px; height: 13px; color: #0067b8; }


[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}


[data-lucide] {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}


.hero-preview {
  padding: 0 0 60px;
}
.preview-wrapper {
  position: relative;
  will-change: transform;
}
.preview-mockup {
  max-width: 960px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 80px rgba(0,0,0,.2));
}
.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.window-bar {
  display: flex; gap: 7px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.window-bar span {
  width: 12px; height: 12px; border-radius: 50%;
  background: #ddd;
}
.window-content {
  aspect-ratio: 16 / 10;
  background: var(--surface-3);
  overflow: hidden;
  display: block;
  position: relative;
}


.video-section {
  padding: 100px 0 120px;
  background: var(--surface-3);
}
.video-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.video-wrapper {
  max-width: 920px;
  margin: 0 auto;
}


.mockup-screenshot {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.video-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  will-change: transform;
}
.video-frame video {
  width: 100%;
  display: block;
  border-radius: inherit;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Play overlay â€” shown if video fails or on first interaction */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.video-frame:hover .video-play-overlay,
.video-play-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--ease), background .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.play-btn:hover { transform: scale(1.1); background: #fff; }
.play-btn i { width: 28px; height: 28px; color: var(--blue); margin-left: 3px; }
.play-btn svg { width: 28px; height: 28px; color: var(--blue); margin-left: 3px; }


.spotlight-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.spotlight:hover .spotlight-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}




.spotlight-section { padding: 100px 0; }
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.spotlight:last-child { margin-bottom: 0; }
.spotlight--reverse {
  direction: rtl;
}
.spotlight--reverse > * {
  direction: ltr;
}

.spotlight-content { max-width: 480px; }
.spotlight-title {
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 16px; color: var(--ink);
}
.spotlight-text {
  font-size: 1.05rem; color: var(--ink-3);
  line-height: 1.75; margin-bottom: 24px;
}
.spotlight-list {
  display: flex; flex-direction: column; gap: 10px;
}
.spotlight-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: var(--ink-2);
}
.spotlight-list li i {
  width: 16px; height: 16px;
  color: var(--blue); flex-shrink: 0;
}

.spotlight-media {
  position: relative;
  will-change: transform;
}
.spotlight-placeholder {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .spotlight {
    grid-template-columns: 1fr;
    gap: 40px; margin-bottom: 80px;
  }
  .spotlight--reverse { direction: ltr; }
}

/* 
   PARALLAX â€” controlled via JS
 */
[data-parallax] {
  transition: transform .15s ease-out;
}

/* 
   MICRO-INTERACTIONS & SMOOTH TRANSITIONS
 */

/* Smooth page reveal on load - non-hero content fades in gently */
body {
  animation: pageReveal 0.4s ease;
}
@keyframes pageReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
}

/* Button ripple effect on click */
.btn-filled, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-filled::after, .btn-outline::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  transition: width .4s, height .4s;
}
.btn-filled:active::after, .btn-outline:active::after {
  width: 300px;
  height: 300px;
}

/* Link underline animation */
.faq-sub a, .spotlight-list a {
  position: relative;
  display: inline-block;
}
.faq-sub a::after, .spotlight-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.faq-sub a:hover::after, .spotlight-list a:hover::after {
  width: 100%;
}

/* Feature card stagger hover effect */
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,103,184,.02), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  border-radius: inherit;
}
.feat-card:hover::before {
  opacity: 1;
}

/* Smooth icon rotation on FAQ toggle */
.faq-q i {
  transition: transform .35s var(--ease), color .2s;
}
details[open] .faq-q i {
  transform: rotate(45deg);
  color: var(--blue);
}

/* Section fade-in as you scroll */
.section {
  animation: sectionFadeIn 0.8s var(--ease);
}
@keyframes sectionFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navbar blur enhancement on scroll */
.header.scrolled {
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
}

/* Stats counter animation (optional - you can add JS for this) */
.stat-num {
  display: inline-block;
  transition: transform .2s var(--ease);
}
.stat-item:hover .stat-num {
  transform: scale(1.08);
}

/* Smooth image load fade-in */
img {
  animation: imageFadeIn 0.4s ease-out;
}
@keyframes imageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Spotlight media lift on hover */
.spotlight-media {
  transition: transform .4s var(--ease);
}
.spotlight:hover .spotlight-media {
  transform: translateY(-8px);
}

/* Video play button pulse */
.placeholder-video i {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .85; }
}

/* Mobile drawer animation is handled by clip-path transition above */

/* Burger icon span transform-origin set inline in burger-icon styles above */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-parallax] {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-filled, .btn-outline {
    border-width: 2px;
  }
  .feat-card, .sec-card {
    border-width: 2px;
  }
}

/* Dark mode support (optional - for system preference) */
@media (prefers-color-scheme: dark) {
  /* Uncomment if you want auto dark mode
  :root {
    --ink: #e0e0e0;
    --ink-2: #c0c0c0;
    --ink-3: #a0a0a0;
    --surface: #121212;
    --surface-2: #1e1e1e;
    --surface-3: #2a2a2a;
    --border: #333;
  }
  */
}





.hero--cinema {
  position: relative;
  width: 100%;
  /* --vh is set by JS to window.innerHeight * 0.01, fixing mobile browser chrome offset */
  height: calc(var(--vh, 1vh) * 100);
  /* dvh overrides for browsers that support it natively (Chrome 108+, Safari 16+) */
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* ── Background video ── */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Center and cover - guaranteed fill regardless of aspect ratio */
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
  opacity: .38;
}
/* Single dark scrim - no gradients, just a clean tint */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
}

/* ── Inner layout ── */
.hero-cinema-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
}

/* ── Left: text ── */
.hero-cinema-text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}

.hero-cinema-title {
  font-size: clamp(3.6rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-cinema-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  font-weight: 400;
}

/* ── Buttons ── */
.hero-cinema-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary - fully liquid glass */
.btn-cinema-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(24px) saturate(200%) brightness(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(1.15);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.3),
    inset 0 -1px 0 rgba(0,0,0,.15),
    0 8px 32px rgba(0,0,0,.25);
  transition: background .25s, border-color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* extra glass sheen stripe */
.btn-cinema-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}
.btn-cinema-primary:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.1),
    0 12px 40px rgba(0,0,0,.35);
}

/* Ghost - liquid glass */
.btn-cinema-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-cinema-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}

/* Ghost - liquid glass */
.btn-cinema-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: background .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn-cinema-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

/* ── Right: floating cards ── */
.hero-cinema-cards {
  position: relative;
  height: 520px;
  pointer-events: none;
}

/* Card base - clean dark glass, no glows */
.cinema-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 2px 0 rgba(255,255,255,.1) inset,
    0 20px 60px rgba(0,0,0,.6);
  background: rgba(20,20,20,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Subtle glass sheen - top edge highlight only */
.cinema-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.22);
  z-index: 2;
}

.cinema-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  animation: none;
}

/* Card positions */
.cinema-card--a {
  width: 230px; height: 180px;
  top: 0; left: 30px;
  transform: rotate(-2.5deg);
  animation: driftA 7s ease-in-out infinite;
}
.cinema-card--b {
  width: 260px; height: 200px;
  top: 20px; right: 0;
  transform: rotate(2deg);
  animation: driftB 8s ease-in-out infinite 1.2s;
}
.cinema-card--c {
  width: 220px; height: 175px;
  top: 210px; left: 0;
  transform: rotate(-1deg);
  animation: driftC 9s ease-in-out infinite 0.6s;
}
.cinema-card--d {
  width: 250px; height: 190px;
  bottom: 0; right: 10px;
  transform: rotate(1.8deg);
  animation: driftA 7.5s ease-in-out infinite 1.8s;
}

@keyframes driftA {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50%       { transform: rotate(-2.5deg) translateY(-16px); }
}
@keyframes driftB {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%       { transform: rotate(2deg) translateY(-12px); }
}
@keyframes driftC {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50%       { transform: rotate(-1deg) translateY(-20px); }
}

/* ── Scroll cue ── */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.25);
  margin: 0 auto;
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-cinema-inner { padding: 0 32px; gap: 32px; }
  .hero-cinema-cards { height: 420px; }
  .cinema-card--a { width: 195px; height: 152px; }
  .cinema-card--b { width: 218px; height: 168px; }
  .cinema-card--c { width: 185px; height: 145px; }
  .cinema-card--d { width: 210px; height: 158px; }
}

@media (max-width: 800px) {
  .hero-cinema-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
    justify-items: center;
    text-align: center;
  }
  .hero-cinema-text { max-width: 100%; }
  .hero-cinema-actions { justify-content: center; }
  .hero-cinema-cards { width: 100%; height: 220px; }
  .cinema-card--a { width: 120px; height: 95px;  top: 0;    left: 2%; }
  .cinema-card--b { width: 138px; height: 108px; top: 0;    right: 2%; }
  .cinema-card--c { width: 115px; height: 90px;  bottom: 0; left: 20%; }
  .cinema-card--d { width: 130px; height: 100px; bottom: 0; right: 8%; }
}

/* Remove scroll cue styles */
.hero-scroll-cue { display: none; }


/* 
   PREMIUM SCROLL EFFECTS - VoteStack
   Luxury reveal, parallax, stagger, counters, shimmer
    */

/* 
   REVEAL VARIANTS - override base [data-aos]
   Each variant starts from a different position/state
 */

/* Fade + rise (default - already defined, enhanced here) */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .7s cubic-bezier(.16,1,.3,1),
    transform .7s cubic-bezier(.16,1,.3,1);
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade from left */
[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(-40px);
}
[data-aos="fade-left"].aos-in {
  opacity: 1;
  transform: translateX(0);
}

/* Fade from right */
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(40px);
}
[data-aos="fade-right"].aos-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up (for cards, images) */
[data-aos="scale-up"] {
  opacity: 0;
  transform: scale(.92) translateY(20px);
}
[data-aos="scale-up"].aos-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Flip in (for stat numbers, step numbers) */
[data-aos="flip-up"] {
  opacity: 0;
  transform: perspective(600px) rotateX(18deg) translateY(24px);
}
[data-aos="flip-up"].aos-in {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

/* Blur in (luxury feel) */
[data-aos="blur-in"] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
}
[data-aos="blur-in"].aos-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* 
   STAGGER CHILDREN
   Wrap a group in [data-stagger] - children get auto delays
 */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .6s cubic-bezier(.16,1,.3,1),
    transform .6s cubic-bezier(.16,1,.3,1);
}
[data-stagger].stagger-in > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].stagger-in > *:nth-child(2) { transition-delay: 80ms; }
[data-stagger].stagger-in > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger].stagger-in > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger].stagger-in > *:nth-child(5) { transition-delay: 320ms; }
[data-stagger].stagger-in > *:nth-child(6) { transition-delay: 400ms; }
[data-stagger].stagger-in > * {
  opacity: 1;
  transform: translateY(0);
}

/* 
   SECTION TITLE LINE REVEAL
   Wrap words in .reveal-line spans for a premium wipe effect
 */
.reveal-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal-line.revealed > span {
  transform: translateY(0);
}

/* 
   SHIMMER / SKELETON LOADING LINE
   Add to any element for a luxury shimmer as it enters
 */
@keyframes shimmerSlide {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer-enter {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,103,184,.08) 40%,
    rgba(0,103,184,.04) 60%,
    transparent 100%
  );
  background-size: 800px 100%;
  animation: shimmerSlide 1.2s ease-in-out;
}

/* 
   SCROLL PROGRESS BAR - top of page
 */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* 
   FLOATING ORBS - ambient depth in sections
   These are purely decorative blurred circles
 */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  filter: blur(60px);
  transition: opacity 1.2s ease;
  z-index: 0;
}
.orb--blue   { background: rgba(0,103,184,.12); }
.orb--light  { background: rgba(56,189,248,.08); }
.orb.orb-visible { opacity: 1; }

/* 
   STAT ITEMS - counter pop
 */
.stat-item[data-counted] .stat-num {
  transition: transform .3s var(--ease);
}
.stat-item[data-counted].count-done .stat-num {
  animation: countPop .4s cubic-bezier(.16,1,.3,1);
}
@keyframes countPop {
  0%   { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* 
   FEATURE CARDS - scroll-in with stagger + 3D tilt on hover
 */
.feat-card {
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  position: relative;
}
/* 3D tilt is applied via JS inline style - just make sure transition is set */
.feat-card {
  transition:
    transform .3s var(--ease),
    box-shadow .3s var(--ease),
    border-color .3s var(--ease),
    opacity .7s cubic-bezier(.16,1,.3,1);
}

/* 
   SECURITY CARDS - slide-in from sides alternately
 */
.sec-card {
  transition:
    background .25s var(--ease),
    opacity .65s cubic-bezier(.16,1,.3,1),
    transform .65s cubic-bezier(.16,1,.3,1);
}

/* 
   STEPS - left border reveal animation
 */
.step {
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.step.step-revealed::before {
  transform: scaleY(1);
}

/* 
   SPOTLIGHT SECTIONS - slide in from opposite sides
 */
.spotlight-content {
  transition:
    opacity .8s cubic-bezier(.16,1,.3,1),
    transform .8s cubic-bezier(.16,1,.3,1);
}
.spotlight-media {
  transition:
    opacity .8s cubic-bezier(.16,1,.3,1),
    transform .8s cubic-bezier(.16,1,.3,1);
}

/* initial hidden state for spotlights */
.spotlight-content[data-slide="left"] {
  opacity: 0;
  transform: translateX(-50px);
}
.spotlight-content[data-slide="right"] {
  opacity: 0;
  transform: translateX(50px);
}
.spotlight-media[data-slide="right"] {
  opacity: 0;
  transform: translateX(50px);
}
.spotlight-media[data-slide="left"] {
  opacity: 0;
  transform: translateX(-50px);
}
/* revealed */
.spotlight-content.slide-in,
.spotlight-media.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* 
   SECTION LABEL - expand width reveal
 */
.section-label {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.section-label::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface);
  transform: translateX(-101%);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.section-label.label-revealed::after {
  transform: translateX(101%);
}

/* 
   FAQ ITEMS - cascade open reveal
 */
.faq-item {
  transition: opacity .5s, transform .5s;
}

/* 
   CTA - subtle breathing pulse on the card
 */
.cta-inner {
  animation: ctaBreathe 5s ease-in-out infinite;
}
@keyframes ctaBreathe {
  0%, 100% { box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(0,0,0,.06),
    0 24px 64px rgba(0,0,0,.12); }
  50% { box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(0,0,0,.06),
    0 32px 80px rgba(0,0,0,.18); }
}

/* 
   COMPLIANCE BADGES - pop in one by one
 */
.compliance-badge {
  opacity: 0;
  transform: scale(.8) translateY(10px);
  transition:
    opacity .5s cubic-bezier(.16,1,.3,1),
    transform .5s cubic-bezier(.16,1,.3,1);
}
.compliance-badge.badge-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 
   HERO TEXT - individual word reveal (applied in JS)
 */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  transition:
    opacity .6s cubic-bezier(.16,1,.3,1),
    transform .6s cubic-bezier(.16,1,.3,1);
}
.hero-word.word-in {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* 
   VIDEO FRAME - scroll-in reveal with scale
 */
.video-frame {
  opacity: 0;
  transform: scale(.96) translateY(30px);
  transition:
    opacity .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1),
    box-shadow .4s var(--ease);
}
.video-frame.video-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 
   HORIZONTAL SCROLL INDICATOR LINE UNDER SECTION TITLES
 */
.section-title-line {
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 8px 0 0 0;
  transition: width .8s cubic-bezier(.16,1,.3,1);
  border-radius: 2px;
}
.section-title-line.line-expanded {
  width: 60px;
}

/* 
   REDUCED MOTION - all scroll effects off
 */
@media (prefers-reduced-motion: reduce) {
  [data-aos],
  [data-stagger] > *,
  .reveal-line > span,
  .spotlight-content,
  .spotlight-media,
  .section-label::after,
  .step::before,
  .compliance-badge,
  .hero-word,
  .video-frame,
  .feat-card,
  .sec-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
  .cta-inner { animation: none; }
  .scroll-progress { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   HERO SKELETON LOADER
   Covers the cinema hero until the bg video/poster is ready.
═══════════════════════════════════════════════════════════ */

@keyframes hsk-shimmer {
  0%   { background-position: -700px 0; }
  100% { background-position:  700px 0; }
}

/* Shimmer box - dark on black bg */
.hsk-box {
  display: block;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.07) 25%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.07) 75%
  );
  background-size: 700px 100%;
  animation: hsk-shimmer 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* Overlay - sits inside .hero--cinema, fills it exactly */
.hero-skeleton {
  position: absolute;
  inset: 0;
  z-index: 5;              /* above video (z:0) and overlay (z:0), below content (z:1) */
  background: #0a0a0a;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* fade out */
  transition: opacity .5s ease, visibility .5s ease;
}
.hero-skeleton.hsk-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Inner mirrors .hero-cinema-inner layout */
.hsk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Text column */
.hsk-text {
  display: flex;
  flex-direction: column;
}

/* Cards column - mirrors .hero-cinema-cards */
.hsk-cards {
  position: relative;
  height: 520px;
  pointer-events: none;
}

.hsk-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
/* shimmer sweep on each card */
.hsk-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.1) 50%,
    transparent 100%
  );
  background-size: 700px 100%;
  animation: hsk-shimmer 1.6s ease-in-out infinite;
}

/* Match exact card positions from .cinema-card--* */
.hsk-card--a { width: 230px; height: 180px; top: 0;   left: 30px; }
.hsk-card--b { width: 260px; height: 200px; top: 20px; right: 0; }
.hsk-card--c { width: 220px; height: 175px; top: 210px; left: 0; }
.hsk-card--d { width: 250px; height: 190px; bottom: 0; right: 10px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hsk-inner    { padding: 0 32px; gap: 32px; }
  .hsk-cards    { height: 420px; }
  .hsk-card--a  { width: 195px; height: 152px; }
  .hsk-card--b  { width: 218px; height: 168px; }
  .hsk-card--c  { width: 185px; height: 145px; }
  .hsk-card--d  { width: 210px; height: 158px; }
}

@media (max-width: 800px) {
  .hsk-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }
  .hsk-text  { align-items: center; }
  .hsk-text > div[style*="display:flex"] { justify-content: center; }
  .hsk-cards { width: 100%; height: 220px; }
  .hsk-card--a { width: 120px; height: 95px;  top: 0;    left: 2%; }
  .hsk-card--b { width: 138px; height: 108px; top: 0;    right: 2%; }
  .hsk-card--c { width: 115px; height: 90px;  bottom: 0; left: 20%; }
  .hsk-card--d { width: 130px; height: 100px; bottom: 0; right: 8%; }
}

@media (max-width: 480px) {
  /* On very small screens, hide cards - text skeleton only */
  .hsk-cards   { display: none; }
  .hsk-inner   { grid-template-columns: 1fr; }
}
