/* ===========================================================
   Coach Connect — coachconnectllc.com
   Custom static marketing site. No build step required.
   =========================================================== */

:root {
  --bg: #0a0e1a;
  --bg-alt: #0e1424;
  --surface: #141b30;
  --surface-2: #1a2338;
  --border: #26314d;
  --text: #eef2ff;
  --muted: #9aa6c4;
  --brand: #4f7cff;
  --brand-2: #22d3a6;
  --grad: linear-gradient(100deg, #4f7cff 0%, #22d3a6 100%);
  --radius: 16px;
  --maxw: 1120px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-2);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }

.btn-primary {
  background: var(--grad);
  color: #06210f;
  box-shadow: 0 12px 30px -12px rgba(79, 124, 255, 0.7);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--brand); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 14, 26, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad);
  color: #06210f;
  font-size: 0.85rem;
  font-weight: 900;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a { transition: color 0.15s ease; }
.nav a:hover { color: var(--text); }
.nav .btn { color: #06210f; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 84px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(79, 124, 255, 0.22), transparent 70%),
    radial-gradient(50% 50% at 80% 10%, rgba(34, 211, 166, 0.16), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  font-weight: 800;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  font-weight: 800;
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.product-card.featured {
  border-color: rgba(79, 124, 255, 0.5);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--grad);
  color: #06210f;
}
.product-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.product-icon { font-size: 1.9rem; line-height: 1; }
.product-head h3 { margin: 0; font-size: 1.5rem; font-weight: 800; }
.product-desc { color: var(--muted); margin: 0 0 18px; }
.product-points {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.product-points li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-size: 0.96rem;
}
.product-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-2);
  font-weight: 800;
}
.product-card .btn { margin-top: auto; align-self: flex-start; }
.product-card.coming-soon { border-style: dashed; background: var(--bg-alt); }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--muted); margin: 0 0 16px; }
.about-copy .section-title { margin-bottom: 22px; }
.about-stats { display: grid; gap: 16px; }
.stat {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-value {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-lede { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-nav { display: flex; gap: 22px; color: var(--muted); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--text); }
.footer-legal { color: var(--muted); font-size: 0.85rem; margin: 0; width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
}
