:root {
  /* Official New York Knicks palette */
  --blue: #006bb6;          /* Knicks Blue  PMS 286 */
  --blue-bright: #1f9df0;   /* electric highlight */
  --orange: #f58426;        /* Knicks Orange PMS 165 */
  --orange-bright: #ff7a00; /* punch */
  --silver: #cdd5de;        /* cool accent */

  --bg: #04060d;            /* cool blue-black */
  --panel: #0a0f1c;
  --panel-2: #0e1526;
  --ink: #f3f6fb;
  --muted: #9fb0c8;

  --line: rgba(120,170,230,.18);
  --shadow: 0 24px 80px rgba(0,0,0,.6);
  --glow-orange: 0 0 0 1px rgba(245,132,38,.55), 0 18px 55px rgba(245,132,38,.34);
  --glow-blue: 0 0 0 1px rgba(31,157,240,.55), 0 18px 55px rgba(31,157,240,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #05080f, #03050b 45%, #04070e);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  position: relative;
  overflow-x: hidden;
}
/* Animated arena glow — Knicks blue + orange aurora */
body::before {
  content: "";
  position: fixed;
  inset: -20vh -10vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(40vw 40vw at 78% -4%, rgba(245,132,38,.20), transparent 60%),
    radial-gradient(46vw 46vw at 6% 8%, rgba(0,107,182,.28), transparent 62%),
    radial-gradient(38vw 38vw at 92% 88%, rgba(31,157,240,.16), transparent 60%);
  animation: arena 16s ease-in-out infinite alternate;
}
@keyframes arena {
  0%   { transform: translate3d(0,0,0) scale(1);    opacity: .9; }
  50%  { transform: translate3d(-2%,1.5%,0) scale(1.06); opacity: 1; }
  100% { transform: translate3d(2%,-1.5%,0) scale(1.03); opacity: .92; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(4,7,14,.82);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--orange)) 1;
  backdrop-filter: blur(16px);
}
.brand img { width: 140px; height: auto; filter: drop-shadow(0 0 18px rgba(31,157,240,.35)); }
.site-header nav { display: flex; gap: 22px; color: var(--muted); font-size: .92rem; font-weight: 600; }
.site-header nav a { transition: color .18s ease; }
.site-header nav a:hover { color: var(--orange); }
.header-cta {
  border: 2px solid var(--orange);
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(245,132,38,.12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--orange); box-shadow: var(--glow-orange); }

.section-pad { padding: clamp(56px, 7vw, 110px) clamp(18px, 5vw, 80px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  min-height: 86vh;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: .24em;
  color: var(--orange); font-size: .78rem; font-weight: 900; margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--blue-bright), var(--orange)); }
.gold { color: var(--silver); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.8rem, 10vw, 11rem);
  line-height: .82;
  letter-spacing: .015em;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
  overflow-wrap: break-word;
  text-shadow: 0 0 38px rgba(31,157,240,.45), 0 6px 28px rgba(0,0,0,.6);
}
h1 span { display: block; color: var(--orange); text-shadow: 0 0 34px rgba(245,132,38,.6); }
h2 { font-family: "Bebas Neue", Impact, sans-serif; font-size: clamp(3rem, 7vw, 6rem); line-height: .9; letter-spacing: .02em; margin-bottom: 20px; color: #fff; }
h3 { font-size: 1.15rem; margin-bottom: 12px; }
.subhead { font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.35; max-width: 760px; font-weight: 800; }
.hero-body { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid rgba(120,170,230,.28);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--glow-orange); }
.button.primary {
  position: relative;
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-bright) 42%, var(--orange) 100%);
  background-size: 180% 180%;
  color: #fff;
  border: none;
  box-shadow: 0 14px 44px rgba(0,107,182,.4);
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
  animation: shift 6s ease infinite;
}
.button.primary:hover { box-shadow: var(--glow-orange); }
@keyframes shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.button.ghost { color: var(--blue-bright); border-color: rgba(31,157,240,.5); }
.button.ghost:hover { color: #fff; border-color: var(--blue-bright); box-shadow: var(--glow-blue); }
.button.buy { width: 100%; margin-top: auto; }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px; }
.proof-row span { border: 1px solid rgba(31,157,240,.32); color: var(--silver); padding: 9px 13px; border-radius: 999px; background: rgba(0,107,182,.12); font-size: .86rem; font-weight: 700; transition: all .18s ease; }
.proof-row span:hover { border-color: var(--orange); color: #fff; background: rgba(245,132,38,.16); }

.art-card { position: relative; border: 2px solid rgba(31,157,240,.5); border-radius: 22px; overflow: hidden; box-shadow: var(--glow-blue), var(--shadow); background: #04060d; }
.art-card img { width: 100%; }
.shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.22), transparent 55%); transform: translateX(-100%); animation: shine 5s infinite; pointer-events: none; }
@keyframes shine { 0%, 35% { transform: translateX(-120%); } 55%, 100% { transform: translateX(120%); } }

.dark-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; margin: 0 clamp(18px, 5vw, 80px); padding-left: clamp(24px, 5vw, 64px); padding-right: clamp(24px, 5vw, 64px); border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, rgba(0,107,182,.14), rgba(245,132,38,.06)); box-shadow: var(--shadow); }
.statement p:last-child { color: var(--muted); font-size: 1.15rem; line-height: 1.75; }

.section-heading { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.section-heading p:last-child { color: var(--muted); line-height: 1.7; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(31,157,240,.08), rgba(255,255,255,.02));
  box-shadow: 0 18px 60px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(31,157,240,.6); box-shadow: var(--glow-blue); }
.price-card.featured { border-color: var(--orange); background: linear-gradient(180deg, rgba(245,132,38,.18), rgba(0,107,182,.08)); box-shadow: var(--glow-orange); animation: pulse 3.4s ease-in-out infinite; }
.price-card.featured:hover { box-shadow: var(--glow-orange); transform: translateY(-6px) scale(1.01); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 1px rgba(245,132,38,.55), 0 18px 55px rgba(245,132,38,.28); } 50% { box-shadow: 0 0 0 2px rgba(245,132,38,.85), 0 22px 66px rgba(245,132,38,.5); } }
.price-card.premium { border-color: var(--blue-bright); }
.price-card.premium:hover { box-shadow: var(--glow-blue); }
.badge { position: absolute; top: 18px; right: 18px; padding: 7px 11px; border-radius: 999px; background: var(--orange); color: #fff; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 6px 20px rgba(245,132,38,.45); }
.gold-badge { background: var(--blue); box-shadow: 0 6px 20px rgba(0,107,182,.5); }
.size { color: var(--orange); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.price { font-family: "Bebas Neue", Impact, sans-serif; font-size: 4.2rem; line-height: .9; color: #fff; margin-bottom: 16px; }
.desc, .price-card li { color: var(--muted); line-height: 1.65; }
.price-card ul { padding-left: 18px; margin: 16px 0 26px; }
.price-card li::marker { color: var(--orange); }

.value-split { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.mockup-frame { border-radius: 24px; overflow: hidden; border: 2px solid rgba(31,157,240,.4); box-shadow: var(--glow-blue), var(--shadow); }
.value-list { display: grid; gap: 22px; }
.value-list div { padding: 20px; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 14px; background: rgba(0,107,182,.08); transition: transform .18s ease, background .18s ease; }
.value-list div:hover { transform: translateX(6px); background: rgba(245,132,38,.1); }
.value-list span { color: var(--orange); font-weight: 900; letter-spacing: .18em; font-size: 1.05rem; }
.value-list p { color: var(--muted); line-height: 1.7; margin-bottom: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-grid figure { margin: 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.04); box-shadow: 0 18px 60px rgba(0,0,0,.4); transition: transform .2s ease, box-shadow .2s ease; }
.gallery-grid figure:hover { transform: translateY(-6px); box-shadow: var(--glow-orange); }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery-grid figcaption { padding: 16px 18px; color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }

.details { margin-top: 10px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.spec-grid div { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,.28); }
.spec-grid strong { display: block; margin-bottom: 6px; color: var(--blue-bright); }
.spec-grid span { color: var(--muted); }

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
details { border: 1px solid var(--line); border-radius: 16px; background: rgba(0,107,182,.07); padding: 18px 20px; transition: border-color .18s ease; }
details[open] { border-color: rgba(245,132,38,.5); }
summary { cursor: pointer; font-weight: 900; }
summary::marker { color: var(--orange); }
details p { color: var(--muted); line-height: 1.7; margin: 16px 0 0; }

.final-cta { text-align: center; background: radial-gradient(circle at center, rgba(245,132,38,.2), rgba(0,107,182,.1) 40%, transparent 60%); border-radius: 26px; margin: 0 clamp(18px,5vw,80px); }
.final-cta p { color: var(--muted); }

.site-footer { display: grid; grid-template-columns: 1fr 1.7fr; gap: 30px; padding: 34px clamp(18px, 5vw, 80px); border-top: 2px solid transparent; border-image: linear-gradient(90deg, var(--orange), var(--blue)) 1; color: var(--muted); background: rgba(0,0,0,.4); }
.site-footer strong { color: var(--orange); }
.legal { font-size: .78rem; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  body::before, .button.primary, .price-card.featured, .shine { animation: none; }
}

@media (max-width: 1060px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero, .value-split, .dark-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 720px) {
  .site-header nav { display: none; }
  .brand img { width: 112px; }
  .header-cta { padding: 9px 14px; }
  .pricing-grid, .gallery-grid, .spec-grid, .site-footer { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .dark-panel { margin: 0 18px; }
  h1 { font-size: clamp(3.4rem, 17vw, 6rem); }
}
