/**
 * Bold athletic editorial palette (Nike-inspired: high contrast, volt accent, sharp type).
 * Keeps --md-sys-* names so components stay wired; values are brand-specific, not M3 defaults.
 */
:root {
  color-scheme: light;

  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --md-sys-color-primary: #ccff00;
  --md-sys-color-on-primary: #0a0a0a;
  --md-sys-color-primary-container: #f4ffcc;
  --md-sys-color-on-primary-container: #1a1a00;

  --md-sys-color-secondary: #0a0a0a;
  --md-sys-color-on-secondary: #ffffff;
  --md-sys-color-secondary-container: #e8e8e8;
  --md-sys-color-on-secondary-container: #0a0a0a;

  --md-sys-color-tertiary: #ffffff;
  --md-sys-color-on-tertiary: #0a0a0a;
  --md-sys-color-tertiary-container: #f5f5f5;
  --md-sys-color-on-tertiary-container: #0a0a0a;

  --md-sys-color-background: #ffffff;
  --md-sys-color-on-background: #0a0a0a;

  --md-sys-color-surface: #ffffff;
  --md-sys-color-on-surface: #0a0a0a;
  --md-sys-color-surface-variant: #ebebeb;
  --md-sys-color-on-surface-variant: #404040;

  --md-sys-color-surface-dim: #d4d4d4;
  --md-sys-color-surface-bright: #ffffff;

  --md-sys-color-surface-container-lowest: #ffffff;
  --md-sys-color-surface-container-low: #fafafa;
  --md-sys-color-surface-container: #f5f5f5;
  --md-sys-color-surface-container-high: #eeeeee;
  --md-sys-color-surface-container-highest: #e5e5e5;

  --md-sys-color-outline: #0a0a0a;
  --md-sys-color-outline-variant: #d4d4d4;

  --md-sys-color-error: #e60012;
  --md-sys-color-on-error: #ffffff;
  --md-sys-color-error-container: #ffe8ea;
  --md-sys-color-on-error-container: #5c0008;

  --md-sys-color-inverse-surface: #0a0a0a;
  --md-sys-color-inverse-on-surface: #fafafa;
  --md-sys-color-inverse-primary: #ccff00;

  --md-sys-color-shadow: #000000;
  --md-sys-color-scrim: rgba(0, 0, 0, 0.65);

  --md-sys-shape-corner-extra-small: 2px;
  --md-sys-shape-corner-small: 2px;
  --md-sys-shape-corner-medium: 4px;
  --md-sys-shape-corner-large: 4px;
  --md-sys-shape-corner-extra-large: 0px;
  --md-sys-shape-corner-full: 2px;

  --md-sys-motion-duration-short: 150ms;
  --md-sys-motion-duration-medium: 250ms;
  --md-sys-motion-easing-standard: cubic-bezier(0.25, 0.1, 0.25, 1);

  --md-sys-state-hover-opacity: 0.12;
  --md-sys-state-focus-opacity: 0.16;
  --md-sys-state-pressed-opacity: 0.16;

  --nike-black: #0a0a0a;
  --nike-volt: #ccff00;
  --nike-muted-on-dark: #a3a3a3;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-background);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  border-radius: var(--md-sys-shape-corner-extra-small);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--md-sys-color-primary);
  outline-offset: 3px;
}

.display-hero {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 11vw, 6.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-small {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.headline-large {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.headline-medium {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.headline-small {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.title-large {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.title-medium {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.title-small {
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.body-large {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65rem;
  font-weight: 400;
}

.body-medium {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.body-small {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.label-large {
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.label-medium {
  font-family: var(--font-display);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ========== Layout ========== */

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--nike-volt);
  color: var(--nike-black);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: clamp(56px, 10vw, 120px);
}

.section--tight {
  padding-block: 0;
}

.surface-container {
  background-color: var(--md-sys-color-surface);
  border-radius: 0;
  border: 2px solid var(--nike-black);
}

.surface-container--dark {
  background-color: var(--nike-black);
  border-color: var(--nike-black);
  color: #fff;
}

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: 28px;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background-color var(--md-sys-motion-duration-short) var(--md-sys-motion-easing-standard),
    color var(--md-sys-motion-duration-short) var(--md-sys-motion-easing-standard),
    border-color var(--md-sys-motion-duration-short) var(--md-sys-motion-easing-standard),
    transform var(--md-sys-motion-duration-short) var(--md-sys-motion-easing-standard);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--filled {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  border-color: var(--md-sys-color-primary);
}

.btn--filled:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--filled:active:not(:disabled) {
  transform: translateY(0);
}

.btn--outlined {
  background: transparent;
  color: var(--nike-black);
  border: 2px solid var(--nike-black);
}

.btn--outlined:hover:not(:disabled) {
  background-color: var(--nike-black);
  color: #fff;
}

.btn--text {
  background: transparent;
  color: var(--nike-black);
  min-height: 52px;
  padding-inline: 16px;
  border-color: transparent;
}

.btn--text:hover:not(:disabled) {
  background-color: rgba(10, 10, 10, 0.06);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--outline-light:hover:not(:disabled) {
  background: #fff;
  color: var(--nike-black);
}

.btn--text-light {
  background: transparent;
  color: #fff;
  border-color: transparent;
}

.btn--text-light:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.header-bar {
  background-color: var(--nike-black);
  border-bottom: 1px solid #262626;
}

.header-bar .btn.btn--text,
.header-bar .btn.btn--text-light {
  color: #fff;
}

.header-bar .btn.btn--text:hover:not(:disabled),
.header-bar .btn.btn--text-light:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

/* ========== Chips ========== */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--nike-black);
  border: 2px solid var(--nike-black);
}

.chip--veg {
  background-color: var(--nike-volt);
  color: var(--nike-black);
  border-color: var(--nike-black);
}

/* ========== Section band ========== */

.section-band {
  background: var(--nike-black);
  color: #fff;
  padding: clamp(20px, 4vw, 36px) clamp(20px, 5vw, 48px);
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.section-band__inner {
  max-width: 1320px;
  margin-inline: auto;
}

.divider {
  height: 2px;
  background: var(--nike-black);
  border: none;
  margin: 0;
}

.divider--volt {
  height: 4px;
  background: var(--nike-volt);
  max-width: 80px;
  margin: 0;
}

/* ========== Forms ========== */

.text-field {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 0;
  border: 2px solid var(--nike-black);
  background-color: #fff;
  color: var(--nike-black);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.text-field::placeholder {
  color: #737373;
}

.text-field:hover {
  border-color: #404040;
}

.text-field:focus {
  outline: none;
  border-color: var(--nike-volt);
  box-shadow: 0 0 0 1px var(--nike-volt);
}

textarea.text-field {
  min-height: 120px;
  resize: vertical;
}

.text-field--on-dark {
  background: #141414;
  border-color: #404040;
  color: #fafafa;
}

.text-field--on-dark::placeholder {
  color: #737373;
}

.text-field--on-dark:focus {
  border-color: var(--nike-volt);
}

/* ========== Snackbar ========== */

.snackbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: min(560px, calc(100% - 32px));
  padding: 16px 20px;
  border-radius: 0;
  background-color: var(--nike-black);
  color: #fafafa;
  border: 2px solid var(--nike-volt);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.35rem;
  display: none;
}

/* ========== Stats / Index numbers ========== */

.nike-index {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--nike-volt);
  opacity: 0.9;
}

/* ========== Hero ========== */

.hero-nike {
  position: relative;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  background-color: var(--nike-black);
  color: #fff;
  min-height: calc(100dvh - 64px);
  padding-block: clamp(40px, 8vh, 80px);
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-nike__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.hero-nike__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.78) 38%,
    rgba(10, 10, 10, 0.55) 100%
  );
}

.hero-nike__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
}

.hero-nike__accent {
  color: var(--nike-volt);
}

/* ========== Editorial strip ========== */

.editorial-strip {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  max-height: min(52vh, 520px);
  overflow: hidden;
  border-block: 2px solid var(--nike-black);
}

.editorial-strip__img {
  display: block;
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  object-position: center 40%;
}

/* ========== Cards ========== */

.why-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 2px solid var(--nike-black);
}

.menu-pillar__media {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--nike-black);
  margin-bottom: 20px;
  display: block;
}

/* ========== Franchise panel ========== */

.franchise-panel__media-wrap {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.franchise-panel__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.franchise-panel__media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
}

.franchise-panel__content {
  position: relative;
  z-index: 1;
}

/* ========== Pitch / doc pages ========== */

.doc-page {
  background: #fff;
  color: var(--nike-black);
  min-height: 50dvh;
}

.doc-page .container {
  max-width: 900px;
}

.doc-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5em;
  line-height: 1.1;
}

.doc-page h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2.25rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--nike-black);
  line-height: 1.25;
}

.doc-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.doc-page h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.doc-page p,
.doc-page li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #262626;
}

.doc-page p {
  margin: 0 0 1em;
}

.doc-page ul {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.doc-page li {
  margin-bottom: 0.35em;
}

.doc-page hr {
  border: none;
  border-top: 2px solid #e5e5e5;
  margin: 2rem 0;
}

.doc-page strong {
  font-weight: 600;
  color: var(--nike-black);
}

.doc-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
  border: 2px solid var(--nike-black);
}

.doc-page th,
.doc-page td {
  border: 1px solid var(--nike-black);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.doc-page th {
  background: #f5f5f5;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.doc-page a {
  color: #0f6b2e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-page a:hover {
  color: var(--nike-black);
}

.doc-page em {
  font-style: italic;
}

.doc-page .pitch-lead {
  font-size: 0.9375rem;
  color: #525252;
  margin: 0 0 2rem;
  font-style: italic;
  line-height: 1.55;
}

.doc-page .pitch-title-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--nike-black);
}

.doc-page .pitch-title-block .tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f6b2e;
  margin: 0.75rem 0 0;
}

.doc-page .pitch-meta {
  font-size: 0.875rem;
  color: #737373;
  margin: 1rem 0 0;
}

.doc-page .pitch-faq dt {
  font-weight: 600;
  margin-top: 1.25rem;
  color: var(--nike-black);
}

.doc-page .pitch-faq dd {
  margin: 0.35rem 0 0;
  padding-left: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2px;
  background: var(--nike-black);
  border: 2px solid var(--nike-black);
  margin: 1.5rem 0 2rem;
}

.stat-card {
  background: #fafafa;
  padding: 24px 20px;
  text-align: center;
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--nike-volt);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 0 var(--nike-black);
  -webkit-text-stroke: 1px var(--nike-black);
  paint-order: stroke fill;
}

.stat-card__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #404040;
  line-height: 1.3;
}

.stat-card--dark {
  background: var(--nike-black);
}

.stat-card--dark .stat-card__number {
  color: var(--nike-volt);
  -webkit-text-stroke: 0;
}

.stat-card--dark .stat-card__label {
  color: #a3a3a3;
}

.doc-page .pitch-img {
  width: 100%;
  border: 2px solid var(--nike-black);
  display: block;
  margin: 1.5rem 0;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

.pitch-source {
  font-size: 0.75rem;
  color: #737373;
  font-style: italic;
  margin: -0.25rem 0 1.25rem;
  line-height: 1.4;
}
