:root{
  /* Dark + Orange palette */
  --bg:#0E0F13;
  --surface:#151821;
  --surface2:#10131A;
  --border:#232634;

  --text:#EDEDED;
  --muted:#B6B8C2;
  --muted2:#8A8D99;

  --accent:#FF8A00;
  --accentHover:#FF9F2D;
  --accentGlow:rgba(255,138,0,0.18);

  --success:#2ECC71;
  --warning:#E07000;
  --danger:#E5484D;

  --shadow:0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;

  --max:1120px;
  --pad:clamp(18px,3.5vw,44px);
}

*{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(900px 600px at 70% -10%, var(--accentGlow), transparent 65%),
    radial-gradient(700px 520px at 0% 10%, rgba(90,110,255,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
.section{padding:56px 0}
.small{font-size:13px}
.sep{height:1px;background:rgba(255,255,255,.06);margin:14px 0}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--text);
  font-weight:600;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease;
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform:translateY(-1px);border-color:rgba(255,138,0,.35)}
.btn.primary{
  background:linear-gradient(180deg, rgba(255,138,0,.95), rgba(224,112,0,.95));
  border-color:rgba(255,138,0,.55);
  color:#111;
  box-shadow:0 14px 40px rgba(255,138,0,.18);
}
.btn.primary:hover{
  background:linear-gradient(180deg, rgba(255,159,45,.98), rgba(255,138,0,.95));
  box-shadow:0 18px 55px rgba(255,138,0,.22);
}
.btn.ghost{
  background:rgba(255,255,255,.02);
  border-color:rgba(255,255,255,.12);
}

/* Pills / dots */
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(21,24,33,.65);
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  backdrop-filter:blur(10px);
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(255,138,0,.12);
}

/* Header / Nav */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(14,15,19,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.logo{
  width:34px;
  height:34px;
  border-radius:10px;
  background:radial-gradient(circle at 30% 30%, rgba(255,159,45,1), rgba(255,138,0,.9) 35%, rgba(14,15,19,1) 70%);
  border:1px solid rgba(255,138,0,.45);
  box-shadow:0 12px 30px rgba(255,138,0,.14);
}
.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
  color:var(--muted);
  font-weight:600;
}
.navlinks a{padding:10px 10px;border-radius:12px}
.navlinks a:hover{color:var(--text);background:rgba(255,255,255,.03)}
.navcta{display:flex;gap:10px;align-items:center}

/* Mobile menu */
.menuBtn{display:none}
@media (max-width:860px){
  .navlinks{display:none}
  .menuBtn{display:inline-flex}
}

/* Hero */
.hero{padding:clamp(44px,7vw,96px) 0 44px}
.heroGrid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:28px;
  align-items:start;
}
@media (max-width:980px){
  .heroGrid{grid-template-columns:1fr;gap:18px}
}
h1{
  margin:14px 0 12px;
  font-size:clamp(34px,4.2vw,56px);
  line-height:1.06;
  letter-spacing:-0.6px;
}
.accentText{
  background:linear-gradient(90deg, rgba(255,159,45,1), rgba(255,138,0,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  color:var(--muted);
  font-size:clamp(16px,1.25vw,18px);
  max-width:62ch;
  margin:0 0 20px;
}
.heroActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.heroCard{
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(21,24,33,.92), rgba(16,19,26,.92));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  padding:18px;
  overflow:hidden;
  position:relative;
}
.heroCard::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:260px;
  height:260px;
  background:radial-gradient(circle at 30% 30%, rgba(255,138,0,.18), transparent 65%);
  transform:rotate(18deg);
  pointer-events:none;
}
.kpiRow{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.kpi{
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px;
  padding:12px;
}
.kpi .n{font-size:20px;font-weight:900}
.kpi .t{color:var(--muted2);font-size:13px;margin-top:2px}

/* Sections */
.sectionHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.sectionHead h2{
  margin:0;
  font-size:clamp(22px,2.4vw,30px);
  letter-spacing:-.2px;
}
.sectionHead p{margin:0;color:var(--muted);max-width:70ch}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width:980px){
  .grid3{grid-template-columns:1fr}
}

.card{
  border-radius:var(--radius);
  background:rgba(21,24,33,.78);
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.22);
  transition:transform .15s ease,border-color .15s ease;
  min-height:150px;
}
.card:hover{transform:translateY(-2px);border-color:rgba(255,138,0,.30)}
.card .icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,138,0,.10);
  border:1px solid rgba(255,138,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:14.5px}

.chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.chip{
  font-size:12.5px;
  color:var(--muted);
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
}
.chip strong{color:var(--text);font-weight:700}

/* Timeline */
.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
@media (max-width:980px){
  .timeline{grid-template-columns:1fr}
}
.step{
  border-radius:var(--radius);
  background:rgba(21,24,33,.65);
  border:1px solid rgba(255,255,255,.08);
  padding:16px;
  position:relative;
  overflow:hidden;
}
.step::after{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width:160px;
  height:160px;
  background:radial-gradient(circle at 30% 30%, rgba(255,138,0,.12), transparent 70%);
  pointer-events:none;
}
.step .num{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,138,0,.12);
  border:1px solid rgba(255,138,0,.25);
  font-weight:900;
  color:var(--accentHover);
  margin-bottom:10px;
}
.step h3{margin:0 0 6px;font-size:16.5px}
.step p{margin:0;color:var(--muted);font-size:14.5px}

/* CTA */
.cta{
  border-radius:var(--radius2);
  background:
    radial-gradient(650px 340px at 15% 0%, rgba(255,138,0,.18), transparent 60%),
    linear-gradient(180deg, rgba(21,24,33,.92), rgba(16,19,26,.92));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta h3{margin:0;font-size:20px}
.cta p{margin:6px 0 0;color:var(--muted)}

/* Footer */
footer{
  padding:34px 0 44px;
  color:var(--muted2);
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(14,15,19,.6);
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.footLinks{display:flex;gap:14px;flex-wrap:wrap}
.footLinks a{color:var(--muted2)}
.footLinks a:hover{color:var(--text)}

/* Modal */
.modalBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:99;
}
.modal{
  width:min(720px,100%);
  border-radius:var(--radius2);
  background:rgba(21,24,33,.96);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:18px;
}
.modalTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.modalTop strong{font-size:16px}
.x{
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.02);
  color:var(--text);
  cursor:pointer;
}
form{display:grid;gap:10px;margin-top:10px}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.20);
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{
  border-color:rgba(255,138,0,.35);
  box-shadow:0 0 0 5px rgba(255,138,0,.10);
}
textarea{min-height:120px;resize:vertical}
.formRow{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media (max-width:700px){
  .formRow{grid-template-columns:1fr}
}

/* =========================
   LEGAL PAGES (extra)
   ========================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(21,24,33,.65);
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  backdrop-filter:blur(10px);
}
.legalWrap{
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(21,24,33,.92), rgba(16,19,26,.92));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  padding:22px;
  overflow:hidden;
  position:relative;
}
.legalWrap::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:260px;
  height:260px;
  background:radial-gradient(circle at 30% 30%, rgba(255,138,0,.18), transparent 65%);
  transform:rotate(18deg);
  pointer-events:none;
}
.legalTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.legalWrap h1{
  margin:0 0 8px;
  font-size:clamp(28px,3vw,38px);
  letter-spacing:-0.4px;
  line-height:1.1;
}
.legalWrap h2{
  margin:18px 0 8px;
  font-size:18px;
}
.legalWrap p,
.legalWrap li{
  color:var(--muted);
  font-size:15px;
}
.legalWrap ul{
  margin:10px 0 0;
  padding-left:18px;
}
a.inline{
  color:var(--accentHover);
  text-decoration:underline;
  text-underline-offset:3px;
}
a.inline:hover{color:var(--accent)}
