:root {
  --ink: #111512;
  --ink-soft: #303833;
  --orange: #a7683f;
  --orange-dark: #87502f;
  --paper: #f7f8f6;
  --paper-2: #edf0ed;
  --white: #ffffff;
  --steel: #68726c;
  --line: #dfe3df;
  --blue-wash: #eff3f0;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(17, 21, 18, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(167, 104, 63, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 27, 43, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
}

.header-inner {
  width: min(1420px, calc(100% - 64px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  color: var(--ink);
  font-size: clamp(1.42rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand span {
  color: var(--orange);
  font-size: 0.58em;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: white;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(72px, 7vw, 112px) max(48px, calc((100vw - 1420px) / 2 + 32px));
  padding-right: clamp(48px, 7vw, 120px);
  background: var(--paper);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -120px;
  bottom: 0;
  width: 220px;
  background: var(--paper);
  content: "";
  clip-path: polygon(0 0, 62% 0, 0 100%);
}

.accent-line {
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--orange);
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.15rem, 5.05vw, 5.35rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--steel);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 28px rgba(239, 86, 55, 0.24);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: white;
}

.trust-inline {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-inline span::first-letter {
  color: var(--orange);
}

.hero-media {
  position: relative;
  min-height: 660px;
  background: #dce5e8;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 71% center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 27, 43, 0.08), transparent 40%);
  content: "";
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  min-width: 205px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-caption span {
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1;
}

.hero-caption p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.quality-strip {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
  padding: 30px 0 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quality-strip > a {
  min-height: 112px;
  padding: 20px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  background: white;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.quality-strip > a:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11, 27, 43, 0.08);
}

.quality-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #ffd4ca;
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.5rem;
}

.quality-strip strong,
.quality-strip small {
  display: block;
}

.quality-strip strong {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
}

.quality-strip small {
  margin-top: 3px;
  color: var(--steel);
  font-size: 0.74rem;
  line-height: 1.4;
}

.quality-strip b {
  font-size: 1.35rem;
  font-weight: 400;
}

.assistant-section {
  padding: clamp(78px, 8vw, 128px) max(32px, calc((100vw - 1420px) / 2 + 32px));
  background: var(--ink);
  color: white;
}

.section-heading {
  max-width: 1420px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.start-content h2,
.method-section h2,
.network-section h2,
.page-hero h1,
.sport-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p,
.heading-action p {
  margin: 0;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.65;
}

.section-heading-light > p {
  color: #b7c1c8;
}

.heading-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.heading-action a,
.text-link {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
}

.quiz-shell {
  max-width: 1420px;
  min-height: 470px;
  margin: auto;
  padding: clamp(28px, 4vw, 60px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.quiz-progress {
  margin-bottom: 42px;
}

.quiz-progress > div {
  display: flex;
  justify-content: space-between;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-track {
  height: 4px;
  margin-top: 12px;
  display: block;
  overflow: hidden;
  background: #d9d9d5;
}

.progress-track > span {
  height: 100%;
  display: block;
  background: var(--orange);
  transition: width 260ms ease;
}

.quiz-question {
  max-width: 820px;
}

.quiz-question h2,
.results-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.quiz-question > p:last-child,
.results-intro > p {
  max-width: 700px;
  margin: 15px 0 0;
  color: var(--steel);
}

.quiz-options {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.quiz-options button {
  position: relative;
  min-height: 126px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #cfd1cf;
  background: white;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.quiz-options button:hover {
  border-color: var(--orange);
  background: #fffaf7;
  transform: translateY(-2px);
}

.quiz-options button span {
  padding-right: 22px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.quiz-options button small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.78rem;
}

.quiz-options button b {
  position: absolute;
  right: 20px;
  bottom: 17px;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 400;
}

.quiz-back,
.quiz-topline button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 700;
}

.quiz-back {
  margin-top: 24px;
}

.quiz-results {
  padding-top: 32px;
}

.quiz-topline {
  margin-bottom: 32px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.results-intro {
  max-width: 880px;
  margin-bottom: 36px;
}

.result-list {
  border-top: 1px solid var(--line);
}

.result-row {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.result-rank {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.45rem;
}

.result-category {
  margin: 0 0 2px !important;
  color: var(--orange) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-main h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
}

.result-main > p {
  max-width: 690px;
  margin: 3px 0 9px;
  color: var(--steel);
  font-size: 0.88rem;
}

.result-main ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.result-main li {
  padding: 4px 9px;
  background: var(--blue-wash);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.result-actions {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.result-score {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
}

.result-score small {
  margin-top: 3px;
  display: block;
  color: var(--steel);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.result-actions a {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.quiz-disclaimer {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: #e9eef0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.answer-summary {
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.answer-summary li {
  padding: 6px 10px;
  border: 1px solid #c9cecf;
  background: white;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.result-label {
  margin: 14px 0 6px !important;
  color: var(--ink-soft) !important;
  font-size: 0.72rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-label-caution {
  color: #8b3b24 !important;
}

.result-compromises li {
  border: 1px solid #ead8cf;
  background: #fff7f2;
}

.quiz-method-link {
  margin-top: 24px;
}

.quiz-method-link a {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-section {
  padding: clamp(82px, 8vw, 132px) max(32px, calc((100vw - 1420px) / 2 + 32px));
}

.sport-grid {
  max-width: 1420px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 22px;
}

.sport-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: white;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(11, 27, 43, 0.11);
}

.sport-card-media {
  position: relative;
  height: 248px;
  display: block;
  overflow: hidden;
  background: var(--blue-wash);
}

.sport-card-graphic {
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 59, 35, 0.2), transparent 28%),
    linear-gradient(145deg, #e9eff1 0%, #f6f4ef 56%, #dfe7e9 100%);
}

.sport-card-graphic::after {
  position: absolute;
  right: -36px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(11, 27, 43, 0.16);
  border-radius: 50%;
  content: "";
}

.sport-card-initials {
  position: absolute;
  top: 24px;
  right: 22px;
  color: rgba(11, 27, 43, 0.09);
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.sport-card-graphic-name {
  position: relative;
  z-index: 1;
  max-width: 80%;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.02;
}

.sport-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.sport-card:hover .sport-card-media img {
  transform: scale(1.035);
}

.sport-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  background: white;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sport-card-body {
  padding: 22px;
}

.sport-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.sport-card-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.sport-card-heading > span {
  color: var(--orange);
  font-size: 1.2rem;
}

.sport-card-body > p {
  min-height: 48px;
  margin: 8px 0 18px;
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.5;
}

.sport-card-facts {
  margin: 0;
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
}

.sport-card-facts dt {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sport-card-facts dd {
  margin: 2px 0 0;
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: capitalize;
}

.start-section {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  background: var(--paper);
}

.start-photo {
  position: relative;
  min-height: 720px;
}

.start-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-photo span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 280px;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}

.start-content {
  padding: clamp(70px, 7vw, 116px);
}

.start-intro {
  max-width: 610px;
  margin: 22px 0 30px;
  color: var(--steel);
}

.start-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.start-list li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border-top: 1px solid #d4d3ce;
}

.start-list li:last-child {
  border-bottom: 1px solid #d4d3ce;
}

.start-list > li > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.18rem;
}

.start-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.28rem;
}

.start-list p {
  margin: 3px 0 0;
  color: var(--steel);
  font-size: 0.82rem;
}

.method-section {
  padding: clamp(82px, 8vw, 132px) max(32px, calc((100vw - 1420px) / 2 + 32px));
}

.selection-home {
  padding: clamp(82px, 8vw, 132px) max(32px, calc((100vw - 1420px) / 2 + 32px));
  background: var(--paper);
}

.selection-home-grid {
  max-width: 1420px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd1cf;
  border-left: 1px solid #cfd1cf;
}

.selection-home-grid a {
  min-height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #cfd1cf;
  border-bottom: 1px solid #cfd1cf;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.selection-home-grid a:hover {
  background: white;
  transform: translateY(-3px);
}

.selection-home-grid span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.selection-home-grid strong {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.selection-home-grid small {
  margin-top: auto;
  padding-top: 24px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 750;
}

.method-section > div:first-child {
  max-width: 760px;
}

.method-grid {
  max-width: 1420px;
  margin: 54px 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid article {
  padding: 30px 26px 34px;
  border-right: 1px solid var(--line);
}

.method-grid article:first-child {
  padding-left: 0;
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1rem;
}

.method-grid h3 {
  margin: 25px 0 8px;
  font-family: var(--display);
  font-size: 1.32rem;
}

.method-grid p {
  margin: 0;
  color: var(--steel);
  font-size: 0.82rem;
}

.network-section {
  padding: clamp(78px, 8vw, 122px) max(32px, calc((100vw - 1420px) / 2 + 32px));
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(60px, 8vw, 130px);
  background: var(--ink);
  color: white;
}

.network-intro > p:last-child {
  margin-top: 22px;
  color: #aeb9c1;
}

.network-links {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.network-links a {
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: padding 180ms ease;
}

.network-links a:hover {
  padding-left: 12px;
}

.network-links span {
  color: #9eabb4;
  font-size: 0.78rem;
}

.network-links strong {
  color: white;
  font-size: 0.9rem;
}

.source-note {
  padding: 28px max(32px, calc((100vw - 1420px) / 2 + 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--blue-wash);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.source-note p {
  max-width: 650px;
  margin: 0;
}

.source-note > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.source-note a {
  border-bottom: 1px solid var(--ink);
  font-weight: 750;
}

.site-footer {
  padding: 76px max(32px, calc((100vw - 1420px) / 2 + 32px)) 24px;
  background: #07131f;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(540px, 1.2fr);
  gap: 80px;
}

.brand-light {
  color: white;
}

.footer-promise {
  max-width: 330px;
  margin: 22px 0 0;
  color: #93a2ad;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.35;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-title {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: #b8c1c8;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #788895;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* Inner pages */
.page-hero {
  padding: clamp(74px, 8vw, 125px) max(32px, calc((100vw - 1180px) / 2 + 32px));
  background: var(--paper);
}

.page-hero-inner {
  max-width: 1180px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .page-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: 1.15rem;
}

.breadcrumb {
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--steel);
  font-size: 0.72rem;
}

.breadcrumb a {
  border-bottom: 1px solid currentColor;
}

.article-byline {
  margin: -34px 0 54px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.76rem;
}

.article-byline a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-body {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin: 52px 0 14px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.prose h3 {
  margin: 30px 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callout {
  margin: 36px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  background: var(--blue-wash);
}

.callout p {
  margin: 0;
}

.editorial-card {
  margin-top: 46px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid var(--line);
}

.editorial-initials {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: var(--display);
}

.editorial-card h3,
.editorial-card p {
  margin: 0;
}

.editorial-card p {
  margin-top: 4px;
  color: var(--steel);
  font-size: 0.8rem;
}

/* Sport directory */
.explorer-controls {
  margin-bottom: 32px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 12px;
  background: var(--paper);
}

.explorer-controls label {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explorer-controls input,
.explorer-controls select {
  width: 100%;
  height: 48px;
  margin-top: 5px;
  padding: 0 13px;
  border: 1px solid #cfd1cf;
  border-radius: 0;
  background: white;
  color: var(--ink);
  font-size: 0.84rem;
}

.explorer-count {
  margin: 0 0 17px;
  color: var(--steel);
  font-size: 0.78rem;
}

.reset-filters {
  margin: -42px 0 18px auto;
  padding: 0;
  display: block;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--orange-dark);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

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

.directory-grid .sport-card-media {
  height: 190px;
}

.directory-grid .sport-card-body > p {
  display: none;
}

/* Sport detail */
.sport-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--paper);
}

.sport-hero-copy {
  padding: 72px max(40px, calc((100vw - 1420px) / 2 + 32px));
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-hero-copy .breadcrumb {
  margin-bottom: 40px;
}

.sport-hero-copy h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.sport-tagline {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--steel);
  font-size: 1.12rem;
}

.sport-hero-image {
  position: relative;
  min-height: 610px;
}

.sport-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-hero-graphic {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 26%, rgba(196, 59, 35, 0.22), transparent 24%),
    linear-gradient(135deg, #dce5e8 0%, #f4f2ed 48%, #cbd8dc 100%);
}

.sport-hero-graphic::before,
.sport-hero-graphic::after {
  position: absolute;
  border: 1px solid rgba(11, 27, 43, 0.14);
  border-radius: 50%;
  content: "";
}

.sport-hero-graphic::before {
  width: 520px;
  height: 520px;
}

.sport-hero-graphic::after {
  width: 340px;
  height: 340px;
}

.sport-hero-monogram {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sport-hero-monogram span {
  display: block;
  color: rgba(11, 27, 43, 0.82);
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 12rem);
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.sport-hero-monogram small {
  margin-top: 28px;
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sport-fact-bar {
  max-width: 650px;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd1cf;
  border-bottom: 1px solid #cfd1cf;
}

.sport-fact-bar > div {
  padding: 14px 12px;
  border-right: 1px solid #cfd1cf;
}

.sport-fact-bar > div:first-child {
  padding-left: 0;
}

.sport-fact-bar > div:last-child {
  border-right: 0;
}

.sport-fact-bar dt {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sport-fact-bar dd {
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: capitalize;
}

.sport-layout {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 82px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 90px;
}

.sport-content section + section {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.sport-content h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.sport-content h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.3rem;
}

.sport-content > section > p {
  color: var(--ink-soft);
}

.definition-lead {
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.45;
}

.overview-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.overview-grid > div {
  padding: 20px;
  background: var(--paper);
}

.overview-grid dt {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overview-grid dd {
  margin: 5px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list,
.mistake-list,
.rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mistake-list li,
.rule-list li {
  padding: 15px 0 15px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.rule-list {
  counter-reset: rules;
}

.rule-list li {
  counter-increment: rules;
}

.rule-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: counter(rules, decimal-leading-zero);
  font-family: var(--display);
}

.mistake-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "×";
  font-size: 1.2rem;
  font-weight: 900;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.data-caveat {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: #f7f0ec;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.skill-tags {
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.skill-tags li {
  padding: 8px 12px;
  border: 1px solid #cfd1cf;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 750;
}

.tradeoff-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tradeoff-list li {
  padding: 16px 0 16px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.tradeoff-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange-dark);
  content: "↔";
  font-weight: 900;
}

.source-table-wrap,
.compare-scroll {
  overflow-x: auto;
}

.source-table {
  width: 100%;
  border-collapse: collapse;
}

.source-table th,
.source-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.source-table thead th {
  background: var(--ink);
  color: white;
  font-family: var(--display);
  font-size: 1.05rem;
}

.source-table tbody th {
  width: 220px;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.source-table td {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.source-table a,
.verification-stamp a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.verification-stamp p {
  margin: 0 0 8px;
}

.related-section {
  padding: clamp(76px, 8vw, 120px) max(32px, calc((100vw - 1420px) / 2 + 32px));
  background: var(--paper);
}

.sport-sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
}

.side-card {
  padding: 24px;
  border: 1px solid var(--line);
}

.side-card + .side-card {
  margin-top: 18px;
}

.side-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.side-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.8rem;
}

.side-card-dark p {
  color: #b3bec6;
}

.side-card h3 {
  margin: 5px 0 14px;
  font-family: var(--display);
  font-size: 1.4rem;
}

.side-card a {
  margin-top: 18px;
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.verification-stamp {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.75rem;
}

.depth-badge {
  width: fit-content;
  margin: 20px 0 0;
  padding: 8px 11px;
  border: 1px solid rgba(204, 85, 38, 0.35);
  background: #fff8f4;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.decision-question {
  margin-top: 24px;
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  background: var(--ink);
  color: white;
}

.decision-question span {
  display: block;
  color: #bac3ca;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.decision-question p {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 1.24rem;
  line-height: 1.35;
}

.decision-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.decision-columns > div {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.decision-columns .decision-caution {
  background: #f7f0ec;
}

.decision-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.decision-scenarios article {
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
}

.decision-scenarios span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.decision-scenarios h3 {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.decision-scenarios p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.comparison-article > .decision-caution {
  margin: 26px 0;
  padding: 26px;
  border: 1px solid #e2cbc0;
  background: #f7f0ec;
}

.comparison-article > .decision-caution h2 {
  margin-top: 0;
}

.decision-caution ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.decision-caution li + li {
  margin-top: 14px;
}

.cost-scope {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid #d9cdc6;
  background: #fffaf7;
}

.cost-scope h3 {
  margin-bottom: 8px;
}

.cost-scope p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.first-month-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.first-month-grid article {
  padding: 23px;
  border: 1px solid var(--line);
  background: white;
}

.first-month-grid span {
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.first-month-grid h3 {
  margin: 8px 0 14px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.first-month-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.source-table th small,
.source-table td small {
  margin-top: 5px;
  display: block;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.pathway-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pathway-grid > article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.pathway-grid h3 {
  margin-top: 0;
}

.pathway-grid p {
  color: var(--ink-soft);
}

.pathway-grid a {
  color: var(--orange-dark);
  font-weight: 800;
}

.verification-note {
  margin-top: 54px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.78rem;
}

.data-hero-facts {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.data-hero-facts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.data-hero-facts strong {
  margin-right: 5px;
  color: var(--ink);
}

.download-grid {
  grid-template-columns: 1fr 1fr;
}

.download-grid a {
  min-height: 150px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.download-grid a:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.download-grid span {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.download-grid strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 1.55rem;
}

.download-grid small {
  margin-top: auto;
  color: var(--steel);
}

.version-history {
  display: grid;
  gap: 12px;
}

.version-history > div {
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  background: var(--paper);
}

.version-history dt {
  color: var(--ink);
  font-weight: 850;
}

.version-history dd {
  margin: 5px 0 0;
  color: var(--ink-soft);
}

.exclusion-summary {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--blue-wash);
  color: var(--ink-soft);
}

.exclusion-summary p {
  margin: 0 0 8px;
  color: var(--ink);
}

.exclusion-summary ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.78rem;
}

.score-detail {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 12px;
}

.score-detail summary {
  color: var(--orange);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.score-detail div {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.score-detail p {
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr auto 58px;
  gap: 8px;
  color: #d6dde2 !important;
  font-size: 0.72rem;
}

.score-detail small {
  color: #9eabb4;
  text-align: right;
}

/* Compare */
.compare-picker {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  background: var(--paper);
}

.compare-picker label {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare-picker select {
  width: 100%;
  height: 54px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid #cfd1cf;
  border-radius: 0;
  background: white;
  font-size: 0.9rem;
}

.compare-vs {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: var(--display);
}

.compare-table {
  width: 100%;
  margin-top: 34px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--ink);
  color: white;
  font-family: var(--display);
  font-size: 1.4rem;
}

.compare-table thead th:first-child {
  background: transparent;
}

.compare-table tbody th {
  width: 180px;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table td {
  font-size: 0.88rem;
}

.compare-note {
  margin: 18px 0 -12px;
  color: var(--steel);
  font-size: 0.8rem;
}

.compare-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.compare-links a {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.curated-comparisons {
  margin-top: 82px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.curated-comparisons h2,
.selection-article h2,
.comparison-article h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.comparison-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.comparison-link-grid a {
  min-height: 122px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-link-grid b {
  color: var(--orange-dark);
  font-family: var(--display);
}

.comparison-link-grid span {
  font-family: var(--display);
  font-size: 1.1rem;
}

.comparison-link-grid small {
  grid-column: 1 / -1;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 750;
}

.selection-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.selection-index article {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.selection-index h2 {
  margin: 4px 0 12px;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.15;
}

.selection-index p:not(.section-kicker) {
  color: var(--steel);
}

.selection-index a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.selection-article section + section,
.comparison-article section {
  margin-top: 62px;
}

.selection-article {
  width: min(1280px, calc(100% - 64px));
}

.comparison-article {
  max-width: 1180px;
}

.inline-button {
  display: inline-flex;
  align-items: center;
  color: white !important;
  text-decoration: none !important;
}

@media (max-width: 1120px) {
  .header-inner {
    width: min(100% - 40px, 1420px);
  }

  .hero {
    min-height: 610px;
    grid-template-columns: 55% 45%;
  }

  .hero-copy {
    padding-left: 38px;
    padding-right: 45px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-media {
    min-height: 610px;
  }

  .quality-strip {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .method-grid article:nth-child(2) {
    border-right: 0;
  }

  .method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .network-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 50px;
  }

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

  .sport-layout {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    padding: 24px 20px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    background: white;
    box-shadow: 0 20px 40px rgba(11, 27, 43, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-cta {
    margin-top: 16px;
    padding: 13px;
    text-align: center;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 62px 24px 48px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-media > img {
    object-position: 70% center;
  }

  .hero-caption {
    right: 18px;
    bottom: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .start-section {
    grid-template-columns: 1fr;
  }

  .start-photo {
    min-height: 520px;
  }

  .start-content {
    padding: 72px 28px;
  }

  .network-section,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .source-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .source-note > div {
    justify-content: flex-start;
  }

  .footer-links {
    gap: 22px;
  }

  .sport-hero {
    grid-template-columns: 1fr;
  }

  .sport-hero-copy {
    padding: 58px 28px;
  }

  .sport-hero-image {
    min-height: 430px;
  }

  .sport-layout {
    grid-template-columns: 1fr;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .sport-sidebar {
    position: static;
  }

  .comparison-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: calc(100% - 32px);
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-caption {
    min-width: 165px;
    padding: 12px 14px;
  }

  .hero-caption span {
    font-size: 1.8rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-inline {
    flex-direction: column;
  }

  .quality-strip {
    width: calc(100% - 32px);
    padding-top: 16px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quality-strip > a {
    min-height: 88px;
  }

  .assistant-section,
  .content-section,
  .selection-home,
  .method-section,
  .network-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .quiz-shell {
    padding: 25px 18px;
  }

  .quiz-options,
  .quiz-options.four {
    grid-template-columns: 1fr;
  }

  .quiz-options button {
    min-height: 98px;
  }

  .result-row {
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }

  .result-actions {
    grid-column: 2;
    align-items: flex-start;
    gap: 12px;
  }

  .result-score small {
    text-align: left;
  }

  .sport-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .selection-home-grid,
  .selection-index {
    grid-template-columns: 1fr;
  }

  .sport-card-media {
    height: 220px;
  }

  .start-photo {
    min-height: 390px;
  }

  .start-photo span {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article:first-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-links a {
    flex-direction: column;
    gap: 3px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 62px 20px;
  }

  .page-body,
  .sport-layout {
    width: calc(100% - 40px);
  }

  .explorer-controls {
    grid-template-columns: 1fr;
  }

  .sport-fact-bar {
    grid-template-columns: 1fr;
  }

  .sport-fact-bar > div,
  .sport-fact-bar > div:first-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #cfd1cf;
  }

  .sport-fact-bar > div:last-child {
    border-bottom: 0;
  }

  .sport-hero-image {
    min-height: 320px;
  }

  .sport-hero-graphic::before {
    width: 360px;
    height: 360px;
  }

  .sport-hero-graphic::after {
    width: 220px;
    height: 220px;
  }

  .overview-grid,
  .two-columns,
  .decision-columns,
  .decision-scenarios,
  .first-month-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .compare-picker {
    grid-template-columns: 1fr;
  }

  .compare-vs {
    margin: auto;
  }

  .compare-table {
    font-size: 0.74rem;
    min-width: 680px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 8px;
  }

  .source-table {
    min-width: 620px;
  }

  .comparison-link-grid a {
    grid-template-columns: 1fr auto 1fr;
  }
}

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

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

/* Socle du référentiel éditorial et des outils de décision */
:root {
  --ref-navy: #111512;
  --ref-navy-2: #1d2923;
  --ref-cream: #f3f5f2;
  --ref-lime: #c9d8d0;
  --ref-coral: #a7683f;
  --ref-muted: #99a39d;
}

.site-utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--ref-navy);
  color: #dce5e4;
}

.site-utility > div {
  width: min(1480px, calc(100% - 64px));
  min-height: 34px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-utility p {
  margin: 0;
}

.site-utility p span {
  margin-right: 7px;
  color: var(--ref-lime);
}

.site-utility nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-utility a:hover {
  color: var(--ref-lime);
}

.site-utility nav > span {
  color: #8ca0a4;
  font-weight: 600;
}

.header-inner {
  width: min(1480px, calc(100% - 64px));
  min-height: 78px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-lockup > p {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: #718084;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-home {
  overflow: hidden;
  background: #fff;
}

.ref-hero {
  min-height: 735px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(70px, 7vw, 108px) max(32px, calc((100vw - 1480px) / 2 + 32px)) 54px;
  background:
    radial-gradient(circle at 45% 12%, rgba(67, 121, 130, 0.2), transparent 32%),
    linear-gradient(122deg, #061820 0%, #0a2630 58%, #071c25 100%);
  color: #fff;
}

.ref-hero-copy {
  min-width: 0;
  align-self: center;
}

.ref-overline {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c0cdcf;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ref-overline span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ref-overline span::before {
  width: 32px;
  height: 2px;
  background: var(--ref-coral);
  content: "";
}

.ref-overline b {
  padding: 5px 9px;
  border: 1px solid rgba(217, 255, 82, 0.45);
  color: var(--ref-lime);
  font-size: 0.62rem;
}

.ref-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.1rem, 7.1vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.87;
}

.ref-hero h1 span {
  display: block;
  color: var(--ref-lime);
  font-style: italic;
}

.ref-hero-lead {
  max-width: 750px;
  margin: 36px 0 0;
  color: #c2ced0;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.ref-search {
  max-width: 800px;
  min-height: 64px;
  margin-top: 34px;
  padding-left: 19px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.ref-search > span {
  color: var(--ref-lime);
  font-size: 1.65rem;
  line-height: 1;
}

.ref-search input {
  min-width: 0;
  height: 62px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.96rem;
}

.ref-search input::placeholder {
  color: #a6b4b6;
  opacity: 1;
}

.ref-search button {
  align-self: stretch;
  padding: 0 28px;
  border: 0;
  background: var(--ref-lime);
  color: var(--ref-navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ref-hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ref-button {
  min-height: 54px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.84rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.ref-button:hover {
  transform: translateY(-2px);
}

.ref-button span {
  color: #6e7f34;
  font-size: 0.66rem;
  font-weight: 750;
}

.ref-button-bright {
  border-color: #fff;
  background: #fff;
  color: var(--ref-navy);
}

.ref-button-ghost {
  color: #fff;
}

.ref-button-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ref-navy);
}

.ref-hero-proof {
  max-width: 850px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ref-hero-proof > div {
  min-height: 82px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ref-hero-proof strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
}

.ref-hero-proof span {
  margin-top: 7px;
  color: #91a4a7;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ref-decision-panel {
  align-self: center;
  background: var(--ref-cream);
  color: var(--ref-navy);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.decision-panel-head {
  min-height: 48px;
  padding: 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d5d4ce;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-panel-head p {
  margin: 0;
}

.decision-panel-head span {
  color: #708084;
}

.decision-panel-body {
  position: relative;
  padding: 29px 34px 32px 88px;
}

.decision-panel-number {
  position: absolute;
  top: 33px;
  left: 24px;
  margin: 0;
  color: var(--ref-coral);
  font-family: var(--display);
  font-size: 1.55rem;
}

.decision-panel-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.decision-panel-body > p:not(.decision-panel-number) {
  margin: 15px 0 19px;
  color: #5b696c;
  font-size: 0.84rem;
  line-height: 1.6;
}

.decision-panel-body > a,
.ref-atlas-story > a,
.ref-editorial-main > a {
  color: var(--ref-navy);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.decision-panel-photo {
  position: relative;
  min-height: 215px;
  overflow: hidden;
}

.decision-panel-photo img {
  object-fit: cover;
}

.decision-panel-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 37, 0.75), transparent 66%);
  content: "";
}

.decision-panel-photo p {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 24px;
  width: 220px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
}

.decision-panel-photo p span {
  margin-bottom: 6px;
  display: block;
  color: var(--ref-lime);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.decision-panel-links {
  border-top: 1px solid #d5d4ce;
}

.decision-panel-links a {
  min-height: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d5d4ce;
  font-size: 0.72rem;
  font-weight: 800;
}

.decision-panel-links a:hover {
  background: #fff;
}

.ref-status {
  min-height: 55px;
  padding: 0 max(32px, calc((100vw - 1480px) / 2 + 32px));
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.15fr 1.45fr;
  border-bottom: 1px solid #d7dcdb;
  background: #edf1ef;
  color: #536266;
  font-size: 0.68rem;
}

.ref-status p {
  margin: 0;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid #d7dcdb;
}

.ref-status p:first-child {
  padding-left: 0;
  color: #234632;
  font-weight: 850;
  text-transform: uppercase;
}

.ref-status p:first-child span {
  color: #2d9d59;
}

.ref-status strong {
  color: var(--ref-navy);
}

.ref-entry-section,
.ref-method-section,
.ref-editorial-section,
.ref-source-note {
  width: min(1480px, calc(100% - 64px));
  margin: auto;
}

.ref-entry-section {
  padding: 104px 0 112px;
}

.ref-section-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.ref-section-head h2,
.ref-atlas-story h2,
.ref-assistant-intro h2,
.ref-editorial-main h2,
.ref-method-title h2,
.ref-network h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.ref-section-head > p {
  margin: 0;
  color: #667478;
  font-size: 0.9rem;
  line-height: 1.65;
}

.ref-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cdd3d1;
  border-left: 1px solid #cdd3d1;
}

.ref-entry-grid > a {
  min-height: 290px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #cdd3d1;
  border-bottom: 1px solid #cdd3d1;
  transition: background 180ms ease, transform 180ms ease;
}

.ref-entry-grid > a:hover {
  z-index: 1;
  background: var(--ref-cream);
  transform: translateY(-4px);
}

.ref-entry-index {
  color: var(--ref-coral);
  font-family: var(--display);
  font-size: 1.2rem;
}

.ref-entry-grid p {
  margin: 32px 0 7px;
  color: #7b898c;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ref-entry-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.ref-entry-grid small {
  margin-top: 13px;
  color: #657276;
  line-height: 1.55;
}

.ref-entry-grid b {
  margin-top: auto;
  padding-top: 25px;
  color: var(--ref-navy);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.ref-atlas {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr);
  background: var(--ref-cream);
}

.ref-atlas-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.ref-atlas-photo {
  position: relative;
  min-height: 720px;
}

.ref-atlas-photo img {
  object-fit: cover;
}

.ref-atlas-photo span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 12px 15px;
  background: #fff;
  color: var(--ref-navy);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-atlas-story {
  padding: clamp(48px, 5vw, 80px);
  align-self: center;
}

.ref-atlas-story h2 {
  font-size: clamp(2.45rem, 3.5vw, 4rem);
}

.ref-atlas-story > p:not(.section-kicker) {
  margin: 25px 0;
  color: #5e6d70;
  font-size: 0.9rem;
  line-height: 1.7;
}

.ref-atlas-checks {
  margin-bottom: 30px;
  padding: 17px 0;
  display: grid;
  gap: 9px;
  border-top: 1px solid #d6d6d0;
  border-bottom: 1px solid #d6d6d0;
  color: #4e5d60;
  font-size: 0.75rem;
  font-weight: 750;
}

.ref-atlas-list {
  padding: 52px clamp(30px, 4vw, 66px);
  background: #fff;
}

.ref-list-head {
  min-height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 2px solid var(--ref-navy);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ref-list-head p {
  margin: 0;
}

.ref-list-head a {
  color: var(--ref-coral);
}

.ref-atlas-list > a {
  min-height: 97px;
  display: grid;
  grid-template-columns: 38px 1fr minmax(170px, 0.8fr) 20px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #d9dddc;
  transition: padding 180ms ease, background 180ms ease;
}

.ref-atlas-list > a:hover {
  padding: 0 12px;
  background: var(--ref-cream);
}

.ref-atlas-list > a > span {
  color: var(--ref-coral);
  font-family: var(--display);
  font-size: 1rem;
}

.ref-atlas-list > a p {
  margin: 0 0 3px;
  color: #829094;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-atlas-list > a strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.ref-atlas-list dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ref-atlas-list dt {
  color: #899598;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-atlas-list dd {
  margin: 2px 0 0;
  font-size: 0.68rem;
  font-weight: 750;
}

.ref-assistant {
  padding: 110px max(32px, calc((100vw - 1480px) / 2 + 32px));
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  gap: clamp(45px, 7vw, 110px);
  background: var(--ref-navy);
  color: #fff;
}

.ref-assistant-intro {
  align-self: start;
  position: sticky;
  top: 150px;
}

.ref-assistant-intro h2 {
  font-size: clamp(3rem, 4.6vw, 5rem);
}

.ref-assistant-intro > p:not(.section-kicker) {
  margin: 25px 0;
  color: #aebfc1;
  line-height: 1.7;
}

.ref-assistant-intro ul {
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.ref-assistant-intro li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: #d9e2e2;
  font-size: 0.76rem;
  font-weight: 700;
}

.ref-assistant-intro li span {
  color: var(--ref-lime);
}

.ref-assistant-intro > a {
  color: var(--ref-lime);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-assistant-tool .quiz-shell {
  margin: 0;
  padding: clamp(28px, 4.2vw, 58px);
  background: var(--ref-cream);
  color: var(--ref-navy);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.ref-assistant-tool .quiz-options button {
  background: #fff;
}

.ref-comparison-section {
  padding: 108px max(32px, calc((100vw - 1480px) / 2 + 32px));
  background: #102d36;
  color: #fff;
}

.ref-section-head-light > p {
  color: #aebec0;
}

.ref-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ref-comparison-grid > a {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 180ms ease;
}

.ref-comparison-grid > a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ref-comparison-index {
  color: var(--ref-coral);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ref-versus {
  margin: 50px 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.ref-versus strong {
  font-weight: 500;
}

.ref-versus i {
  color: var(--ref-lime);
  font-size: 0.55em;
}

.ref-comparison-grid p {
  margin: 0;
  color: #aebfc1;
  font-size: 0.8rem;
  line-height: 1.55;
}

.ref-comparison-grid b {
  margin-top: auto;
  padding-top: 25px;
  color: var(--ref-lime);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.ref-all-link {
  margin-top: 25px;
  display: inline-block;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ref-editorial-section {
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.65fr);
  gap: clamp(60px, 8vw, 130px);
}

.ref-editorial-main > p:not(.section-kicker) {
  max-width: 750px;
  margin: 25px 0 30px;
  color: #667478;
  line-height: 1.7;
}

.ref-editorial-main ol {
  margin: 0 0 30px;
  padding: 0;
  border-top: 2px solid var(--ref-navy);
  list-style: none;
}

.ref-editorial-main li {
  min-height: 86px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  border-bottom: 1px solid #d7dcdb;
}

.ref-editorial-main li > span {
  color: var(--ref-coral);
  font-family: var(--display);
  font-size: 1.1rem;
}

.ref-editorial-main li strong,
.ref-editorial-main li small {
  display: block;
}

.ref-editorial-main li strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.ref-editorial-main li small {
  margin-top: 3px;
  color: #7d898c;
}

.ref-editorial-aside {
  align-self: start;
  padding: 35px;
  border-top: 5px solid var(--ref-coral);
  background: var(--ref-cream);
}

.ref-editorial-aside > a {
  min-height: 103px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid #d1d3ce;
}

.ref-editorial-aside > a > span {
  grid-column: 1;
  color: #7b888a;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-editorial-aside > a strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 1.17rem;
  font-weight: 500;
  line-height: 1.2;
}

.ref-editorial-aside > a b {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--ref-coral);
}

.ref-method-section {
  padding: 108px 0;
  border-top: 1px solid #d8dddb;
}

.ref-method-title {
  max-width: 1000px;
}

.ref-method-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ccd2d0;
  border-left: 1px solid #ccd2d0;
}

.ref-method-grid article {
  min-height: 245px;
  padding: 25px;
  border-right: 1px solid #ccd2d0;
  border-bottom: 1px solid #ccd2d0;
}

.ref-method-grid article > span {
  color: var(--ref-coral);
  font-family: var(--display);
  font-size: 1.2rem;
}

.ref-method-grid h3 {
  margin: 52px 0 10px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.ref-method-grid p {
  margin: 0;
  color: #687679;
  font-size: 0.8rem;
  line-height: 1.6;
}

.ref-method-actions {
  min-height: 65px;
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid #ccd2d0;
}

.ref-method-actions a {
  color: var(--ref-navy);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ref-network {
  padding: 94px max(32px, calc((100vw - 1480px) / 2 + 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1fr);
  gap: 100px;
  background: var(--ref-cream);
}

.ref-network h2 {
  font-size: clamp(2.65rem, 4vw, 4.3rem);
}

.ref-network > div:last-child {
  border-top: 2px solid var(--ref-navy);
}

.ref-network a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #cdd2cf;
}

.ref-network a span {
  color: #6e7b7e;
  font-size: 0.75rem;
}

.ref-network a strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
}

.ref-source-note {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #697679;
  font-size: 0.7rem;
}

.ref-source-note p {
  margin: 0;
}

.ref-source-note strong {
  color: var(--ref-navy);
}

.ref-source-note > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.ref-source-note a {
  color: var(--ref-navy);
  font-weight: 750;
}

.footer-network {
  max-width: 340px;
  margin: 18px 0 0;
  color: #aeb8bf;
  font-size: 0.84rem;
}

.footer-network a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }

  .brand-lockup > p {
    display: none;
  }

  .ref-hero {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 38px;
  }

  .ref-hero h1 {
    font-size: clamp(4rem, 7vw, 5.8rem);
  }

  .ref-atlas {
    grid-template-columns: 1fr;
  }

  .ref-atlas-feature {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .ref-atlas-photo {
    min-height: 590px;
  }

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

  .ref-status p:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .site-utility {
    display: none;
  }

  .ref-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .ref-decision-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .decision-panel-head,
  .decision-panel-links {
    grid-column: 1 / -1;
  }

  .decision-panel-photo {
    min-height: 270px;
  }

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

  .ref-atlas-feature {
    grid-template-columns: 1fr;
  }

  .ref-atlas-photo {
    min-height: 450px;
  }

  .ref-assistant {
    grid-template-columns: 1fr;
  }

  .ref-assistant-intro {
    position: static;
  }

  .ref-comparison-grid {
    grid-template-columns: 1fr;
  }

  .ref-comparison-grid > a {
    min-height: 250px;
  }

  .ref-versus {
    margin-top: 34px;
  }

  .ref-editorial-section,
  .ref-network {
    grid-template-columns: 1fr;
  }

  .ref-network {
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .ref-hero,
  .ref-assistant,
  .ref-comparison-section,
  .ref-network {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ref-entry-section,
  .ref-method-section,
  .ref-editorial-section,
  .ref-source-note {
    width: calc(100% - 40px);
  }

  .ref-hero {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 28px;
  }

  .ref-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
    line-height: 0.91;
  }

  .ref-overline {
    margin-bottom: 25px;
    align-items: flex-start;
    flex-direction: column;
  }

  .ref-search {
    padding: 10px;
    grid-template-columns: auto 1fr;
  }

  .ref-search input {
    height: 45px;
  }

  .ref-search button {
    grid-column: 1 / -1;
    min-height: 48px;
  }

  .ref-hero-actions,
  .ref-button {
    width: 100%;
  }

  .ref-button {
    justify-content: space-between;
  }

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

  .ref-decision-panel {
    display: block;
  }

  .decision-panel-body {
    padding-left: 74px;
  }

  .ref-status {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .ref-status p,
  .ref-status p:first-child {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid #d7dcdb;
  }

  .ref-entry-section,
  .ref-method-section,
  .ref-editorial-section {
    padding: 75px 0;
  }

  .ref-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ref-section-head h2,
  .ref-atlas-story h2,
  .ref-editorial-main h2,
  .ref-method-title h2,
  .ref-network h2 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .ref-entry-grid,
  .ref-method-grid {
    grid-template-columns: 1fr;
  }

  .ref-entry-grid > a {
    min-height: 235px;
  }

  .ref-atlas-photo {
    min-height: 360px;
  }

  .ref-atlas-story,
  .ref-atlas-list {
    padding: 46px 20px;
  }

  .ref-atlas-list > a {
    grid-template-columns: 32px 1fr 20px;
  }

  .ref-atlas-list dl {
    display: none;
  }

  .ref-assistant {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .ref-assistant-intro h2 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .ref-assistant-tool .quiz-shell {
    padding: 24px 17px;
  }

  .ref-comparison-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .ref-editorial-section {
    gap: 55px;
  }

  .ref-editorial-aside {
    padding: 25px 20px;
  }

  .ref-method-actions {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .ref-network {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ref-network a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .ref-source-note,
  .ref-source-note > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .ref-source-note > div {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* Sportifs.com V10 — direction sport premium statutaire */
@font-face {
  font-family: "Manrope Variable";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Variable";
  src: url("/assets/fonts/space-grotesk-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --display: "Space Grotesk Variable", "Arial Narrow", Arial, sans-serif;
  --sans: "Manrope Variable", Inter, Arial, sans-serif;
  --lux-ink: #111512;
  --lux-blue: #23483c;
  --lux-blue-dark: #17342b;
  --lux-orange: #a7683f;
  --lux-sky: #f1f3f0;
  --lux-soft: #f7f8f6;
  --lux-line: #dfe3df;
  --lux-muted: #67716b;
}

body {
  background: #fff;
  color: var(--lux-ink);
  font-family: var(--sans);
  font-size: 16px;
}

.site-header {
  border-bottom: 1px solid #e5e8e5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.site-utility {
  border: 0;
  background: var(--lux-ink);
}

.site-utility > div {
  width: min(1640px, calc(100% - 72px));
  min-height: 32px;
  color: #b8c0bb;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.site-utility p span {
  color: #8eaa9e;
}

.site-utility a:hover {
  color: #fff;
}

.header-inner {
  width: min(1640px, calc(100% - 72px));
  min-height: 84px;
}

.brand {
  color: var(--lux-ink);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.brand span {
  color: var(--lux-orange);
}

.brand-lockup > p {
  color: #7e8781;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.main-nav {
  gap: clamp(18px, 2.2vw, 38px);
  color: #303632;
  font-size: 0.82rem;
  font-weight: 750;
}

.main-nav > a:not(.nav-cta)::after {
  bottom: -31px;
  height: 3px;
  background: var(--lux-blue);
}

.nav-cta {
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 12px;
  background: var(--lux-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 72, 60, 0.18);
}

.nav-cta:hover {
  background: var(--lux-blue-dark);
}

.lux-home {
  overflow: hidden;
}

.lux-hero {
  position: relative;
  padding: clamp(68px, 6vw, 104px) max(36px, calc((100vw - 1640px) / 2 + 36px)) 62px;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(55px, 6vw, 110px);
  background:
    radial-gradient(circle at 12% 18%, rgba(35, 72, 60, 0.075), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, #f1f3f0 100%);
}

.lux-hero::before {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 650px;
  height: 650px;
  border: 110px solid rgba(35, 72, 60, 0.045);
  border-radius: 50%;
  content: "";
}

.lux-hero-copy {
  position: relative;
  z-index: 2;
}

.lux-eyebrow {
  margin: 0 0 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lux-blue);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lux-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lux-eyebrow span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lux-orange);
  content: "";
}

.lux-eyebrow b {
  padding: 6px 9px;
  border-radius: 99px;
  background: #fff;
  color: #66706a;
  font-weight: 750;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(17, 21, 18, 0.07);
}

.lux-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.35rem, 6.2vw, 7.35rem);
  font-weight: 660;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.lux-hero h1 span {
  color: var(--lux-blue);
}

.lux-hero-lead {
  max-width: 670px;
  margin: 32px 0 0;
  color: #59635e;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.62;
}

.lux-hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lux-btn {
  min-height: 62px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lux-btn:hover {
  transform: translateY(-3px);
}

.lux-btn-primary {
  background: var(--lux-blue);
  color: #fff;
  box-shadow: 0 16px 32px rgba(35, 72, 60, 0.22);
}

.lux-btn-primary:hover {
  background: var(--lux-blue-dark);
  box-shadow: 0 20px 40px rgba(35, 72, 60, 0.27);
}

.lux-btn-primary small {
  color: #d2ded8;
  font-size: 0.66rem;
  font-weight: 650;
}

.lux-btn-secondary {
  border: 1px solid #d1d7d3;
  background: rgba(255, 255, 255, 0.82);
  color: var(--lux-ink);
}

.lux-btn-secondary:hover {
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 21, 18, 0.09);
}

.lux-trust-row {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #6d7771;
  font-size: 0.67rem;
  font-weight: 650;
}

.lux-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lux-trust-row i {
  color: #3f705f;
  font-style: normal;
  font-weight: 900;
}

.lux-hero-visual {
  position: relative;
  z-index: 2;
  height: clamp(560px, 43vw, 700px);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(190px, 0.7fr);
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.lux-hero-main-photo,
.lux-hero-side-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #d8ded9;
  box-shadow: 0 26px 60px rgba(17, 21, 18, 0.16);
}

.lux-hero-main-photo {
  grid-row: 1 / span 2;
}

.lux-hero-main-photo img,
.lux-hero-side-photo img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.lux-hero-visual:hover img {
  transform: scale(1.025);
}

.lux-hero-main-photo::after,
.lux-hero-side-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(9, 14, 11, 0.7));
  content: "";
}

.lux-photo-label {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
  color: #fff;
}

.lux-photo-label span,
.lux-photo-label b {
  display: block;
}

.lux-photo-label span {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 650;
}

.lux-photo-label b {
  margin-top: 5px;
  color: #dce3df;
  font-size: 0.67rem;
  font-weight: 650;
}

.lux-hero-side-photo > span {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lux-ink);
  font-size: 0.61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lux-floating-score {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 50px;
  width: 205px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 55px rgba(17, 21, 18, 0.17);
  backdrop-filter: blur(16px);
}

.lux-floating-score > span {
  color: var(--lux-blue);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-floating-score strong {
  margin-top: 8px;
  display: inline-block;
  font-family: var(--display);
  font-size: 2.45rem;
  line-height: 1;
}

.lux-floating-score p {
  margin: 0 0 0 10px;
  display: inline-block;
  color: #67716b;
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1.45;
}

.lux-search {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  min-height: 120px;
  margin-top: 5px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: 35px;
  border: 1px solid #e0e4e1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 21, 18, 0.1);
}

.lux-search-heading {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 12px;
}

.lux-search-heading > span {
  color: var(--lux-orange);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.lux-search-heading strong,
.lux-search-heading small {
  display: block;
}

.lux-search-heading strong {
  font-size: 0.87rem;
  font-weight: 800;
}

.lux-search-heading small {
  margin-top: 4px;
  color: #77817b;
  font-size: 0.68rem;
}

.lux-search-field {
  height: 62px;
  padding-left: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #d6dcd8;
  border-radius: 15px;
  background: #f8f9f8;
}

.lux-search-field > span {
  color: var(--lux-blue);
  font-size: 1.5rem;
}

.lux-search-field input {
  min-width: 0;
  height: 60px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--lux-ink);
  font-size: 0.86rem;
}

.lux-search-field button {
  align-self: stretch;
  padding: 0 25px;
  border: 0;
  border-radius: 0 14px 14px 0;
  background: var(--lux-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.lux-proof {
  width: min(1640px, calc(100% - 72px));
  margin: 0 auto;
  padding: 66px 0 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lux-proof > div {
  min-height: 142px;
  padding: 12px clamp(18px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--lux-line);
}

.lux-proof > div:first-child {
  padding-left: 0;
}

.lux-proof > div:last-child {
  border-right: 0;
}

.lux-proof strong {
  font-family: var(--display);
  font-size: clamp(2.55rem, 3.7vw, 4.3rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.lux-proof span,
.lux-proof small {
  display: block;
}

.lux-proof span {
  margin-top: 13px;
  color: var(--lux-ink);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lux-proof small {
  margin-top: 5px;
  color: #7d8680;
  font-size: 0.66rem;
}

.lux-paths-section,
.lux-atlas-section,
.lux-start-section,
.lux-method-section,
.lux-selection-strip,
.lux-source-note {
  width: min(1640px, calc(100% - 72px));
  margin: auto;
}

.lux-paths-section {
  padding: 104px 0 118px;
  border-top: 1px solid var(--lux-line);
}

.lux-section-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.52fr);
  align-items: end;
  gap: 80px;
}

.lux-section-head > div:first-child > p,
.lux-method-intro > p,
.lux-selection-strip > div:first-child > p,
.lux-network-section > div:first-child > p {
  margin: 0 0 13px;
  color: var(--lux-orange);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-section-head h2,
.lux-assistant-head h2,
.lux-compare-content h2,
.lux-start-copy h2,
.lux-method-intro h2,
.lux-selection-strip h2,
.lux-network-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.lux-section-head > div:last-child > p {
  margin: 0 0 20px;
  color: #667085;
  font-size: 0.89rem;
  line-height: 1.7;
}

.lux-section-head a,
.lux-text-link {
  color: var(--lux-blue);
  font-size: 0.76rem;
  font-weight: 850;
}

.lux-section-head a span {
  margin-left: 8px;
}

.lux-paths-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 310px;
  gap: 18px;
}

.lux-path-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #19201c;
  box-shadow: 0 18px 45px rgba(17, 21, 18, 0.11);
}

.lux-path-card.path-large {
  grid-column: span 6;
  grid-row: span 2;
}

.lux-path-card.path-tall {
  grid-column: span 4;
}

.lux-path-card.path-small {
  grid-column: span 2;
}

.lux-path-card img {
  object-fit: cover;
  transition: transform 650ms ease;
}

.lux-path-card:hover img {
  transform: scale(1.045);
}

.lux-path-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 10, 0.03) 22%, rgba(8, 13, 10, 0.88) 100%);
}

.lux-path-content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 27px;
  left: 28px;
  color: #fff;
}

.lux-path-content > span {
  color: #dce4df;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lux-path-content h3 {
  max-width: 650px;
  margin: 9px 0 8px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 3.3rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.path-small .lux-path-content {
  right: 18px;
  bottom: 20px;
  left: 18px;
}

.path-small .lux-path-content h3 {
  font-size: clamp(1.2rem, 1.7vw, 2rem);
}

.lux-path-content p {
  margin: 0;
  color: #d2dbd6;
  font-size: 0.72rem;
}

.lux-path-content b {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.7rem;
  font-weight: 850;
}

.lux-path-content b i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--lux-ink);
  font-style: normal;
}

.lux-assistant-section {
  padding: 110px max(36px, calc((100vw - 1640px) / 2 + 36px));
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.17), transparent 30%),
    var(--lux-blue);
  color: #fff;
}

.lux-assistant-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 45px;
}

.lux-assistant-head > p {
  margin: 0;
  color: #cbd9d2;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lux-assistant-head > p span,
.lux-orange-label span {
  margin-right: 10px;
  color: #c89a72;
}

.lux-assistant-head h2 {
  font-size: clamp(3.2rem, 5vw, 6.3rem);
  color: #fff;
}

.lux-assistant-head h2 em {
  color: #afc3ba;
  font-style: normal;
}

.lux-assistant-head > div p {
  margin: 0 0 18px;
  color: #d4dfd9;
  font-size: 0.84rem;
  line-height: 1.7;
}

.lux-assistant-head > div a {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}

.lux-assistant-shell {
  padding: clamp(12px, 2vw, 25px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 35px 80px rgba(9, 27, 21, 0.27);
}

.lux-assistant-shell .quiz-shell {
  margin: 0;
  padding: clamp(32px, 4vw, 64px);
  border-radius: 22px;
  background: #fff;
  color: var(--lux-ink);
  box-shadow: none;
}

.lux-assistant-shell .quiz-options button {
  border: 1px solid #dce2de;
  border-radius: 15px;
  background: #f8f9f8;
}

.lux-assistant-shell .quiz-options button:hover {
  border-color: var(--lux-blue);
  background: #eef3f0;
}

.lux-assistant-shell .progress-track > span {
  background: var(--lux-blue);
}

.lux-assistant-shell .section-kicker {
  color: var(--lux-orange);
}

.lux-assistant-notes {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.lux-assistant-notes span {
  min-height: 58px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: #d3dfd9;
  font-size: 0.68rem;
  font-weight: 650;
}

.lux-assistant-notes span:first-child {
  padding-left: 0;
}

.lux-assistant-notes span:last-child {
  border-right: 0;
}

.lux-assistant-notes b {
  margin-right: 9px;
  color: #c89a72;
}

.lux-atlas-section {
  padding: 118px 0;
}

.lux-section-head-atlas h2 {
  max-width: 780px;
}

.lux-sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lux-sport-grid .sport-card {
  overflow: hidden;
  border: 1px solid #e0e4e1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 21, 18, 0.07);
}

.lux-sport-grid .sport-card:hover {
  box-shadow: 0 24px 55px rgba(17, 21, 18, 0.12);
  transform: translateY(-5px);
}

.lux-sport-grid .sport-card-media {
  height: 260px;
}

.lux-sport-grid .sport-card-category {
  top: 18px;
  left: 18px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
}

.lux-sport-grid .sport-card-body {
  padding: 24px;
}

.lux-sport-grid .sport-card-heading h3 {
  font-size: 1.6rem;
  font-weight: 650;
}

.lux-sport-grid .sport-card-facts {
  border-top: 1px solid #e5e8e6;
}

.lux-atlas-footer {
  margin-top: 34px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 18px;
  background: var(--lux-sky);
  color: #59635e;
  font-size: 0.77rem;
}

.lux-atlas-footer p {
  margin: 0;
}

.lux-atlas-footer strong {
  color: var(--lux-ink);
}

.lux-atlas-footer a {
  color: var(--lux-blue);
  font-weight: 800;
}

.lux-compare-section {
  min-height: 830px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--lux-ink);
  color: #fff;
}

.lux-compare-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.lux-compare-visual img {
  object-fit: cover;
}

.lux-compare-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 13, 10, 0.9) 100%);
  content: "";
}

.lux-compare-visual > div {
  position: absolute;
  z-index: 2;
  right: clamp(35px, 6vw, 90px);
  bottom: 55px;
  left: clamp(35px, 6vw, 90px);
}

.lux-compare-visual span {
  color: #cbd5cf;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lux-compare-visual strong {
  max-width: 720px;
  margin-top: 13px;
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.lux-compare-content {
  padding: clamp(70px, 7vw, 120px) max(36px, calc((100vw - 1640px) / 2 + 36px)) clamp(70px, 7vw, 120px) clamp(50px, 7vw, 115px);
  align-self: center;
}

.lux-orange-label {
  margin: 0 0 17px;
  color: var(--lux-orange);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-compare-content h2 {
  font-size: clamp(3rem, 4.4vw, 5.3rem);
}

.lux-compare-list {
  margin: 43px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lux-compare-list > a {
  min-height: 120px;
  padding: 23px 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) 1fr auto;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lux-compare-list > a:hover > span {
  color: var(--lux-orange);
}

.lux-compare-list > a > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lux-compare-list strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}

.lux-compare-list i {
  color: var(--lux-orange);
  font-size: 0.65rem;
}

.lux-compare-list p {
  margin: 0;
  color: #9ca69f;
  font-size: 0.72rem;
  line-height: 1.5;
}

.lux-compare-list > a > span {
  color: #fff;
  font-size: 0.67rem;
  font-weight: 800;
  white-space: nowrap;
}

.lux-compare-content > .lux-text-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.lux-start-section {
  padding: 124px 0;
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(570px, 1.18fr);
  align-items: center;
  gap: clamp(65px, 8vw, 140px);
}

.lux-start-copy > p:not(.lux-orange-label) {
  max-width: 650px;
  margin: 26px 0 34px;
  color: #66716b;
  line-height: 1.7;
}

.lux-start-copy ol {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid var(--lux-line);
  list-style: none;
}

.lux-start-copy li {
  min-height: 88px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--lux-line);
}

.lux-start-copy li > b {
  color: var(--lux-orange);
  font-family: var(--display);
  font-size: 0.95rem;
}

.lux-start-copy li strong,
.lux-start-copy li small {
  display: block;
}

.lux-start-copy li strong {
  font-size: 0.86rem;
  font-weight: 800;
}

.lux-start-copy li small {
  margin-top: 4px;
  color: #78837c;
  font-size: 0.7rem;
}

.lux-start-images {
  position: relative;
  height: 700px;
}

.lux-start-main,
.lux-start-secondary {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(17, 21, 18, 0.15);
}

.lux-start-main {
  inset: 0 20% 8% 0;
}

.lux-start-secondary {
  top: 11%;
  right: 0;
  width: 35%;
  height: 47%;
  border: 9px solid #fff;
}

.lux-start-main img,
.lux-start-secondary img {
  object-fit: cover;
}

.lux-start-quote {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: 360px;
  padding: 26px;
  border-radius: 20px;
  background: var(--lux-ink);
  color: #fff;
  box-shadow: 0 24px 55px rgba(17, 21, 18, 0.22);
}

.lux-start-quote span,
.lux-start-quote strong {
  display: block;
}

.lux-start-quote span {
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c89a72;
}

.lux-start-quote strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.18;
}

.lux-method-section {
  width: auto;
  padding: 112px max(36px, calc((100vw - 1640px) / 2 + 36px));
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  background: var(--lux-sky);
}

.lux-method-intro h2 {
  font-size: clamp(3rem, 4.3vw, 5rem);
}

.lux-method-author {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lux-method-author > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lux-ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
}

.lux-method-author p {
  margin: 0;
}

.lux-method-author strong,
.lux-method-author small {
  display: block;
}

.lux-method-author strong {
  font-size: 0.8rem;
}

.lux-method-author small {
  margin-top: 3px;
  color: #6d7871;
  font-size: 0.67rem;
}

.lux-method-links {
  margin-top: 30px;
  display: grid;
  border-top: 1px solid #ccd4cf;
}

.lux-method-links a {
  padding: 14px 0;
  border-bottom: 1px solid #ccd4cf;
  color: var(--lux-blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.lux-method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lux-method-cards article {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(211, 218, 214, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(17, 21, 18, 0.05);
}

.lux-method-cards article > span {
  color: var(--lux-orange);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 650;
}

.lux-method-cards article > div {
  margin-top: auto;
}

.lux-method-cards h3 {
  margin: 0 0 11px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.lux-method-cards p {
  margin: 0;
  color: #68736c;
  font-size: 0.75rem;
  line-height: 1.6;
}

.lux-selection-strip {
  padding: 110px 0;
  display: grid;
  grid-template-columns: minmax(350px, 0.7fr) minmax(600px, 1.3fr);
  gap: 100px;
}

.lux-selection-strip h2 {
  font-size: clamp(2.8rem, 4vw, 4.7rem);
}

.lux-selection-strip > div:last-child {
  border-top: 2px solid var(--lux-ink);
}

.lux-selection-strip > div:last-child a {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr auto;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--lux-line);
}

.lux-selection-strip a > span {
  color: #808a84;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lux-selection-strip a > strong {
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 620;
}

.lux-selection-strip a > b {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lux-sky);
  color: var(--lux-blue);
}

.lux-network-section {
  padding: 105px max(36px, calc((100vw - 1640px) / 2 + 36px));
  display: grid;
  grid-template-columns: minmax(430px, 0.8fr) minmax(560px, 1.2fr);
  gap: 120px;
  background: var(--lux-ink);
  color: #fff;
}

.lux-network-section h2 {
  font-size: clamp(3rem, 4.2vw, 5rem);
}

.lux-network-section h2 span {
  color: #87918b;
}

.lux-network-links {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.lux-network-links a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.lux-network-links a span {
  color: #8c9790;
  font-size: 0.72rem;
}

.lux-network-links a strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}

.lux-source-note {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  color: #6e7872;
  font-size: 0.68rem;
}

.lux-source-note p {
  margin: 0;
}

.lux-source-note strong {
  color: var(--lux-ink);
}

.lux-source-note > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.lux-source-note a {
  color: var(--lux-blue);
  font-weight: 750;
}

.site-footer {
  background: #0a0f0c;
}

@media (max-width: 1240px) {
  .lux-hero {
    grid-template-columns: minmax(360px, 0.88fr) minmax(500px, 1.12fr);
    gap: 45px;
  }

  .lux-hero-visual {
    grid-template-columns: minmax(0, 1.5fr) minmax(170px, 0.7fr);
  }

  .lux-assistant-head {
    grid-template-columns: 0.28fr 1fr;
  }

  .lux-assistant-head > div {
    grid-column: 2;
  }

  .lux-compare-list > a {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .lux-method-section,
  .lux-selection-strip,
  .lux-network-section {
    gap: 70px;
  }
}

@media (max-width: 980px) {
  .lux-hero {
    grid-template-columns: 1fr;
  }

  .lux-hero-copy {
    max-width: 780px;
  }

  .lux-hero-visual {
    height: 640px;
  }

  .lux-floating-score {
    right: 20px;
  }

  .lux-search {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .lux-proof > div:nth-child(2) {
    border-right: 0;
  }

  .lux-proof > div:nth-child(n+3) {
    border-top: 1px solid var(--lux-line);
  }

  .lux-section-head,
  .lux-start-section,
  .lux-method-section,
  .lux-selection-strip,
  .lux-network-section {
    grid-template-columns: 1fr;
  }

  .lux-paths-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 330px;
  }

  .lux-path-card.path-large,
  .lux-path-card.path-tall,
  .lux-path-card.path-small {
    grid-column: auto;
    grid-row: auto;
  }

  .lux-assistant-head {
    grid-template-columns: 1fr;
  }

  .lux-assistant-head > div {
    grid-column: auto;
    max-width: 650px;
  }

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

  .lux-compare-section {
    grid-template-columns: 1fr;
  }

  .lux-compare-visual {
    min-height: 580px;
  }

  .lux-compare-content {
    padding: 85px 36px;
  }

  .lux-compare-list > a {
    grid-template-columns: minmax(170px, 0.55fr) 1fr auto;
    gap: 22px;
  }

  .lux-start-images {
    order: -1;
  }

  .lux-method-section,
  .lux-network-section {
    padding-right: 36px;
    padding-left: 36px;
  }

  .lux-selection-strip {
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .site-utility {
    display: none;
  }

  .header-inner {
    width: calc(100% - 36px);
    min-height: 72px;
  }

  .lux-hero {
    padding: 54px 18px 34px;
    gap: 42px;
  }

  .lux-eyebrow {
    align-items: flex-start;
    flex-direction: column;
  }

  .lux-hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.25rem);
  }

  .lux-hero-lead {
    font-size: 1rem;
  }

  .lux-hero-actions,
  .lux-btn {
    width: 100%;
  }

  .lux-btn {
    justify-content: space-between;
  }

  .lux-trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .lux-hero-visual {
    height: 540px;
    grid-template-columns: 1fr 0.65fr;
    gap: 10px;
  }

  .lux-hero-main-photo,
  .lux-hero-side-photo {
    border-radius: 19px;
  }

  .lux-floating-score {
    right: 12px;
    bottom: 22px;
    width: 180px;
  }

  .lux-search {
    padding: 20px;
    border-radius: 18px;
  }

  .lux-search-field {
    height: auto;
    padding: 8px;
    grid-template-columns: auto 1fr;
  }

  .lux-search-field input {
    height: 48px;
  }

  .lux-search-field button {
    grid-column: 1 / -1;
    min-height: 48px;
    border-radius: 11px;
  }

  .lux-proof,
  .lux-paths-section,
  .lux-atlas-section,
  .lux-start-section,
  .lux-selection-strip,
  .lux-source-note {
    width: calc(100% - 36px);
  }

  .lux-proof {
    padding: 42px 0 55px;
    grid-template-columns: 1fr 1fr;
  }

  .lux-proof > div,
  .lux-proof > div:first-child {
    min-height: 135px;
    padding: 15px;
  }

  .lux-proof > div:nth-child(odd) {
    padding-left: 0;
  }

  .lux-proof strong {
    font-size: 2.7rem;
  }

  .lux-paths-section,
  .lux-atlas-section,
  .lux-start-section,
  .lux-selection-strip {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .lux-section-head {
    gap: 25px;
  }

  .lux-section-head h2,
  .lux-compare-content h2,
  .lux-start-copy h2,
  .lux-method-intro h2,
  .lux-selection-strip h2,
  .lux-network-section h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .lux-paths-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .lux-assistant-section {
    padding: 78px 18px;
  }

  .lux-assistant-head h2 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .lux-assistant-shell {
    padding: 8px;
    border-radius: 22px;
  }

  .lux-assistant-shell .quiz-shell {
    padding: 27px 17px;
    border-radius: 17px;
  }

  .lux-assistant-notes {
    grid-template-columns: 1fr 1fr;
  }

  .lux-assistant-notes span:nth-child(2) {
    border-right: 0;
  }

  .lux-assistant-notes span:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .lux-sport-grid {
    grid-template-columns: 1fr;
  }

  .lux-sport-grid .sport-card-media {
    height: 235px;
  }

  .lux-atlas-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .lux-compare-visual {
    min-height: 430px;
  }

  .lux-compare-visual > div {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .lux-compare-content {
    padding: 70px 18px;
  }

  .lux-compare-list > a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lux-start-section {
    gap: 60px;
  }

  .lux-start-images {
    height: 520px;
  }

  .lux-start-main {
    inset: 0 12% 10% 0;
  }

  .lux-start-secondary {
    width: 38%;
    height: 40%;
  }

  .lux-start-quote {
    right: 0;
    width: min(320px, 88%);
  }

  .lux-method-section,
  .lux-network-section {
    padding: 78px 18px;
  }

  .lux-method-cards {
    grid-template-columns: 1fr;
  }

  .lux-method-cards article {
    min-height: 230px;
  }

  .lux-selection-strip > div:last-child a {
    padding: 17px 0;
    grid-template-columns: 1fr auto;
    gap: 6px 15px;
  }

  .lux-selection-strip a > span,
  .lux-selection-strip a > strong {
    grid-column: 1;
  }

  .lux-selection-strip a > b {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .lux-network-section {
    gap: 55px;
  }

  .lux-network-links a {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .lux-source-note,
  .lux-source-note > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .lux-source-note > div {
    gap: 10px;
  }
}

/* Composants PHP autonomes */
.filter-panel {
  margin-bottom: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(130px, 1fr)) auto;
  align-items: end;
  gap: 12px;
  border-radius: 18px;
  background: var(--lux-soft);
}

.filter-panel label { color: var(--lux-muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.filter-panel input,
.filter-panel select { width: 100%; height: 48px; margin-top: 5px; padding: 0 12px; border: 1px solid #d7ddd8; border-radius: 10px; background: #fff; color: var(--lux-ink); font-size: .84rem; }
.filter-panel .button { min-height: 48px; padding: 10px 14px; border-radius: 10px; }
.directory-toolbar { margin: 0 0 18px; display: flex; justify-content: space-between; gap: 20px; color: var(--lux-muted); font-size: .82rem; }
.directory-toolbar p { margin: 0; }
.directory-toolbar a { color: var(--lux-blue); font-weight: 800; }
.filter-item { display: contents; }
.filter-item[hidden] { display: none; }
.no-results { padding: 30px; border-radius: 16px; background: var(--lux-soft); text-align: center; }

.comparison-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.comparison-list a { min-height: 210px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--lux-line); border-radius: 18px; transition: transform 180ms ease, box-shadow 180ms ease; }
.comparison-list a:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(17,21,18,.08); }
.comparison-list span { color: var(--lux-orange); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.comparison-list strong { margin-top: 8px; font-family: var(--display); font-size: 1.35rem; line-height: 1.2; }
.comparison-list small { margin-top: 10px; color: var(--lux-muted); line-height: 1.5; }
.comparison-list b { margin-top: auto; padding-top: 14px; color: var(--lux-blue); font-size: .78rem; }
.compare-picker { grid-template-columns: 1fr auto 1fr auto; }
#live-comparison { margin-bottom: 72px; }
.result-tools { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.page-body.selection-index { display: block; border: 0; }
.selection-index .selection-home-grid { margin-bottom: 44px; }
.selection-index .selection-home-grid a { margin: 0; color: inherit; }
.selection-index .selection-home-grid small { margin-top: 10px; color: var(--lux-muted); font-weight: 400; line-height: 1.45; }
.selection-index .selection-home-grid b { margin-top: auto; padding-top: 20px; color: var(--lux-blue); font-size: .78rem; }

@media (max-width: 1120px) { .filter-panel { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .filter-panel { grid-template-columns: repeat(2, 1fr); } .compare-picker { grid-template-columns: 1fr; align-items: stretch; } .compare-picker > span { display: none; } }
@media (max-width: 620px) { .filter-panel, .comparison-list { grid-template-columns: 1fr; } .directory-toolbar { flex-direction: column; } .result-tools .button { width: 100%; } }

@media print {
  .site-header, .site-footer, .lux-hero, .lux-proof, .lux-paths-section, .lux-compare-section, .lux-start-section, .lux-method-section, .lux-selection-strip, .lux-network-section, .lux-source-note, .lux-assistant-head, .lux-assistant-notes, .quiz-topline, .result-tools { display: none !important; }
  .lux-assistant-section { padding: 0; background: #fff; color: #000; }
  .lux-assistant-shell { padding: 0; background: #fff; box-shadow: none; }
  .quiz-shell { box-shadow: none; }
  .result-row { break-inside: avoid; }
}
