

/* Orange grid overlay background (inspired by blueprint grid) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    /* fine grid */
    linear-gradient(to right, rgba(255,140,26,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,140,26,.04) 1px, transparent 1px),
    /* major grid */
    linear-gradient(to right, rgba(255,106,0,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,106,0,.08) 1px, transparent 1px),
    /* subtle spark points */
    radial-gradient(circle at 20% 30%, rgba(255,176,0,.10), transparent 36%),
    radial-gradient(circle at 75% 55%, rgba(255,140,26,.08), transparent 38%),
    radial-gradient(circle at 50% 85%, rgba(255,106,0,.06), transparent 45%),
    radial-gradient(220px 220px at var(--grid-spot-x) var(--grid-spot-y), rgba(255,140,26,.12), transparent 62%);
  background-size:
    44px 44px,
    44px 44px,
    220px 220px,
    220px 220px,
    100% 100%,
    100% 100%,
    100% 100%;
  background-position:
    center,
    center,
    center,
    center,
    center,
    center,
    center;
  opacity:.85;
  filter: saturate(1.02);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(1200px 700px at 50% 10%, rgba(0,0,0,.10), rgba(0,0,0,.65)),
    radial-gradient(900px 500px at 50% 100%, rgba(255,140,26,.05), transparent 60%);
  mix-blend-mode: normal;
}
/* =========================
   UMV Landing (Futuristic)
   Orange-first theme (more orange than yellow)
   ========================= */

:root{
  --bg: #050a14;

  /* Warm / Orange palette (orange dominant) */
  --umv-a: #ff6a00;  /* orange */
  --umv-b: #ff8c1a;  /* orange-light */
  --umv-c: #ffb000;  /* yellow accent */

  --text: #eef5ff;
  --muted: rgba(238,245,255,.72);
  --muted2: rgba(238,245,255,.55);
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --container: 1160px;
  --header-h: 78px;
  --grid-spot-x: 50%;
  --grid-spot-y: 50%;
}

::selection{
  background: var(--umv-b);
  color: #111;
}

::-moz-selection{
  background: var(--umv-b);
  color: #111;
}

*{ box-sizing:border-box; }
html,body{ height:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 30% -10%, rgba(255,106,0,.12), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(255,140,26,.08), transparent 55%),
    radial-gradient(900px 520px at 60% 120%, rgba(255,204,51,.02), transparent 60%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
  padding-top: var(--header-h);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

/* Cursor-follow orb (filled, orange-first) */
.cursor-orb{
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 10000;
  opacity: .98;
  transform: translate3d(-999px, -999px, 0);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,140,26,1), rgba(255,106,0,.92) 55%, rgba(255,106,0,.30) 72%, rgba(255,106,0,0) 100%);
  filter: drop-shadow(0 0 10px rgba(255,106,0,.55));
  mix-blend-mode: screen;
  will-change: transform;
}

/* Random soft grid pulse */
.grid-pulse-layer{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(240px 240px at var(--grid-pulse-x, 50%) var(--grid-pulse-y, 50%), rgba(255,140,26,.32), transparent 65%);
  mix-blend-mode: screen;
  filter: blur(2px);
}
.grid-pulse-layer.pulse{
  animation: grid-pulse 3s ease-in-out;
}

@keyframes grid-pulse{
  0%{ opacity: 0; }
  35%{ opacity: 0.75; }
  100%{ opacity: 0; }
}

/* Header / Nav (never collapses) */
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(5,10,20,.82), rgba(5,10,20,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 0;
  flex-wrap: wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.brand-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--umv-a), var(--umv-c));
  box-shadow: 0 0 24px rgba(255,106,0,.28);
}
.nav-links{
  display:flex;
  gap:12px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
  justify-content:center;
}
.nav-links a{
  color: var(--muted);
  font-weight:700;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn.small{ padding: 10px 12px; font-size:13px; }
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(135deg, var(--umv-a), var(--umv-b));
  color:#0a0f18;
  box-shadow: 0 14px 40px rgba(255,106,0,.08);
}
.btn.primary:hover{ transform: translateY(-1px); }

.btn.ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,106,0,.35);
  color: rgba(255,140,26,.95);
}
.btn.ghost:hover{ background: rgba(255,255,255,.06); }

/* Hero */
.hero{
  position:relative;
  padding: 56px 0 40px;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,106,0,.12), transparent 60%),
    radial-gradient(700px 500px at 85% 20%, rgba(255,140,26,.08), transparent 60%),
    url("assets/wallpaper.jpg") center/cover no-repeat;
  opacity:.18;
  filter: saturate(1.15);
  pointer-events:none;
  transform: scale(1.02);
  animation: hero-breathe 12s ease-in-out infinite;
  will-change: transform, background-position;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items:center;
}
.kicker{
  color: rgba(255,140,26,.95);
  font-weight:900;
  font-size:13px;
  letter-spacing:.35px;
  text-transform:uppercase;
}
.hero-title{
  margin:10px 0 12px;
  position:relative;
  line-height:1.05;
}
.hero-title-bg{
  position:absolute;
  inset:auto 0 0 0;
  font-size: clamp(56px, 8.5vw, 120px);
  font-weight:900;
  opacity:.14;
  transform: translateY(8px);
  letter-spacing:-2px;
  user-select:none;
}
.hero-title-fg{
  position:relative;
  font-size: clamp(34px, 5vw, 70px);
  font-weight:900;
  letter-spacing:-1.6px;
}
.hero-subtitle{
  color: var(--muted);
  max-width: 56ch;
  line-height:1.75;
  font-size:16px;
}
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-stats{
  margin-top:18px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.stat{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.stat-num{ font-weight:900; font-size:15px; }
.stat-label{ color: var(--muted2); font-size:12px; margin-top:2px; }

.hero-visual{
  display:flex;
  justify-content:flex-end;
  flex-direction:column;
  gap:14px;
}
.hero-card{
  position:relative;
  width:min(460px, 100%);
  border-radius: 26px;
  overflow:hidden;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.hero-card img{ width:100%; height:auto; transform: scale(1.02); }
.glow{
  position:absolute;
  inset:-40px -40px auto auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(255,106,0,.55), transparent 60%),
              radial-gradient(circle at 60% 60%, rgba(255,140,26,.40), transparent 65%),
              radial-gradient(circle at 60% 30%, rgba(255,204,51,.26), transparent 62%);
  filter: blur(14px);
  opacity:.9;
  pointer-events:none;
}
.hero-note{
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.hero-note .pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
  color: rgba(255,140,26,.95);
  background: rgba(255,106,0,.06);
  border:1px solid rgba(255,106,0,.08);
  margin-bottom: 8px;
}
.hero-note p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
  font-size:13px;
}
.hero-note code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: rgba(238,245,255,.86);
}

/* Sections */
.section{ padding: 70px 0; }
.section-muted{
  background: radial-gradient(700px 400px at 50% 0%, rgba(255,106,0,.09), transparent 65%),
              rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  text-align:center;
  margin-bottom: 28px;
}
.section-title{
  margin:0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing:-.8px;
}
.section-subtitle{
  margin:10px auto 0;
  color: var(--muted);
  max-width: 62ch;
  line-height:1.7;
  font-size:15px;
}

/* Cards */
.grid{ display:grid; gap: 18px; }
.cards{ grid-template-columns: repeat(3, 1fr); }
.card{
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  min-height: 210px;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,106,0,.35);
  background: rgba(255,255,255,.05);
}
.card-media{
  height: 88px;
  border-radius: 14px;
  background:
    radial-gradient(220px 120px at 20% 20%, rgba(255,106,0,.26), transparent 60%),
    radial-gradient(220px 120px at 80% 80%, rgba(255,140,26,.16), transparent 60%),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  padding:10px;
}
.card-chip{
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,106,0,.12);
  border:1px solid rgba(255,106,0,.12);
  color: rgba(255,140,26,.95);
}
.card h3{ margin:14px 0 8px; font-size:18px; }
.card p{ margin:0 0 14px; color: var(--muted); line-height:1.7; font-size:14px; }
.card-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  font-size:14px;
  color: rgba(255,140,26,.95);
}
.card-btn:hover{ text-decoration: underline; }

/* Video */
.video-shell{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.video{
  width:100%;
  aspect-ratio: 16 / 9;
  display:block;
  background: rgba(0,0,0,.35);
}
.video-actions{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Download bar */
.download-bar{
  margin-top: 18px;
  border-radius: 22px;
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid rgba(255,106,0,.20);
  background:
    radial-gradient(420px 220px at 10% 20%, rgba(255,106,0,.08), transparent 60%),
    radial-gradient(420px 220px at 90% 80%, rgba(255,140,26,.05), transparent 60%),
    rgba(255,255,255,.03);
}
.download-title{ font-weight:900; }
.download-sub{ color: var(--muted2); margin-top:4px; font-size:13px; }

/* Timeline */
.timeline{
  max-width: 900px;
  margin: 0 auto;
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.milestone{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:14px;
  padding: 14px 10px;
  align-items:flex-start;
}
.milestone + .milestone{ border-top: 1px solid rgba(255,255,255,.08); }
.milestone .dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--umv-a), var(--umv-b));
  box-shadow: 0 0 18px rgba(255,106,0,.20);
}
.milestone h3{ margin:0 0 6px; font-size:16px; }
.milestone p{ margin:0; color: var(--muted); line-height:1.7; font-size:14px; }

/* Privacy */
.privacy-grid{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Privacy: single-column stacked layout */
.privacy-stack{
  max-width: 980px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.privacy-card{
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(260px 140px at 10% 10%, rgba(255,106,0,.16), transparent 60%),
    radial-gradient(260px 140px at 90% 90%, rgba(255,140,26,.05), transparent 60%),
    rgba(255,255,255,.035);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
}
.privacy-card h3{ margin:0 0 8px; }
.privacy-card p{ margin:0; color: var(--muted); line-height:1.7; font-size:14px; }

/* CTA */
.cta-banner{
  margin-top: 22px;
  border-radius: 24px;
  padding: 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid rgba(255,106,0,.20);
  background:
    radial-gradient(420px 220px at 10% 20%, rgba(255,106,0,.08), transparent 60%),
    radial-gradient(420px 220px at 90% 80%, rgba(255,140,26,.12), transparent 60%),
    rgba(255,255,255,.03);
}
.cta-banner h3{ margin:0; }
.cta-banner p{ margin:6px 0 0; color: var(--muted); line-height:1.6; font-size:14px; }

/* Footer */
.footer{
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.footer-col h4{ margin:0 0 12px; }
.footer-col a{
  display:block;
  padding:6px 0;
  color: var(--muted);
}
.footer-col a:hover{ color: var(--text); text-decoration:underline; }
.muted{ color: var(--muted); }
.small{ font-size:12px; margin-top:12px; }

/* Reveal default */
.reveal{ opacity:1; transform:none; }
.has-gsap .reveal{ opacity:0; transform: translateY(12px); }

@keyframes hero-breathe{
  0%{
    transform: scale(1.02);
    background-position: 50% 50%;
  }
  50%{
    transform: scale(1.06);
    background-position: 55% 45%;
  }
  100%{
    transform: scale(1.02);
    background-position: 50% 50%;
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ justify-content:center; }
  .cards{ grid-template-columns: 1fr; }
  .privacy-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .nav{ justify-content:center; }
  .nav-actions{ width:100%; justify-content:center; }
  .nav-links{ width:100%; justify-content:center; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
  .download-bar{ flex-direction:column; align-items:flex-start; }
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  *{ scroll-behavior:auto !important; }
  .cursor-orb{ display:none !important; }
}



/* Subtle hover animations (eye-pleasing micro-zoom) */
.card,
.hero-card,
.video-shell,
.privacy-card,
.service,
.download-bar,
.cta-banner {
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s ease;
  will-change: transform;
}

.card:hover,
.hero-card:hover,
.video-shell:hover,
.privacy-card:hover,
.service:hover,
.download-bar:hover,
.cta-banner:hover {
  transform: scale(1.025);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  border-color: rgba(255,106,0,.35);
}

/* Buttons: tiny lift */
.btn {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255,106,0,.25);
}


/* --------------------------
   Language switcher
---------------------------*/
.lang-switcher{ position: relative; display:inline-flex; align-items:center; }
.lang-menu{
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 180px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,14,24,.92);
  box-shadow: var(--shadow);
  display:none;
  gap: 8px;
  flex-direction: column;
  z-index: 50;
  backdrop-filter: blur(14px);
}
.lang-menu.open{ display:flex; }
.lang-item{
  text-align:left;
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
}
.lang-item:hover{ background: rgba(255,255,255,.06); }

/* --------------------------
   Hero slider (4 slides)
---------------------------*/
.hero-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .9s ease;
}
.hero-slide.active{
  opacity:1;
  transform: scale(1.0);
}

/* --------------------------
   Video sizing + Reel block
---------------------------*/
.video-shell video,
.video-shell iframe{
  width:100%;
  height: min(56vw, 540px);
  display:block;
  border:0;
  background: #000;
}

.reel-block{
  margin-top: 34px;
  display:grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 22px;
  align-items: center;
}

.reel-video .reel{
  width:100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background:#000;
  display:block;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
}

.reel-copy{
  max-width: 620px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.reel-title{
  margin: 0 0 10px;
  color: var(--umv-b);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .2px;
}

.reel-text p{
  margin: 0 0 10px;
  color: rgba(238,245,255,.92);
  font-size: 14px;
  line-height: 1.65;
}

.reel-text p:last-child{ margin-bottom: 0; }

@media (max-width: 860px){
  .reel-block{ grid-template-columns: 1fr; }
  .reel-copy{ max-width: 100%; }
}


/* ============================
   Privacy Policy (Preview + Page)
   ============================ */
.policy-cta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.policy-wrap{
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(10, 10, 14, .45);
  border: 1px solid rgba(255, 140, 0, .22);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .policy-wrap{ background: rgba(10,10,14,.78); }
}

@media (max-width: 720px){
  .policy-wrap{
    padding: 18px;
    border-radius: 18px;
  }
}
.policy-meta{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-size: .95rem;
}
.policy-card{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.policy-card h3{
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  letter-spacing: .2px;
}
.policy-card p{
  margin: 0 0 10px 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: .98rem;
}
.policy-card ul{
  margin: 8px 0 0 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}
.policy-card li{
  margin: 6px 0;
}
.policy-controls{
  margin-top: 14px;
}
.policy-toggle{
  border-color: rgba(255,106,0,.35);
}
.privacy-collapsible{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .6s ease, opacity .4s ease;
  will-change: max-height, opacity;
  margin-top: 14px;
}
.privacy-collapsible.open{
  opacity: 1;
}
.policy-actions{
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}
.policy-title{
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
}
.policy-back{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.policy-back:hover{ color: white; }



/* Privacy policy single-page UI */
.section-note{
  max-width: 72ch;
  color: rgba(255,255,255,.75);
  margin-top: .75rem;
}

.privacy-body p{ margin: .6rem 0; color: rgba(255,255,255,.78); }
.privacy-body ul{ margin: .6rem 0 .2rem 1.2rem; color: rgba(255,255,255,.78); }
.privacy-body li{ margin: .35rem 0; }

.privacy-more{ margin-top: 1rem; }
.privacy-grid--more{ margin-top: .75rem; }

.contact-actions{
  display:flex;
  gap:.6rem;
  align-items:center;
  flex-wrap:wrap;
  margin-top:.6rem;
}
.contact-email{
  color: rgba(255,140,26,.95);
  font-weight: 700;
  letter-spacing: .2px;
}
.copy-toast{
  opacity:0;
  transform: translateY(-2px);
  transition: opacity .2s ease, transform .2s ease;
  font-size:.9rem;
  color: rgba(255,255,255,.75);
}
.copy-toast.show{
  opacity:1;
  transform: translateY(0);
}

/* Ensure hero slider always shows something even if images missing */
.hero-slider{ position: relative; overflow:hidden; border-radius: 18px; }
.hero-slide{ width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0; opacity:0; transition: opacity .6s ease; }
.hero-slide.active{ opacity:1; position:absolute; }



@media (max-width: 560px){
  .container{ padding-left: 14px; padding-right: 14px; }
  .nav{ padding-top: 10px; padding-bottom: 10px; }
  .nav-links{
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar{ display:none; }
  .nav-pill{ gap: 10px; padding: 10px 14px; }
  .nav-pill a{ font-size: 13px; padding: 8px 10px; }
  .nav-actions{ flex-wrap: wrap; gap: 10px; }
  .btn{ padding: 10px 14px; }
  .hero-title{ font-size: clamp(26px, 8vw, 40px); }
  .hero-sub{ font-size: 14px; }
  .video-wrap video{ border-radius: 18px; }
  .reel-video{ border-radius: 18px; }
  .privacy-card{ padding: 16px; }
  .privacy-card h3{ font-size: 16px; }
  .privacy-body{ font-size: 13px; }
  .download-bar{ padding: 16px; border-radius: 18px; }
  .footer{ padding-bottom: 36px; }
}
.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 768px) {
    .reveal {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
@media (max-width: 768px) {

    .glass,
    .card,
    .panel,
    .video-shell,
    .reel-block {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}