:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.56);
  --line:rgba(255,255,255,.10);
  --brand:#7C5CFF;
  --brand2:#00D6FF;
  --ok:#27e2a4;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r:18px;
  --r2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(2000px 1400px at 20% 10%, rgba(124,92,255,.25), transparent 60%),
              radial-gradient(1500px 1200px at 90% 20%, rgba(0,214,255,.18), transparent 55%),
              radial-gradient(2000px 1600px at 50% 100%, rgba(39,226,164,.12), transparent 60%),
              var(--bg);
  background-attachment: fixed;
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.site-header{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(7,10,18,.85), rgba(7,10,18,.45));
  border-bottom:1px solid var(--line);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; height:74px; gap:16px}
.brand{display:flex; align-items:center; gap:10px}
.brand-logo{
  height: 60px; width: auto;
  border-radius:6px;
  /* box-shadow: 0 0 0 6px rgba(124,92,255,.12); */
}
.brand-text{font-weight:700; letter-spacing:.2px; color:var(--brand)}

.nav{display:flex; align-items:center; gap:14px}
.nav-link{
  padding:10px 12px; border-radius:12px;
  color:var(--muted);
}
.nav-link:hover{background:rgba(255,255,255,.05); color:var(--text)}
.nav-link.active{background:rgba(255,255,255,.06); color:var(--text); border:1px solid var(--line)}
.nav-cta{
  padding:10px 14px; border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,214,255,.75));
  color:#060914;
  font-weight:700;
  box-shadow: 0 10px 30px rgba(124,92,255,.22);
}
.nav-cta:hover{transform: translateY(-1px)}
.nav-cta:active{transform: translateY(0)}

.hero{
  position:relative;
  padding:56px 0 34px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}
.hero-bg{
  position:absolute; inset:-220px -200px auto -200px;
  height:520px;
  background:
    radial-gradient(closest-side at 25% 30%, rgba(124,92,255,.25), transparent 70%),
    radial-gradient(closest-side at 75% 35%, rgba(0,214,255,.16), transparent 65%);
  filter: blur(10px);
  pointer-events:none;
}

.eyebrow{margin:0 0 10px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; font-size:12px}
h1{margin:0 0 12px; font-size:44px; line-height:1.08; letter-spacing:-.02em}
.lead{margin:0; color:var(--muted); font-size:16.5px; max-width:62ch}

.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:650;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover{transform: translateY(-1px); background: rgba(255,255,255,.07)}
.button:active{transform: translateY(0)}
.button.primary{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,214,255,.75));
  border-color: transparent;
  color:#070A12;
}
.button.ghost{
  background: transparent;
}

.notice{
  margin-top:18px;
  display:flex; gap:10px; align-items:flex-start;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding:12px 12px;
}
.dot{width:10px; height:10px; border-radius:99px; background: var(--ok); margin-top:6px; box-shadow:0 0 0 5px rgba(39,226,164,.12)}
.notice p{margin:0; color:var(--muted)}

.hero-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--r2);
  padding:18px 18px;
  box-shadow: var(--shadow);
}
.stat{display:flex; align-items:baseline; justify-content:space-between; padding:10px 0}
.stat + .stat{border-top:1px solid rgba(255,255,255,.06)}
.stat-num{font-size:22px; font-weight:800; letter-spacing:-.02em}
.stat-label{color:var(--muted2); font-size:13px}
.divider{height:1px; background: rgba(255,255,255,.10); margin:14px 0}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{
  position:relative;
  padding-left:24px;
  color:var(--muted);
}
.checklist li::before{
  content:"";
  position:absolute; left:0; top:.45em;
  width:10px; height:10px; border-radius:4px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.section{padding:46px 0}
.section.soft{padding:34px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px; flex-wrap:wrap}
.section-head h2{margin:0; font-size:26px; letter-spacing:-.01em}
.section-head p{margin:0; color:var(--muted); max-width:70ch}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 6;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding:18px 18px;
  min-height: 150px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.card.accent{
  background: linear-gradient(180deg, rgba(124,92,255,.16), rgba(255,255,255,.03));
  border-color: rgba(124,92,255,.25);
}
.inline-link{display:inline-flex; margin-top:10px; color:rgba(255,255,255,.86)}
.inline-link:hover{text-decoration:underline}

.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.cta{
  border:1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--r2);
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
}
.cta h2{margin:0 0 6px; font-size:22px}
.cta p{margin:0; color:var(--muted)}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap}

.page-hero{padding:44px 0 24px}
.page-hero-grid{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap:18px;
  align-items:start;
}
.mini-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding:16px 16px;
}
.mini-row{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 0}
.mini-row + .mini-row{border-top:1px solid rgba(255,255,255,.06)}
.mini-k{color:var(--muted2); font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.mini-v a{color:rgba(255,255,255,.9)}
.sep{margin:0 8px; color:var(--muted2)}

.two-col{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding:18px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.26);
}
.panel h2{margin:0 0 6px; font-size:22px}
.muted{color:var(--muted)}

.form{margin-top:14px; display:grid; gap:12px}
.field{display:grid; gap:6px}
label, legend{font-weight:650; color:rgba(255,255,255,.86); font-size:14px}
input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus{border-color: rgba(0,214,255,.55); box-shadow: 0 0 0 5px rgba(0,214,255,.12)}
fieldset.field{border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:12px 12px}
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:6px}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.chip input{width:16px; height:16px; margin:0}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:6px}

.address-card{margin-top:12px}
.address-line{color:var(--muted); margin:4px 0}
.address-line.strong{color:var(--text); font-weight:750; margin-top:0}
.address-meta{display:grid; gap:10px}
.meta-row{display:flex; justify-content:space-between; gap:12px}
.meta-k{color:var(--muted2); font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.meta-v a{color:rgba(255,255,255,.9)}
.map-hint{margin-top:12px}

.site-footer{
  border-top:1px solid var(--line);
  background: rgba(7,10,18,.55);
  padding:26px 0 14px;
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-brand{display:flex; align-items:center; gap:10px; margin-bottom:8px}
.footer-links{display:flex; gap:14px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-bottom{margin-top:10px; padding-top:12px; border-top:1px solid rgba(255,255,255,.08)}

.toast{
  display:none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(39,226,164,.35);
  background: rgba(39,226,164,.10);
  color: rgba(255,255,255,.9);
  max-width: 300px;
}

@media (max-width: 980px){
  .hero-grid, .two-col, .page-hero-grid{grid-template-columns: 1fr}
  h1{font-size:38px}
  .card{grid-column: span 12}
}

.blink-smooth {
  animation: blink_smooth 1s infinite alternate; /* The 'alternate' property makes it smooth */
}

@keyframes blink_smooth {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

