:root{
  --bg:#0b0c10;
  --card:#12141b;
  --text:#f5f7ff;
  --muted:#b6bccf;
  --line:rgba(255,255,255,.10);
  --brand:#ff6a00;
  --brand2:#ff8a3d;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,106,0,.25), transparent 55%),
    radial-gradient(800px 500px at 90% 10%, rgba(255,138,61,.18), transparent 60%),
    var(--bg);
  line-height:1.5;
}

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

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.65);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand__mark{
  width:36px;height:36px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 24px rgba(255,106,0,.18);
}
.brand__text strong{display:block;font-weight:700}
.brand__text span{display:block;color:var(--muted);font-size:13px}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,106,0,.35);
  background: linear-gradient(135deg, rgba(255,106,0,.95), rgba(255,138,61,.95));
  color:#12141b;
  font-weight:700;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(255,106,0,.14);
}
.btn:hover{filter:brightness(1.02)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
}
.btn--block{width:100%}

.hero{
  padding:54px 0 28px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
.badge{
  display:inline-block;
  font-size:13px;
  color:rgba(255,255,255,.90);
  background: rgba(255,106,0,.18);
  border:1px solid rgba(255,106,0,.28);
  padding:6px 10px;
  border-radius:999px;
  margin:0 0 12px 0;
}
h1{
  margin:0 0 10px 0;
  font-size:42px;
  line-height:1.15;
  letter-spacing:-0.02em;
}
.lead{
  margin:0 0 18px 0;
  color:var(--muted);
  font-size:17px;
}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:14px}
.hero__highlights{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.hero__highlights li{margin:8px 0}
.hero__highlights strong{color:var(--text)}

.card{
  background: linear-gradient(180deg, rgba(18,20,27,.9), rgba(18,20,27,.75));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card h2{
  margin:0 0 12px 0;
  font-size:18px;
}
.card__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px dashed rgba(255,255,255,.10);
}
.card__row:last-of-type{border-bottom:none}
.card hr{
  border:none;
  border-top:1px solid var(--line);
  margin:14px 0;
}
.muted{color:var(--muted)}

.section{
  padding:40px 0;
}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  margin-bottom:18px;
}
.section__head h2{
  margin:0 0 8px 0;
  font-size:28px;
  letter-spacing:-0.02em;
}
.section__head p{margin:0}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.grid--2{grid-template-columns: repeat(2, 1fr)}
.tile{
  background: rgba(18,20,27,.70);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.tile h3{margin:0 0 10px 0;font-size:18px}
.tile ul{margin:0;padding-left:18px;color:var(--muted)}
.tile li{margin:6px 0}
.tile--link{
  text-decoration:none;
  transition: transform .15s ease, border-color .15s ease;
}
.tile--link:hover{
  transform: translateY(-1px);
  border-color: rgba(255,106,0,.35);
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  background: rgba(18,20,27,.60);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.step__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;height:34px;
  border-radius:12px;
  background: rgba(255,106,0,.18);
  border:1px solid rgba(255,106,0,.28);
  margin-bottom:10px;
  font-weight:800;
}
.step h3{margin:0 0 6px 0}
.step p{margin:0;color:var(--muted)}

.callout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,106,0,.25);
  background: rgba(255,106,0,.10);
}

.faq{
  background: rgba(18,20,27,.60);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
}
.faq p{
  margin:10px 0 0 0;
  color:var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer p{margin:0}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .brand{min-width:unset}
}