/* KinWare – simple modern design (no build tools) */
:root{
  --bg:#070b16;
  --bg2:#0b1220;
  --card:#0f1830cc;
  --card2:#0f1830;
  --text:#eaf0ff;
  --muted:#a8b2cc;
  --line:#223052;
  --brand:#7c5cff;
  --brand2:#24d2ff;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --radius: 18px;
}

*{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 800px at 15% 10%, #16224a 0%, transparent 55%),
              radial-gradient(900px 600px at 80% 20%, #1b3a57 0%, transparent 55%),
              linear-gradient(180deg,var(--bg) 0%, var(--bg2) 100%);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
.container{width:min(1120px, 92%); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:0;
  background:#fff; color:#000; padding:.6rem .8rem; border-radius:10px;
}
.skip:focus{left:12px; top:12px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: linear-gradient(180deg, rgba(7,11,22,.75) 0%, rgba(7,11,22,.45) 100%);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-text{font-weight:700; letter-spacing:.3px}
.logo{
  width:28px; height:28px; border-radius:10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
  box-shadow: 0 10px 30px rgba(124,92,255,.25);
}
.menu{display:flex; align-items:center; gap:18px}
.menu a{color:var(--muted); font-weight:500}
.menu a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-weight:600;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(135deg, rgba(124,92,255,1) 0%, rgba(36,210,255,1) 100%);
  border-color: transparent;
  color:#081023;
}
.btn--ghost{
  background: rgba(255,255,255,.04);
}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{
  display:block; height:2px; width:18px; margin:4px auto;
  background: rgba(255,255,255,.8);
  border-radius:99px;
}

.mobile{
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(7,11,22,.88);
}
.mobile-inner{
  display:flex; flex-direction:column; gap:12px;
  padding:14px 0 18px;
}
.mobile-inner a{color:var(--muted); font-weight:600}
.mobile-inner a:hover{color:var(--text)}

.hero{
  position:relative;
  padding:84px 0 32px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  color: var(--muted);
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.85rem;
  margin:0 0 10px;
}
h1{
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height:1.05;
  margin:0 0 14px;
}
.lead{
  color: var(--muted);
  font-size:1.05rem;
  line-height:1.6;
  margin:0 0 20px;
  max-width: 54ch;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 16px}
.trust{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  padding:9px 12px;
  border-radius: 999px;
  font-weight:600;
  font-size:.92rem;
}

.section{padding:64px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 100%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.section-head h2{margin:0; font-size:1.7rem}
.section-head p{margin:0; color:var(--muted); max-width: 62ch; line-height:1.6}

.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(3, 1fr)}
.card{
  background: rgba(15,24,48,.62);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px 18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 10px; font-size:1.1rem}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.list li{margin:4px 0}

.hero-card .card{padding:0; overflow:hidden}
.card-top{
  display:flex; align-items:center;
  gap:8px;
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.dot{width:10px; height:10px; border-radius:99px; background: rgba(255,255,255,.20)}
.title{margin-left:8px; color:var(--muted); font-weight:600; font-size:.92rem}
.card-body{padding:16px 16px 18px}
.code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:.92rem;
  line-height:1.7;
  color:#d7e2ff;
}
.k{color:#7c5cff}
.s{color:#24d2ff}
.c{color: rgba(255,255,255,.45)}
.metric{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.metric-box{
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.metric-num{font-size:1.1rem}
.metric-txt{color:var(--muted); font-weight:600; font-size:.92rem; margin-top:4px}

.floating{
  display:flex; gap:10px; flex-wrap:wrap;
  justify-content:center;
  margin-top:12px;
}
.chip{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:700;
  font-size:.92rem;
}

.steps{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.step{
  display:flex; gap:12px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.step-num{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.9) 0%, rgba(36,210,255,.9) 100%);
  color:#081023;
  font-weight:800;
}
.step-body h3{margin:0 0 6px}
.step-body p{margin:0; color:var(--muted); line-height:1.6}

.stack-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.stack-item{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.stack-item span{font-weight:800}
.stack-item small{display:block; margin-top:6px; color:var(--muted); line-height:1.5}

.contact-grid{display:grid; grid-template-columns: .9fr 1.1fr; gap:16px; align-items:start}
.note{margin:12px 0 0; color: rgba(255,255,255,.55); line-height:1.6; font-size:.95rem}
.form .field{display:flex; flex-direction:column; gap:7px; margin-bottom:12px}
label{font-weight:700; color: #dbe5ff}
input, select, textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,22,.5);
  color: var(--text);
  padding:12px 12px;
  outline:none;
  font: inherit;
}
textarea{resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(36,210,255,.7);
  box-shadow: 0 0 0 4px rgba(36,210,255,.12);
}
.hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

.fineprint{color: rgba(255,255,255,.55); font-size:.92rem; line-height:1.5; margin-top:10px}

.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(7,11,22,.45);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.brand-row{display:flex; align-items:center; gap:10px}
.muted{color:var(--muted); margin:.35rem 0 0}
.footer-links{color:var(--muted); font-weight:600}
.sep{opacity:.5; padding:0 10px}

/* Background orbs */
.bg-orb{
  position:absolute;
  filter: blur(55px);
  opacity:.55;
  border-radius:999px;
  pointer-events:none;
}
.orb1{width:520px; height:520px; left:-180px; top:-220px; background: rgba(124,92,255,.55)}
.orb2{width:420px; height:420px; right:-140px; top:-140px; background: rgba(36,210,255,.45)}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .stack-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:inline-grid; place-items:center}
  .section-head{flex-direction:column; align-items:flex-start}
}
