/* ============ FNL COACH SHARED STYLES ============ */
:root {
  --field: #0a0e0a;
  --field-deep: #050805;
  --chalk: #f5f1e6;
  --chalk-dim: #c9c2ad;
  --stadium: #ffd23f;
  --stadium-warm: #ffb627;
  --blood: #c1272d;
  --grass: #1f3d1c;
  --rule: rgba(245, 241, 230, 0.12);
  --rule-strong: rgba(245, 241, 230, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--field);
  color: var(--chalk);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 210, 63, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(193, 39, 45, 0.06), transparent 60%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--chalk);
}
.brand-mark {
  height: 52px; width: auto; flex-shrink: 0; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.brand-text {
  font-family: 'Anton', sans-serif;
  font-size: 22px; letter-spacing: 0.08em;
  text-transform: uppercase; line-height: 1;
}
.brand-text small {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.25em;
  color: var(--stadium); margin-top: 4px; font-weight: 400;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 0.12em;
  color: var(--chalk-dim); text-decoration: none;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--stadium); }
.nav-links a.active::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--stadium);
}
.nav-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 0.14em;
  background: var(--stadium); color: var(--field);
  padding: 10px 20px; text-decoration: none;
  border: 2px solid var(--stadium); transition: all 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--stadium); }

/* ============ PAGE HEADER ============ */
.page-head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px 50px;
}
.crumb {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--stadium); text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; gap: 12px; align-items: center;
}
.crumb a {
  color: var(--chalk-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.crumb a:hover { color: var(--stadium); }

.page-head-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 50px;
}

h1.page-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h1.page-title em {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 400;
  text-transform: lowercase; color: var(--stadium);
}
.page-tag {
  color: var(--chalk-dim);
  font-size: 18px; line-height: 1.5;
  padding-bottom: 8px;
  max-width: 480px;
}
.page-tag em { color: var(--stadium); font-style: italic; }

/* ============ BUTTONS ============ */
.btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.14em;
  padding: 16px 32px; text-decoration: none;
  border: 2px solid var(--chalk); color: var(--chalk);
  background: transparent; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.btn:hover { background: var(--chalk); color: var(--field); }
.btn-primary {
  background: var(--blood); border-color: var(--blood); color: var(--chalk);
}
.btn-primary:hover { background: transparent; color: var(--blood); }
.btn-ghost {
  border-color: var(--rule-strong); color: var(--chalk-dim);
}
.btn-ghost:hover {
  border-color: var(--stadium); background: transparent; color: var(--stadium);
}

/* ============ SECTION HEADS ============ */
.section { max-width: 1400px; margin: 0 auto; padding: 80px 32px; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 24px;
}
.section-num {
  font-family: 'DM Mono', monospace;
  font-size: 14px; letter-spacing: 0.2em;
  color: var(--stadium);
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.95;
}
.section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 400;
  text-transform: lowercase; color: var(--stadium);
}

/* ============ FOOTER ============ */
footer {
  background: var(--field-deep);
  border-top: 1px solid var(--rule);
  padding: 60px 32px 30px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand-text { font-size: 28px; }
.footer-brand p {
  margin-top: 16px; color: var(--chalk-dim);
  font-size: 14px; max-width: 360px; line-height: 1.55;
}
.footer-brand .affiliate {
  margin-top: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--stadium);
}
.footer-brand .affiliate a {
  color: var(--stadium); text-decoration: none;
  border-bottom: 1px dotted var(--stadium);
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--stadium);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em; font-size: 15px;
  color: var(--chalk-dim); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--stadium); }
.footer-bottom {
  max-width: 1400px; margin: 50px auto 0;
  padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--chalk-dim);
}

/* ============ RESPONSIVE BASE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .page-head-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(20px); animation: reveal 0.8s forwards; }
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.25s; }
.reveal.d3 { animation-delay: 0.4s; }
.reveal.d4 { animation-delay: 0.55s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
