:root{
  --bg: #0b0b0f;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --muted2: rgba(255,255,255,0.5);
  --line: rgba(255,255,255,0.12);

  /* Brand: tweak these */
  --accent: #fed341;          /* Pootie gold */
  --accent2: #ff4d00;         /* optional pop */
  --shadow: rgba(0,0,0,0.5);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  padding: 0.15em 0.45em;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
}

.wrap{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(254, 211, 65, 0.16), transparent 65%),
    radial-gradient(720px 520px at 76% 20%, rgba(255, 77, 0, 0.10), transparent 62%),
    radial-gradient(900px 620px at 52% 82%, rgba(255, 255, 255, 0.06), transparent 60%);
  filter: saturate(1.05);
}

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

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

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--text);
}

.brand-logo{
  gap: 0;
}

.logo-img{
  height: 36px;
  width: auto;
  display: block;

  /* gold stroke effect */
  filter:
    drop-shadow(0 6px 18px rgba(0,0,0,0))
    drop-shadow(0 0 1px #fed341)
    drop-shadow(0 0 2px #fed341)
    drop-shadow(0 0 3px #fed341)
    drop-shadow(0 0 4px rgba(254,211,65,0));

  transition: filter 0.25s ease;
}

.brand:hover .logo-img{
  filter:
    drop-shadow(0 6px 18px rgba(0,0,0,0.35))
    drop-shadow(0 0 2px #fed341)
    drop-shadow(0 0 6px rgba(254,211,65,0.9))
    drop-shadow(0 0 12px rgba(254,211,65,0.4));
}

.brand-mark{
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(254,211,65,0.22);
}

.brand-name{
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 13px;
}

.topnav{
  display:flex;
  gap: 18px;
}

.toplink{
  color: var(--muted);
  text-decoration:none;
  font-size: 14px;
}
.toplink:hover{ color: var(--text); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  text-decoration:none;
  font-weight: 700;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}

.btn-primary{
  background: var(--accent);
  color: #151515;
  border-color: rgba(254,211,65,0.35);
}
.btn-primary:hover{ transform: translateY(-1px); }

.btn-ghost{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.07); }

.btn-full{ width: 100%; }

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 56px 0 10px;
  align-items: stretch;
}

.kicker{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.headline{
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.accent{ color: var(--accent); }

.subhead{
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

.cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 14px;
}

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

.pill{
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.fineprint{
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 13px;
}

/* Glass card */
.glass{
  height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  overflow: hidden;
}

.glass-top{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display:inline-block;
  opacity: 0.9;
}
.dot-red{ background: #ff5f57; }
.dot-yellow{ background: #febc2e; }
.dot-green{ background: #28c840; }

.glass-title{
  margin-left: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.glass-body{
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.stat{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.stat-label{ color: var(--muted); font-size: 13px; }
.stat-value{ color: rgba(255,255,255,0.9); font-weight: 800; font-size: 13px; }
.ok{ color: rgba(254,211,65,0.92); }

.divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 6px 0;
}

.steps-mini{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}

.step-mini{
  display:flex;
  gap: 10px;
  align-items:center;
}

.step-num{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(254,211,65,0.16);
  border: 1px solid rgba(254,211,65,0.30);
  color: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 12px;
}

.step-txt{
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

/* Sections */
.section{
  padding: 48px 0 0;
}

.h2{
  font-size: 24px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

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

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

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

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
}

.h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.callout{
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(254,211,65,0.10);
  border: 1px solid rgba(254,211,65,0.22);
}

.callout-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

.callout-body{
  margin: 6px 0 0;
  color: rgba(255,255,255,0.88);
}

.callout a{
  color: rgba(255,255,255,0.92);
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer{
  padding: 56px 0 46px;
  color: var(--muted2);
}
.footer-inner{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px;
}
.muted{ color: var(--muted2); }

/* Responsive */
@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
  .topnav{ display:none; }
}

@media (max-width: 640px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .wrap{ width: min(1120px, calc(100% - 28px)); }
  .hero{ padding-top: 38px; }
  .logo-img{ height: 30px; }
}
