/* ============================================================
   BETTER ATHLETE -- FOUNDATION STYLESHEET
   Mobile-first. Avenir Next. No max-width queries.
   ============================================================ */


/* ------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------ */

:root {
  --orange: #E8572A;
  --dark: #1A3A5C;
  --mid: #595959;
  --light-gray: #F5F5F3;
  --white: #FFFFFF;
  --navy: #1A3A5C;
  --dark-navy: #0D1B2E;
}


/* ------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  color: var(--mid);
  line-height: 1.5;
  font-size: 16px;
  padding-top: 64px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: color 0.3s ease;
}


/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 7vw, 40px);
}

h2 {
  font-size: clamp(22px, 5vw, 32px);
}

h3 {
  font-size: clamp(20px, 4vw, 28px);
}

p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.section-label {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.orange-text {
  color: var(--orange);
}


/* ------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------ */

button, .btn {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 87, 42, 0.3);
}

.btn-ghost {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost.dark {
  border-color: var(--dark);
  color: var(--dark);
}

.btn-ghost.dark:hover {
  background-color: rgba(26, 58, 92, 0.05);
}


/* ------------------------------------------------------------
   5. NAVIGATION
   Mobile base: hamburger menu, 64px fixed bar
   ------------------------------------------------------------ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 999;
  overflow: visible;
}

/* -- Logo -- */

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 2px;
}

.logo-name {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.logo-name sup {
  font-size: 50%;
  vertical-align: super;
  line-height: 0;
  color: var(--mid);
}

.ea-everyday {
  color: var(--dark);
}

.ea-athlete {
  color: var(--orange);
}

.logo-tagline {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.5px;
}

/* -- Hamburger (visible on mobile) -- */

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -- Nav links (mobile: hidden, slides open) -- */

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(13, 27, 46, 0.98);
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
  z-index: 99999;
  gap: 0;
  list-style: none;
}

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

.nav-links > li {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links > li > a {
  display: block;
  padding: 10px 6%;
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

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

/* -- Nav CTA button (mobile) -- */

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  text-align: center;
  margin: 8px 6%;
  border-radius: 3px;
  padding: 10px 6% !important;
  font-size: 12px;
  border-bottom: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 87, 42, 0.3);
}

/* -- Dropdown (mobile: hidden by default) -- */

.nav-dropdown {
  position: relative;
}

.nav-links .nav-dropdown .dropdown-menu {
  display: none !important;
  position: static !important;
  box-shadow: none !important;
  border-top: none !important;
  list-style: none;
  padding: 0;
}

.nav-links .nav-dropdown.mob-open .dropdown-menu {
  display: block !important;
  position: static !important;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--orange);
  margin: 0 0 0 5%;
  padding: 4px 0;
}

.nav-links .nav-dropdown.mob-open .dropdown-menu li a {
  font-size: 12px;
  padding: 8px 6%;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}


/* ------------------------------------------------------------
   6. HERO SECTIONS
   ------------------------------------------------------------ */

.hero {
  min-height: 80svh;
  min-height: 80vh;
  background: var(--dark-navy);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 46, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.hero-eyebrow {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(28px, 8vw, 38px);
  margin-bottom: 0.8rem;
  line-height: 1.08;
}

.hero-subhead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.hero-ctas .btn {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 12px 24px;
}

/* -- Page hero (shorter variant) -- */

.page-hero {
  min-height: 50vh;
  background: var(--dark-navy);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 46, 0.6);
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(28px, 7vw, 40px);
}


/* ------------------------------------------------------------
   7. SECTIONS
   ------------------------------------------------------------ */

section {
  padding: 32px 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: var(--dark-navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-light-gray {
  background: var(--light-gray);
}

.section-orange {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 44px 20px;
}

.section-orange h2 {
  color: var(--white);
  font-size: clamp(24px, 6vw, 36px);
  margin-bottom: 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(24px, 6vw, 36px);
}


/* ------------------------------------------------------------
   8. GRIDS (utility classes)
   All single-column on mobile, expand at breakpoints
   ------------------------------------------------------------ */

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Page-specific named grids -- single column on mobile */

.stats-grid,
.system-cards,
.outcome-grid,
.stories-grid,
.path-grid,
.form-grid,
.credentials-grid,
.domain-grid,
.checklist-grid,
.domain-status-grid,
.audience-grid,
.assessment-grid,
.benefits-grid,
.event-cards-grid,
.event-types-grid,
.domains-grid,
.dashboard-mockup-grid,
.athlete-stories-grid,
.program-types-grid,
.dual-state-grid,
.org-impact-grid,
.founder-section,
.team-grid,
.about-intro-grid,
.contact-grid,
.info-grid,
.platform-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}


/* ------------------------------------------------------------
   9. CARDS
   ------------------------------------------------------------ */

/* -- Stat cards -- */

.stat-card {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 3px;
  text-align: center;
}

.stat-number {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* -- Outcome cards -- */

.outcome-card {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 3px;
  text-align: center;
}

.outcome-card h4 {
  font-size: 16px;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.outcome-card p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 0;
}

/* -- Path cards -- */

.path-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-left: 4px solid var(--orange);
  padding: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}

.path-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--dark);
}

.path-card h4 {
  font-size: 15px;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.path-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  color: var(--orange);
  margin-top: 1rem;
}

.path-card:hover .path-arrow {
  transform: translateX(4px);
}

/* -- System cards (dark section variant) -- */

.system-card {
  background: rgba(255, 255, 255, 0.05);
  border-top: 3px solid var(--orange);
  padding: 22px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.system-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.system-number {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.system-card h4 {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.system-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* -- Story cards -- */

.story-card {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: 28px;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.story-title {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.story-athlete {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.story-context {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 0.8rem;
}

.story-body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--mid);
  margin-bottom: 0.8rem;
}


/* ------------------------------------------------------------
   10. PLATFORM MOCKUP COMPONENTS
   ------------------------------------------------------------ */

.platform-section {
  background: var(--dark-navy);
  color: var(--white);
}

.platform-mockup {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.roster-header {
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.athlete-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.2rem;
  justify-content: center;
}

.athlete-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: bold;
  color: var(--white);
  flex-shrink: 0;
}

.dot-ready {
  background: #2ECC71;
}

.dot-monitor {
  background: #F39C12;
}

.dot-attention {
  background: #E74C3C;
}

.status-pills {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.status-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pill-green       { color: #2ECC71; }
.pill-green .pill-dot { background: #2ECC71; }
.pill-yellow      { color: #F39C12; }
.pill-yellow .pill-dot { background: #F39C12; }
.pill-red         { color: #E74C3C; }
.pill-red .pill-dot { background: #E74C3C; }

.flagged-card {
  background: rgba(231, 76, 60, 0.1);
  border-left: 4px solid #E74C3C;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 0.8rem;
}

.flagged-card p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.compliance-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.platform-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-text p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
}

.platform-link {
  color: var(--orange);
  text-decoration: none;
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.platform-link:hover {
  gap: 12px;
}

/* -- Metric bars -- */

.metric-bar {
  background: var(--light-gray);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.metric-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  min-width: auto;
}

.metric-bar-visual {
  flex: 1;
  width: 100%;
  height: 24px;
  background: #E0E0E0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.metric-bar-fill {
  height: 100%;
  background: #2ECC71;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 11px;
  font-weight: bold;
  color: var(--white);
}

.metric-bar-fill.improvement {
  background: linear-gradient(90deg, #F39C12, #2ECC71);
}

.status-dot-inline {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2ECC71;
}


/* ------------------------------------------------------------
   11. FOOTER
   ------------------------------------------------------------ */

footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

footer .logo {
  margin-bottom: 0.8rem;
}

/* Footer logo color fix */
footer .ea-everyday,
footer .everyday,
footer .logo-name .ea-everyday {
  color: rgba(255, 255, 255, 0.92) !important;
}

footer .ea-athlete,
footer .athlete {
  color: var(--orange) !important;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* 4-column footer variant */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-logo {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom .footer-links {
  flex-direction: row;
  gap: 20px;
}


/* ------------------------------------------------------------
   12. CREDIBILITY SECTION
   ------------------------------------------------------------ */

.credibility {
  text-align: center;
  background: var(--dark-navy);
  color: var(--white);
  padding: 40px 20px;
}

.founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  object-fit: cover;
  border: 3px solid var(--orange);
}

.credibility-text {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.credential-tags {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}


/* ------------------------------------------------------------
   13. MISC SHARED COMPONENTS
   ------------------------------------------------------------ */

.system-description {
  text-align: center;
  margin-top: 3rem;
  font-size: 16px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.stories-cta {
  color: var(--orange);
  text-decoration: none;
  font-family: 'Avenir Next', 'Avenir', 'Segoe UI', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.stories-cta:hover {
  gap: 12px;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   Mobile-first: only min-width queries, no max-width ever
   ============================================================ */


/* ------------------------------------------------------------
   min-width: 481px -- small tablet / larger mobile
   ------------------------------------------------------------ */

@media (min-width: 481px) {

  nav {
    padding: 0 24px;
  }

  section {
    padding: 44px 30px;
  }

  p {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(38px, 6vw, 60px);
  }

  h2 {
    font-size: clamp(32px, 5vw, 52px);
  }

  .section-heading h2 {
    font-size: clamp(32px, 5vw, 52px);
  }

  .section-label {
    margin-bottom: 0.6rem;
  }

  .logo-name {
    font-size: 21px;
  }

  /* Hero */

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    max-width: 900px;
    padding: 0 24px;
  }

  .hero h1 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .hero-subhead {
    font-size: 16px;
    max-width: 700px;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-ctas .btn {
    width: auto;
  }

  .page-hero h1 {
    font-size: clamp(32px, 7vw, 46px);
  }

  /* Cards */

  .stat-card {
    padding: 28px 24px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 16px;
  }

  .outcome-card {
    padding: 28px;
  }

  .outcome-card h4 {
    margin-bottom: 1rem;
  }

  .path-card {
    padding: 30px;
  }

  /* Credibility */

  .founder-photo {
    width: 120px;
    height: 120px;
  }

  /* Platform mockup */

  .athlete-grid {
    gap: 12px;
  }

  .athlete-dot {
    width: 44px;
    height: 44px;
    font-size: 11px;
  }

  .metric-bar {
    flex-direction: row;
    align-items: center;
  }

  .metric-bar-label {
    min-width: 140px;
  }

  .status-pills {
    flex-direction: row;
  }

  .section-orange {
    padding: 48px 30px;
  }

  .section-orange h2 {
    margin-bottom: 1rem;
  }
}


/* ------------------------------------------------------------
   min-width: 600px -- tablet (grid expansion)
   ------------------------------------------------------------ */

@media (min-width: 600px) {

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

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

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

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .system-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .outcome-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
  }

  .stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .path-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}


/* ------------------------------------------------------------
   min-width: 769px -- desktop (nav switch + layout)
   ------------------------------------------------------------ */

@media (min-width: 769px) {

  body {
    padding-top: 70px;
  }

  /* Nav: switch to horizontal */

  nav {
    height: 70px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    padding: 0;
    overflow-y: visible;
    max-height: none;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    gap: 32px;
    align-items: center;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links > li {
    border-bottom: none;
  }

  .nav-links > li > a {
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark);
    text-transform: uppercase;
  }

  .nav-links > li > a:hover {
    color: var(--orange);
  }

  .nav-cta {
    padding: 10px 24px !important;
    margin: 0 !important;
  }

  /* Desktop dropdown */

  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }

  .dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    padding: 12px 0;
  }

  .nav-links .nav-dropdown:hover .dropdown-menu {
    display: flex !important;
    flex-direction: column;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 12px;
    color: var(--dark);
    text-decoration: none;
  }

  .dropdown-menu a:hover {
    background: var(--light-gray);
  }

  /* Hero */

  .hero {
    min-height: 100vh;
    background-attachment: fixed;
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    line-height: 1.1;
  }

  .hero-subhead {
    font-size: 20px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .page-hero {
    background-attachment: fixed;
  }

  /* Sections */

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .section-orange {
    padding: 48px 40px;
  }

  .credibility {
    padding: 44px 40px;
  }

  footer {
    padding: 28px 40px 40px;
  }

  /* Platform content 2-column */

  .platform-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .founder-section,
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ------------------------------------------------------------
   min-width: 1025px -- large desktop
   ------------------------------------------------------------ */

@media (min-width: 1025px) {

  nav {
    padding: 0 40px;
  }

  section {
    padding: 44px 40px;
  }

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

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

  .platform-content {
    gap: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
