html{background: #070B10;}
/* Premium landing — Shtefan (v4 — обновленный контент и фон)
   Structure:
   /css/styles.css
   /js/main.js
   /img/...
*/
:root{
  --bg:#0B0F14;
  --bg2:#0F151D;
  --text:#EAF0F7;
  --muted: rgba(234,240,247,.72);
  --muted2: rgba(234,240,247,.58);
  --line: rgba(234,240,247,.14);
  --panel: rgba(255,255,255,.05);
  --panel2: rgba(255,255,255,.07);

  --accent:#D7B46A;         /* gold */
  --wine:#6B1B2A;           /* deep wine */
  --wine2:#3B0F18;          /* darker wine */
  --ok:#7DDBA1;
  --danger:#FF7A7A;

  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,
body{
  background:
    radial-gradient(900px 520px at 18% -12%, rgba(215,180,106,.14), transparent 60%),
    radial-gradient(860px 560px at 86% 8%, rgba(107,27,42,.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, #070B10 100%);
  background-attachment: fixed;

  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height:1.35;
  overflow-x:hidden;
}

a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.section{padding:72px 0}
.hr{height:1px; background: rgba(255,255,255,.06); margin:28px 0}

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,15,20,.55);
  }
.topbar .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand-badge{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(215,180,106,.95), rgba(107,27,42,.7));
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.brand-title{font-weight:700; letter-spacing:.2px}
.nav{
  display:flex; gap:16px; align-items:center;
}
.nav a{
  text-decoration:none; color:var(--muted);
  font-size:14px; padding:8px 10px; border-radius:12px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.04)}

.btn{
  appearance:none; border:0; cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:14px 18px; border-radius:16px;
  font-weight:700;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  color:#0B0F14;
  background: linear-gradient(135deg, rgba(215,180,106,1), rgba(215,180,106,.82));
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.btn-primary:hover{filter: brightness(1.04)}
.btn-wine{
  color:var(--text);
  background: linear-gradient(135deg, rgba(107,27,42,.95), rgba(59,15,24,.92));
  border:1px solid rgba(215,180,106,.18);
}
.btn-wine:hover{filter:brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.05);
  color: var(--text);
  border:1px solid rgba(255,255,255,.10);
}
.btn-ghost:hover{background: rgba(255,255,255,.08)}

.hero{padding:40px 0 0}
.hero-grid{
  display:grid; gap:26px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}


.hero-video-center{
  display:flex;
  justify-content:center;
}

.hero .video-wrap{
  max-width: 520px;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: unset;
}

.hero .video-wrap video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  border-radius: 22px;
}

/* Responsive: keep video readable on small screens */
@media (max-width: 560px){
  .hero{ padding-top: 18px; }
  .hero .video-wrap{ max-width: 100%; border-radius: 18px; }
  .hero .video-wrap video{ border-radius: 18px; }
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
}

.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:26px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; font-size:13px; letter-spacing:.7px;
  text-transform:uppercase;
  color: rgba(11,15,20,.92);
  background: rgba(215,180,106,.95);
  padding:10px 12px;
  border-radius: 999px;
}
.kicker-dot{width:9px;height:9px;border-radius:99px;background:rgba(11,15,20,.85)}
.h1{
  margin:14px 0 10px;
    font-size: clamp(16px, 2.9vw, 30px);
  line-height:1.05;
  letter-spacing:-.6px;
}

@keyframes riseIn{from{opacity:0; transform: translateY(10px);}to{opacity:1; transform: translateY(0);}}
.h1{animation: riseIn .7s ease both;}
.lead{animation: riseIn .85s ease both; animation-delay: .06s;}
.hero-actions{animation: riseIn .95s ease both; animation-delay: .10s;}
@media (prefers-reduced-motion: reduce){.h1,.lead,.hero-actions{animation:none}}
.lead{margin:0;color:var(--muted);font-size: clamp(15px, 1.2vw, 18px)}

.hero-actions{display:flex; gap:16px; flex-wrap:wrap; align-items:flex-start; margin-top:18px}
.hero-fragment{
  position: relative;
  flex: 1 1 320px;
  padding: 18px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.hero-fragment::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(closest-side, rgba(215,180,106,.22), transparent 55%),
              radial-gradient(closest-side, rgba(107,27,42,.24), transparent 60%);
  transform: translate3d(-10%, -10%, 0);
  filter: blur(10px);
  opacity: .9;
  animation: heroGlow 9s ease-in-out infinite alternate;
  pointer-events:none;
}
.hero-fragment__title{
  position: relative;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  color: rgba(234,240,247,.96);
}
.hero-fragment__text{
  position: relative;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(234,240,247,.74);
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
@keyframes heroGlow{
  from{ transform: translate3d(-12%,-10%,0) scale(1); }
  to{ transform: translate3d(10%,8%,0) scale(1.08); }
}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  display:inline-flex; align-items:center; gap:9px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight: 400;
  font-size:13px;
}
.badge b{color:var(--text); font-weight:400}

.video-wrap{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  position:relative;
  min-height: 520px;
}
/* Center title over video (hides on play) */
@keyframes glowMove{from{filter: blur(0px) brightness(1);}to{filter: blur(0px) brightness(1.12);}}
@media (prefers-reduced-motion: reduce){}
.video-caption{
  position:absolute; left:16px; right:16px; bottom:125px;
  display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
  background: rgba(11,15,20,.65);
  border:1px solid rgba(255,255,255,.10);
  padding:12px 14px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.video-caption .t{font-weight:800}
.video-caption .s{color:var(--muted); font-size:13px}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 980px){.grid3{grid-template-columns:1fr}}
.pill{
  padding:18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.pill h3{margin:0 0 6px; font-size:18px}
.pill p{margin:0; color:var(--muted)}
.list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.list li{display:flex; gap:10px; align-items:flex-start; color:var(--muted)}
.check{
  width:22px; height:22px; border-radius: 8px;
  background: rgba(125,219,161,.18);
  border:1px solid rgba(125,219,161,.35);
  flex: 0 0 auto;
  position:relative;
}
.check:after{
  content:"";
  position:absolute;
  left:6px; top:6px;
  width:8px; height:4px;
  border-left:2px solid rgba(125,219,161,1);
  border-bottom:2px solid rgba(125,219,161,1);
  transform: rotate(-45deg);
}

.two{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media (max-width:980px){.two{grid-template-columns:1fr}}

.quote{
  padding:22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(107,27,42,.22), rgba(255,255,255,.04));
  border: 1px solid rgba(215,180,106,.14);
}
.quote p{margin:0; color:var(--text); font-size:18px}
.quote .sub{margin-top:10px; color:var(--muted); font-size:14px}

.about{display:grid; grid-template-columns:.95fr 1.05fr; gap:16px; align-items:stretch}
@media (max-width:980px){.about{grid-template-columns:1fr}}
.portrait{display:grid; gap:14px}
.portrait img{
  width:100%; height: 380px; object-fit:cover;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
}
.small{font-size:13px; color:var(--muted2)}
h2{margin:0 0 14px; font-size: clamp(24px, 2.2vw, 34px); letter-spacing:-.3px}
h3{margin:0 0 10px}
p{margin:0 0 12px}
strong{color:var(--text)}

.cta{
  padding:26px;
  border-radius: var(--radius);
  background: radial-gradient(700px 420px at 20% 20%, rgba(215,180,106,.18), transparent 60%),
              linear-gradient(135deg, rgba(107,27,42,.22), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.cta .row{display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between}
.cta .row .left{max-width:720px}
.cta .row .left p{color:var(--muted)}
.cta .row .right{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  padding:28px 0 46px;
  color: var(--muted2);
  border-top:0;
}
.footer .row{display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px}
.footer a{color:var(--muted2); text-decoration:none}
.footer a:hover{color:var(--text)}

.modal{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  padding:24px;
  background: rgba(0,0,0,.65);
  z-index:100;
}
.modal.open{display:flex}
.modal-card{
  width:min(720px, 100%);
  border-radius: 22px;
  background: rgba(11,15,20,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 18px 12px;
  }
.modal-head .ttl{font-weight:800}
.modal-close{
  width:42px; height:42px; border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
  color: var(--text);
  font-size:22px;
}
.modal-body{padding:18px}
.form{display:grid; gap:12px}
.field{display:grid; gap:6px}
label{font-size:13px; color:var(--muted)}
input, textarea, select{
  width:100%;
  padding:14px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
.note{
  display:none;
  padding:12px 14px;
  border-radius: 14px;
  font-size:14px;
}
.note.ok{background: rgba(125,219,161,.14); border:1px solid rgba(125,219,161,.35)}
.note.err{background: rgba(255,122,122,.12); border:1px solid rgba(255,122,122,.30)}

.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease}
.reveal.in{opacity:1; transform:none}


/* ===== Overlay кнопка по центру видео ===== */
.video-wrapper{
  position:relative;
}

.video-play-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
}

.video-play-btn{
  background: linear-gradient(135deg, var(--accent), #caa24d);
  color:#0B0F14;
  border:none;
  padding:16px 32px;
  border-radius:50px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition:.3s ease;
}

.video-play-btn:hover{
  transform:scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}


/* --- Fix: remove accidental horizontal scrollbars on mobile --- */
img, video {max-width:100%;}
a {word-break: break-word;}
/* Video block: keep it compact on small screens so content below is visible */
@media (max-width: 900px){
  .video-wrap{min-height: 360px;}
}
@media (max-width: 560px){
  .video-wrap{min-height: 300px;}
  .video-caption{left:12px; right:12px; bottom:105px;}
  .video-caption .t{font-size:14px; line-height:1.25;}
  .video-caption .s{font-size:12px;}
}


/* ===== Timeline (45 minutes) ===== */
.timeline{
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.tl-item{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(234,240,247,.10);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.tl-time{
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  padding-top: 6px;
}
.tl-title{
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .2px;
}
.tl-text{
  color: var(--muted);
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 720px){
  .tl-item{grid-template-columns: 72px 1fr}
}
@media (max-width: 520px){
  .tl-item{grid-template-columns: 1fr}
  .tl-time{padding-top: 0}
}

/* Improve unordered lists in content */
.list{
  padding-left: 0;
}
.list li{
  align-items: flex-start;
}

/* CTA status message */
#diagStatus{ color: var(--muted); }



/* ===== Hero spacing refinement ===== */
.hero .h1{
  margin-bottom: 40px !important;
}

.hero .lead{
  margin-top: 0 !important;
  margin-bottom: 50px !important;
}

.hero .badges{
  margin-top: 40px !important;
}

/* ===== Dramaturgy block width alignment ===== */
.section .quote{
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}



/* Premium icon sizing for feature blocks */
.pill h3{
  font-size: 18px;
}
.pill h3 span.icon{
  font-size: 22px;
  margin-right: 8px;
}



/* ===== Monochrome SVG icons (no emoji squares) ===== */
.icon{
  display:inline-block;
  width:22px;
  height:22px;
  margin-right:10px;
  vertical-align:-4px;
  background-color: var(--accent);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: .95;
}
.pill h3{ display:flex; align-items:center; gap:0; }
@media (max-width: 520px){
  .icon{ width:20px; height:20px; margin-right:8px; }
}
.i-pin{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2022s7-4.438%207-12a7%207%200%201%200-14%200c0%207.562%207%2012%207%2012Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M12%2011.5a2.5%202.5%200%201%200%200-5%202.5%202.5%200%200%200%200%205Z%22%20fill%3D%22black%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2022s7-4.438%207-12a7%207%200%201%200-14%200c0%207.562%207%2012%207%2012Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M12%2011.5a2.5%202.5%200%201%200%200-5%202.5%202.5%200%200%200%200%205Z%22%20fill%3D%22black%22/%3E%3C/svg%3E'); }
.i-stance{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2012v9%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M8%2021l4-5%204%205%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9%207a3%203%200%201%200%206%200%203%203%200%200%200-6%200Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M6%2012c1.5-2%203.5-3%206-3s4.5%201%206%203%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2012v9%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M8%2021l4-5%204%205%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9%207a3%203%200%201%200%206%200%203%203%200%200%200-6%200Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M6%2012c1.5-2%203.5-3%206-3s4.5%201%206%203%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); }
.i-hand{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M8%2011V5a1%201%200%200%201%202%200v6%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M10%2011V4a1%201%200%201%201%202%200v7%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2011V5a1%201%200%200%201%202%200v6%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M14%2011V6a1%201%200%201%201%202%200v8a5%205%200%200%201-10%200v-1.5a1.5%201.5%200%200%201%203%200V14%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M8%2011V5a1%201%200%200%201%202%200v6%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M10%2011V4a1%201%200%201%201%202%200v7%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2011V5a1%201%200%200%201%202%200v6%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M14%2011V6a1%201%200%201%201%202%200v8a5%205%200%200%201-10%200v-1.5a1.5%201.5%200%200%201%203%200V14%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E'); }
.i-atmo{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4%2014c2-2%204-2%206%200s4%202%206%200%204-2%204%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M4%2010c2-2%204-2%206%200s4%202%206%200%204-2%204%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M6%2018c1.4-1.2%202.8-1.2%204.2%200s2.8%201.2%204.2%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4%2014c2-2%204-2%206%200s4%202%206%200%204-2%204%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M4%2010c2-2%204-2%206%200s4%202%206%200%204-2%204%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M6%2018c1.4-1.2%202.8-1.2%204.2%200s2.8%201.2%204.2%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); }
.i-text{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5%206h14%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M5%2012h10%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M5%2018h14%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5%206h14%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M5%2012h10%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M5%2018h14%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); }
.i-mic{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2014a3%203%200%200%200%203-3V7a3%203%200%201%200-6%200v4a3%203%200%200%200%203%203Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M19%2011a7%207%200%200%201-14%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2018v3%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M8%2021h8%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2014a3%203%200%200%200%203-3V7a3%203%200%201%200-6%200v4a3%203%200%200%200%203%203Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M19%2011a7%207%200%200%201-14%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2018v3%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M8%2021h8%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); }
.i-mask{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4%206s4-2%208-2%208%202%208%202v7c0%204-4%207-8%207s-8-3-8-7V6Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9%2010h.01M15%2010h.01%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M9%2014c2%202%204%202%206%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4%206s4-2%208-2%208%202%208%202v7c0%204-4%207-8%207s-8-3-8-7V6Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9%2010h.01M15%2010h.01%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M9%2014c2%202%204%202%206%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); }
.i-speech{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M7%208h10%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M7%2012h6%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M6%2020l3-3h9a4%204%200%200%200%204-4V7a4%204%200%200%200-4-4H6a4%204%200%200%200-4%204v9a4%204%200%200%200%204%204Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M7%208h10%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M7%2012h6%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M6%2020l3-3h9a4%204%200%200%200%204-4V7a4%204%200%200%200-4-4H6a4%204%200%200%200-4%204v9a4%204%200%200%200%204%204Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E'); }
.i-system{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%202v4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2018v4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M4.93%204.93l2.83%202.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M16.24%2016.24l2.83%202.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M2%2012h4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M18%2012h4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M4.93%2019.07l2.83-2.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M16.24%207.76l2.83-2.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2016a4%204%200%201%200%200-8%204%204%200%200%200%200%208Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%202v4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2018v4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M4.93%204.93l2.83%202.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M16.24%2016.24l2.83%202.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M2%2012h4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M18%2012h4%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M4.93%2019.07l2.83-2.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M16.24%207.76l2.83-2.83%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M12%2016a4%204%200%201%200%200-8%204%204%200%200%200%200%208Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3C/svg%3E'); }
.i-cam{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4%207h10a3%203%200%200%201%203%203v7H4a3%203%200%200%201-3-3v-4a3%203%200%200%201%203-3Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M17%2010l6-3v10l-6-3%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4%207h10a3%203%200%200%201%203%203v7H4a3%203%200%200%201-3-3v-4a3%203%200%200%201%203-3Z%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M17%2010l6-3v10l-6-3%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E'); }
.i-spark{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%202l1.2%205.1L18%208.3l-4.8%201.2L12%2015l-1.2-5.5L6%208.3l4.8-1.2L12%202Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M5%2014l.7%203L9%2018l-3.3%201-0.7%203-0.7-3L1.7%2018%205%2017l.7-3Z%22%20fill%3D%22black%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%202l1.2%205.1L18%208.3l-4.8%201.2L12%2015l-1.2-5.5L6%208.3l4.8-1.2L12%202Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M5%2014l.7%203L9%2018l-3.3%201-0.7%203-0.7-3L1.7%2018%205%2017l.7-3Z%22%20fill%3D%22black%22/%3E%3C/svg%3E'); }
.i-body{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%208a3%203%200%201%200%200-6%203%203%200%200%200%200%206Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M6%2022v-5a4%204%200%200%201%204-4h4a4%204%200%200%201%204%204v5%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%208a3%203%200%201%200%200-6%203%203%200%200%200%200%206Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M6%2022v-5a4%204%200%200%201%204-4h4a4%204%200%200%201%204%204v5%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E'); }
.i-coach{ -webkit-mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2012a4%204%200%201%200-4-4%204%204%200%200%200%204%204Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M2%2022a10%2010%200%200%201%2020%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M18%203l2%202-4%204-2-2%204-4Z%22%20fill%3D%22black%22/%3E%3C/svg%3E'); mask-image:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2012a4%204%200%201%200-4-4%204%204%200%200%200%204%204Z%22%20fill%3D%22black%22/%3E%3Cpath%20d%3D%22M2%2022a10%2010%200%200%201%2020%200%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M18%203l2%202-4%204-2-2%204-4Z%22%20fill%3D%22black%22/%3E%3C/svg%3E'); }


/* ===== Compact sections for grouped blocks ===== */
.section.compact{
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}
@media (max-width: 520px){
  .section.compact{ padding-top: 34px !important; padding-bottom: 34px !important; }
}

/* ===== Sticky top menu ===== */
/* ===== Responsive nav ===== */
.topbar .row{
  gap: 12px;
}
.nav{
  display:flex;
  gap: 18px;
  align-items:center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 880px){
  .nav{
    overflow-x: auto;
    max-width: 55vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar{ display:none; }
}
@media (max-width: 640px){
  .topbar .btn.btn-primary{ padding: 12px 16px; }
  .brand-title{ display:none; }
}

/* ===== Grid responsiveness ===== */
.grid3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px){
  .grid3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .grid3{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr !important; }
  .hero-grid{ grid-template-columns: 1fr !important; }
  .video-wrap{ min-height: 420px; }
}



/* ===== Executive glass stack (3 blocks as one) ===== */
.unified-block{
  padding-top: 64px;
  padding-bottom: 64px;
}
.glass-stack{
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.glass-pane{
  padding: 34px 34px;
}
.glass-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234,240,247,.18), transparent);
}
@media (max-width: 640px){
  .glass-pane{ padding: 24px 18px; }
  .unified-block{ padding-top: 44px; padding-bottom: 44px; }
}



/* ===== Responsive polish (mobile / tablet) ===== */

/* Containers */
@media (max-width: 980px){
  .container{ padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 520px){
  .container{ padding-left: 14px; padding-right: 14px; }
}

/* Hero typography */
@media (max-width: 980px){
  .h1{ font-size: 52px; line-height: 1.02; }
  .lead{ font-size: 18px; line-height: 1.55; }
}
@media (max-width: 720px){
  .h1{ font-size: 44px; }
}
@media (max-width: 520px){
  .h1{ font-size: 36px; }
  .kicker{ font-size: 12px; }
}
@media (max-width: 380px){
  .h1{ font-size: 32px; }
}

/* Hero layout */
@media (max-width: 880px){
  .hero-grid{ grid-template-columns: 1fr !important; gap: 18px !important; }
  .video-wrap{ min-height: 520px; }
}
@media (max-width: 520px){
  .video-wrap{ min-height: 440px; }
}

/* Buttons */
@media (max-width: 520px){
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; justify-content: center; }
}

/* Badges */
@media (max-width: 640px){
  .badges{ gap: 10px; }
  .badge{ width: fit-content; }
}

/* Two-column sections */
@media (max-width: 980px){
  .two{ grid-template-columns: 1fr !important; gap: 18px !important; }
}

/* Cards and glass */
@media (max-width: 520px){
  .card.pad{ padding: 22px !important; }
  .glass-pane{ padding: 22px 16px !important; }
}

/* Timeline */
@media (max-width: 520px){
  .tl-item{ padding: 12px 12px; }
  .tl-title{ font-size: 15px; }
  .tl-text{ font-size: 13px; }
}

/* Grid cards */
@media (max-width: 980px){
  .grid3{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px){
  .grid3{ grid-template-columns: 1fr !important; }
}

/* Topbar: keep clean on mobile */
@media (max-width: 640px){
  .topbar .row{ gap: 10px; }
  .nav{ max-width: 62vw; }
  .brand-title{ display:none !important; }
}

/* Modal */
@media (max-width: 520px){
  .modal-card{ width: min(96vw, 520px) !important; border-radius: 18px !important; }
  .modal-body{ padding: 18px !important; }
  .field input, .field textarea{ font-size: 16px; } /* prevent iOS zoom */
}



/* ===== Topbar avatar + fixed menu ===== */
.brand-avatar{
  width: 38px;
  height: 38px;
  border-radius: 10px; /* square with soft corners */
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 auto;
}

/* Make menu follow scroll reliably */
.topbar{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Prevent content from hiding under fixed topbar */

@media (max-width: 640px){
  
  .brand-avatar{ width: 36px; height: 36px; border-radius: 9px; }
}


/* Offset for fixed topbar */
body{ padding-top: 74px; }
@media (max-width: 640px){ body{ padding-top: 68px; } }



/* ===== lc2 additions (below hero) — safe, no conflicts ===== */
.lc2-section{ padding: 48px 0; background: transparent; }
.lc2-section + .lc2-section{ padding-top: 28px; }
.lc2-lead{ font-size: 18px; line-height: 1.6; max-width: 980px; margin: 0; }
.lc2-panel{
  margin-top: 16px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(234,240,247,.12);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.lc2-title{ font-weight: 600; margin-bottom: 10px; }
.lc2-list{ margin: 0; padding-left: 18px; color: rgba(234,240,247,.72); line-height: 1.55; }
.lc2-list li{ margin: 7px 0; }
.lc2-actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }

.lc2-photos{ margin-top: 14px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lc2-photo{ margin:0; border-radius: 16px; overflow:hidden; border: 1px solid rgba(234,240,247,.10); background: rgba(255,255,255,.04); box-shadow: 0 18px 55px rgba(0,0,0,.35);  cursor:pointer; }
.lc2-photo img{ width:100%; height: 220px; object-fit: cover; display:block;  cursor: zoom-in; transition: transform .25s ease, filter .25s ease; }


.lc2-section--dark{ padding: 56px 0; background: transparent; }

.lc2-h2{ margin:0 0 8px; font-size: clamp(22px, 2.3vw, 34px); letter-spacing:-.02em; }
.lc2-sub{ color: rgba(234,240,247,.62); font-size: 13px; margin-bottom: 18px; }

.lc2-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lc2-card{ border-radius: 16px; padding: 14px; background: rgba(255,255,255,.05); border:1px solid rgba(234,240,247,.10); }
.lc2-card__t{ font-weight: 900; }
.lc2-card__meta{ margin-top: 6px; font-size: 12px; color: rgba(234,240,247,.62); letter-spacing: .2px; }
.lc2-card__d{ margin-top: 6px; color: rgba(234,240,247,.72); font-size: 13px; line-height:1.5; }

.lc2-bio{ margin-top: 14px; border-radius: 16px; padding: 14px; border:1px solid rgba(234,240,247,.10); background: rgba(0,0,0,.14); }
.lc2-bio__t{ font-weight: 900; }
.lc2-bio__d{ margin-top: 6px; color: rgba(234,240,247,.72); font-size: 13px; line-height:1.55; }
.lc2-bio__line{ margin-top: 6px; }
.lc2-bio__line:first-child{ margin-top: 0; }
.lc2-bio__years{ margin-top: 10px; }
.lc2-accent{ color: rgba(215,180,106,.92); font-weight: 900; }

.lc2-cta{ margin-top: 14px; display:flex; align-items:center; justify-content:space-between; gap: 14px;
  border-radius: 18px; padding: 14px; border:1px solid rgba(215,180,106,.22);
  background: radial-gradient(520px 220px at 20% 40%, rgba(215,180,106,.15), transparent 60%), rgba(255,255,255,.04);
}
.lc2-cta__t{ font-weight: 900; }
.lc2-cta__d{ margin-top: 6px; color: rgba(234,240,247,.70); font-size: 13px; }

.lc2-form{ border-radius: 20px; padding: 18px; background: rgba(255,255,255,.05); border:1px solid rgba(234,240,247,.12); box-shadow: 0 18px 55px rgba(0,0,0,.35); }
.lc2-fields{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.lc2-field span{ display:block; font-size: 12px; color: rgba(234,240,247,.62); margin-bottom: 7px; }
.lc2-field input{ width:100%; padding: 12px; border-radius: 14px; background: rgba(0,0,0,.18); border:1px solid rgba(234,240,247,.14); color: rgba(234,240,247,.92); outline:none; }
.lc2-field input:focus{ border-color: rgba(215,180,106,.55); box-shadow: 0 0 0 3px rgba(215,180,106,.20); }

.lc2-consents{ display:grid; gap: 10px; margin: 12px 0; }
.lc2-consent{ display:flex; align-items:flex-start; gap: 10px; padding: 12px; border-radius: 14px; border:1px solid rgba(234,240,247,.10); background: rgba(0,0,0,.14); }
.lc2-consent input{ position:absolute; opacity:0; pointer-events:none; }
.lc2-box{ width:18px; height:18px; margin-top: 2px; border-radius: 6px; border:1px solid rgba(234,240,247,.20); background: rgba(255,255,255,.04); transition: all .22s ease; }
.lc2-consent:has(input:checked){ border-color: rgba(215,180,106,.30); background: rgba(215,180,106,.06); }
.lc2-consent:has(input:checked) .lc2-box{ border-color: rgba(215,180,106,.60); box-shadow: inset 0 0 0 9px rgba(215,180,106,.90); }

.lc2-fine{ margin-top: 10px; font-size: 12px; color: rgba(234,240,247,.58); text-align:center; }
.lc2-toast{ margin-top: 10px; font-size: 13px; color: rgba(234,240,247,.85); text-align:center; opacity:0; transform: translateY(4px); transition: all .25s ease; }
.lc2-toast.is-show{ opacity:1; transform: translateY(0); }

/* Program modal */
.lc2-modal{ position:fixed; inset:0; display:none; z-index:999; }
.lc2-modal.is-open{ display:block; }
.lc2-modal__bg{ position:absolute; inset:0; background: rgba(0,0,0,.65); backdrop-filter: blur(8px); }
.lc2-modal__dlg{ position:relative; width:min(920px, calc(100vw - 26px)); margin: 80px auto 18px; border-radius: 18px;
  border: 1px solid rgba(234,240,247,.14); background: rgba(8,10,14,.92); box-shadow: 0 30px 120px rgba(0,0,0,.60); overflow:hidden; }
.lc2-modal__top{ display:flex; align-items:center; justify-content:space-between; padding: 14px; }
.lc2-modal__title{ font-weight: 900; }
.lc2-x{ width:36px; height:36px; border-radius: 12px; border: 1px solid rgba(234,240,247,.16); background: rgba(0,0,0,.18); color: rgba(234,240,247,.92); cursor:pointer; }
.lc2-modal__body{ padding: 14px; }
.lc2-frame{ width:100%; height: 70vh; border:0; border-radius: 14px; background: rgba(0,0,0,.20); }

/* Overlay title on the EXISTING hero video host (no layout changes) */
.lc2-heroVideoHost{ position:relative; }
.lc2-heroVideoHost::after{content:"";}
.lc2-heroVideoHost::before{content:"";}
@media (max-width: 980px){
  .lc2-photos{ grid-template-columns: 1fr; }
  .lc2-photo img{ height: 210px; }
  .lc2-grid{ grid-template-columns: 1fr; }
  .lc2-fields{ grid-template-columns: 1fr; }
  .lc2-cta{ flex-direction: column; align-items:flex-start; }
  .lc2-heroVideoHost::after{content:"";}
}

/* lc2 button mapping */
.btn--accent{
  border-color: rgba(215,180,106,.40) !important;
  background: linear-gradient(135deg, rgba(215,180,106,1), rgba(215,180,106,.72)) !important;
  color:#0B0F14 !important;
}
.btn--ghost{
  background: rgba(0,0,0,.20) !important;
  border-color: rgba(234,240,247,.18) !important;
}
.btn--full{ width:100%; justify-content:center; }
.btn--full{ white-space: normal; text-align:center; line-height: 1.15; }
.btn--full .btn-sub{ font-size: 0.95em; opacity: 0.95; }

/* ===== global-ambient-layer: smooth continuous background (no seams) ===== */
body{
  position: relative;
  overflow-x: hidden;
}
body::before{
  content:"";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(215,180,106,.14), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(118,185,255,.10), transparent 62%),
    radial-gradient(900px 600px at 55% 85%, rgba(107,27,42,.10), transparent 65%),
    linear-gradient(180deg, rgba(7,11,16,1) 0%, rgba(11,17,26,1) 55%, rgba(5,7,11,1) 100%);
  filter: blur(0px);
}
body::after{
  /* very subtle noise to avoid banding */
  content:"";
  position: fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.09;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

  .lc3-videoText{ left: 14px; right: 14px; top: 14px; }
}

/* ===== Tuning hero video overlay typography (smaller, cleaner) ===== */
.lc2-heroVideoHost::after{
  line-height: 1.06 !important;
  letter-spacing: -0.015em !important;
  max-width: 22ch;
}

/* ===== Photo hover + lightbox ===== */
.lc2-photo{
  cursor: zoom-in;
  transform: translateZ(0);
}
.lc2-photo img{
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s cubic-bezier(.2,.8,.2,1);
}
.lc2-photo:hover img{
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.lc2-lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200;
}
.lc2-lightbox.is-open{ display:block; }
.lc2-lightbox__bg{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}
.lc2-lightbox__img{
  position: relative;
  display:block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 26px);
  max-height: calc(100vh - 26px);
  object-fit: contain;
  margin: 13px auto;
  border-radius: 18px;
  box-shadow: 0 30px 120px rgba(0,0,0,.65);
}


/* Lightbox controls */
.lc2-lb-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(234,240,247,.22);
  color: rgba(234,240,247,.92);
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lc2-lb-btn:hover{ background: rgba(255,255,255,.08); border-color: rgba(234,240,247,.34); }
.lc2-lb-btn:active{ background: rgba(255,255,255,.12); }

.lc2-lb-close{
  top: 18px;
  right: 18px;
  transform: none;
  font-size: 18px;
  width: 40px;
  height: 40px;
}
.lc2-lb-prev{ left: 18px; }
.lc2-lb-next{ right: 18px; }

@media (max-width: 640px){
  .lc2-lb-prev, .lc2-lb-next{ width: 40px; height: 40px; font-size: 24px; }
  .lc2-lb-close{ right: 12px; top: 12px; }
}

.zoomable{cursor: zoom-in}


@media (max-width: 560px){
  .container{ width:min(var(--max), calc(100% - 24px)); }
  .section{ padding: 52px 0; }
  .card{ padding: 18px; }
  .chips{ gap: 8px; }
  .btn{ width: 100%; justify-content:center; }
}
@media (max-width: 380px){
  .section{ padding: 44px 0; }
  .h1{ font-size: clamp(28px, 8vw, 40px); }
}

/* Tighter spacing after photo section */
#course{ padding-bottom: 34px; }
#diagnostic{ padding-bottom: 40px; }


/* ===== Video poster fit fix (match vertical poster 9:16) ===== */
.video-wrap{
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 16;
  min-height: unset !important;
}
.video-wrap > video{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 22px;
}
