:root{
  --bg:#070A0F;
  --bg2:#070B14;
  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.06);
  --text:#F3F6FF;
  --muted:#B5BEDA;
  --muted2:#8F9ABF;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.14);
  --brand:#6D7CFF;
  --brandB:#22D3EE;
  --shadow: 0 24px 80px rgba(0,0,0,.40);
  --radius: 18px;
  --radius2: 26px;
  --container: 1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei", Arial, "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 520px at 18% -10%, rgba(109,124,255,.26), transparent 58%),
    radial-gradient(950px 520px at 86% 8%, rgba(34,211,238,.16), transparent 58%),
    radial-gradient(900px 620px at 50% 110%, rgba(124,58,237,.14), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 45%),
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity:.18;
  mix-blend-mode: overlay;
}

a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

@media (min-width: 1280px){
  .container{width:min(var(--container), calc(100% - 72px))}
}

/* ultra-wide: add breathing room */
@media (min-width: 1440px){
  :root{--container: 1400px;}
  .container{width:min(var(--container), calc(100% - 96px))}
}
@media (min-width: 1680px){
  :root{--container: 1520px;}
  .container{width:min(var(--container), calc(100% - 120px))}
}

.skip-link{
  position:absolute;
  left:12px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  color:#0b1022;
  transform:translateY(-150%);
  transition:transform .2s ease;
  z-index:1000;
}
.skip-link:focus{transform:translateY(0)}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  /* Use solid background so page gradients don't bleed through. */
  background: #070A0F;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.header.is-scrolled{
  background: #070A0F;
  border-bottom-color: rgba(255,255,255,.10);
}

.brand{
  display:flex;
  align-items:flex-end;
  gap:8px;
  min-width: 180px;
}
.brand__mark{
  width:36px;height:36px;
  border-radius:12px;
  display:grid;place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(109,124,255,1), rgba(34,211,238,1));
  box-shadow: 0 14px 34px rgba(109,124,255,.20);
  overflow:hidden;
}
.brand__mark--image{
  width: 132px;
  height: 32px;
  border-radius: 0;
  padding:0;
  /* Keep logo itself transparent. */
  background: inherit;
  border: 0;
  box-shadow: none;
}
.brand__mark .siteLogo{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}
.brand__mark--image{
  overflow: visible;
}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__name{
  font-weight:800;
  letter-spacing:.2px;
  font-size: 20px;
  line-height: 1;
}
.brand__sub{font-size:12px;color:var(--muted)}

/* When using image logo, keep the name closer and bottom-aligned */
.brand__mark--image + .brand__text{
  line-height: 1;
  padding-bottom: 2px; /* visually align baseline with logo bottom */
}

.nav{display:flex;align-items:center;gap:10px}
.nav__toggle{
  display:none;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
}
.nav__toggleIcon{
  width:18px;height:12px;
  position:relative;
  display:inline-block;
}
.nav__toggleIcon::before,
.nav__toggleIcon::after,
.nav__toggleIcon span{
  content:"";
  position:absolute;
  left:0;right:0;
  height:2px;
  border-radius:3px;
  background:rgba(255,255,255,.85);
}
.nav__toggleIcon::before{top:0}
.nav__toggleIcon::after{bottom:0}
.nav__toggleIcon span{top:5px}
.nav__toggleText{font-size:14px;color:var(--muted)}

.nav__panel{
  display:flex;
  gap:6px;
  padding:8px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  border-radius:16px;
}
.nav__link{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(234,240,255,.86);
  font-size:14px;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover{background:rgba(255,255,255,.08); color:rgba(234,240,255,1)}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.09); border-color: rgba(255,255,255,.14)}
.btn:active{transform: translateY(0px)}
.btn--primary{
  background: linear-gradient(135deg, rgba(109,124,255,1), rgba(34,211,238,1));
  border-color: rgba(109,124,255,.35);
  box-shadow: 0 18px 46px rgba(109,124,255,.16);
}
.btn--primary:hover{background: linear-gradient(135deg, rgba(109,124,255,1), rgba(34,211,238,.95))}
.btn--ghost{background:rgba(255,255,255,.02)}
.btn--phone{cursor: default}
.btn__icon--phone{margin-right: -2px}
.btn--invert{
  background:#ffffff;
  color:#0b1022;
  border-color: rgba(255,255,255,.9);
}
.btn--ghostOnDark{
  background:rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.btn--lg{padding:12px 16px; border-radius:18px}
.btn__icon{font-size:14px}

.hero{
  padding: 64px 0 34px;
}
.heroV2{
  padding: 78px 0 44px;
}
.heroV2__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.heroV2__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(181,190,218,.98);
  font-size:13px;
}
.heroV2__title{
  margin:14px 0 10px;
  font-size: 58px;
  line-height:1.02;
  letter-spacing:-1.2px;
}
.heroV2__titleGlow{
  display:block;
  margin-top:10px;
  background: linear-gradient(135deg, rgba(109,124,255,1), rgba(34,211,238,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.heroV2__desc{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.8;
  color: rgba(181,190,218,.98);
  max-width: 64ch;
}
.heroV2__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}
.heroV2__kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top: 6px;
}
.kpi{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding:14px;
}
.kpi__v{font-weight:900; font-size:24px; letter-spacing:-.3px}
.kpi__k{margin-top:6px; color: rgba(181,190,218,.95)}

.heroV2__panel{position:relative; min-height: 520px}
.heroV2__glow{
  position:absolute;
  border-radius:999px;
  filter: blur(26px);
  opacity:.65;
  pointer-events:none;
}
.heroV2__glow--a{width:260px;height:260px; background: rgba(109,124,255,.25); left:-60px; top:80px}
.heroV2__glow--b{width:220px;height:220px; background: rgba(34,211,238,.18); right:-50px; bottom:40px}

.holo{
  position:relative;
  height:100%;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: 18px;
}
.holo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(109,124,255,.18), transparent 60%),
    radial-gradient(520px 260px at 80% 30%, rgba(34,211,238,.14), transparent 60%),
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  opacity:.55;
  pointer-events:none;
}
.holo__top{position:relative; display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 14px}
.holo__pill{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(243,246,255,.90);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.2px;
}
.holo__chart{
  position:relative;
  height: 220px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,10,15,.30);
  overflow:hidden;
  margin-bottom: 14px;
}
.holo__line{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(109,124,255,.35), rgba(34,211,238,.25), transparent);
  transform: translateX(-30%);
  animation: sweep 4.2s ease-in-out infinite;
}
.holo__line--2{
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.28), rgba(109,124,255,.22), transparent);
  animation-duration: 5.2s;
}
.holo__dot{
  position:absolute;
  left: 62%;
  top: 46%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(34,211,238,1);
  box-shadow: 0 0 0 10px rgba(34,211,238,.10), 0 0 28px rgba(34,211,238,.45);
}
.holo__grid{
  position:relative;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
.holoStat{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 12px;
}
.holoStat__k{color: rgba(181,190,218,.95); font-size:12px}
.holoStat__v{margin-top:6px; font-weight:900; letter-spacing:-.2px; font-size:20px}

@keyframes sweep{
  0%{transform: translateX(-40%)}
  50%{transform: translateX(40%)}
  100%{transform: translateX(-40%)}
}

.logoWall{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap:10px;
}
.logoWall__item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  min-height: 78px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px 12px;
}
.logoWall__logo{
  width:100%;
  max-width: 160px;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05) brightness(1.1);
  opacity: .90;
}
.logoWall__name{
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(243,246,255,.92);
}

.capGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.capCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.capCard__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(181,190,218,.98);
  font-size:12px;
  letter-spacing:.3px;
}
.capCard__title{margin:10px 0 6px; font-size:18px}
.capCard__desc{margin:0; color: rgba(181,190,218,.98); line-height:1.75}

.stepGrid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:10px;
}
.step{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 14px;
}
.step__n{
  font-weight: 900;
  letter-spacing: .4px;
  color: rgba(34,211,238,.90);
}
.step__t{margin-top:10px; font-weight:900}
.step__d{margin-top:6px; color: rgba(181,190,218,.98); line-height:1.6; font-size:13px}

.newsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.newsCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: 26px;
  padding: 16px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.newsCard:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}
.newsCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.newsCard__badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(181,190,218,.98);
  font-size:12px;
}
.newsCard__date{color: rgba(181,190,218,.90); font-size:12px}
.newsCard__title{font-weight:900; letter-spacing:-.2px; line-height:1.35}
.newsCard__desc{margin-top:8px; color: rgba(181,190,218,.98); line-height:1.7}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}
.hero__copy{
  padding: 18px 0;
}
.hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:rgba(234,240,255,.85);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin:0 0 14px;
  font-size:13px;
}
.hero__title{
  margin:0 0 12px;
  font-size: 52px;
  line-height:1.02;
  letter-spacing:-.9px;
}
.hero__titleAccent{
  display:block;
  margin-top:10px;
  font-size: 22px;
  line-height:1.25;
  color: rgba(181,190,218,.98);
  font-weight:600;
}
.hero__desc{
  margin: 0 0 18px;
  color: rgba(168,178,211,.96);
  font-size:18px;
  line-height:1.75;
  max-width: 56ch;
}
.hero__cta{display:flex;flex-wrap:wrap; gap:12px; margin-bottom:18px}
.hero__badges{
  list-style:none;
  padding:0;
  margin: 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:rgba(234,240,255,.88);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}

.hero__visual{
  position:relative;
  min-height: 420px;
}
.glassCard{
  position:relative;
  height:100%;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glassCard::before{
  content:"";
  position:absolute; inset:-60px -60px auto auto;
  width:240px;height:240px;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.42), transparent 60%);
  filter: blur(2px);
}
.glassCard__top{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.18);
}
.dot{width:10px;height:10px;border-radius:50%}
.dot--r{background:#ef4444}
.dot--y{background:#f59e0b}
.dot--g{background:#22c55e}
.glassCard__title{margin-left:6px;color:rgba(234,240,255,.85); font-size:13px}
.glassCard__body{padding:18px 16px 16px}
.sparkline{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:8px;
  align-items:end;
  height:82px;
  margin-bottom:14px;
}
.sparkline span{
  display:block;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(124,58,237,.70));
  opacity:.9;
}
.sparkline span:nth-child(1){height:24px}
.sparkline span:nth-child(2){height:36px}
.sparkline span:nth-child(3){height:20px}
.sparkline span:nth-child(4){height:56px}
.sparkline span:nth-child(5){height:42px}
.sparkline span:nth-child(6){height:68px}
.sparkline span:nth-child(7){height:38px}
.sparkline span:nth-child(8){height:74px}
.sparkline span:nth-child(9){height:46px}
.sparkline span:nth-child(10){height:58px}
.sparkline span:nth-child(11){height:40px}
.sparkline span:nth-child(12){height:62px}

.miniGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.miniStat{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.miniStat__k{color:rgba(168,178,211,.95); font-size:12px}
.miniStat__v{font-weight:800; font-size:22px; letter-spacing:-.2px; margin-top:6px}

.orb{
  position:absolute;
  border-radius:999px;
  filter: blur(18px);
  opacity:.75;
  pointer-events:none;
}
.orb--1{width:180px;height:180px; background: rgba(59,130,246,.42); left:-40px; bottom:30px}
.orb--2{width:140px;height:140px; background: rgba(34,197,94,.34); right:-30px; top:70px}
.orb--3{width:120px;height:120px; background: rgba(124,58,237,.30); right:80px; bottom:-30px}

.section{padding: 64px 0}
.section--alt{background: rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section__head{margin-bottom: 18px}
.section__title{margin:0 0 10px; font-size:32px; letter-spacing:-.4px}
.section__sub{margin:0; color: rgba(168,178,211,.96); line-height:1.7; max-width: 70ch}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
}
.card:hover{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.card__title{margin:0 0 8px; font-size:18px}
.card__desc{margin:0 0 10px; color:rgba(168,178,211,.96); line-height:1.7}
.card__desc{font-size:15px}
.card__list{margin:0; padding-left:18px; color:rgba(234,240,255,.85); line-height:1.75}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.feature{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
}
.feature__title{margin:0 0 6px; font-size:18px}
.feature__desc{margin:0; color:rgba(168,178,211,.96); line-height:1.75}

.logos{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap:10px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.logo{
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding:16px 10px;
  text-align:center;
  color: rgba(168,178,211,.95);
  font-weight:700;
}

.partnerGrid{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:10px;
}
.partnerCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding:14px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 78px;
  position:relative;
  overflow:hidden;
}
.partnerCard::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width:160px;height:160px;
  background: radial-gradient(circle at 30% 30%, rgba(109,124,255,.20), transparent 62%);
  filter: blur(1px);
}
.partnerCard__logo{
  position:relative;
  width: 100%;
  max-width: 160px;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05) brightness(1.1);
  opacity: .88;
}
.partnerCard__name{
  position:relative;
  font-weight:800;
  color: rgba(234,240,255,.92);
  text-align:center;
}
.partnerCard__name small{
  display:block;
  margin-top:6px;
  font-weight:600;
  color: rgba(168,178,211,.95);
  font-size:12px;
}
.partnerCard:hover{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

@media (max-width: 1024px){
  .partnerGrid{grid-template-columns: repeat(3, minmax(0, 1fr))}
}
@media (max-width: 820px){
  .partnerGrid{grid-template-columns: repeat(2, minmax(0, 1fr))}
}
.quote{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:16px 16px 14px;
}
.quote__text{margin:0 0 10px; font-size:16px; line-height:1.85; color: rgba(234,240,255,.92)}
.quote__by{margin:0; color: rgba(168,178,211,.95)}

.section--cta{
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(59,130,246,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 40%, rgba(34,197,94,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.cta{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.cta__copy{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:18px;
}
.cta__title{margin:0 0 10px; font-size:28px}
.cta__desc{margin:0 0 14px; color: rgba(168,178,211,.96); line-height:1.75}
.cta__actions{display:flex; gap:12px; flex-wrap:wrap}
.cta__stats{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.stat{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:16px;
}
.stat__v{font-size:26px; font-weight:900; letter-spacing:-.3px}
.stat__k{margin-top:6px; color: rgba(168,178,211,.96)}

.listCards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.listCard{
  display:flex;
  flex-direction:column;
  gap:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:16px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.listCard:hover{transform: translateY(-2px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14)}
.listCard__tag{
  align-self:flex-start;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(168,178,211,.95);
}
.listCard__title{font-weight:800}
.listCard__meta{color: rgba(168,178,211,.95); font-size:13px}

.aboutGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.aboutCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:16px;
}
.aboutCard__title{margin:0 0 8px}
.aboutCard__desc{margin:0; color: rgba(168,178,211,.96); line-height:1.75}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact__bullets{
  margin:14px 0 0;
  padding-left:18px;
  color: rgba(234,240,255,.86);
  line-height:1.8;
}

.form{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field--full{grid-column: 1 / -1}
.field__label{font-size:13px;color: rgba(168,178,211,.96)}
.field__input{
  width:100%;
  border-radius: 16px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,18,.25);
  color: var(--text);
  outline:none;
}
.field__input:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow: 0 0 0 4px rgba(59,130,246,.18);
}
.field__textarea{resize: vertical; min-height: 110px}
.form__actions{grid-column: 1 / -1; display:flex; flex-direction:column; gap:10px; margin-top:4px}
.form__hint{margin:0; color: rgba(168,178,211,.90); font-size:13px; line-height:1.6}

.footer{
  padding: 42px 0 22px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:14px;
}
.prose{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: var(--radius2);
  padding: 22px;
  line-height: 1.9;
  color: rgba(243,246,255,.94);
}
.prose h1,.prose h2,.prose h3{letter-spacing:-.3px}
.prose h2{margin-top:22px}
.prose a{text-decoration: underline; text-decoration-color: rgba(34,211,238,.45)}
.prose img{max-width:100%; border-radius: 18px; border:1px solid rgba(255,255,255,.10)}
.prose blockquote{
  margin: 16px 0;
  padding: 10px 14px;
  border-left: 3px solid rgba(34,211,238,.55);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  color: rgba(181,190,218,.98);
}
.footer__logo{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.footer__desc{margin:0; color: rgba(168,178,211,.96); line-height:1.7; max-width: 40ch}
.footer__title{margin:0 0 10px; font-size:14px; color: rgba(234,240,255,.92)}
.footer__col{display:flex;flex-direction:column; gap:8px}
.footer__col a{color: rgba(168,178,211,.96)}
.footer__col a:hover{color: rgba(234,240,255,1)}
.footer__muted{color: rgba(168,178,211,.90); font-size:13px; line-height:1.6}
.footer__bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color: rgba(168,178,211,.92);
  font-size:13px;
}
.footer__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap: wrap;
}
.footer__legal{
  color: rgba(168,178,211,.90);
  font-size: 12px;
  line-height: 1.75;
  text-align:center;
}
.footer__legalLine{display:block}
.footer__legalList{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  justify-content:center;
  align-items:center;
  margin: 0 0 6px;
}
.footer__legalList--iso{margin-top: 6px}
.footer__legalItem{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(168,178,211,.94);
}
.footer__legalItem:hover{color: rgba(234,240,255,.96); border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.045)}
.footer__legalIcon{width:16px;height:16px; display:inline-block; color: rgba(234,240,255,.78)}
.footer__legal a{color: inherit}
.footer__legal strong{color: rgba(234,240,255,.92); font-weight: 700}
.footer__backTop{padding:8px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04)}

.modal{
  position:fixed; inset:0;
  display:none;
  place-items:center;
  z-index:200;
}
.modal.is-open{display:grid}
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.6);
}
.modal__panel{
  position:relative;
  width: min(980px, calc(100% - 28px));
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,14,26,.92);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__close{
  position:absolute;
  top:10px; right:10px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.modal__media{aspect-ratio: 16/9; background:#000}
.modal__video{width:100%;height:100%;display:block}

@media (max-width: 1024px){
  .hero__grid{grid-template-columns: 1fr; gap:16px}
  .heroV2__grid{grid-template-columns: 1fr}
  .heroV2__panel{min-height: 420px}
  .heroV2__title{font-size: 44px}
  .heroV2__kpis{grid-template-columns: 1fr}
  .logoWall{grid-template-columns: repeat(3, minmax(0,1fr))}
  .capGrid{grid-template-columns: 1fr}
  .stepGrid{grid-template-columns: 1fr}
  .newsGrid{grid-template-columns: 1fr}
  .hero__visual{min-height: 360px}
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .logos{grid-template-columns: repeat(3, minmax(0,1fr))}
  .cta{grid-template-columns: 1fr}
  .listCards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .aboutGrid{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr 1fr}
}

@media (max-width: 820px){
  .header__actions{display:none}
  .nav__toggle{display:inline-flex}
  .nav__panel{
    position:absolute;
    top:62px;
    right: calc((100vw - min(var(--container), calc(100% - 40px))) / 2);
    width: min(420px, calc(100vw - 24px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    background: rgba(10,14,26,.92);
    border-color: rgba(255,255,255,.14);
    padding:10px;
    box-shadow: var(--shadow);
  }
  .nav__panel.is-open{display:flex}
  .nav__link{padding:12px 12px}
  .hero__title{font-size: 36px}
  .heroV2{padding: 60px 0 34px}
  .heroV2__title{font-size: 36px}
  .logoWall{grid-template-columns: repeat(2, minmax(0,1fr))}
  .hero__titleAccent{font-size: 18px}
  .cards{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .listCards{grid-template-columns: 1fr}
  .form{grid-template-columns: 1fr}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important}
}
