/* ==============================
   MIND THE COURT — LANDING PAGE
   ============================== */

:root {
  --bg: #05070a;
  --bg-soft: #0a0d12;
  --panel: #0d1118;
  --panel-2: #11161f;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f7f9;
  --muted: #a5adb9;
  --orange: #ff6500;
  --orange-light: #ff8a32;
  --max-width: 1420px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 13%, rgba(255, 101, 0, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 96px;
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 34px 0 29px;
  color: #e2e6ec;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-contact,
.linkedin-link {
  color: #d8dde5;
  font-size: 0.82rem;
  font-weight: 600;
}

.header-contact:hover,
.linkedin-link:hover {
  color: var(--orange-light);
}

.linkedin-link {
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.78rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: #080a0d;
  box-shadow: 0 14px 38px rgba(255, 101, 0, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff9a52, #ff761b);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

.hero {
  position: relative;
  padding: 154px 0 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 110px;
  right: -120px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.14), transparent 68%);
  pointer-events: none;
}

.court-lines {
  position: absolute;
  z-index: 0;
  top: 125px;
  left: 28%;
  width: 500px;
  height: 500px;
  opacity: 0.18;
  border: 1px solid rgba(255, 101, 0, 0.35);
  border-radius: 50%;
  transform: scaleX(1.45);
}

.court-lines::before,
.court-lines::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 101, 0, 0.3);
}

.court-lines::before {
  top: 50%;
  left: -120px;
  width: 740px;
  height: 1px;
}

.court-lines::after {
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 1px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(600px, 1.17fr);
  gap: 66px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 74px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4.1rem, 7.2vw, 7.25rem);
}

.hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--orange);
}

.hero-text {
  max-width: 610px;
  margin-top: 28px;
  color: #c1c7d0;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.8;
}

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

.hero-dashboard {
  padding-bottom: 58px;
}

.dashboard-frame {
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #090c11;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45);
}

.dashboard-header {
  padding: 8px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header h2 {
  margin-top: 4px;
  font-size: 1rem;
}

.panel-label {
  color: #8f98a5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid rgba(255, 101, 0, 0.35);
  border-radius: 999px;
  color: var(--orange-light);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.68fr;
  gap: 10px;
}

.dashboard-grid article {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.profile-card {
  padding: 14px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
}

.profile-avatar {
  display: grid;
  width: 72px;
  height: 86px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 101, 0, 0.18), transparent),
    #171c25;
  color: var(--orange-light);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.profile-card h3 {
  margin-top: 3px;
  font-size: 0.95rem;
}

.profile-card p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
}

.impact-score {
  text-align: right;
}

.impact-score span {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
}

.impact-score strong {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.radar-card,
.metrics-card,
.shot-card,
.trend-card,
.strengths-card {
  padding: 13px;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.58rem;
}

.radar-chart {
  position: relative;
  width: 145px;
  height: 145px;
  margin: 8px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.radar-chart::before,
.radar-chart::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.radar-chart::after {
  inset: 34%;
}

.radar-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.08);
  transform-origin: top;
}

.axis-one { transform: rotate(0deg); }
.axis-two { transform: rotate(72deg); }
.axis-three { transform: rotate(144deg); }
.axis-four { transform: rotate(216deg); }
.axis-five { transform: rotate(288deg); }

.radar-shape {
  position: absolute;
  inset: 27px 22px 24px 28px;
  clip-path: polygon(52% 0, 100% 40%, 81% 100%, 22% 88%, 0 32%);
  border: 2px solid var(--orange);
  background: rgba(255, 101, 0, 0.14);
}

.metrics-card ul,
.strengths-card ul {
  margin-top: 10px;
  list-style: none;
}

.metrics-card li {
  padding: 7px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
}

.metrics-card li:last-child {
  border-bottom: 0;
}

.metrics-card li span {
  color: var(--muted);
}

.shot-card {
  min-height: 190px;
}

.court-mini {
  position: relative;
  height: 150px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 35px 35px;
}

.court-mini::before {
  content: "";
  position: absolute;
  right: 20%;
  bottom: -35px;
  left: 20%;
  height: 95px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50% 50% 0 0;
}

.hoop {
  position: absolute;
  right: 50%;
  bottom: 13px;
  width: 24px;
  height: 6px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  transform: translateX(50%);
}

.arc {
  position: absolute;
  right: 14%;
  bottom: -42px;
  left: 14%;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50% 50% 0 0;
}

.court-mini i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 101, 0, 0.5);
}

.trend-card {
  grid-column: 2;
}

.trend-card svg {
  width: 100%;
  height: 150px;
  margin-top: 10px;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
}

.trend-area {
  fill: url(#trendFill);
}

.trend-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strengths-card ul {
  display: grid;
  gap: 12px;
}

.strengths-card li {
  position: relative;
  padding-left: 14px;
  color: #c6ccd5;
  font-size: 0.68rem;
}

.strengths-card li::before {
  content: "";
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.quick-solutions {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quick-solutions article {
  min-height: 118px;
  padding: 0 24px;
  display: flex;
  gap: 16px;
  border-right: 1px solid var(--border);
}

.quick-solutions article:first-child {
  padding-left: 0;
}

.quick-solutions article:last-child {
  padding-right: 0;
  border-right: 0;
}

.solution-icon {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.quick-solutions h3 {
  margin-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quick-solutions p {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section h2,
.contact-card h2 {
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}

.section-heading > p:last-child,
.about-copy,
.contact-card > div > p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 22px;
}

.products-section {
  background:
    radial-gradient(circle at 11% 36%, rgba(255, 101, 0, 0.06), transparent 26rem),
    rgba(255, 255, 255, 0.012);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 101, 0, 0.42);
}

.product-number {
  margin-bottom: auto;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.product-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.product-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card a {
  margin-top: 23px;
  display: inline-flex;
  gap: 8px;
  color: var(--orange-light);
  font-size: 0.84rem;
  font-weight: 800;
}

.about-section {
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 100px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 24px;
  padding-top: 28px;
}

.contact-section {
  padding: 30px 0 110px;
}

.contact-card {
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  border: 1px solid rgba(255, 101, 0, 0.3);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 101, 0, 0.2), transparent 25rem),
    var(--panel);
}

.contact-card > div:first-child {
  max-width: 780px;
}

.contact-card > div > p:last-child {
  margin-top: 18px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #030406;
}

.footer-shell {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  width: 78px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.footer-shell > p {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-shell > p:nth-of-type(1) {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--orange-light);
}

.copyright {
  grid-column: 1 / -1;
  padding-bottom: 26px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

@media (max-width: 1220px) {
  .nav-shell {
    grid-template-columns: 100px 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
    padding-bottom: 30px;
  }

  .hero-dashboard {
    max-width: 920px;
  }

  .quick-solutions {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-solutions article {
    padding: 22px;
    border-bottom: 1px solid var(--border);
  }

  .quick-solutions article:nth-child(2n) {
    border-right: 0;
  }

  .quick-solutions article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 78px;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 24px;
    left: 24px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(7, 9, 13, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-card {
    grid-column: 1 / -1;
  }

  .trend-card {
    grid-column: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .metrics-card {
    grid-column: auto;
  }

  .trend-card {
    grid-column: auto;
  }

  .profile-card {
    grid-template-columns: 62px 1fr auto;
  }

  .profile-avatar {
    width: 62px;
    height: 74px;
  }

  .quick-solutions,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .quick-solutions article,
  .quick-solutions article:first-child,
  .quick-solutions article:last-child {
    grid-column: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .quick-solutions article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .contact-section {
    padding-bottom: 82px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-shell {
    padding: 34px 0 0;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .copyright {
    width: 100%;
    text-align: left;
  }
}
