:root{
  --bg:#F4F1EA;
  --surface:#FFFFFF;
  --card:#FFFFFF;
  --text:#0F1C2E;
  --muted:#3B4A5F;
  --line:rgba(15,28,46,.14);
  --brand:#0F1C2E;
  --brand2:#7AC9B7;
  --gold:#E5B75A;
  --shadow: 0 18px 50px rgba(15,28,46,.12);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Open Sans", Lato, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; display:block}
small{color:var(--muted)}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip-link{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip-link:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(244,241,234,.88);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px; flex-wrap:wrap}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:340px; height:auto}

.menu{display:flex; align-items:center; gap:16px; flex-wrap:wrap}
.menu a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}
.menu a[aria-current="page"]{color:var(--text); background: rgba(122,201,183,.18)}
.menu a:hover{background: rgba(122,201,183,.18); color:var(--text)}

.ctaRow{display:flex; align-items:center; gap:10px}
.button{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,28,46,.18);
  background: rgba(255,255,255,.78);
  color:var(--text);
  font-weight:800;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
}
.button:hover{transform: translateY(-1px); border-color: rgba(15,28,46,.28)}
.button.primary{
  background: linear-gradient(135deg, rgba(15,28,46,1), rgba(15,28,46,.92));
  color: #F4F1EA;
  border-color: rgba(15,28,46,1);
}
.button.gold{
  background: linear-gradient(135deg, rgba(229,183,90,1), rgba(229,183,90,.92));
  color: #0F1C2E;
  border-color: rgba(229,183,90,1);
}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,28,46,.18);
  background: rgba(255,255,255,.72);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.hero{padding:54px 0 30px}
.heroGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:28px; align-items:start}

h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.08;
  margin: 14px 0 12px;
  letter-spacing:-0.02em;
  color: var(--text);
}
h2{
  font-size: clamp(26px, 3vw, 34px);
  line-height:1.15;
  margin: 0 0 10px;
  letter-spacing:-0.01em;
  color: var(--text);
}
h3{margin:0 0 10px; color: var(--text)}

h1,h2,h3,.menu a,.button,label,strong{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.quote, blockquote{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.lead{font-size: 18px; color: var(--muted); margin: 0 0 18px; max-width: 62ch}
.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin: 0 0 18px}

.heroCard{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(122,201,183,.35), rgba(255,255,255,.88));
  border:1px solid rgba(15,28,46,.12);
  box-shadow: var(--shadow);
  padding:18px;
}
.heroCard .kpiGrid{display:grid; gap:12px; grid-template-columns: 1fr 1fr}
.kpi{
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(15,28,46,.10);
  padding:14px;
}
.kpi strong{display:block; font-size:18px}
.kpi span{color:var(--muted); font-weight:700; font-size:13px}

.hr{height:1px; background:var(--line); margin:16px 0}
.section{padding: 34px 0}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  border:1px solid rgba(15,28,46,.10);
  padding:18px;
  box-shadow: 0 10px 30px rgba(15,28,46,.06);
}
.card p{color:var(--muted); margin: 0}
.card ul{margin:10px 0 0; padding-left: 18px; color:var(--muted)}
.card li{margin: 6px 0}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.callout{
  border-radius: var(--radius2);
  background:
    radial-gradient(900px 240px at 0% 0%, rgba(229,183,90,.22), transparent 60%),
    radial-gradient(800px 240px at 100% 20%, rgba(122,201,183,.30), transparent 60%),
    rgba(255,255,255,.84);
  border:1px solid rgba(15,28,46,.12);
  padding:18px;
  box-shadow: var(--shadow);
}
.callout p{color:var(--muted); margin: 8px 0 0}

.footer{border-top: 1px solid var(--line); padding: 22px 0 36px; color: var(--muted)}
.footerGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items:start}
.footer a{color: var(--text)}

.form{display:grid; gap:12px}
label{font-weight:800; font-size:14px; color: var(--text)}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,28,46,.18);
  background: rgba(255,255,255,.94);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize: vertical}
input:focus, textarea:focus, select:focus{border-color: rgba(229,183,90,.85); box-shadow: 0 0 0 4px rgba(229,183,90,.22)}
.formRow{display:grid; gap:12px; grid-template-columns: 1fr 1fr}

.notice{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(15,28,46,.12);
  background: rgba(122,201,183,.22);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 16px;
  border:1px solid rgba(15,28,46,.10);
  background: rgba(255,255,255,.88);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(15,28,46,.08);
  text-align:left;
  vertical-align: top;
}
.table th{color: var(--text); font-size: 13px; letter-spacing:.02em; text-transform: uppercase}
.table td{color: var(--muted); font-weight: 700}
.table tr:last-child td{border-bottom:none}

.menuToggle{
  display:none;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(15,28,46,.18);
  background: rgba(255,255,255,.84);
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .footerGrid{grid-template-columns: 1fr}
  .formRow{grid-template-columns: 1fr}
  .brand img{width:300px}
}
@media (max-width: 760px){
  .menuToggle{display:inline-flex}
  .menu{display:none; width:100%; padding:8px 0}
  .menu.open{display:flex}
  .ctaRow{width:100%; justify-content:flex-start}
}


/* HERO VIDEO BACKGROUND */
.hero.heroVideo{
  position: relative;
  overflow: hidden;
}
.hero.heroVideo .heroBg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero.heroVideo .heroOverlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.45);
}
.hero.heroVideo .heroContent{
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce){
  .hero.heroVideo .heroBg{ display:none; }
  .hero.heroVideo{ background: var(--brand); }
}



/* === PATCH: TalentLMS-style compact header + bigger hero video === */
.header{ position:sticky; top:0; z-index:50; }
.header{ position: relative; } /* for any ::after/overlays */
.container{ max-width: 1400px; }

.nav{
  padding: 8px 0;
  gap: 12px;
  flex-wrap: nowrap;
}

/* Logo top-left, compact like TalentLMS */
.brand{ display:flex; align-items:center; }
.brand__logo{
  height: 40px;
  width: auto;
  display:block;
}

/* Navigation tabs to the right of logo */
.menu{
  margin-left: auto;
  gap: 12px;
  flex-wrap: nowrap;
}

/* Reduce “white band” above hero */
.hero{ padding: 18px 0 18px; }

/* Give video hero more vertical real estate */
.hero.heroVideo{
  min-height: calc(100vh - 68px);
  padding: 16px 0 0;
}
.hero.heroVideo .heroContent{
  padding-bottom: 10px;
}

/* Keep layout responsive */
@media (max-width: 920px){
  .nav{ flex-wrap: wrap; }
  .menu{ flex-wrap: wrap; }
}
@media (max-width: 760px){
  .brand__logo{ height: 36px; }
}

.brand img{width:auto !important; height:auto !important;}

/* === FINAL PREMIUM HEADER & NAV ENHANCEMENTS === */

/* Scroll fade */
.header{
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}
.header.header--scrolled{
  background: rgba(244,241,234,.965);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(15,28,46,.12);
  border-bottom-color: rgba(229,183,90,.22);
}

/* Gold micro underline */
.menu a{
  position: relative;
  overflow: hidden;
}
.menu a::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: rgba(229,183,90,.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease, opacity .18s ease;
  opacity: 0;
}
.menu a:hover::after{
  transform: scaleX(1);
  opacity: 1;
}
.menu a[aria-current="page"]::after{
  transform: scaleX(1);
  opacity: 1;
  background: rgba(229,183,90,.85);
}

/* Page transition */
body{
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .26s ease, transform .26s ease;
}
body.page-ready{
  opacity: 1;
  transform: translateY(0);
}
body.page-leave{
  opacity: 0;
  transform: translateY(2px);
}

/* Portal header variant */
.header.header--portal{
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(15,28,46,.08);
  box-shadow: 0 10px 28px rgba(15,28,46,.08);
}
.header.header--portal .menu a{
  background: transparent;
  color: rgba(15,28,46,.72);
}
.header.header--portal .menu a:hover{
  background: rgba(15,28,46,.06);
}
.header.header--portal .menu a[aria-current="page"]{
  background: rgba(15,28,46,.08);
  color: var(--text);
  box-shadow: none;
}



/* === ALL-5 LUXURY + PERFORMANCE + LMS PORTAL MATCH === */

/* (A) Luxury gold shimmer accent (very subtle) */
@keyframes goldShimmer{
  0%{ background-position: 0% 50%; opacity:.55; }
  50%{ background-position: 100% 50%; opacity:.85; }
  100%{ background-position: 0% 50%; opacity:.55; }
}
.header::after{
  background-size: 220% 220%;
  animation: goldShimmer 6.5s ease-in-out infinite;
}
.menu a[aria-current="page"]::after{
  background: linear-gradient(90deg, rgba(229,183,90,.25), rgba(229,183,90,.95), rgba(229,183,90,.25));
  background-size: 200% 200%;
  animation: goldShimmer 5.8s ease-in-out infinite;
}

/* (B) Cinematic hero text fade (staggered) */
@keyframes fadeUpSoft{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}
.hero.heroVideo .heroContent h1,
.hero.heroVideo .heroContent .lead,
.hero.heroVideo .heroContent .pillRow{
  opacity: 0;
  animation: fadeUpSoft .72s ease forwards;
}
.hero.heroVideo .heroContent h1{ animation-delay: .08s; }
.hero.heroVideo .heroContent .lead{ animation-delay: .18s; }
.hero.heroVideo .heroContent .pillRow{ animation-delay: .28s; }

@media (prefers-reduced-motion: reduce){
  .hero.heroVideo .heroContent h1,
  .hero.heroVideo .heroContent .lead,
  .hero.heroVideo .heroContent .pillRow{
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

/* (C) Premium button hover glow */
.button{
  position: relative;
  isolation: isolate;
}
.button::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: radial-gradient(120px 60px at 20% 30%, rgba(229,183,90,.35), transparent 60%),
              radial-gradient(140px 70px at 80% 70%, rgba(122,201,183,.28), transparent 60%);
  opacity: 0;
  filter: blur(6px);
  transition: opacity .18s ease;
  z-index: -1;
}
.button:hover::before{ opacity: 1; }
.button:hover{
  box-shadow: 0 14px 30px rgba(15,28,46,.12);
}

/* (D) Core Web Vitals helpers (lightweight) */
img{ content-visibility: auto; contain-intrinsic-size: 800px 600px; }
section, .card, .grid3, .split{ content-visibility: auto; contain-intrinsic-size: 1000px 700px; }
.hero, .header{ content-visibility: visible; }

/* Avoid layout jumps in hero video container */
.hero.heroVideo{ min-height: calc(100vh - 68px); }
.hero.heroVideo .heroBg{ transform: translateZ(0); will-change: transform; }

/* (E) LMS portal header match */
.header.header--portal{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,28,46,.10);
  box-shadow: 0 8px 22px rgba(15,28,46,.08);
}
.header.header--portal .nav{
  padding: 6px 0;
}
.header.header--portal .brand__logo{
  height: 34px;
}
.header.header--portal .menu a{
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 9px 12px;
  border-radius: 12px;
}
.header.header--portal .menu a::after{
  left: 12px;
  right: 12px;
  bottom: 6px;
}
.header.header--portal .ctaRow .button{
  padding: 10px 12px;
  border-radius: 12px;
}

/* === V2: Luxury call-first trust block + mobile call FAB + scroll reveals === */
.heroTrust{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin: 10px 0 8px;
  color: rgba(244,241,234,.92);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}
.heroTrust .trustItem{
  background: rgba(15,28,46,.35);
  border: 1px solid rgba(229,183,90,.25);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.heroMicro{
  margin: 0;
  color: rgba(244,241,234,.90);
  font-weight: 700;
  max-width: 70ch;
}
.heroMicro a{ color: rgba(229,183,90,.98); text-decoration: underline; text-underline-offset: 3px; }

/* Ensure hero text reads well on video */
.hero.heroVideo h1{ color: #F4F1EA; }
.hero.heroVideo .lead{ color: rgba(244,241,234,.90); }

/* Mobile call floating action button */
.call-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:none;
}
.call-fab a{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background: linear-gradient(135deg, rgba(15,28,46,1), rgba(15,28,46,.92));
  border: 2px solid rgba(229,183,90,.85);
  box-shadow: 0 18px 46px rgba(15,28,46,.26);
  color: #F4F1EA;
  font-size: 22px;
  font-weight: 900;
}
@keyframes fabPulse{
  0%{ transform: translateY(0) scale(1); box-shadow: 0 18px 46px rgba(15,28,46,.26); }
  50%{ transform: translateY(-1px) scale(1.02); box-shadow: 0 22px 58px rgba(15,28,46,.32); }
  100%{ transform: translateY(0) scale(1); box-shadow: 0 18px 46px rgba(15,28,46,.26); }
}
.call-fab a{ animation: fabPulse 2.8s ease-in-out infinite; }

@media (max-width: 860px){
  .call-fab{ display:block; }
}
@media (prefers-reduced-motion: reduce){
  .call-fab a{ animation: none; }
}

/* Scroll reveal (lightweight) */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform:none; transition:none; }
}



/* --- Quick jump (Top/Home) --- */
.quick-jump{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 55;
  display:flex;
  gap: 10px;
}
.quick-jump__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 14px;
  background: rgba(244,241,234,.88);
  border: 1px solid rgba(15,28,46,.12);
  box-shadow: 0 12px 30px rgba(15,28,46,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0F1C2E;
}
.quick-jump__link:hover{
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce){
  .quick-jump__link:hover{ transform:none; }
}

/* --- Mobile sticky call bar --- */
.call-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 54;
  display:none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, rgba(15,28,46,1), rgba(15,28,46,.94));
  border-top: 1px solid rgba(229,183,90,.35);
  box-shadow: 0 -18px 44px rgba(15,28,46,.24);
}
.call-bar__link{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  text-decoration:none;
  color: #F4F1EA;
  font-weight: 800;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(244,241,234,.06);
  border: 1px solid rgba(244,241,234,.14);
}
.call-bar__text{ font-weight: 800; }
.call-bar__num{
  font-weight: 900;
  color: rgba(229,183,90,.98);
  white-space: nowrap;
}
@media (max-width: 860px){
  .call-bar{ display:block; }
  /* lift quick-jump above call bar */
  .quick-jump{ bottom: 92px; }
}

/* keep the FAB above the call bar on mobile */
@media (max-width: 860px){
  .call-fab{ bottom: 100px; }
}


/* --- Desktop sticky CTA (right side) --- */
.desktop-cta{
  position: fixed;
  right: 14px;
  bottom: 96px;
  z-index: 999;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(244,241,234,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(10px);
}
.desktop-cta__icon{ font-size: 18px; line-height: 1; }
.desktop-cta__text{ font-weight: 700; font-size: 14px; letter-spacing: .2px; }
@media (min-width: 900px){
  .desktop-cta{ display: inline-flex; }
}

/* --- FAQ accordion --- */
.section--faq h2{ margin-bottom: 14px; }
.faq{ display: grid; gap: 10px; }
.faq__item{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq__q{
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 700;
}
.faq__q::-webkit-details-marker{ display:none; }
.faq__a{
  padding: 0 16px 14px 16px;
  color: rgba(0,0,0,0.78);
  line-height: 1.55;
}

/* --- Form toast --- */
.form-toast{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  z-index: 1000;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  width: min(520px, calc(100% - 24px));
  transition: opacity .18s ease, transform .18s ease;
}
.form-toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.form-toast__sub{ opacity: .85; margin-top: 4px; font-size: 13px; }

.call-bar__sub{ opacity:.85; font-weight:600; margin-left:10px; font-size:12px; }


/* --- Video feature frame (sitewide) --- */
.video-feature{padding:3.5rem 0;}
.video-feature .wrap{max-width:1100px;margin:0 auto;padding:0 1.25rem;}
.video-feature .frame{position:relative;border-radius:24px;overflow:hidden;box-shadow:0 18px 50px rgba(0,0,0,.18);background:#0b1320;}
.video-feature video{width:100%;height:auto;display:block;}
.video-feature .overlay{position:absolute;inset:0;display:flex;align-items:flex-end;justify-content:space-between;padding:1.25rem;gap:1rem;background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);}
.video-feature .copy{color:#fff;max-width:70%;}
.video-feature .eyebrow{font-size:.9rem;opacity:.9;margin:0 0 .25rem 0;}
.video-feature h2{font-size:1.6rem;margin:.15rem 0 .35rem 0;line-height:1.2;}
.video-feature p{margin:0;opacity:.9}
.video-feature .actions{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:flex-end}
.video-feature .btn{display:inline-flex;align-items:center;gap:.45rem;padding:.7rem 1rem;border-radius:999px;text-decoration:none;font-weight:600;backdrop-filter:saturate(150%) blur(6px);}
.video-feature .btn.primary{background:rgba(255,255,255,.92);color:#0b1320;}
.video-feature .btn.ghost{background:rgba(11,19,32,.45);color:#fff;border:1px solid rgba(255,255,255,.22);}
@media (max-width: 720px){
  .video-feature .overlay{flex-direction:column;align-items:flex-start}
  .video-feature .copy{max-width:100%}
  .video-feature .actions{justify-content:flex-start}
}



/* === FULL-WIDTH CINEMATIC VIDEO FEATURE (Option A) === */
.video-feature{
  padding: 0 !important;
  margin: 0 !important;
}
.video-feature .frame{
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 78vh;
  min-height: 520px;
  background: #0b1320;
}
.video-feature video{
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* Overlay: keep text readable without looking muddy */
.video-feature .overlay{
  padding: clamp(22px, 4vw, 64px) !important;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.40) 70%,
    rgba(0,0,0,.58) 100%) !important;
}
/* Constrain overlay content width for a premium look */
.video-feature .overlay > *{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px){
  .video-feature .frame{ height: 72vh; min-height: 460px; }
  .video-feature .copy{ max-width: 100% !important; }
}

