@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root{
  --bg:#061626;
  --panel:#0B2438;
  --panel2:#0E2C49;
  --text:#EAF4FF;
  --muted:rgba(234,244,255,.74);
  --brand:#3ED3C4;
  --brand2:#2B8CFF;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius:16px;
  --radius-sm:12px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 10% 10%, rgba(62,211,196,.14), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(43,140,255,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(to bottom, rgba(6,22,38,.92), rgba(6,22,38,.60));
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.nav{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:16px 0}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand .dot{
  width:12px; height:12px; border-radius:50%; background:var(--brand);
  box-shadow:0 0 0 6px rgba(62,211,196,.12);
}
.brand span{font-weight:700; letter-spacing:.3px}

.navlinks{display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-end}
.navlinks a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.navlinks a:hover{color:var(--text); border-color:var(--border); background:rgba(255,255,255,.03)}

main{padding:34px 0 60px}

.hero{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-inner{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; padding:28px}
@media (max-width: 900px){.hero-inner{grid-template-columns:1fr; padding:20px}}

.kicker{color:var(--muted); font-weight:700; font-size:13px; letter-spacing:.12em; text-transform:uppercase}
.h1{font-size:44px; line-height:1.05; margin:10px 0 14px; letter-spacing:-.02em}
@media (max-width: 600px){.h1{font-size:34px}}

.lead{color:var(--muted); font-size:16px; line-height:1.7; margin:0 0 18px}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  border:1px solid var(--border);
}
.btn.primary{background: rgba(62,211,196,.14); border-color: rgba(62,211,196,.35)}
.btn.primary:hover{background: rgba(62,211,196,.22)}
.btn.ghost{background: transparent}
.btn.ghost:hover{background: rgba(255,255,255,.04)}

.hero-media{
  border-radius: calc(var(--radius) - 2px);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  overflow:hidden;
  min-height:260px;
}
.hero-media img{width:100%; height:100%; object-fit:cover; display:block;}

.section{margin-top:34px}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin:0 0 14px}
.section-title h2{margin:0; font-size:22px; letter-spacing:-.01em}
.section-title p{margin:0; color:var(--muted); line-height:1.6}

.grid{display:grid; gap:16px}
.grid.cards3{grid-template-columns: repeat(3, minmax(0,1fr))}
@media (max-width: 980px){.grid.cards3{grid-template-columns:1fr}}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.7}

.card ul{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted); line-height:1.8}

.mini{
  display:flex; align-items:center; gap:10px; color:var(--muted);
  font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase;
}
.mini .pill{width:9px; height:9px; border-radius:50%; background:var(--brand2); box-shadow:0 0 0 6px rgba(43,140,255,.10)}

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

hr.sep{border:none; border-top:1px solid var(--border); margin:20px 0}

.kv{display:grid; grid-template-columns: 160px 1fr; gap:12px; align-items:start; margin:8px 0}
.kv .k{color:var(--muted); font-weight:800; font-size:13px; text-transform:uppercase; letter-spacing:.08em}
.kv .v{color:var(--text)}

.table{
  width:100%; border-collapse:separate; border-spacing:0;
  border:1px solid var(--border);
  border-radius:var(--radius-sm); overflow:hidden;
}
.table th, .table td{padding:12px 14px; border-bottom:1px solid var(--border)}
.table th{background:rgba(255,255,255,.03); text-align:left; color:rgba(234,244,255,.9)}
.table td{color:var(--muted)}
.table tr:last-child td{border-bottom:none}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.form{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border-radius:var(--radius);
  padding:18px;
}
label{display:block; margin:10px 0 6px; color:rgba(234,244,255,.9); font-weight:800; font-size:13px; letter-spacing:.06em; text-transform:uppercase}
input,textarea{
  width:100%;
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
textarea{min-height:160px; resize:vertical}

.footer{margin-top:50px; padding-top:18px; border-top:1px solid var(--border); color:var(--muted)}

.small{font-size:13px; color:var(--muted)}

.product-iframe{
  width:100%; height:520px;
  border:1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
}

.notice{
  border:1px solid rgba(62,211,196,.35);
  background: rgba(62,211,196,.10);
  padding:12px 14px;
  border-radius: var(--radius-sm);
  color: rgba(234,244,255,.92);
}

