.page-home {
  --section-pad-y: clamp(84px, 10vw, 156px);
  --skew-ang: -5deg;
  --card-shadow: 0 22px 44px rgba(10,31,68,.22);
  background: var(--c-deep);
  color: var(--c-white);
  overflow-x: clip;
}

.page-home ::selection {
  background: var(--c-orange);
  color: var(--c-deep);
}

.page-home figure,
.page-home ul,
.page-home dl {
  margin: 0;
  padding: 0;
}

.page-home .btn {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

/* 01 hero */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-deep);
  padding: 90px 0 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
  filter: saturate(1.08) contrast(1.05);
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,31,68,.95) 0%, rgba(10,31,68,.74) 36%, rgba(74,30,122,.32) 67%, rgba(10,31,68,.18) 100%);
}

.hero-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 180%;
  background: linear-gradient(180deg, rgba(255,107,0,.42), rgba(74,30,122,.45));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  transform: skewX(14deg) translateX(14%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: home-hero-rise .6s var(--ease) both;
}

@keyframes home-hero-rise {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: none; }
}

.hero-context {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--c-gold);
  text-transform: uppercase;
}

.route-code {
  border: 1px solid currentColor;
  padding: 4px 10px;
  border-radius: 999px;
}

.route-line {
  width: 44px;
  height: 1px;
  background: rgba(255,215,0,.55);
}

.route-text {
  color: rgba(255,255,255,.72);
  letter-spacing: .08em;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 26px 0 18px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85;
  color: rgba(255,255,255,.82);
  max-width: 580px;
}

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

.hero-actions .btn-primary {
  background: var(--c-orange);
  color: var(--c-deep);
  font-family: var(--font-head);
  box-shadow: 0 16px 32px rgba(255,107,0,.25);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255,107,0,.38);
}

.hero-ghost-btn {
  border-color: rgba(255,255,255,.5);
  color: var(--c-white);
  background: rgba(10,31,68,.22);
}

.hero-ghost-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.72);
  text-decoration: none;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .12em;
}

.hero-scroll::before {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--c-gold), transparent);
}

@media (max-width: 640px) {
  .hero-scroll {
    display: none;
  }
}

/* section head shared */
.section-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.section-index {
  font-family: var(--font-data);
  font-size: clamp(52px, 8vw, 104px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--c-orange);
}

.section-titles {
  padding-top: 12px;
  min-width: 0;
}

.section-kicker {
  font-family: var(--font-data);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.12;
  margin: 0;
}

.section-lead {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,.78);
}

/* 02 stats */
.stats-section {
  position: relative;
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  background: radial-gradient(circle at 82% 18%, rgba(255,107,0,.1), transparent 42%), var(--c-deep);
  overflow: hidden;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .stats-layout {
    grid-template-columns: 340px 1fr;
    gap: 44px;
  }
}

.stats-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255,107,0,.16), rgba(74,30,122,.24) 58%), var(--c-purple);
  border: 1px solid rgba(255,107,0,.24);
  border-radius: 24px;
  padding: 34px 20px;
  text-align: center;
}

.refresh-orbit {
  position: relative;
  width: 164px;
  height: 164px;
}

.orbit-svg {
  width: 100%;
  height: 100%;
}

.orbit-track,
.orbit-progress {
  fill: none;
  stroke-width: 6;
}

.orbit-track {
  stroke: rgba(255,255,255,.14);
}

.orbit-progress {
  stroke: var(--c-orange);
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 6.7;
  transform: rotate(-90deg);
  transform-origin: center;
}

.refresh-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.refresh-label {
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

.refresh-value {
  font-family: var(--font-data);
  font-size: 44px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  margin-top: 4px;
}

.stats-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin-top: 20px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  animation: home-pulse 1.8s ease-out infinite;
}

@keyframes home-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,196,140,.5); }
  50% { box-shadow: 0 0 0 7px rgba(0,196,140,0); }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.stat-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-orange);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}

.stat-value {
  font-family: var(--font-data);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  color: var(--c-white);
}

.stat-suffix {
  font-size: .5em;
  vertical-align: super;
  color: var(--c-orange);
}

.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  margin-top: 10px;
}

/* 03 report */
.report-section {
  background: var(--c-light);
  color: var(--c-dark);
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
  overflow: hidden;
}

.report-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 54px;
  background: linear-gradient(90deg, var(--c-orange), rgba(255,107,0,.14) 70%, transparent 100%);
  transform: skewY(-2deg);
  transform-origin: 0 0;
  pointer-events: none;
}

.report-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255,107,0,.08);
  border-radius: 60px 100px 40px 120px;
  transform: rotate(18deg);
  pointer-events: none;
}

.report-section .section-kicker {
  color: var(--c-orange);
}

.report-section .section-title,
.report-section .section-lead {
  color: var(--c-dark);
}

.report-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 960px) {
  .report-layout {
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
  }
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 34px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(10,31,68,.06);
}

.feature-icon {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-copy strong {
  color: var(--c-dark);
  font-family: var(--font-head);
  font-size: 16px;
}

.feature-copy span {
  color: #5d6b85;
  font-size: 14px;
  line-height: 1.65;
}

.report-media {
  position: relative;
  box-shadow: var(--card-shadow);
}

.report-media img {
  width: 100%;
  height: auto;
  display: block;
}

.report-media figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(10,31,68,.78);
  color: var(--c-white);
  font-size: 13px;
  line-height: 1.4;
  padding: 12px 14px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

/* 04 schedule */
.schedule-section {
  background: var(--c-deep);
  color: var(--c-white);
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
  overflow: hidden;
}

.schedule-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -140px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,215,0,.08), transparent 70%);
  pointer-events: none;
}

.schedule-lead {
  margin-bottom: 34px;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 20px;
}

@media (min-width: 960px) {
  .schedule-layout {
    grid-template-columns: 1.4fr .8fr;
    gap: 48px;
  }
}

.schedule-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-label {
  font-family: var(--font-data);
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  transition: all .25s var(--ease);
  user-select: none;
}

.filter-input:checked + .filter-label {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-deep);
  font-weight: 700;
}

.filter-input:focus-visible + .filter-label {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.filter-panel {
  display: none;
  width: 100%;
  margin-top: 22px;
}

.page-home #filter-league-football:checked ~ .panel-football,
.page-home #filter-league-basketball:checked ~ .panel-basketball,
.page-home #filter-league-more:checked ~ .panel-more {
  display: block;
}

.schedule-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 18px 18px 14px;
  margin-bottom: 14px;
}

.schedule-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--c-orange);
  margin-bottom: 8px;
}

.schedule-card-title span {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255,255,255,.52);
  letter-spacing: .04em;
}

.match-list {
  list-style: none;
}

.match-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 14px;
}

.match-meta {
  font-family: var(--font-data);
  color: var(--c-gold);
  font-size: 11px;
  min-width: 48px;
}

.match-team {
  flex: 1;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-team:last-of-type {
  text-align: right;
}

.match-score {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--c-white);
  background: rgba(0,0,0,.28);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.match-score.vs {
  color: var(--c-gold);
  background: rgba(255,215,0,.1);
}

.match-note {
  margin-top: 6px;
  border-top: 1px dashed rgba(255,255,255,.1);
  padding-top: 8px;
}

.disclosure-btn {
  background: none;
  border: none;
  color: var(--c-gold);
  font-family: var(--font-data);
  font-size: 12px;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.disclosure-btn::before {
  content: "+";
  font-weight: 800;
  font-size: 14px;
}

.disclosure-btn:hover {
  color: var(--c-orange);
}

.disclosure-panel {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 10px;
}

.disclosure-panel p {
  margin: 0;
}

.disclosure-panel[data-open="false"] {
  display: none;
}

.schedule-media {
  position: relative;
  box-shadow: var(--card-shadow);
}

.schedule-media img {
  width: 100%;
  height: auto;
  display: block;
}

.schedule-media figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(10,31,68,.78);
  color: var(--c-white);
  font-size: 13px;
  line-height: 1.4;
  padding: 12px 14px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.schedule-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.schedule-foot::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-orange);
}

.schedule-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--c-gold);
  font-family: var(--font-data);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,215,0,.5);
  padding-bottom: 4px;
}

.schedule-more:hover {
  color: var(--c-orange);
  border-color: var(--c-orange);
}

/* 05 mirror */
.mirror-section {
  background: linear-gradient(120deg, var(--c-deep), var(--c-purple) 78%);
  color: var(--c-white);
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
  overflow: hidden;
}

.mirror-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 900px) {
  .mirror-layout {
    grid-template-columns: .92fr 1.08fr;
    gap: 56px;
  }
}

.mirror-map {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 24px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mirror-svg {
  width: 100%;
  height: auto;
  max-width: 360px;
}

.map-region {
  fill: rgba(255,215,0,.1);
  stroke: var(--c-gold);
  stroke-width: 2;
  stroke-dasharray: 7 6;
}

.map-node {
  fill: var(--c-orange);
  stroke: var(--c-white);
  stroke-width: 3;
  filter: drop-shadow(0 0 18px rgba(255,107,0,.75));
}

.map-node-gold {
  fill: var(--c-gold);
  stroke: var(--c-white);
}

.map-route {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 2;
  stroke-dasharray: 4 6;
  opacity: .7;
}

.map-pulse {
  fill: none;
  stroke: var(--c-orange);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: home-map-pulse 2.2s ease-out infinite;
}

@keyframes home-map-pulse {
  0% { transform: scale(.76); opacity: .85; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-label {
  font-family: var(--font-data);
  font-size: 11px;
  fill: rgba(255,255,255,.7);
}

.mirror-section .section-lead {
  color: rgba(255,255,255,.78);
}

.mirror-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 30px 0 28px;
}

.mirror-points li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px;
  align-items: baseline;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--c-orange);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.mirror-points li span {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-gold);
}

.mirror-points li strong {
  font-family: var(--font-head);
  color: var(--c-white);
  margin-right: 4px;
}

.mirror-cta {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(255,215,0,.04);
}

.mirror-cta:hover {
  background: var(--c-gold);
  color: var(--c-deep);
}

/* 06 member */
.member-section {
  background: var(--c-deep);
  color: var(--c-white);
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
  overflow: hidden;
}

.member-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 36%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,215,0,.12), transparent 65%);
  pointer-events: none;
}

.member-section .section-index {
  color: var(--c-gold);
}

.member-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 960px) {
  .member-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
  }
}

.member-media {
  position: relative;
}

.member-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: var(--card-shadow);
}

.member-media::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 84px;
  height: 84px;
  border-top: 4px solid var(--c-gold);
  border-left: 4px solid var(--c-gold);
  border-radius: 24px 0 0 0;
  z-index: -1;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 30px 0 26px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.benefit-label {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-gold);
}

.benefit-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.76);
}

.member-disclosure {
  margin-top: 6px;
}

.member-toggle {
  background: var(--c-orange);
  color: var(--c-deep);
  font-family: var(--font-head);
}

.member-toggle:hover {
  box-shadow: 0 16px 34px rgba(255,107,0,.28);
}

.member-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,215,0,.32);
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 14px;
}

.member-panel[data-open="false"] {
  display: none;
}

.member-panel-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.member-panel-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.member-panel-list li::before {
  content: "▪";
  color: var(--c-gold);
}

/* 07 partner */
.partner-section {
  background: var(--c-light);
  color: var(--c-dark);
  padding-top: var(--section-pad-y);
  padding-bottom: calc(var(--section-pad-y) * .72);
}

.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 28%, rgba(255,107,0,.07), transparent 34%);
  pointer-events: none;
}

.partner-section .section-kicker {
  color: var(--c-orange);
}

.partner-section .section-title {
  color: var(--c-dark);
}

.partner-lead {
  color: var(--c-dark);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0 32px;
}

@media (min-width: 720px) {
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-chip {
  background: var(--c-white);
  border: 1px solid #e3e8f0;
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.partner-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(10,31,68,.1);
  border-color: rgba(255,107,0,.3);
}

.partner-glyph {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-deep);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
}

.partner-name {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--c-dark);
}

.partner-note {
  font-size: 13px;
  color: #5d6b85;
  line-height: 1.55;
}

.partner-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 800px;
  font-size: 14px;
  line-height: 1.7;
  color: #5d6b85;
  border-top: 1px solid #e3e8f0;
  padding-top: 18px;
}

.partner-foot a {
  color: var(--c-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partner-foot a:hover {
  color: var(--c-deep);
}
