:root {
  --navy: #1B2438;
  --navy-deep: #111827;
  --copper: #C17F4E;
  --copper-light: #D4A574;
  --copper-glow: rgba(193, 127, 78, 0.12);
  --parchment: #F5F0E8;
  --parchment-warm: #FAF6EE;
  --sage: #8A9A7B;
  --slate: #6B7B8D;
  --stone: #9CA3AF;
  --text-dark: #1B2438;
  --text-body: #374151;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border-light: rgba(27, 36, 56, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --green-tier: #2D8A4E;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section {
  position: relative;
}

/* ═══════ SHARED NAV ═══════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(27, 36, 56, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193, 127, 78, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--parchment);
}

.nav-cta {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
  background: var(--copper);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--copper-light);
}

/* ═══════ LANDING PAGE HERO ═══════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px,
      rgba(193, 127, 78, 0.03) 40px, rgba(193, 127, 78, 0.03) 41px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(193, 127, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  display: inline-block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--copper-light);
}

.hero-sub {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--copper);
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-cta:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(193, 127, 78, 0.25);
}

.hero-meta {
  margin-top: 24px;
  font-size: 13px;
  color: var(--slate);
}

.hero-meta span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ═══════ BELIEF BAR ═══════ */
.belief-bar {
  background: var(--navy);
  border-top: 1px solid rgba(193, 127, 78, 0.2);
  border-bottom: 1px solid rgba(193, 127, 78, 0.2);
  padding: 48px 32px;
  text-align: center;
}

.belief-bar blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--copper-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ═══════ IDENTITY MIRROR ═══════ */
.identity-section {
  padding: 80px 32px;
  background: var(--parchment-warm);
}

.identity-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.identity-container h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 40px;
}

.identity-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 40px;
}

.identity-trait {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  padding-left: 20px;
  position: relative;
}

.identity-trait::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.identity-not {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.identity-not strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ═══════ SHARED SECTION UTILITIES ═══════ */
.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: block;
}

/* ═══════ VALUE PROPOSITIONS ═══════ */
.value-section {
  padding: 100px 32px;
  background: var(--white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: var(--parchment-warm);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper);
  border-radius: 6px 6px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(27, 36, 56, 0.06);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--copper-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--copper);
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ═══════ PRODUCT SHOWCASE ═══════ */
.product-section {
  padding: 100px 32px;
  background: var(--parchment);
}

.product-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.product-visual {
  background: var(--navy-deep);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px,
      rgba(193, 127, 78, 0.04) 20px, rgba(193, 127, 78, 0.04) 21px);
  pointer-events: none;
}

.mock-spreadsheet {
  width: 100%;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.mock-toolbar {
  background: #f0f0f0;
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #ddd;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mock-dot:nth-child(1) {
  background: #ff5f57;
}

.mock-dot:nth-child(2) {
  background: #febc2e;
}

.mock-dot:nth-child(3) {
  background: #28c840;
}

.mock-tabs {
  display: flex;
  background: #e8e8e8;
  padding: 0 8px;
  border-bottom: 1px solid #ddd;
}

.mock-tab {
  padding: 6px 14px;
  font-size: 10px;
  font-family: var(--sans);
  color: var(--text-muted);
  border-right: 1px solid #ddd;
}

.mock-tab.active {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--copper);
}

.mock-row {
  display: grid;
  grid-template-columns: 36px 1.4fr 0.7fr 0.7fr 0.5fr 0.7fr;
  border-bottom: 1px solid #f0f0f0;
  font-size: 11px;
  font-family: var(--sans);
}

.mock-row.header {
  background: var(--navy);
  color: var(--parchment);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mock-cell {
  padding: 7px 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.mock-row.header .mock-cell {
  border-right-color: rgba(255, 255, 255, 0.1);
}

.tier-1 {
  border-left: 3px solid var(--green-tier);
}

.tier-2 {
  border-left: 3px solid var(--copper);
}

.tier-3 {
  border-left: 3px solid var(--slate);
}

.mock-row .player-name {
  font-weight: 600;
}

.mock-row .consensus-gap {
  color: var(--green-tier);
  font-weight: 600;
  font-size: 10px;
}

.mock-row .consensus-gap.neg {
  color: #c0392b;
}

.screenshot-note {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--slate);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.product-info h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-info>p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}

.product-highlights {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.product-highlights li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-highlights li::before {
  content: '→';
  color: var(--copper);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-highlights li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.product-formats {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 8px;
}

.product-formats strong {
  color: var(--text-body);
  font-weight: 500;
}

/* ═══════ COMPRESSED METHODOLOGY BLOCK ON LANDING ═══════ */
.methodology-section {
  padding: 80px 32px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.methodology-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px,
      rgba(193, 127, 78, 0.02) 60px, rgba(193, 127, 78, 0.02) 61px);
  pointer-events: none;
}

.meth-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.meth-container h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 20px;
}

.meth-container>p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
}

.pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px auto 16px;
  max-width: 700px;
  flex-wrap: wrap;
}

.pipeline-source {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(193, 127, 78, 0.15);
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
  flex: 1;
  min-width: 130px;
}

.pipeline-source .source-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}

.pipeline-source .source-name {
  font-size: 13px;
  color: var(--parchment);
  line-height: 1.35;
  font-weight: 500;
}

.pipeline-arrow {
  color: var(--copper);
  font-size: 20px;
  padding: 0 12px;
  flex-shrink: 0;
  opacity: 0.6;
}

.pipeline-output {
  background: rgba(193, 127, 78, 0.12);
  border: 2px solid var(--copper);
  border-radius: 6px;
  padding: 16px 24px;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.pipeline-output .source-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}

.pipeline-output .source-name {
  font-size: 14px;
  color: var(--parchment);
  line-height: 1.35;
  font-weight: 600;
}

.meth-principles {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px auto 36px;
  max-width: 600px;
}

.meth-principle {
  text-align: center;
}

.meth-principle .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 6px;
}

.meth-principle .label {
  font-size: 12px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.meth-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 127, 78, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.meth-link:hover {
  color: var(--copper-light);
  border-color: var(--copper-light);
}

.meth-aside {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(193, 127, 78, 0.1);
}

.meth-aside p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
}

/* ═══════ DRAFT DAY SCENARIO ═══════ */
.scenario-section {
  padding: 72px 32px;
  background: var(--parchment-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.scenario-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.scenario-container h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.scenario-container p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

.scenario-container p+p {
  margin-top: 16px;
}

.scenario-container .scenario-result {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 24px;
  line-height: 1.5;
}

/* ═══════ SOCIAL PROOF ═══════ */
.proof-section {
  padding: 56px 32px;
  background: var(--white);
  text-align: center;
}

.proof-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 40px 32px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--parchment-warm);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.proof-stat {
  text-align: center;
}

.proof-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}

.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 6px;
}

.proof-container p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.proof-container a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(193, 127, 78, 0.3);
}

/* ═══════ PRICING ═══════ */
.pricing-section {
  padding: 100px 32px;
  background: var(--parchment);
}

.pricing-container {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.pricing-container h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pricing-container>p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--copper);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  border-radius: 6px 6px 0 0;
}

.pricing-sport {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.pricing-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount sup {
  font-size: 28px;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-terms {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  padding: 0;
}

.pricing-features li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  padding-left: 28px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}

.pricing-features li em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 13px;
}

.pricing-cta {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pricing-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 36, 56, 0.2);
}

.pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-secondary {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.pricing-secondary a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(193, 127, 78, 0.3);
}

/* ═══════ FAQ ═══════ */
.faq-section {
  padding: 80px 32px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

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

.faq-container h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ═══════ FINAL CTA ═══════ */
.final-cta-section {
  padding: 100px 32px;
  background: var(--navy-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(193, 127, 78, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 28px;
}

.final-cta-content p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 36px;
}

.final-cta-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--copper);
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.final-cta-btn:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(193, 127, 78, 0.25);
}

.final-cta-btn span {
  margin-left: 8px;
}

/* ═══════ SHARED FOOTER ═══════ */
footer {
  background: var(--navy);
  padding: 48px 32px;
  border-top: 1px solid rgba(193, 127, 78, 0.1);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--parchment);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--copper);
}

/* ════════════════════════════════
   METHODOLOGY PAGE-SPECIFIC STYLES
   (extends shared nav/body/footer)
   ════════════════════════════════ */
.page-header {
  background: var(--navy-deep);
  padding: 140px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px,
      rgba(193, 127, 78, 0.03) 40px, rgba(193, 127, 78, 0.03) 41px);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 127, 78, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out;
}

.header-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  display: inline-block;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-header h1 em {
  font-style: italic;
  color: var(--copper-light);
}

.header-sub {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 32px 100px;
}

.article h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 64px 0 24px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  margin: 36px 0 12px;
}

.article p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article p em {
  font-style: italic;
  color: var(--text-dark);
}

.article a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(193, 127, 78, 0.3);
  transition: all 0.2s;
}

.article a:hover {
  color: var(--copper-light);
  border-color: var(--copper-light);
}

.pipeline-section {
  background: var(--navy-deep);
  border-radius: 8px;
  padding: 40px 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.pipeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px,
      rgba(193, 127, 78, 0.02) 30px, rgba(193, 127, 78, 0.02) 31px);
  pointer-events: none;
}

.pipeline-section .pipeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.pipeline-section .pipeline-source {
  padding: 20px 16px;
  min-width: 120px;
}

.pipeline-section .pipeline-output {
  padding: 20px 20px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pipeline-section .source-desc {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.4;
  margin-top: 6px;
}

.source-card {
  background: var(--parchment-warm);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 28px 28px 24px;
  margin: 20px 0;
  position: relative;
  border-left: 3px solid var(--copper);
}

.source-card .source-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.source-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.source-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 0;
}

.step-block {
  margin: 32px 0;
  padding-left: 36px;
  position: relative;
}

.step-block::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
}

.step-block h3 {
  margin-top: 0;
  font-size: 17px;
}

.step-block p {
  font-size: 15px;
  line-height: 1.75;
}

.constraint {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.constraint h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.constraint p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 0;
}

.commitment {
  margin: 28px 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.commitment:last-of-type {
  border-bottom: none;
}

.commitment h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.commitment p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 0;
}

.pull-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 2px solid var(--copper);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}

.format-card {
  background: var(--parchment-warm);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.format-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.format-card .formats {
  font-size: 14px;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.format-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
}

.closing-section {
  background: var(--navy-deep);
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(193, 127, 78, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-content {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 500;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.closing-content p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-deep);
  background: var(--copper);
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.closing-cta:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(193, 127, 78, 0.25);
}


/* ════════════════════════════════
   DOWNLOAD PAGE-SPECIFIC STYLES
   (delivery experience)
   ════════════════════════════════ */
.nav {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  background: #FEFCF9;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: #1A2744;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-brand span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links span {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.page {
  max-width: 740px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.page .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 6rem;
  background: transparent;
  padding: 0;
  min-height: auto;
}

.page .hero-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.1s;
  width: 100%;
}

.page .hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1A2744;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.25s;
  width: 100%;
}

.page .hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
  width: 100%;
}

.cover-container {
  margin: 4rem auto 4rem;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.55s;
}

.product-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(168deg, #1A2744 0%, #162038 50%, #243352 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(26, 39, 68, 0.08),
    0 12px 40px rgba(26, 39, 68, 0.15),
    0 30px 80px rgba(26, 39, 68, 0.1);
}

.cover-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(#F5F0E8 1px, transparent 1px),
    linear-gradient(90deg, #F5F0E8 1px, transparent 1px);
  background-size: 40px 40px;
}

.cover-lines {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(-30deg,
      transparent,
      transparent 80px,
      rgba(245, 240, 232, 0.5) 80px,
      rgba(245, 240, 232, 0.5) 81px);
}

.cover-accent {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 32px;
  height: 1px;
  background: var(--copper);
  opacity: 0.7;
}

.cover-accent-bottom {
  position: absolute;
  bottom: 12%;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper) 30%, var(--copper) 70%, transparent);
  opacity: 0.2;
}

.cover-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12% 10%;
}

.cover-brand {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}

.cover-title,
.cover-sport {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--parchment);
  letter-spacing: -0.01em;
}

.cover-title {
  margin-bottom: 0.75rem;
}

.cover-edition {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 2rem;
  opacity: 0.8;
}

.cover-footer {
  position: absolute;
  bottom: 6%;
  left: 10%;
  right: 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cover-meta {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

.cover-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--copper);
  transform: rotate(45deg);
  opacity: 0.4;
}

.download-section {
  text-align: center;
  margin-bottom: 6rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.7s;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #FEFCF9;
  background: #1A2744;
  border: none;
  padding: 1rem 2.25rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.download-btn:hover {
  background: #243352;
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.2);
  transform: translateY(-1px);
}

.download-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.format-selector {
  display: none;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(8px);
}

.format-selector.visible {
  display: block;
  animation: fadeUp 0.4s ease forwards;
}

.format-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.format-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.format-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
  background: #FEFCF9;
  border: 1px solid rgba(26, 39, 68, 0.12);
  padding: 0.85rem 1.75rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.format-option:hover {
  border-color: var(--copper);
  background: #FAF7F2;
}

.format-option svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.format-ext {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: -0.25rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: rgba(26, 39, 68, 0.12);
  margin: 0 auto 6rem;
  opacity: 0;
  animation: fadeUp 0.4s ease forwards;
  animation-delay: 0.85s;
}

.reinforcement {
  max-width: 580px;
  margin: 0 auto 6rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.9s;
}

.reinforcement p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

.reinforcement .start-here {
  font-weight: 500;
  color: var(--text-primary);
}

.signoff {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1.05s;
}

.signoff p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.footer {
  border-top: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer p {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

/* ═══════ CONSOLIDATED RESPONSIVE MEDIA QUERIES ═══════ */

/* Shared styles for <= 900px */
@media (max-width: 900px) {
  .value-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .identity-traits {
    grid-template-columns: 1fr;
  }

  .pipeline,
  .pipeline-section .pipeline {
    flex-direction: column;
    gap: 8px;
  }

  .pipeline-arrow,
  .pipeline-section .pipeline-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .meth-principles {
    gap: 24px;
  }

  .nav-links {
    display: none;
  }
}

/* Shared styles for <= 600px */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .proof-container {
    padding: 24px 20px;
  }

  .article {
    padding: 48px 20px 72px;
  }

  .source-card,
  .constraint {
    padding: 20px 16px;
  }
}

/* Download page specific styles for <= 640px */
@media (max-width: 640px) {
  .page {
    padding: 4rem 1.25rem;
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .cover-container {
    max-width: 280px;
  }

  .format-options {
    flex-direction: column;
    align-items: center;
  }

  .format-option {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

