:root{
  --bg:#07111c;
  --bg2:#0a1b2b;
  --surface:#0f2538;
  --surface2:#132d44;
  --card:#10283d;
  --line:rgba(194,232,255,.14);
  --line2:rgba(194,232,255,.24);
  --text:#f5fbff;
  --muted:#9fb4c6;
  --muted2:#748da0;
  --blue:#2d8cff;
  --cyan:#32d2e5;
  --cyan2:#9af1fb;
  --green:#45c49c;
  --gold:#d8b76f;
  --max:1180px;
  --radius:26px;
  --shadow:0 26px 80px rgba(0,0,0,.30);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% -8%,rgba(50,210,229,.13),transparent 30%),
    radial-gradient(circle at 90% 8%,rgba(45,140,255,.13),transparent 28%),
    linear-gradient(180deg,#07111c 0%,#0a1b2b 52%,#07111c 100%);
  line-height:1.62;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  opacity:.32;
  background:
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.026) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:linear-gradient(180deg,#000,transparent 75%);
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
.container{width:min(var(--max),calc(100% - 40px));margin-inline:auto}
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,17,28,.82);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:82px;
  display:grid;
  grid-template-columns:190px 1fr auto;
  align-items:center;
  gap:20px;
}
.wordmark{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  line-height:1;
  font-weight:950;
  letter-spacing:.10em;
}
.wordmark:before{
  content:"";
  width:10px;
  height:34px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--cyan),var(--blue));
  transform:skewX(-12deg);
  box-shadow:0 0 30px rgba(50,210,229,.35);
}
.navlinks{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:4px;
}
.navlinks a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  font-weight:850;
  transition:.2s ease;
}
.navlinks a:hover,.navlinks a.active{
  color:#fff;
  background:rgba(255,255,255,.075);
}
.right-tools{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang{
  display:flex;
  gap:4px;
  padding:5px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.045);
}
.lang button{
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:7px 9px;
  background:transparent;
  color:var(--muted);
  font-size:12px;
  font-weight:950;
}
.lang button.active{
  color:#06111c;
  background:linear-gradient(135deg,var(--cyan),#fff);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:13px 18px;
  cursor:pointer;
  font-size:14px;
  font-weight:950;
  transition:.22s ease;
  white-space:nowrap;
}
.btn-primary{
  color:#06111c;
  background:linear-gradient(135deg,var(--cyan),#fff);
  box-shadow:0 18px 42px rgba(50,210,229,.20);
}
.btn-ghost{
  color:#eaf8ff;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.055);
}
.btn:hover{transform:translateY(-2px)}
.mobile{
  display:none;
  border:1px solid var(--line2);
  color:#fff;
  background:rgba(255,255,255,.065);
  border-radius:14px;
  padding:10px 12px;
}
.hero{
  padding:44px 0 72px;
}
.hero-panel{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  min-height:640px;
  border:1px solid var(--line2);
  background:
    radial-gradient(circle at 82% 18%,rgba(50,210,229,.20),transparent 29%),
    radial-gradient(circle at 12% 76%,rgba(216,183,111,.12),transparent 31%),
    linear-gradient(135deg,rgba(15,37,56,.98),rgba(7,17,28,.98) 58%,rgba(12,54,78,.96));
  box-shadow:var(--shadow);
}
.hero-panel:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(90deg,#000,transparent 78%);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:640px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
  padding:54px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  color:var(--cyan2);
  border:1px solid var(--line2);
  background:rgba(255,255,255,.07);
  font-size:13px;
  font-weight:950;
}
h1,h2,h3{margin:0;line-height:1.05;letter-spacing:-.05em}
h1{
  margin-top:22px;
  font-size:clamp(44px,6vw,78px);
  max-width:760px;
}
.gradient{
  background:linear-gradient(135deg,#fff 0%,#eafcff 45%,var(--cyan2) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:24px 0 30px;
  max-width:720px;
  color:var(--muted);
  font-size:clamp(17px,1.5vw,21px);
}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:34px;
}
.metric{
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.045);
  padding:16px;
}
.metric strong{
  display:block;
  font-size:26px;
  line-height:1;
}
.metric span{
  display:block;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  margin-top:7px;
}
.hero-visual{
  position:relative;
  min-height:480px;
  border:1px solid var(--line2);
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.035));
}
.hero-visual:before{
  content:"";
  position:absolute;
  inset:26px;
  border-radius:26px;
  border:1px dashed rgba(255,255,255,.18);
}
.sheet{
  position:absolute;
  left:50%;
  top:50%;
  width:min(76%,380px);
  aspect-ratio:1.04/1;
  transform:translate(-50%,-50%) rotate(-7deg);
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.78),rgba(202,245,252,.62)),
    repeating-linear-gradient(90deg,rgba(14,111,163,.18) 0 8px,transparent 8px 22px);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:0 38px 90px rgba(0,0,0,.34);
}
.sheet:before,.sheet:after{
  content:"";
  position:absolute;
  border-radius:26px;
  background:rgba(255,255,255,.32);
  border:1px solid rgba(7,29,50,.10);
}
.sheet:before{inset:32px 54px}
.sheet:after{left:70px;right:70px;top:0;bottom:0;transform:skewX(-12deg)}
.orb{
  position:absolute;
  right:42px;
  top:42px;
  width:112px;
  height:112px;
  border-radius:72% 28% 62% 38%;
  background:linear-gradient(135deg,#d9fbff,var(--cyan));
  transform:rotate(-18deg);
  box-shadow:0 26px 70px rgba(50,210,229,.28);
}
.orb:after{
  content:"";
  position:absolute;
  left:28px;
  top:58px;
  width:66px;
  height:5px;
  background:#fff;
  border-radius:999px;
  transform:rotate(-38deg);
}
.float{
  position:absolute;
  color:#06111c;
  background:rgba(255,255,255,.94);
  border-radius:20px;
  padding:15px 16px;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}
.float strong{display:block;color:var(--blue);font-size:23px;line-height:1}
.float span{display:block;color:#526d80;font-size:12px;font-weight:950;margin-top:5px}
.f1{left:22px;top:68px}.f2{right:22px;bottom:70px}.f3{left:42px;bottom:46px}
.section{
  padding:86px 0;
}
.section-soft{
  border-top:1px solid rgba(255,255,255,.055);
  border-bottom:1px solid rgba(255,255,255,.055);
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015));
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:38px;
}
.section-head.center{
  display:block;
  text-align:center;
  max-width:820px;
  margin:0 auto 46px;
}
.kicker{
  color:var(--cyan);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:950;
  margin-bottom:12px;
}
h2{
  max-width:760px;
  font-size:clamp(34px,4.4vw,58px);
}
.section-head p,.section-head.center p{
  color:var(--muted);
  max-width:600px;
  font-size:17px;
  margin:16px 0 0;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.card,.product,.step,.info{
  border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border-radius:26px;
  padding:26px;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  transition:.25s ease;
}
.card:hover,.product:hover,.step:hover,.info:hover{
  transform:translateY(-5px);
  border-color:rgba(50,210,229,.32);
}
.icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:#06111c;
  background:linear-gradient(135deg,var(--cyan),#fff);
  font-weight:950;
  margin-bottom:20px;
}
.card h3,.product h3,.step h3{
  font-size:22px;
  margin-bottom:10px;
}
.card p,.product p,.step p{
  color:var(--muted);
  margin:0;
}
.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:42px;
  align-items:center;
}
.visual-panel{
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--line2);
  background:
    radial-gradient(circle at 75% 20%,rgba(50,210,229,.18),transparent 30%),
    linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
}
.visual-panel:before{
  content:"";
  position:absolute;
  inset:34px;
  border-radius:26px;
  background:
    linear-gradient(120deg,rgba(50,210,229,.08),rgba(45,140,255,.08)),
    repeating-linear-gradient(0deg,rgba(255,255,255,.045) 0 2px,transparent 2px 18px);
  border:1px solid rgba(255,255,255,.10);
}
.panel-sun{
  position:absolute;
  right:46px;
  top:44px;
  width:92px;
  height:92px;
  border-radius:50%;
  background:linear-gradient(135deg,#fff1c4,var(--gold));
  box-shadow:0 0 70px rgba(216,183,111,.25);
}
.panel-box{
  position:absolute;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 24px 56px rgba(0,0,0,.18);
}
.b1{left:64px;bottom:78px;width:160px;height:120px}
.b2{right:70px;bottom:112px;width:188px;height:150px}
.b3{left:170px;top:150px;width:138px;height:104px}
.benefits{
  display:grid;
  gap:14px;
  margin-top:26px;
}
.benefit{
  display:flex;
  gap:13px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.045);
}
.tick{
  flex:0 0 auto;
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#06111c;
  background:var(--cyan);
  font-weight:950;
}
.benefit b{display:block}
.benefit span{display:block;color:var(--muted);font-size:14px;margin-top:2px}
.products{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.product{
  position:relative;
  min-height:280px;
  overflow:hidden;
}
.product.featured{
  background:
    radial-gradient(circle at 82% 18%,rgba(50,210,229,.20),transparent 30%),
    linear-gradient(145deg,rgba(45,140,255,.18),rgba(255,255,255,.045));
  border-color:rgba(50,210,229,.28);
}
.product:after{
  content:"";
  position:absolute;
  right:-44px;
  bottom:-54px;
  width:180px;
  height:180px;
  border-radius:50px;
  background:linear-gradient(135deg,rgba(50,210,229,.12),rgba(45,140,255,.22));
  transform:rotate(18deg);
}
.product h3,.product p,.tags{position:relative;z-index:2}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
}
.tag{
  border-radius:999px;
  padding:7px 10px;
  color:#dbf9ff;
  background:rgba(50,210,229,.10);
  border:1px solid rgba(50,210,229,.18);
  font-size:12px;
  font-weight:950;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.number{
  color:var(--cyan);
  font-size:38px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.06em;
  margin-bottom:18px;
}
.cta{
  border-radius:34px;
  padding:52px;
  border:1px solid rgba(50,210,229,.24);
  background:
    radial-gradient(circle at 88% 22%,rgba(50,210,229,.20),transparent 27%),
    linear-gradient(135deg,#0f2538,#07111c 66%,#0d3d5a);
  box-shadow:var(--shadow);
}
.cta p{max-width:720px;color:var(--muted);font-size:17px}
.page-hero{
  padding:82px 0 50px;
  text-align:center;
}
.breadcrumb{
  display:inline-flex;
  color:var(--cyan);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.page-hero h1{
  max-width:900px;
  margin:0 auto;
  font-size:clamp(42px,5.5vw,72px);
}
.page-hero p{
  max-width:760px;
  margin:22px auto 0;
  color:var(--muted);
  font-size:18px;
}
.table-wrap{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:26px;
  background:rgba(255,255,255,.045);
}
table{
  width:100%;
  min-width:780px;
  border-collapse:collapse;
}
th,td{
  text-align:left;
  padding:18px 20px;
  border-bottom:1px solid var(--line);
}
th{
  color:#fff;
  background:rgba(255,255,255,.045);
  font-size:13px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
td{color:var(--muted)}
tr:last-child td{border-bottom:0}
.info-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}
.info-list{
  display:grid;
  gap:14px;
}
.info b{display:block}
.info span{display:block;color:var(--muted);margin-top:4px}
.form{
  padding:28px;
  border:1px solid var(--line2);
  border-radius:30px;
  background:rgba(255,255,255,.065);
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}
label{
  display:block;
  margin-bottom:8px;
  color:#eaf8ff;
  font-size:14px;
  font-weight:950;
}
input,select,textarea{
  width:100%;
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line2);
  border-radius:16px;
  padding:14px 15px;
  outline:0;
}
input::placeholder,textarea::placeholder{color:#6f8799}
input:focus,select:focus,textarea:focus{
  border-color:var(--cyan);
  box-shadow:0 0 0 4px rgba(50,210,229,.12);
}
textarea{min-height:150px;resize:vertical}
.full{grid-column:1/-1}
.notice{color:var(--muted2);font-size:13px;margin-top:12px}
.footer{
  margin-top:58px;
  padding:52px 0 24px;
  border-top:1px solid var(--line);
  background:rgba(3,12,22,.36);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .95fr .95fr;
  gap:28px;
}
.footer h3{margin:0 0 14px;font-size:26px;letter-spacing:.10em}
.footer h4{margin:0 0 12px}
.footer p,.footer li,.footer a{color:var(--muted)}
.footer ul{list-style:none;padding:0;margin:0;display:grid;gap:8px}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-top:36px;
  padding-top:22px;
  border-top:1px solid var(--line);
  color:var(--muted2);
  font-size:14px;
}
@media(max-width:1020px){
  .nav{grid-template-columns:auto auto auto}
  .hero-grid,.split,.info-grid{grid-template-columns:1fr}
  .hero-grid{padding:38px}
  .hero-panel{min-height:auto}
  .hero-visual{min-height:440px}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .products,.steps{grid-template-columns:repeat(2,1fr)}
  .section-head{display:block}
  .footer-grid{grid-template-columns:1fr 1fr}
  .right-tools .btn{display:none}
}
@media(max-width:740px){
  .container{width:min(var(--max),calc(100% - 32px))}
  .nav{
    min-height:auto;
    display:flex;
    padding:14px 0;
    align-items:center;
  }
  .wordmark{font-size:22px}
  .wordmark:before{height:30px;width:9px}
  .mobile{display:block}
  .right-tools{margin-left:auto}
  .navlinks{
    position:absolute;
    left:16px;
    right:16px;
    top:74px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(7,17,28,.98);
    border:1px solid var(--line2);
    border-radius:22px;
    padding:14px;
    box-shadow:var(--shadow);
  }
  .navlinks.open{display:flex}
  .hero{padding-top:28px}
  .hero-panel{border-radius:28px}
  .hero-grid{padding:26px}
  .hero-metrics,.grid-4,.products,.steps{grid-template-columns:1fr}
  .actions .btn{width:100%}
  .section{padding:66px 0}
  .footer-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .cta{padding:30px}
}