:root{
  --bg: #0b0f19;
  --text: #f6f7fb;
  --muted: rgba(246,247,251,.78);
  --card: rgba(10, 14, 26, .62);
  --stroke: rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.55);

  /* Knicks-ish accents */
  --knicks-blue: #0b3d91;
  --knicks-orange: #ff6a00;

  --radius: 18px;
}

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

.hero{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 40px);

  /* Replace this image with your own (see notes below) */
  background-image:
    radial-gradient(900px 500px at 20% 20%, rgba(255,106,0,.25), transparent 60%),
    radial-gradient(900px 500px at 80% 70%, rgba(11,61,145,.25), transparent 60%),
    url("assets/knicks-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70)),
    radial-gradient(1200px 800px at 50% 30%, rgba(0,0,0,.15), rgba(0,0,0,.75));
  z-index: 0;
}

.card{
  position: relative;
  z-index: 1;
  width: min(720px, 92vw);
  padding: clamp(22px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.subhead{
  margin: 0 0 22px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--muted);
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(90deg, var(--knicks-orange), #ff8a00);
  color: #111;
  box-shadow: 0 14px 28px rgba(255,106,0,.22);
}

.btn-primary:hover{
  filter: brightness(1.03);
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.18);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.10);
}

.bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
}

.bullets li{
  margin: 10px 0;
}

.fineprint{
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* Mobile tweaks */
@media (max-width: 520px){
  .btn{ width: 100%; }
  .card{ padding: 22px; }
}