/* ===== Wing Kingz landing — Knicks blue & orange ===== */
:root {
  --blue: #006bb6;
  --blue-d: #0a2540;
  --orange: #f58426;
  --orange-d: #d86f12;
  --ink: #16202c;
  --muted: #5b6b7a;
  --line: #e6eaf0;
  --bg: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(10, 37, 64, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1140px, 92%); margin: 0 auto; }
a { text-decoration: none; color: inherit; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; border-radius: 999px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(245,132,38,.4); }
.btn-primary:hover { background: var(--orange-d); }
.btn-light { background: #fff; color: var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,.18); }

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; color: var(--blue-d); }
.brand img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--blue); }
.nav .btn-primary { margin-left: 8px; }

/* ----- Hero ----- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(245,132,38,.20), transparent 60%),
    linear-gradient(160deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: 70px 0 90px;
}
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 13px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; font-weight: 900; letter-spacing: -.5px; }
.hero h1 .hl { color: var(--orange); }
.lead { margin: 18px 0 26px; font-size: 18px; color: rgba(255,255,255,.9); max-width: 540px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.badges { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; color: #fff;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px; border-radius: 12px;
}
.badge-txt { display: flex; flex-direction: column; line-height: 1.1; font-weight: 800; font-size: 16px; }
.badge-txt small { font-weight: 500; font-size: 10px; opacity: .8; }

/* Phone mockup */
.hero-art { display: flex; justify-content: center; }
.phone {
  position: relative; width: 270px; height: 560px; background: #0c1c2e;
  border-radius: 38px; padding: 12px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12);
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #0c1c2e; border-radius: 0 0 14px 14px; z-index: 2; }
.app-screen { background: #f4f6f9; border-radius: 28px; height: 100%; overflow: hidden; display: flex; flex-direction: column; }
.app-top { background: var(--blue); color: #fff; font-weight: 800; font-size: 14px; padding: 26px 14px 12px; }
.app-body { padding: 12px; flex: 1; overflow: hidden; }
.summon { background: var(--orange); color: #fff; font-weight: 800; text-align: center; padding: 12px; border-radius: 12px; font-size: 13px; box-shadow: 0 6px 16px rgba(245,132,38,.35); }
.live-row { display: flex; align-items: center; gap: 6px; font-weight: 800; color: #2dbd6f; margin: 14px 2px 8px; font-size: 13px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #2dbd6f; box-shadow: 0 0 0 4px rgba(45,189,111,.25); }
.card { background: #fff; border-radius: 12px; padding: 10px 12px; box-shadow: 0 2px 8px rgba(10,37,64,.08); margin-bottom: 10px; font-size: 12px; }
.card strong { color: var(--blue-d); }
.card-live { border-left: 4px solid #eb445a; }
.card-head { display: flex; align-items: center; gap: 8px; }
.card-head small { display: block; color: var(--muted); font-size: 10px; }
.ava { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; }
.pill { margin-left: auto; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }
.pill-red { background: #eb445a; color: #fff; }
.pill-blue { display: inline-block; margin-top: 6px; background: rgba(0,107,182,.12); color: var(--blue); }
.card-meta { color: var(--muted); margin-top: 4px; }
.sec { font-weight: 800; color: var(--blue-d); font-size: 12px; margin: 12px 2px 8px; }
.app-tabs { display: flex; justify-content: space-around; background: var(--blue); padding: 10px 0; font-size: 16px; }

/* ----- Sections ----- */
section { padding: 84px 0; }
.section-title { text-align: center; font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; color: var(--blue-d); letter-spacing: -.5px; }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 12px auto 0; font-size: 17px; }

/* Features */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: transform .18s ease, box-shadow .18s ease; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.f-icon { font-size: 38px; }
.feature h3 { margin: 14px 0 8px; color: var(--blue-d); font-size: 19px; }
.feature p { color: var(--muted); font-size: 15px; }

/* How */
.how { background: #f6f8fb; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.step { text-align: center; padding: 10px; }
.step-num { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 900; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(0,107,182,.3); }
.step h3 { color: var(--blue-d); margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Safety */
.safety-inner { display: flex; gap: 28px; align-items: center; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-d) 100%); color: #fff; border-radius: 26px; padding: 44px; }
.safety-badge { font-size: 54px; }
.safety h2 { font-size: 28px; font-weight: 900; }
.safety p { margin-top: 10px; color: rgba(255,255,255,.92); max-width: 720px; }

/* CTA band */
.cta-band { text-align: center; background: var(--orange); color: #fff; }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; }
.cta-band p { margin: 12px 0 26px; font-size: 18px; opacity: .95; }

/* Footer */
.footer { background: var(--blue-d); color: #fff; padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer .brand { color: #fff; }
.foot-links { display: flex; gap: 24px; font-weight: 600; color: rgba(255,255,255,.85); }
.foot-links a:hover { color: var(--orange); }
.copyright { color: rgba(255,255,255,.6); font-size: 14px; }

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 50px 0 70px; }
  .lead { margin-left: auto; margin-right: auto; }
  .cta-row, .badges { justify-content: center; }
  .hero-art { margin-top: 30px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .safety-inner { flex-direction: column; text-align: center; padding: 34px; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
