:root{
  --bg:#2a3140;
  --bg2:#39435a;
  --card:rgba(255,255,255,.11);
  --card2:rgba(255,255,255,.16);
  --stroke:rgba(255,255,255,.22);
  --text:#e9ecf4;
  --muted:rgba(233,236,244,.72);
  --muted2:rgba(233,236,244,.62);
  --orange:#00A3E0;
  --orange2:#4FC3F7;
  --lime:#42ffb2;
  --shadow:0 22px 60px rgba(0,0,0,.42);
  --shadow2:0 10px 28px rgba(0,0,0,.24);
  --radius:18px;
  --radius2:28px;
  --max:90vw;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 720px at 14% 12%, rgba(0,163,224,.34), transparent 55%),
    radial-gradient(900px 560px at 82% 18%, rgba(255,255,255,.14), transparent 52%),
    radial-gradient(1000px 680px at 55% 92%, rgba(79,195,247,.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid var(--stroke);
  z-index:9999;
}
.skip-link:focus{left:16px}

.topbar{
  position:sticky;
  top:0;
  z-index:5000;
  backdrop-filter:blur(18px) saturate(170%);
  -webkit-backdrop-filter:blur(18px) saturate(170%);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border-bottom:1px solid rgba(255,255,255,.14);
}

.nav{
  position:relative;
  z-index:5001;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}
.brand .logo{
  width:auto;
  height:auto;
  border-radius:0;
  border:none;
  background:transparent;
  box-shadow:none;
  display:grid;
  place-items:center;
}
.brand .logo img{
  height:40px;
  width:auto;
  aspect-ratio:6.148/1;
  object-fit:contain;
  border-radius:0;
  border:none;
  background:transparent;
  display:block;
}
.brand .title{display:none}
.brand strong{font-weight:750; letter-spacing:.2px}
.brand span{font-size:12px; color:var(--muted2)}

.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav-item{position:relative; display:inline-flex; align-items:center}
.nav-item > a{display:inline-flex}
.nav-item.has-sub > a::after{
  content:"▾";
  font-size:11px;
  opacity:.7;
  margin-left:6px;
  transform:translateY(-1px);
}
.nav-item.has-sub::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:12px;
  pointer-events:none;
}
.subnav{
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(18px) saturate(170%);
  -webkit-backdrop-filter:blur(18px) saturate(170%);
  box-shadow:var(--shadow);
  display:none;
  flex-direction:column;
  gap:6px;
  z-index:1200;
}
.nav-item.has-sub{z-index:1100}
.nav-item.has-sub:hover{z-index:1200}
.nav-item.has-sub:hover .subnav{display:flex}
.nav-item.has-sub:focus-within .subnav{display:flex}

.subnav a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(233,236,244,.92);
  white-space:nowrap;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.subnav a:hover{background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.18); transform:translateY(-1px)}

.nav-links a{
  font-size:13px;
  color:rgba(233,236,244,.92);
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.nav-links a:hover{background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); transform:translateY(-1px)}
.nav-links a.active{background:rgba(0,163,224,.20); border-color:rgba(0,163,224,.55)}

.nav-cta{
  position:relative;
  z-index:5002;
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.075);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  color:rgba(233,236,244,.92);
  box-shadow:var(--shadow2);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
  font-size:13px;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.20)}
.btn.primary{
  background:linear-gradient(135deg, rgba(0,163,224,1), rgba(79,195,247,.92));
  border-color:rgba(79,195,247,.55);
  color:#ffffff;
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(0,163,224,1), rgba(79,195,247,1))}
.btn.ghost{background:transparent}

.hamburger{
  display:none;
  position:relative;
  z-index:5003;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.075);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  color:var(--text);
  cursor:pointer;
  pointer-events:auto;
  touch-action:manipulation;
}

.mobile-panel{
  display:none;
  border-top:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(18px) saturate(170%);
  -webkit-backdrop-filter:blur(18px) saturate(170%);
  padding:10px 0 18px;
}
.mobile-panel[hidden]{display:none !important}
.mobile-panel .nav-links{justify-content:flex-start}

.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.34);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:5900;
}
.drawer-backdrop.show{opacity:1; pointer-events:auto}
body.drawer-open{overflow:hidden}

.progress{
  height:2px;
  width:100%;
  background:rgba(255,255,255,.08);
}
.progress > div{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--orange), rgba(79,195,247,1));
}

.hero{
  position:relative;
  padding:78px 0 36px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:30px;
  align-items:center;
}

.hero h1{
  font-size:clamp(34px, 4vw, 54px);
  line-height:1.06;
  margin:0 0 14px;
  letter-spacing:-.7px;
}
.hero p{margin:0 0 18px; color:var(--muted); font-size:15.5px; line-height:1.7}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(233,236,244,.88);
  font-size:12px;
  margin-bottom:14px;
}
.kicker i{
  width:10px;
  height:10px;
  border-radius:99px;
  background:linear-gradient(180deg, var(--orange), rgba(79,195,247,1));
  box-shadow:0 0 0 6px rgba(0,163,224,.24);
}

.hero-actions{display:flex; gap:10px; flex-wrap:wrap}

.hero-card{
  position:relative;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(520px 380px at 22% 20%, rgba(0,163,224,.28), transparent 58%),
    radial-gradient(520px 380px at 86% 78%, rgba(255,255,255,.10), transparent 60%),
    rgba(255,255,255,.085);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-card .inner{padding:18px}

.hero-card .plate{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding:18px;
}

.hero-card .badge-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  font-size:12px;
  color:rgba(233,236,244,.86);
}
.badge .dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:linear-gradient(180deg, var(--orange), rgba(79,195,247,1));
}

.hero-canvas{
  position:absolute;
  inset:-10px;
  z-index:-1;
  opacity:.55;
}

.hero--full{
  padding:0;
}

.hero-slider{
  position:relative;
  min-height:calc(100vh - 84px);
  max-height:960px;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .85s ease, transform .85s ease;
  z-index:1;
}

.hero-slide.active{
  opacity:1;
  transform:scale(1);
  z-index:2;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
  pointer-events:none;
}

.hero-slide.active .hero-bg{
  transform:scale(1.06);
  animation:kenburns 11s ease-in-out infinite alternate;
}

@keyframes kenburns{
  0%{transform:scale(1.06) translate3d(0,0,0)}
  100%{transform:scale(1.13) translate3d(-1.2%, -1.2%, 0)}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 560px at 18% 22%, rgba(0,163,224,.44), transparent 58%),
    radial-gradient(700px 520px at 82% 22%, rgba(255,255,255,.14), transparent 62%),
    linear-gradient(90deg, rgba(42,49,64,.80) 0%, rgba(42,49,64,.60) 46%, rgba(42,49,64,.30) 100%),
    linear-gradient(180deg, rgba(42,49,64,.22) 0%, rgba(42,49,64,.60) 88%);
  pointer-events:none;
}

.hero-content{
  position:relative;
  padding:86px 0 44px;
  z-index:5;
}

.hero-content--center{
  padding:0;
  min-height:calc(100vh - 84px);
  display:flex;
  align-items:center;
}
.hero-content--center .container{padding:0}
.hero-grid--banner{
  width:100%;
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap:22px;
  align-items:center;
}
.hero-banner-box{max-width:none}
.hero-banner-box h1{margin-bottom:12px}
.hero-banner-box h1{font-size:clamp(40px, 4.6vw, 64px)}
.hero-banner-box p{font-size:18px; max-width:60ch}

.hero-banner-media{display:flex; justify-content:center; align-items:center}
.hero-product{
  width:min(560px, 44vw);
  height:auto;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.55));
  pointer-events:none;
}

.hero-content .hero-grid{
  grid-template-columns:1.1fr .9fr;
}

.hero-controls{
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  z-index:60;
}

.hero-controls .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.hero-dots{display:flex; gap:10px; flex-wrap:wrap}
.hero-dot{
  width:44px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.hero-dot::after{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  transition:transform var(--t, 7000ms) linear;
  background:linear-gradient(90deg, var(--orange), rgba(79,195,247,1));
  opacity:.95;
}
.hero-dot.active::after{transform:translateX(0)}

.hero-arrows{display:flex; gap:10px}
.hero-arrow{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow2);
  cursor:pointer;
  color:rgba(233,236,244,.92);
  font-size:18px;
  font-weight:900;
  line-height:1;
}
.hero-arrow:hover{background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22)}

.section{padding:54px 0}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{margin:0; font-size:26px; letter-spacing:-.4px}
.section-head p{margin:0; color:var(--muted2); max-width:640px; line-height:1.6; font-size:14px}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}

.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(640px 420px at 18% 16%, rgba(255,255,255,.14), transparent 58%),
    rgba(255,255,255,.075);
  backdrop-filter:blur(16px) saturate(150%);
  -webkit-backdrop-filter:blur(16px) saturate(150%);
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.card .pad{padding:18px}

.card-title{display:flex; align-items:center; gap:10px; margin:0 0 10px}
.card-title strong{font-size:15px}
.card-title .icon{
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:radial-gradient(circle at 25% 25%, rgba(255,255,255,.14), rgba(255,255,255,.04));
  display:grid;
  place-items:center;
}

.card p{margin:0; color:var(--muted2); line-height:1.65; font-size:13.5px}

.ribbon{
  height:2px;
  background:linear-gradient(90deg, rgba(0,163,224,0), rgba(0,163,224,.9), rgba(79,195,247,.9), rgba(0,163,224,0));
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.stat{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(520px 360px at 20% 18%, rgba(255,255,255,.14), transparent 60%),
    rgba(255,255,255,.075);
  backdrop-filter:blur(16px) saturate(150%);
  -webkit-backdrop-filter:blur(16px) saturate(150%);
  box-shadow:var(--shadow2);
  padding:16px;
}
.stat .num{font-size:26px; font-weight:800; letter-spacing:-.5px}
.stat .label{font-size:12.5px; color:var(--muted2); margin-top:6px; line-height:1.4}

.pills{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:rgba(233,236,244,.90);
  font-size:12px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.panel{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(640px 420px at 22% 16%, rgba(255,255,255,.12), transparent 62%),
    radial-gradient(520px 380px at 18% 26%, rgba(0,163,224,.24), transparent 62%),
    rgba(255,255,255,.075);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panel .pad{padding:18px}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
}
.table th,.table td{
  padding:12px 12px;
  font-size:13px;
  color:rgba(233,236,244,.88);
  border-bottom:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
}
.table th{color:rgba(233,236,244,.96); font-weight:700}
.table tr:last-child td{border-bottom:none}

.form{
  display:grid;
  gap:10px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-size:12.5px; color:rgba(233,236,244,.78)}
input,textarea,select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, background .2s ease;
}
input:focus,textarea:focus,select:focus{border-color:rgba(0,163,224,.55); background:rgba(0,0,0,.30)}
textarea{min-height:120px; resize:vertical}
.help{font-size:12px; color:var(--muted2); line-height:1.5}

 .form-error,
 .field-error{
  margin-top:8px;
  font-size:12px;
  line-height:1.5;
  color:rgba(79,195,247,1);
 }

.footer{
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(42,49,64,.22), rgba(42,49,64,.60));
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:flex-start;
}
.footer small{color:var(--muted2)}
.footer a{color:rgba(233,236,244,.80)}
.footer a:hover{color:rgba(79,195,247,1)}

.links{display:grid; grid-template-columns:repeat(2,1fr); gap:10px}
.links a{padding:8px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04)}
.links a:hover{border-color:rgba(0,163,224,.30); background:rgba(255,255,255,.06)}

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%) translateY(20px);
  opacity:0;
  pointer-events:none;
  background:rgba(0,0,0,.60);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  padding:12px 14px;
  border-radius:999px;
  box-shadow:var(--shadow2);
  color:rgba(233,236,244,.92);
  font-size:13px;
  transition:opacity .22s ease, transform .22s ease;
  z-index:2000;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(0)}

.backtop{
  position:fixed;
  right:14px;
  bottom:14px;
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow2);
  cursor:pointer;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  z-index:1600;
}
.backtop.show{opacity:1; transform:translateY(0); pointer-events:auto}

.reveal{opacity:0; transform:translateY(14px) scale(.99); filter:blur(6px)}
.reveal.show{opacity:1; transform:translateY(0) scale(1); filter:blur(0)}

.be-wrap{
  width:100%;
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.be-inner{
  display:grid;
  grid-template-columns: 1.05fr 1fr 1.25fr;
  min-height:420px;
}

.be-left{
  padding:44px 56px 52px;
  background:linear-gradient(180deg, rgba(42,49,64,.92), rgba(57,67,90,.86));
  border-right:1px solid rgba(255,255,255,.10);
}

.be-left h2{
  margin:0 0 14px;
  font-size:40px;
  letter-spacing:-.6px;
  line-height:1.08;
}

.be-left p{margin:0 0 18px; color:rgba(233,236,244,.78); line-height:1.75; max-width:520px}
.be-left .be-link{display:inline-flex; align-items:center; gap:8px; font-size:13px; letter-spacing:.16em; text-transform:uppercase; font-weight:700; border-bottom:1px solid rgba(255,255,255,.24); padding-bottom:2px}
.be-left .be-link:hover{border-color:rgba(0,163,224,.70); color:rgba(79,195,247,1)}

.be-nav{
  padding:44px 32px 40px;
  background:rgba(255,255,255,.04);
  border-right:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.be-nav-head{margin-bottom:6px}
.be-nav-label{display:inline-block; font-size:12px; letter-spacing:.2em; text-transform:uppercase; font-weight:700; color:rgba(0,163,224,1); margin-bottom:6px}
.be-nav-note{margin:0; font-size:15px; font-weight:650; color:rgba(233,236,244,.90)}

.be-item{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  border-radius:14px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
  box-shadow:var(--shadow2);
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, transform .15s ease;
}
.be-item-title{font-size:15px; font-weight:700; color:rgba(233,236,244,.90)}
.be-item:hover{border-color:rgba(0,163,224,.45); background:rgba(255,255,255,.10); transform:translateY(-1px)}
.be-item.be-active{border-color:rgba(0,163,224,.65); background:linear-gradient(135deg, rgba(0,163,224,.18) 0%, rgba(255,255,255,.06) 60%)}
.be-item.be-active .be-item-title{color:rgba(79,195,247,1)}

.be-preview{
  padding:44px 48px 40px;
  background:rgba(255,255,255,.03);
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.be-preview-media{width:100%; max-width:680px}
.be-preview-media img{
  width:100%;
  height:auto;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  transition:transform .3s ease, opacity .2s ease;
}
.be-preview-media:hover img{transform:scale(1.01)}

.af-wrap{padding:54px 0}
.af-controls{display:flex; gap:10px; align-items:center}
.af-controls{flex-shrink:0}
.af-arrow{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow2);
  cursor:pointer;
  color:rgba(233,236,244,.92);
  font-size:18px;
  z-index:2;
  font-weight:900;
  line-height:1;
}
.af-arrow:hover{background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22)}
.af-rail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(320px, 1fr);
  gap:16px;
  overflow-x:auto;
  padding:6px 4px 12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.af-rail::-webkit-scrollbar{height:10px}
.af-rail::-webkit-scrollbar-thumb{background:rgba(255,255,255,.16); border-radius:999px}
.af-rail::-webkit-scrollbar-track{background:rgba(255,255,255,.06); border-radius:999px}
.af-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
  min-height:320px;
  scroll-snap-align:start;
}
.af-card:hover{border-color:rgba(0,163,224,.35)}
.af-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform .45s ease;
}
.af-toggle{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.38);
  color:rgba(233,236,244,.96);
  font-size:18px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  backdrop-filter:blur(10px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
  z-index:3;
}
.af-toggle:hover{transform:translateY(-1px); background:rgba(0,0,0,.52); border-color:rgba(0,163,224,.32)}
.af-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 18px 16px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.82) 100%);
}
.af-overlay h3{margin:0 0 8px; font-size:18px; letter-spacing:-.2px}
.af-overlay p{margin:0; color:rgba(233,236,244,.78); line-height:1.6; font-size:13.5px; max-height:0; opacity:0; overflow:hidden; transition:max-height .35s ease, opacity .25s ease}
.af-card:hover img{transform:scale(1.08)}
.af-card:hover .af-overlay h3{color:rgba(79,195,247,1)}
.af-card.af-open .af-overlay p{max-height:120px; opacity:1}
.af-card.af-open .af-overlay{background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 35%, rgba(0,0,0,.92) 100%)}

.af-grid{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:16px}

.fp-grid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; align-items:stretch}
.fp-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow);
  min-height:360px;
}
.fp-card:hover{border-color:rgba(0,163,224,.35)}
.fp-card img{width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:transform .5s ease}
.fp-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px 22px 20px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.52) 45%, rgba(0,0,0,.86) 100%);
}
.fp-kicker{font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:rgba(79,195,247,1); font-weight:800; margin-bottom:10px}
.fp-overlay h3{margin:0 0 10px; font-size:22px; letter-spacing:-.4px; line-height:1.15}
.fp-overlay p{margin:0; color:rgba(233,236,244,.78); line-height:1.6}
.fp-cta{margin-top:14px; font-weight:800; letter-spacing:.06em}
.fp-card:hover img{transform:scale(1.08)}
.fp-card:hover .fp-cta{color:rgba(79,195,247,1)}

@media (max-width: 992px){
  .af-wrap{padding:42px 0}
  .af-rail{grid-auto-columns:minmax(78%, 1fr)}
  .af-card{min-height:280px}
  .af-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .fp-grid{grid-template-columns:1fr}
  .fp-card{min-height:320px}
  .hero-content--center{min-height:72vh}
  .hero-grid--banner{grid-template-columns:1fr}
  .hero-banner-media{display:none}
}

@media (max-width: 640px){
  .af-rail{grid-auto-columns:minmax(86%, 1fr)}
  .af-overlay{padding:16px 16px 14px}
  .af-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important; transition:none!important; animation:none!important}
  .reveal{opacity:1; transform:none; filter:none}
  .hero-slide.active .hero-bg{animation:none!important; transform:none!important}
}

@media (max-width: 980px){
  html,body{overscroll-behavior-x:none}
  body{--drawer-w:min(86vw, 360px); touch-action:pan-y}
  .topbar, main, .footer, .backtop, .toast{transition:transform .24s ease; will-change:transform}
  body.drawer-open .topbar,
  body.drawer-open main,
  body.drawer-open .footer,
  body.drawer-open .backtop,
  body.drawer-open .toast{transform:translateX(calc(-1 * var(--drawer-w)))}
  .hero-slider{min-height:72vh}
  .hero-content{padding:72px 0 52px}
  .hero-content--center{padding:0}
  .hero-overlay{
    background:
      radial-gradient(900px 560px at 18% 18%, rgba(0,163,224,.38), transparent 60%),
      radial-gradient(700px 520px at 82% 18%, rgba(255,255,255,.12), transparent 64%),
      linear-gradient(180deg, rgba(42,49,64,0) 0%, rgba(42,49,64,.42) 70%, rgba(42,49,64,.68) 100%);
  }
  .hero-grid{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .brand{min-width:auto}
  .nav-links{display:none}
  .hamburger{display:inline-grid; place-items:center}
  .mobile-panel{
    display:block;
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:var(--drawer-w);
    padding:18px 16px 22px;
    border-top:none;
    border-left:1px solid rgba(255,255,255,.18);
    border-radius:18px 0 0 18px;
    background:rgba(255,255,255,.10);
    box-shadow:0 22px 60px rgba(0,0,0,.50);
    transform:translateX(110%);
    transition:transform .24s ease;
    z-index:6000;
  }
  .mobile-panel.is-open{transform:translateX(0)}
  .mobile-panel .nav-links{display:flex; flex-direction:column; gap:8px}
  .mobile-panel .nav-links a{width:100%}
  .footer-grid{grid-template-columns:1fr}
  .be-inner{grid-template-columns:minmax(0,1fr)}
  .be-left{padding:32px 20px 28px}
  .be-left h2{font-size:30px}
  .be-nav{padding:24px 20px; border-right:none; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08)}
  .be-preview{padding:24px 20px 32px}
}

@media (max-width: 520px){
  .hero{padding-top:62px}
  .hero-content{padding:62px 0 62px}
  .hero--full{padding-top:0}
  .hero--full .hero-content{padding:0}
  .stats{grid-template-columns:1fr}
  .be-left h2{font-size:26px}
}
