:root{
  --bg: #f7f8fa;
  --bg2:#ffffff;
  --card:#ffffff;
  --text:#0e1116;
  --muted: rgba(14,17,22,.65);
  --muted2: rgba(14,17,22,.5);
  --line: rgba(0,0,0,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.08);
  --radius: 20px;
  --radius2: 28px;
  --max: 1120px;
  --accent: linear-gradient(135deg, #5e72ff, #4cc9f0);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 10% -10%, rgba(94,114,255,.08), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(76,201,240,.08), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 48px));margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.8);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.brand{display:flex;align-items:center;gap:10px}
.brand__mark{
  width:14px;height:14px;border-radius:6px;
  background: var(--accent);
}
.brand__name{
  font-weight:700;
  letter-spacing:-.02em;
}

.nav{display:flex;gap:18px;font-weight:500;color:var(--muted)}
.nav a{padding:8px 12px;border-radius:999px}
.nav a:hover{background:rgba(0,0,0,.04);color:var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background: var(--accent);
  color:#fff;
  font-weight:600;
  border:none;
  box-shadow: 0 10px 30px rgba(94,114,255,.25);
}
.btn:hover{transform:translateY(-1px)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 14px}

.hero{
  padding:90px 0 70px;
}
.hero__inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  color:var(--muted);
  margin-bottom:10px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.headline{
  margin:0 0 16px;
  font-size:clamp(38px,4vw,56px);
  line-height:1.05;
  letter-spacing:-.04em;
}

.subhead{
  margin:0 0 22px;
  color:var(--muted);
  font-size:17px;
  max-width:56ch;
}

.hero__cta{display:flex;gap:14px;flex-wrap:wrap}

.hero__meta{
  display:flex;
  gap:10px;
  margin-top:22px;
  flex-wrap:wrap;
}

.pill{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted2);
}

.hero__card{
  background:#fff;
  border-radius:var(--radius2);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:24px;
}

.stat{
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.stat:last-child{border-bottom:none}
.stat__label{
  font-size:13px;
  color:var(--muted2);
}
.stat__value{
  font-weight:700;
  margin-top:4px;
}

.section{
  padding:90px 0;
}

.section--alt{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{
  margin-bottom:40px;
}
.section__head h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.02em;
}
.section__head p{
  margin:0;
  color:var(--muted);
}

.grid{
  display:grid;
  gap:20px;
}
.grid--3{
  grid-template-columns:repeat(3,1fr);
}

.tile{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--line);
  padding:22px;
  box-shadow:var(--shadow);
}
.tile h3{
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.tile p{
  margin:0 0 14px;
  color:var(--muted);
}
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.contact-card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}

.form{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--line);
  padding:24px;
  box-shadow:var(--shadow);
}

input,select,textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:#5e72ff;
}

.footer{
  padding:40px 0 60px;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer__right{color:var(--muted)}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:980px){
  .hero__inner{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .contact-card{grid-template-columns:1fr}
}

.brand__logo{
  height: 40px;
  width: auto;
  display:block;
}

.hp{position:absolute;left:-9999px;opacity:0}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:auto;
  height:auto;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  background:#111;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  z-index:9999;
}