:root{
  --bg: #07080b;
  --panel: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --dim: rgba(255,255,255,.48);
  --line: rgba(255,255,255,.12);
  --shadow: 0 16px 60px rgba(0,0,0,.55);
  --radius2: 22px;
  --pad2: 22px;
}

*{ box-sizing: border-box; }
html{ height:100%; }
body{ min-height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(160,180,255,.14), transparent 60%),
    radial-gradient(900px 600px at 85% 0%, rgba(255,180,220,.10), transparent 55%),
    linear-gradient(180deg, #05060a, #07080b 40%, #05060a);
  color: var(--text);
  line-height: 1.35;
}

a{ color: inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(160,180,255,.65);
  outline-offset: 2px;
  border-radius: 12px;
}

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

main{ padding: 26px 0 64px; }
section{ margin-top: 22px; }
.top-gap{ margin-top: 14px; }

/* Panels */
.panel{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.panel-inner{ padding: var(--pad2); }

/* Grids */
.grid{ display:grid; gap: 14px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Type helpers */
.h-kicker{
  font-size: 12px;
  color: var(--dim);
  letter-spacing: .55px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
/* You asked to remove these “little header things” */
.h-kicker{ display:none !important; }

.h2{
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: .2px;
}
.p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.muted{ color: var(--muted); }

/* Top nav */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,8,11,.78), rgba(7,8,11,.55));
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.logo{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  overflow: hidden;

  background: url("/assets/art/BustIcon.webp") center / contain no-repeat;
  /* if you want it to fill the square (may crop), use: cover */

  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.16);
}

.brand h1{
  font-size: 14px;
  letter-spacing: .4px;
  margin: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
}
.brand .sub{
  font-size: 12px;
  color: var(--dim);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
}

.cta{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 13px;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.btn:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}
.btn:active{ transform: translateY(1px); }

/* Primary: Patreon */
.btn-primary{
  background: linear-gradient(135deg, rgba(160,180,255,.55), rgba(255,180,220,.45));
  border-color: rgba(255,255,255,.22);
  color: rgba(10,10,14,.92);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.btn-primary:hover{ filter: brightness(1.04); }

/* Ghost: everything else */
.btn-ghost{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

/* =========================
   HERO (final)
   ========================= */

.hero{
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(900px 450px at 25% 0%, rgba(160,180,255,.18), transparent 60%),
    radial-gradient(700px 420px at 85% 10%, rgba(255,180,220,.12), transparent 60%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: center;
}

.hero-copy{
  max-width: 640px;
}

.hero h2{
  font-size: 32px;
  line-height: 1.08;
  margin: 0 0 10px;
}

.hero .subhead{
  color: rgba(255,255,255,.74);
  font-size: 15px;
  margin: 0 0 16px;
  max-width: 62ch;
}

.hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* Art well on the right (prevents “only feet”) */
.hero-figure-wrap{
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* subtle spotlight behind figure */
.hero-figure-wrap::before{
  content:"";
  position:absolute;
  inset: -90px -90px -130px -90px;
  background: radial-gradient(circle at 65% 55%, rgba(160,180,255,.18), transparent 60%);
  pointer-events:none;
}

.hero-figure{
  position: relative;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: translateY(12px);
  filter: drop-shadow(0 22px 70px rgba(0,0,0,.65));
  opacity: .98;
}

/* Cards */
.card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  min-height: 142px;
}
.card .title{
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.badge{
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.card .desc{
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.card .actions{
  margin-top: auto;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Links grid */
.linkgrid{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 10px;
}
.linktile{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.linktile:hover{ background: rgba(255,255,255,.08); }
.linktile svg{ width: 18px; height: 18px; opacity: .85; }

/* Footer */
footer{
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--dim);
  font-size: 12px;
}
.footer-row{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
}

/* Modal */
.modal-backdrop{
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.62);
  display:none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal{
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(680px 340px at 20% 0%, rgba(160,180,255,.18), transparent 60%),
    radial-gradient(680px 340px at 85% 10%, rgba(255,180,220,.12), transparent 60%),
    rgba(10,10,16,.86);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
  padding: 18px;
}
.modal h3{ margin: 0 0 8px; font-size: 18px; }
.modal p{ margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.modal .row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 920px){
  .nav{ display:none; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .linkgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .brand{ min-width: unset; }
}

@media (max-width: 860px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-figure-wrap{
    height: 260px;
    justify-content: center;
  }
  .hero-figure{
    transform: translateY(8px);
  }
}
