:root{
  --bg:#070B14;
  --bg2:#0B1220;
  --card: rgba(255,255,255,.04);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(148,163,184,.18);
  --text:#E5E7EB;
  --muted:#94A3B8;
  --muted2:#64748B;
  --blue:#3B82F6;
  --amber:#F59E0B;
  --danger:#EF4444;
  --ok:#22C55E;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(1000px 600px at 20% 20%, rgba(245,158,11,.10), transparent 55%),
    linear-gradient(180deg, #050810 0%, #060A14 40%, #050810 100%);
}

a{color:inherit; text-decoration:none}
.container{max-width:1160px; margin:0 auto; padding:0 20px}
.hr{height:1px; background:linear-gradient(90deg, transparent, rgba(148,163,184,.25), transparent); margin:0}

header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(6,10,20,.72);
  border-bottom:1px solid rgba(148,163,184,.14);
}
.navbar{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:.2px}
.brand img{height:34px; width:auto; display:block}
.navlinks{display:flex; gap:26px; align-items:center; color:var(--muted); font-size:14px}
.navlinks a:hover{color:var(--text)}
.cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:10px;
  background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(37,99,235,.95));
  border:1px solid rgba(59,130,246,.45);
  font-weight:700; font-size:14px;
  box-shadow: 0 10px 30px rgba(59,130,246,.18);
}
.cta:hover{filter:brightness(1.06)}
.burger{display:none; width:42px; height:38px; border-radius:10px; border:1px solid rgba(148,163,184,.18); background:rgba(255,255,255,.03); cursor:pointer}
.burger svg{display:block; margin:auto; opacity:.9}

.mobilemenu{display:none; padding:0 0 14px}
.mobilemenu a{display:block; padding:10px 10px; color:var(--muted); border-radius:10px}
.mobilemenu a:hover{background:rgba(255,255,255,.04); color:var(--text)}

.hero{padding:56px 0 22px}
.heroGrid{display:grid; grid-template-columns: 1.1fr .9fr; gap:34px; align-items:center}
.kicker{color:var(--muted); font-size:13px}
.h1{font-size:46px; line-height:1.08; margin:10px 0 0; font-weight:800; letter-spacing:-.6px}
.sub{color:rgba(226,232,240,.86); font-size:17px; line-height:1.7; margin:16px 0 0; max-width:56ch}
.btnRow{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px; font-weight:800; font-size:14px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(255,255,255,.03);
}
.btn:hover{background:rgba(255,255,255,.05)}
.btn.primary{
  background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(37,99,235,.95));
  border-color: rgba(59,130,246,.45);
}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  font-size:12px; color:var(--muted);
  border:1px solid rgba(148,163,184,.18);
  padding:8px 10px; border-radius:999px;
  background:rgba(255,255,255,.02)
}
.heroArt{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:14px;
  box-shadow: var(--shadow);
}
.heroArt img{width:100%; height:auto; display:block; border-radius:12px}

.section{padding:46px 0}
.sectionTitle{
  text-align:center;
  font-size:28px;
  font-weight:850;
  letter-spacing:-.3px;
  margin:0 0 16px;
}
.sectionLead{
  text-align:center; color:var(--muted);
  margin:0 auto 26px; max-width:74ch; line-height:1.7; font-size:15px;
}

.cards3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.card h3{margin:0; font-size:16px}
.card p{margin:10px 0 0; color:rgba(226,232,240,.78); line-height:1.7; font-size:13px}

.figureCard{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(255,255,255,.02);
  padding:14px;
  box-shadow: var(--shadow);
}
.figureCard img{width:100%; height:auto; display:block; border-radius:12px}
.figureCaption{color:var(--muted); font-size:12px; margin-top:10px; line-height:1.6}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.list{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.list h3{margin:0 0 8px; font-size:16px}
.bullets{margin:0; padding-left:18px; color:rgba(226,232,240,.80); line-height:1.8; font-size:13px}
.bullets li{margin:6px 0}
.note{
  margin-top:10px; color:var(--muted); font-size:12px; line-height:1.6
}

.ctaBand{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.18);
  background:
    radial-gradient(900px 240px at 20% 0%, rgba(59,130,246,.16), transparent 55%),
    radial-gradient(900px 240px at 80% 0%, rgba(245,158,11,.10), transparent 55%),
    rgba(255,255,255,.02);
  padding:22px;
  box-shadow: var(--shadow);
}
.ctaBand .row{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.ctaBand h3{margin:0; font-size:18px}
.ctaBand p{margin:6px 0 0; color:rgba(226,232,240,.78); max-width:80ch; line-height:1.6; font-size:13px}

.formWrap{max-width:980px; margin:0 auto}
.formCard{
  border-radius:18px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(255,255,255,.02);
  padding:18px;
  box-shadow: var(--shadow);
}
.formGrid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.field label{display:block; font-size:12px; color:var(--muted); margin:0 0 6px}
.field input, .field textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(2,6,23,.45);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
.field input:focus, .field textarea:focus{border-color: rgba(59,130,246,.55); box-shadow:0 0 0 4px rgba(59,130,246,.14)}
.field textarea{min-height:120px; resize:vertical}
.full{grid-column:1 / -1}
.inline{display:flex; align-items:flex-start; gap:10px; color:rgba(226,232,240,.80); font-size:12px; line-height:1.6; margin-top:10px}
.inline input{margin-top:2px}
.actions{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:14px}
.small{font-size:12px; color:var(--muted); line-height:1.6}
.alert{display:none; padding:10px 12px; border-radius:12px; font-size:13px; border:1px solid rgba(148,163,184,.18); background:rgba(255,255,255,.03)}
.alert.ok{border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.08)}
.alert.err{border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.08)}

/* Phases */
.phaseGrid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:18px}
.phaseCard{
  border:1px solid rgba(148,163,184,.18);
  background:rgba(15,23,42,.38);
  border-radius:16px;
  padding:18px;
  box-shadow: var(--shadow);
}
.phaseCard h3{margin:0 0 8px; font-size:16px}
.phaseCard p{margin:0; color:rgba(226,232,240,.80); line-height:1.7; font-size:14px}

footer{padding:26px 0 36px; color:var(--muted); font-size:12px}
.footerGrid{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footerLinks{display:flex; gap:14px; flex-wrap:wrap}
.footerLinks a{color:var(--muted)}
.footerLinks a:hover{color:var(--text)}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  .h1{font-size:40px}
  .cards3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .phaseGrid{grid-template-columns:1fr}
  .formGrid{grid-template-columns:1fr}
  .navlinks{display:none}
  .burger{display:inline-flex}
  .mobilemenu.show{display:block}
}
