:root{
  --bg:#0b0d10;
  --panel:#11151b;
  --panel2:#0f1318;
  --text:#e8edf4;
  --muted:#a7b1c2;
  --line:rgba(255,255,255,.10);
  --accent:#d4af37; /* gold */
  --accent2:#7a0019; /* deep red wine */
  --btn:#1a2230;
  --btnHover:#243044;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{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(1200px 600px at 20% -10%, rgba(122,0,25,.25), transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, rgba(212,175,55,.18), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.header{
  padding:20px 0;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  background: linear-gradient(to bottom, rgba(11,13,16,.92), rgba(11,13,16,.55));
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:44px;
  height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.5px;
  color:#111;
  background: linear-gradient(135deg, var(--accent), rgba(212,175,55,.55));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.brand-name{
  font-weight:800;
  letter-spacing:.2px;
}
.brand-tagline{
  font-size:12.5px;
  color:var(--muted);
  margin-top:2px;
}

.nav{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.nav a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
  text-decoration:none;
}

.hero{
  padding:44px 0 20px;
}
.hero h1{
  font-size: clamp(32px, 4vw, 48px);
  line-height:1.05;
  margin:0 0 14px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height:1.55;
}
.lead strong{color:var(--text)}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.hero-note{
  margin-top:16px;
  color:rgba(232,237,244,.9);
  font-size:13px;
  border-left:3px solid rgba(212,175,55,.55);
  padding:10px 12px;
  background: rgba(255,255,255,.04);
  border-radius:12px;
  width: fit-content;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--btn);
  color:var(--text);
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  font-weight:650;
}
.btn:hover{
  background: var(--btnHover);
  text-decoration:none;
}
.btn.primary{
  border-color: rgba(212,175,55,.40);
  background: linear-gradient(135deg, rgba(122,0,25,.35), rgba(212,175,55,.18));
}
.btn.primary:hover{
  border-color: rgba(212,175,55,.70);
}
.btn.full{width:100%}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin:14px 0;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.grid .card:first-child{grid-column: span 6;}
.grid .card:last-child{grid-column: span 6;}

.card h2{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:.2px;
}
.card h3{
  margin:0 0 10px;
  font-size:15.5px;
  color:rgba(232,237,244,.95);
}
.card p{
  margin:0 0 10px;
  color: var(--muted);
  line-height:1.6;
}
.list{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.6;
}
.list li{margin:6px 0}

blockquote{
  margin:12px 0;
  padding:12px 12px;
  border-left:3px solid rgba(212,175,55,.55);
  background: rgba(0,0,0,.25);
  border-radius:12px;
  color: rgba(232,237,244,.95);
}

.feature{
  margin:14px 0;
}
.feature-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.10);
  color: rgba(232,237,244,.95);
  white-space:nowrap;
}
.feature-body{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.action-box{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  padding:14px;
}
.action-title{
  font-weight:800;
  margin-bottom:6px;
}
.action-sub{
  color:var(--muted);
  font-size:13px;
  margin-bottom:12px;
}
.tiny{
  font-size:12px;
  line-height:1.4;
}
.muted{color:var(--muted)}
.mt{margin-top:16px}

.footer{
  margin:14px 0 40px;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-top:14px;
  flex-wrap:wrap;
}
.footer-strong{
  font-weight:800;
  letter-spacing:.2px;
}

@media (max-width: 860px){
  .grid .card:first-child,
  .grid .card:last-child{grid-column: span 12;}
  .feature-body{grid-template-columns: 1fr;}
  .nav{display:none;}
}
