:root{
  --bg: #0b0f17;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --stroke: rgba(255,255,255,0.12);
  --accent: #4f9cff;          /* change to your brand color if you want */
  --accent2: #7c5cff;
  --shadow: 0 12px 40px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 24px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 12% 10%, rgba(79,156,255,0.18), transparent 55%),
    radial-gradient(800px 500px at 80% 0%, rgba(124,92,255,0.16), transparent 55%),
    var(--bg);
  color: var(--text);
}

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

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,0.65);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo{
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(79,156,255,0.95), rgba(124,92,255,0.95));
  box-shadow: var(--shadow);
}
.brand-name{ font-weight: 700; letter-spacing: 0.2px; }
.brand-tag{ font-size: 12.5px; color: var(--muted2); margin-top: 2px; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover{ color: var(--text); }

.hero{
  padding: 72px 0 38px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero-content h1{
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 14px 0;
  letter-spacing: -0.6px;
}
.subtext{
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0 0 22px 0;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79,156,255,0.95), rgba(124,92,255,0.95));
  color: white;
  font-weight: 650;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 45px rgba(79,156,255,0.12);
}
.btn:hover{ filter: brightness(1.03); }
.btn:active{ transform: translateY(1px); }

.btn-small{ padding: 10px 14px; border-radius: 12px; }

.btn-ghost{
  background: transparent;
  border: 1px solid var(--stroke);
  box-shadow: none;
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.06);
}

.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 12.5px;
}

.hero-card .card{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header{
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
}
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.card-body{
  padding: 18px 18px 20px;
}
.card-title{
  font-weight: 700;
  margin-bottom: 12px;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.card-footnote{
  margin-top: 14px;
  color: var(--muted2);
  font-size: 13px;
}

.section{
  padding: 66px 0;
}
.section.alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.section-head h2{
  margin: 0 0 10px 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.section-head p{
  margin: 0 0 26px 0;
  color: var(--muted);
  line-height: 1.6;
}

.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  padding: 18px;
}
.tile h3{
  margin: 0 0 8px 0;
  font-size: 16px;
}
.tile p{
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.55;
}
.meta{
  font-size: 12.5px;
  color: var(--muted2);
  border-top: 1px solid var(--stroke);
  padding-top: 12px;
}

.steps{
  display: grid;
  gap: 14px;
}
.step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
}
.step-num{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(79,156,255,0.16);
  border: 1px solid rgba(79,156,255,0.25);
}
.step h3{ margin: 2px 0 6px 0; }
.step p{ margin: 0; color: var(--muted); line-height: 1.6; }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact-copy p{
  color: var(--muted);
  line-height: 1.6;
}
.contact-card{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
}
.contact-line{
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-line:last-child{ border-bottom: none; }
.contact-line span{ color: var(--text); font-weight: 600; }

.form{
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  padding: 18px;
}
label{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}
input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(11,15,23,0.55);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(79,156,255,0.55);
  box-shadow: 0 0 0 4px rgba(79,156,255,0.12);
}
textarea{ resize: vertical; }

.fineprint{
  margin: 10px 0 0 0;
  font-size: 12px;
  color: var(--muted2);
}

.alerts{ margin-top: 16px; display: grid; gap: 10px; }
.alert{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}
.alert.success{
  border-color: rgba(80,200,120,0.35);
  background: rgba(80,200,120,0.12);
  color: rgba(220,255,235,0.92);
}
.alert.error{
  border-color: rgba(255,90,90,0.35);
  background: rgba(255,90,90,0.12);
  color: rgba(255,235,235,0.92);
}

.footer{
  padding: 26px 0;
  border-top: 1px solid var(--stroke);
  color: var(--muted2);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links{
  display: flex;
  gap: 14px;
}
.footer-links a:hover{ color: var(--text); }

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav-links{ gap: 12px; }
}
