:root{
  --bg:#0b1020;
  --bg2:#0f1730;
  --card:#121c3a;
  --card2:#0f1833;
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.72);
  --line:rgba(255,255,255,.10);
  --accent:#ff6a00;
  --accent2:#ff8a33;
  --shadow: 0 18px 48px rgba(0,0,0,.55);
  --radius: 18px;
}

*{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(1100px 520px at 20% 0%, rgba(255,106,0,.16), transparent 60%),
    radial-gradient(1100px 520px at 90% 10%, rgba(255,138,51,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}
a{color:inherit}
.container{width:min(1140px, 92%); 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;border-radius:12px;background:rgba(18,28,58,.95);border:1px solid var(--line);z-index:999}

.top{
  position:sticky; top:0; z-index:50;
  background: rgba(11,16,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.top-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:14px}
.brand{display:flex;gap:12px;align-items:center}
.mark{
  width:42px;height:42px;border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 26px rgba(255,106,0,.20);
}
.brand-text strong{display:block;font-weight:900}
.brand-text span{display:block;font-size:12px;color:var(--muted);margin-top:2px}
.top-actions{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:800;
}
.chip.solid{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,106,0,.55);
  color:#0b1020;
}

.hero{padding:56px 0 22px}
.hero-grid{display:grid;grid-template-columns: 1.1fr .9fr;gap:18px;align-items:start}
.eyebrow{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(245,247,255,.70);
}
h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height:1.05;
}
.lead{margin:0 0 18px;color:var(--muted);max-width:74ch}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  font-weight:900;
  transition: transform .08s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,106,0,.55);
  color:#0b1020;
}
.btn.full{width:100%}

.statbar{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.stat{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.stat-k{display:block;font-weight:900}
.stat-v{display:block;margin-top:4px;color:var(--muted);font-size:13px}

.note{
  margin-top:14px;
  padding:14px;
  border-radius: var(--radius);
  border:1px dashed rgba(255,106,0,.40);
  background: rgba(255,106,0,.08);
  color: rgba(245,247,255,.88);
}

.hero-right .panel{
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(18,28,58,.88), rgba(15,24,51,.82));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-head{
  padding:18px;
  background: linear-gradient(135deg, rgba(255,106,0,.12), transparent);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.panel-head h2{margin:0 0 6px;font-size:18px}
.muted{color:var(--muted)}
.form{padding:18px;display:flex;flex-direction:column;gap:12px}
.field span{display:block;font-size:13px;color:var(--muted);margin-bottom:6px}
input, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,16,32,.55);
  color: var(--text);
  outline:none;
}
input:focus, select:focus{
  border-color: rgba(255,106,0,.62);
  box-shadow: 0 0 0 4px rgba(255,106,0,.14);
}
.fine{margin:0;color:var(--muted);font-size:12px}
.link{color: var(--accent2); text-decoration:none}
.link:hover{text-decoration:underline}
.msg{
  display:none;
  margin:0 18px 18px;
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(255,106,0,.45);
  background: rgba(255,106,0,.10);
}
.panel-foot{
  padding:16px 18px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.foot-row{display:flex;flex-direction:column;gap:4px}
.foot-k{font-size:12px;color:rgba(245,247,255,.66);font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.foot-v{font-size:13px;color:rgba(245,247,255,.86)}

.section{padding:56px 0}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head h2{margin:0 0 10px;font-size:30px}
.section-head p{margin:0;max-width:80ch}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.card h3{margin:0 0 8px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:14px}

.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.review{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(18,28,58,.70), rgba(15,24,51,.62));
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
}
.review-top{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:10px}
.stars{display:flex;gap:2px}
.star{opacity:.35}
.star.on{opacity:1}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.28);
  background: rgba(255,106,0,.10);
  color: rgba(245,247,255,.90);
  font-weight:800;
}
.review h3{margin:0 0 8px;font-size:16px}
.review-foot{display:flex;justify-content:space-between;gap:10px;margin-top:12px;color:rgba(245,247,255,.78);font-size:13px}
.name{font-weight:900}
.loc{color:rgba(245,247,255,.66)}

.split{
  margin-top:16px;
  padding:18px;
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(255,106,0,.24);
  background: radial-gradient(900px 320px at 20% 0%, rgba(255,106,0,.14), transparent 62%),
              rgba(255,255,255,.03);
  display:flex;justify-content:space-between;gap:14px;align-items:center;
}
.split h3{margin:0 0 6px}
.split-right{display:flex;gap:10px;flex-wrap:wrap}

.faq{display:flex;flex-direction:column;gap:10px;margin-top:16px}
.faq details{
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.faq summary{cursor:pointer;font-weight:900}
.faq p{margin:10px 0 0;color:var(--muted)}

.footer{
  border-top:1px solid var(--line);
  padding:28px 0 18px;
  background: rgba(0,0,0,.12);
}
.foot-grid{
  display:grid;
  grid-template-columns: 1.2fr .6fr .8fr .9fr;
  gap:12px;
  align-items:start;
}
.foot-brand{font-weight:900}
.footer h4{margin:0 0 8px;font-size:13px;color:var(--muted)}
.footer p{margin:0;color:var(--muted);font-size:13px}
.foot-bottom{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid var(--line);
  font-size:12px;
  color: rgba(245,247,255,.55);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .statbar{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .review-grid{grid-template-columns:1fr 1fr}
  .split{flex-direction:column;align-items:flex-start}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
  .review-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
}
