/* ==========================================================================
   About — "Why Buy Refurbished"
   ========================================================================== */
.about-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  min-height: 92svh;
  padding: calc(var(--nav-height) + 64px) 0 96px;
  background: #000;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.1);
  animation: slow-zoom 18s var(--ease) forwards;
}

@keyframes slow-zoom {
  to { transform: scale(1); }
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 70% at 50% 45%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
}

.about-hero .eyebrow {
  color: #6ee7a0;
}

.about-hero .headline-hero {
  max-width: 1000px;
  margin: 0 auto 24px;
}

.about-hero .headline-hero em {
  font-style: normal;
  background: linear-gradient(90deg, #6ee7a0, #2997ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero .subhead {
  max-width: 640px;
  margin: 0 auto;
  color: #d2d2d7;
}

/* ---------- Big statement ---------- */
.statement {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-align: center;
}

.statement span {
  color: var(--color-gray-mid);
}

/* ---------- Stats ---------- */
.about-stats {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.about-stat {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.about-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 2rem + 2vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--stat-color, var(--color-black));
}

.about-stat__label {
  display: block;
  margin-top: 12px;
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
}

.about-stat small {
  display: block;
  margin-top: 16px;
  font-size: var(--fs-caption);
  color: var(--color-gray-mid);
}

/* ---------- Story rows ---------- */
.story {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.story + .story {
  margin-top: clamp(96px, 12vw, 180px);
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1.15fr 1fr;
  }

  .story--reverse .story__media {
    order: 2;
  }
}

.story__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-gray-bg);
  box-shadow: var(--shadow-lg);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}

.story:hover .story__media img {
  transform: scale(1.04);
}

.story__media figcaption {
  position: absolute;
  inset-inline-start: 14px;
  bottom: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
}

.story__media figcaption a {
  color: inherit;
  text-decoration: underline;
}

.story__text .eyebrow {
  margin-bottom: 12px;
}

.story__text .headline-2 {
  margin-bottom: 20px;
}

.story__text p {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
}

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

.story__text .link-arrow {
  margin-top: 24px;
}

/* ---------- Comparison ---------- */
.compare {
  display: grid;
  gap: var(--space-5);
  max-width: 980px;
  margin: 0 auto;
}

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

.compare__card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: #1d1d1f;
}

.compare__card--highlight {
  background: linear-gradient(160deg, #0b3d2e 0%, #1d1d1f 70%);
  box-shadow: inset 0 0 0 1px rgba(110, 231, 160, 0.35);
}

.compare__card h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: #a1a1a6;
}

.compare__price {
  display: block;
  margin: 10px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.compare__card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d2d2d7;
}

.compare__card li {
  display: flex;
  gap: 10px;
}

.compare__card li::before {
  content: "✓";
  color: #6ee7a0;
  font-weight: 700;
}

.compare__card:not(.compare__card--highlight) li::before {
  color: #86868b;
}

/* ---------- Grading process timeline ---------- */
.process {
  display: grid;
  gap: var(--space-5);
  counter-reset: process;
}

@media (min-width: 768px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.process__step {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-gray-bg);
  counter-increment: process;
}

.process__step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-blue);
}

.process__step h3 {
  margin-bottom: 8px;
  font-size: 1.3125rem;
  font-weight: 600;
}

.process__step p {
  color: var(--color-text-secondary);
}

/* ---------- CTA ---------- */
.about-cta {
  text-align: center;
}

.about-cta .subhead {
  margin: 16px auto 36px;
  max-width: 560px;
}
