/* ==========================================================================
   IN7 GAME — About page
   Structure: spoke hero → stat band → vertical rail timeline → contrast
   panels → coverage bars → disclosure
   ========================================================================== */

/* --------------------------------------------------------------------------
   Spoke hero — copy sits inside a half-wheel of radiating gold spokes
   -------------------------------------------------------------------------- */
.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(2rem, 1.2rem + 4vw, 4.5rem));
  padding-bottom: clamp(3rem, 2rem + 4vw, 5rem);
  text-align: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1180px, 150vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(214, 169, 74, 0.14) 0deg 0.35deg,
    transparent 0.35deg 7.5deg);
  mask: radial-gradient(circle, #000 18%, rgba(0, 0, 0, 0.35) 46%, transparent 66%);
  -webkit-mask: radial-gradient(circle, #000 18%, rgba(0, 0, 0, 0.35) 46%, transparent 66%);
  animation: wheelSpin 160s linear infinite;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 62% at 50% 34%, rgba(196, 18, 48, 0.22), transparent 68%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: var(--sp-5);
  max-width: 76ch;
  margin-inline: auto;
}

.about-hero__inner .lede { text-align: center; max-width: 66ch; }

.about-hero__ring {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, #F3D585 0deg 20deg, #C41230 20deg 40deg);
  border: 5px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-gold), 0 16px 40px rgba(0, 0, 0, 0.6);
}

.about-hero__ring span {
  display: grid;
  place-items: center;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-on-gold);
  background: radial-gradient(circle at 34% 28%, #FDF6E4, #D2AB4F);
  box-shadow: inset 0 -3px 7px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   Stat band
   -------------------------------------------------------------------------- */
.statband {
  position: relative;
  padding-block: clamp(2rem, 1.4rem + 2vw, 3.25rem);
  background: linear-gradient(180deg, rgba(11, 10, 12, 0.9), rgba(21, 19, 22, 0.9));
  border-block: 1px solid var(--color-border-gold-soft);
}

.statband__grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(min(50%, 148px), 1fr));
}

/* --------------------------------------------------------------------------
   Vertical rail timeline — the ball's route down a wheel
   -------------------------------------------------------------------------- */
.rail { position: relative; display: grid; gap: clamp(1.75rem, 1rem + 2.5vw, 3rem); }

.rail::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--color-gold-deep) 6%, var(--color-gold) 50%, var(--color-gold-deep) 94%, transparent);
  opacity: 0.65;
}

@media (min-width: 860px) {
  .rail::before { left: 50%; transform: translateX(-1px); }
}

.rail__item {
  position: relative;
  padding-left: 76px;
}

@media (min-width: 860px) {
  .rail__item { width: 50%; padding-left: 0; padding-right: 64px; }
  .rail__item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 64px; }
  .rail__item:nth-child(odd) { text-align: right; }
}

.rail__chip {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text-on-gold);
  background: repeating-conic-gradient(from 0deg, #F3D585 0deg 22.5deg, #C41230 22.5deg 45deg);
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-gold), 0 8px 20px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.rail__chip span {
  display: grid;
  place-items: center;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #FDF6E4, #D2AB4F);
}

@media (min-width: 860px) {
  .rail__chip { left: auto; right: -27px; }
  .rail__item:nth-child(even) .rail__chip { right: auto; left: -27px; }
}

.rail__card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--grad-surface);
  border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--dur-mid) var(--ease-out);
}

.rail__card:hover { border-color: var(--color-border-gold); transform: translateY(-4px); }

.rail__card h3 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 800; margin-bottom: var(--sp-3); }
.rail__card p { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   Contrast panels: what we are / are not
   -------------------------------------------------------------------------- */
.contrast { display: grid; gap: var(--sp-5); }

@media (min-width: 880px) { .contrast { grid-template-columns: 1fr 1fr; } }

.contrast__col {
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.25rem);
  border-radius: var(--r-xl);
  border: 1px solid var(--color-border-dark);
}

.contrast__col--is {
  background: linear-gradient(155deg, rgba(214, 169, 74, 0.12), rgba(11, 10, 12, 0.88));
  border-color: var(--color-border-gold);
}

.contrast__col--isnt {
  background: linear-gradient(155deg, rgba(196, 18, 48, 0.12), rgba(11, 10, 12, 0.88));
  border-color: rgba(196, 18, 48, 0.32);
}

.contrast__col h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 800;
  margin-bottom: var(--sp-5);
}

.contrast__mark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  flex: none;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.contrast__col--is .contrast__mark { color: var(--color-text-on-gold); background: var(--grad-gold); }
.contrast__col--isnt .contrast__mark { color: #FFE6EA; background: var(--grad-crimson); }

.contrast__list { display: grid; gap: var(--sp-4); }

.contrast__list li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-loose);
  padding-bottom: var(--sp-4);
  border-bottom: 1px dashed var(--color-border-dark);
}

.contrast__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contrast__list strong { display: block; color: var(--color-text-primary); margin-bottom: 0.2rem; }

/* --------------------------------------------------------------------------
   Coverage bars
   -------------------------------------------------------------------------- */
.coverage { display: grid; gap: var(--sp-5); }

.cov { display: grid; gap: 0.5rem; }

.cov__top {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
}

.cov__top strong { color: var(--color-text-primary); }
.cov__top span { color: var(--color-gold); font-weight: 700; }

.cov__bar {
  height: 10px;
  border-radius: var(--r-pill);
  background: rgba(11, 10, 12, 0.8);
  border: 1px solid var(--color-border-dark);
  overflow: hidden;
}

.cov__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: repeating-linear-gradient(90deg, #C41230 0 10px, #D6A94A 10px 20px);
  box-shadow: 0 0 12px rgba(214, 169, 74, 0.5);
  transition: width 1.4s var(--ease-settle);
}

.cov.is-in .cov__fill { width: var(--cov, 50%); }

.cov__note { font-size: var(--fs-xs); color: var(--color-text-dim); }

/* --------------------------------------------------------------------------
   Disclosure block
   -------------------------------------------------------------------------- */
.disclose {
  position: relative;
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(214, 169, 74, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(31, 27, 31, 0.75), rgba(11, 10, 12, 0.92));
  border: 1px solid var(--color-border-gold);
  overflow: hidden;
}

.disclose::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--grad-gold);
}

.disclose h2 { margin-bottom: var(--sp-4); }
.disclose p { color: var(--color-text-muted); }
.disclose p + p { margin-top: var(--sp-4); }
