/* style.css */
:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel-2:#0c121a;
  --text:#e9eef5;
  --muted:#a9b4c2;
  --line:rgba(255,255,255,.10);

  /* BRAND */
  --accent:#ed5b01;
  --accent-hover:#ff6a12;
  --accent-ink:#ffffff;

  --radius:16px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 30% -10%, rgba(237,91,1,.16), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,.05), transparent 50%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{display:block}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.logo{
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.brand-text{min-width:0}
.brand-title{
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brand-subtitle{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

.topbar-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.hero{padding:64px 0 28px}

.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}

h1{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.6px;
}

.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}

.lead.small{font-size:16px}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 22px;
}

.pill{
  border:1px solid rgba(237,91,1,.35);
  background: rgba(237,91,1,.10);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:#ffffff;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  font-weight:600;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  user-select:none;
}

.btn:active{transform:translateY(1px)}

.btn-primary{
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
}

.btn-primary:hover{
  background: var(--accent-hover);
}

.btn-secondary{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.btn-ghost{
  background: transparent;
}

.btn:hover{
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
}

.btn-primary:hover{
  border-color: transparent;
}

.btn-small{
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
}

.micro{
  margin-top:12px;
  font-size:12px;
  color: rgba(233,238,245,.62);
}

.hero-card .card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}

.card-title{
  font-weight:700;
  margin-bottom:10px;
}

.steps{
  margin:0;
  padding-left:18px;
}

.steps li{
  margin:12px 0;
  line-height:1.35;
  color: rgba(233,238,245,.88);
}

.step-num{
  display:inline-flex;
  width:22px;
  height:22px;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  margin-right:8px;
  font-size:12px;
}

.card-footer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color: rgba(233,238,245,.86);
  font-size:13px;
  line-height:1.4;
}

.muted{
  color: rgba(233,238,245,.55);
  margin-left:6px;
}

.section{padding:44px 0}

.section h2{
  margin:0 0 14px;
  font-size:26px;
  letter-spacing:-.2px;
}

.section-dark{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-dark h2{
  color: var(--accent);
}

.center{text-align:center}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:14px;
}

.feature{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}

.feature-title{
  font-weight:700;
  margin-bottom:6px;
}

.feature-text{
  color: var(--muted);
  line-height:1.45;
  font-size:14px;
}

.footer{
  padding:20px 0 36px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-top:1px solid var(--line);
  padding-top:18px;
}

.footer-left{
  display:flex;
  gap:10px;
  align-items:center;
}

.logo-sm{
  border-radius:10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.footer-title{
  font-weight:700;
  font-size:14px;
}

.footer-subtitle{
  color: var(--muted);
  font-size:12px;
  margin-top:2px;
}

.footer-right{
  display:flex;
  gap:14px;
  color: rgba(233,238,245,.75);
  font-size:13px;
}

.footer-right a:hover{color:var(--text)}

/* Mobile */
@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
  .topbar-actions{display:none}
}






