:root{
  --bg:#0b0f14;
  --text:#e8eef6;
  --muted:#a8b3c4;
  --brand:#f4c20d;
  --brand2:#ffdd55;
  --line:rgba(255,255,255,.08);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(244,194,13,.10), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(255,221,85,.08), transparent 60%),
    linear-gradient(180deg, #070a0f 0%, var(--bg) 100%);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

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

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,15,.72);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}
.brand img{width:120px; height:120px; object-fit:contain; border-radius:10px; box-shadow: 0 6px 18px rgba(0,0,0,.35)}
.brand .name{font-weight:800; letter-spacing:.3px; line-height:1.1}
.brand .sub{font-size:12px; color:var(--muted); margin-top:2px}

nav ul{display:flex; gap:8px; list-style:none; padding:0; margin:0; align-items:center}
nav a{
  padding:10px 12px; border-radius:12px; color:var(--text);
  border:1px solid transparent;
  font-weight:600; font-size:14px;
}
nav a:hover{border-color:var(--line); background:rgba(255,255,255,.03)}
nav a.active{border-color:rgba(244,194,13,.35); background:rgba(244,194,13,.10)}
.nav-cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:800;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(244,194,13,.35)}
.btn.primary{
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color:#121212; border-color: rgba(0,0,0,.15);
}
.btn.primary:hover{border-color: rgba(255,255,255,.25)}
.btn.small{padding:10px 12px; border-radius:12px; font-size:14px}

.mobile-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
}
.mobile-toggle:hover{border-color: rgba(244,194,13,.35)}

.hero{padding:72px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:28px;
  align-items:stretch;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(244,194,13,.35);
  background: rgba(244,194,13,.10);
  color: var(--brand2);
  font-weight:800; font-size:13px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height:1.02;
  letter-spacing:-.8px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.7;
  max-width: 62ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card{padding:18px; display:flex; flex-direction:column; justify-content:space-between; gap:14px}
.hero-card .stat{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px; border-radius:14px; border:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.badge{
  width:34px; height:34px; border-radius:12px;
  background: rgba(244,194,13,.14);
  border: 1px solid rgba(244,194,13,.35);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.stat b{display:block}
.stat span{display:block; color:var(--muted); font-size:13px; margin-top:2px; line-height:1.4}

.section{padding:48px 0}
.section h2{font-size: clamp(22px, 2.6vw, 32px); margin:0 0 10px; letter-spacing:-.4px}
.section p{color:var(--muted); line-height:1.75; margin:0}
.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-top:18px}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; 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:18px}
.card ul{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}
.card li{margin:6px 0}
.card p{margin:0; color:var(--muted); line-height:1.7}

.steps{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-top:18px}
.step{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(0,0,0,.10);
  position:relative;
  overflow:hidden;
}
.step:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(260px 160px at 15% 20%, rgba(244,194,13,.18), transparent 70%);
  pointer-events:none;
}
.step .n{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  border-radius:12px;
  background: rgba(244,194,13,.14);
  border: 1px solid rgba(244,194,13,.35);
  font-weight:900; color: var(--brand2);
}
.step h4{margin:10px 0 6px; font-size:16px}
.step p{margin:0; color:var(--muted); font-size:14px; line-height:1.6}

.icon-row{display:grid; grid-template-columns: repeat(5, 1fr); gap:12px; margin-top:18px}
.pill{
  padding:12px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  text-align:center;
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}

.cta{
  padding:28px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(244,194,13,.18), rgba(255,255,255,.02));
  border: 1px solid rgba(244,194,13,.28);
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.cta h3{margin:0 0 6px; font-size:22px}
.cta p{margin:0; color: var(--muted); line-height:1.7}
.cta .actions{display:flex; gap:12px; flex-wrap:wrap}

footer{border-top:1px solid var(--line); background: rgba(0,0,0,.12); padding:26px 0}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:18px}  
.footer-brand img{width:80px; height:auto; object-fit:contain; margin-bottom:12px}
.footer-title{font-weight:900; margin:0 0 10px}
.footer-links{display:flex; flex-direction:column; gap:10px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.smallprint{margin-top:18px; color:var(--muted); font-size:12px; line-height:1.6}

.form{display:grid; gap:12px; margin-top:14px}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.input:focus, textarea:focus{border-color: rgba(244,194,13,.4)}
.notice{font-size:12px; color:var(--muted); line-height:1.6; margin-top:10px}
hr.sep{border:none; border-top:1px solid var(--line); margin:22px 0 0}

.page-hero{padding:44px 0 10px}
.page-hero h1{font-size: clamp(28px, 3.6vw, 44px)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .icon-row{grid-template-columns:1fr 1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .brand{min-width:unset}
}
@media (max-width: 720px){
  nav ul{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; justify-content:center}
  header[data-open="true"] nav ul{
    display:flex;
    position:absolute;
    left:20px; right:20px;
    top:72px;
    flex-direction:column;
    background: rgba(7,10,15,.96);
    border:1px solid var(--line);
    border-radius: 16px;
    padding:10px;
  }
  header[data-open="true"] .nav-cta{display:none}
  .steps{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .cta{flex-direction:column; align-items:flex-start}
}