/* HoopsPlus marketing site — shared styles */

:root {
  --bg-dark: #121212;
  --bg-card: #1c1c1e;
  --teal: #00f2fe;
  --teal-hover: #00d2dd;
  --pink: #ff496c;
  --text-white: #ffffff;
  --text-gray: #a1a1a6;
  --border-teal: rgba(0, 242, 254, 0.15);
  --border-pink: rgba(255, 73, 108, 0.15);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-size: 18px;
}

.brand img { width: 30px; height: 30px; border-radius: 8px; }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--bg-dark) !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--text-white);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px) scale(1.02);
}

.btn.secondary {
  background: transparent;
  color: var(--text-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  transform: none;
  background: transparent;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 242, 254, 0.10), transparent 70%);
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #ffffff 30%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero p.subtitle {
  color: var(--text-gray);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.hero-mock {
  margin-top: 56px;
  border-radius: 20px;
  border: 1px solid var(--border-teal);
  background: var(--bg-card);
  padding: 40px;
  color: var(--text-gray);
  font-size: 13px;
}

/* Sections */
section { padding: 72px 0; }

.section-eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 44px;
  max-width: 720px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover { transform: translateY(-6px); border-color: var(--teal); box-shadow: 0 15px 40px rgba(0, 242, 254, 0.12); }

.card.problem { border-left: 4px solid var(--pink); background-color: rgba(255, 73, 108, 0.04); }
.card.solution { border-left: 4px solid var(--teal); background-color: rgba(0, 242, 254, 0.04); }

.card h3 { margin-top: 0; font-size: 18px; }

.card ul { padding-left: 20px; color: var(--text-gray); font-size: 14.5px; }
.card ul li { margin-bottom: 10px; }
.card ul li strong { color: var(--text-white); }

/* Grid of 3 */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.grid-3 .card h4.eyebrow {
  color: var(--teal);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.grid-3 .card h3 { margin-bottom: 6px; }
.grid-3 .card p { color: var(--text-gray); font-size: 14.5px; }
.grid-3 .card a.link {
  color: var(--teal);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
}

/* Testimonials */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: 16px;
  padding: 26px;
}

.testimonial p.quote { font-size: 15.5px; color: var(--text-white); }
.testimonial p.author { color: var(--teal); font-weight: 700; font-size: 13.5px; margin-bottom: 0; }

/* Footer CTA */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, #151515, #0d1f20);
  border-top: 1px solid var(--border-teal);
  border-bottom: 1px solid var(--border-teal);
}

.cta-band h2 { font-size: clamp(24px, 4vw, 36px); text-transform: uppercase; margin: 0 0 12px; }
.cta-band p { color: var(--text-gray); margin-bottom: 28px; }

/* Zig zag feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-row:last-child { border-bottom: none; }

.feature-row.reverse .feature-visual { order: 2; }

@media (max-width: 760px) {
  .feature-row, .feature-row.reverse .feature-visual { grid-template-columns: 1fr; order: 0; }
  .feature-row { grid-template-columns: 1fr; }
}

.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: 16px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

.feature-row h3 { font-size: 20px; margin: 0 0 4px; }
.feature-row .kicker { color: var(--teal); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.feature-row p { color: var(--text-gray); font-size: 14.5px; }
.feature-row ul { color: var(--text-gray); font-size: 14.5px; padding-left: 20px; }
.feature-row ul li strong { color: var(--text-white); }

/* Highlight blocks */
.highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
}

.highlight h3 { font-size: 22px; text-transform: uppercase; margin-top: 0; }
.highlight p { color: var(--text-gray); }
.highlight .benefit { color: var(--teal); font-weight: 700; font-size: 14.5px; }

/* Steps */
.step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.step-number {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-hover));
  color: var(--bg-dark);
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-body { color: var(--text-gray); font-size: 14.5px; }
.step-body strong { color: var(--text-white); }
.step-body ul { padding-left: 18px; }

/* FAQ accordion (native <details>) */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 4px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-size: 20px; font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item:hover summary { color: var(--teal); }
.faq-item .faq-answer { color: var(--text-gray); font-size: 14.5px; padding: 0 4px 16px; }

/* Legal */
.legal-nav { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.legal-nav a { color: var(--teal); text-decoration: none; font-weight: 600; font-size: 14px; }
.legal section.legal-block { padding-top: 24px; padding-bottom: 24px; }
.legal h2 { text-transform: uppercase; font-size: 26px; }
.legal h3 { font-size: 17px; color: var(--teal); margin-top: 32px; }
.legal p, .legal li { color: var(--text-gray); font-size: 14.5px; }
.legal .effective { color: var(--text-gray); font-size: 13px; margin-top: -8px; }
.legal hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 28px 0; }

/* Footer */
footer.site-footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--text-gray);
  font-size: 13px;
}

footer.site-footer a { color: var(--text-gray); text-decoration: none; margin: 0 10px; }
footer.site-footer a:hover { color: var(--teal); }
