/* Navigation and footer use global.css and storefront.css. */
.about-page { background: #fff; color: #090909; overflow: hidden; }
.mission-section { scroll-margin-top: 92px; }
.about-primary-btn:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.about-benefit,
.step { min-width: 0; }
.about-breadcrumbs { padding: 24px 0; font-size: 12px; color: #777; }
.about-breadcrumbs a { color: #292929; }
.about-breadcrumbs span { margin: 0 10px; color: #b6b6b6; }

.about-hero {
  --about-hero-height: 520px;
  min-height: var(--about-hero-height);
  position: relative;
  display: flex;
  align-items: center;
  background: #020307;
  overflow: hidden;
}
.about-hero-picture { position: absolute; inset: 0; }
.about-hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1815px);
  height: var(--about-hero-height);
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,3,5,.48) 0%, rgba(2,3,5,.22) 36%, rgba(2,3,5,0) 62%);
}
.about-hero-content { position: relative; z-index: 1; max-width: 540px; padding: 80px 0; }
.about-kicker { display: block; margin-bottom: 18px; color: #6d6d72; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.about-title { margin: 0 0 22px; color: #fff; font-size: clamp(42px, 5vw, 66px); font-weight: 750; letter-spacing: -.055em; line-height: .98; }
.about-subtitle { max-width: 530px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.about-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 26px;
  border-radius: 999px;
  background: #fff;
  color: #080808;
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease;
}
.about-primary-btn:hover { transform: translateY(-2px); background: #e8e8e8; }

.mission-section { padding: 45px 0 104px; }
.about-section-heading { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.about-section-heading .about-kicker { margin-bottom: 12px; }
.about-section-title { margin: 0; font-size: clamp(32px, 4vw, 48px); font-weight: 750; letter-spacing: -.04em; line-height: 1.12; }
.about-section-copy { max-width: 670px; margin: 22px auto 0; color: #5f5f64; font-size: 15px; line-height: 1.75; }

.about-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 48px; row-gap: 56px; }
.about-benefit { padding: 4px 8px; }
.about-benefit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #f7f7f8;
  display: grid;
  place-items: center;
  color: #090909;
}
.about-benefit-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}
.about-benefit-title { margin: 0 0 10px; font-size: 16px; font-weight: 800; }
.about-benefit-copy { margin: 0; color: #66666b; font-size: 13px; line-height: 1.7; }

.process-section { padding: 70px 0 112px; background: #f7f7f9; }
.process-section .about-section-heading { margin-bottom: 0; }
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}
.process-steps::before { content: ''; position: absolute; top: 25px; left: 50px; right: 50px; height: 1px; background: #d8d8db; z-index: 1; }
.step { position: relative; z-index: 2; width: 190px; text-align: center; }
.step-num { width: 50px; height: 50px; margin: 0 auto 20px; border: 1.5px solid #000; border-radius: 50%; background: #fafafa; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; transition: .25s; }
.step:hover .step-num { background: #000; color: #fff; transform: translateY(-3px); }
.step-title { margin: 0 0 8px; font-size: 15px; font-weight: 800; }
.step-desc { margin: 0; color: #6d6d72; font-size: 12px; line-height: 1.6; }

@media (prefers-reduced-motion: reduce) {
  .about-primary-btn,
  .step-num { transition: none; }
}

@media (max-width: 980px) {
  .about-hero { --about-hero-height: 470px; }
  .about-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
  .process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px 24px; }
  .process-steps::before { display: none; }
  .step { width: auto; }
}

@media (max-width: 767px) {
  .about-breadcrumbs { padding-block: 12px; font-size: 10px; line-height: 1.6; }
  .about-breadcrumbs a { display: inline-flex; align-items: center; min-height: 24px; }

  /* Match the homepage mobile banner: sizing, crop, overlay and typography. */
  .about-hero {
    --about-hero-height: clamp(195px, 52vw, 215px);
    min-height: var(--about-hero-height);
    margin: 2px var(--mobile-gutter) 0;
    border-radius: 14px;
    align-items: center;
    background: #03090b;
  }
  .about-hero-image { inset: 0; width: 100%; height: 100%; transform: none; object-fit: cover; object-position: 65% center; }
  .about-hero::after { background: linear-gradient(90deg, rgba(3,9,11,.93), rgba(3,9,11,.76) 40%, rgba(3,9,11,.08) 100%); }
  .about-hero > .container { padding: 0; }
  .about-hero-content { width: 74%; max-width: 330px; padding: 10px 0 32px 16px; }
  .about-title { margin-bottom: 7px; font-size: clamp(19px, 5.4vw, 23px); font-weight: 800; line-height: 1.03; letter-spacing: -.04em; }
  .about-subtitle { max-width: 220px; font-size: 10px; line-height: 1.35; color: #e1e2e3; }
  .about-primary-btn { min-height: 34px; margin-top: 10px; padding: 9px 15px; border-radius: 30px; font-size: 9px; font-weight: 700; line-height: 1.5; }
  .about-primary-btn::after { content: '⟶'; margin-left: 16px; }

  .mission-section { padding: 36px 0 40px; }
  .about-section-heading { margin: 0 0 24px; text-align: left; }
  .about-section-title { max-width: 480px; font-size: clamp(27px, 7.2vw, 34px); line-height: 1.15; letter-spacing: -.04em; text-wrap: balance; }
  .about-section-copy { max-width: 540px; margin: 16px 0 0; color: #66666e; font-size: 14px; line-height: 1.8; }
  .about-benefits { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .about-benefit { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 10px 14px; align-items: center; padding: 20px; border: 1px solid #eaeaef; border-radius: 16px; }
  .about-benefit-icon { width: 44px; height: 44px; margin: 0; border-radius: 13px; background: #f3f3f6; }
  .about-benefit-icon svg { width: 23px; height: 23px; }
  .about-benefit-title { margin: 0; font-size: 15px; line-height: 1.4; letter-spacing: -.025em; }
  .about-benefit-copy { grid-column: 1 / -1; color: #66666e; font-size: 13px; line-height: 1.8; }

  .process-section { padding: 36px 0 44px; }
  .about-kicker { font-size: 10px; line-height: 1.6; letter-spacing: .12em; }
  .process-steps { grid-template-columns: minmax(0, 1fr); gap: 0; margin-top: 28px; }
  .step { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 8px 16px; padding-bottom: 28px; text-align: left; }
  .step:last-child { padding-bottom: 0; }
  .step:not(:last-child)::after { content: ''; position: absolute; top: 48px; bottom: 8px; left: 19px; width: 1px; background: #dcdce2; }
  .step-num { grid-row: span 2; align-self: start; width: 40px; height: 40px; margin: 0; border: 1px solid #dedee4; border-radius: 12px; background: #fff; font-size: 13px; }
  .step-title { margin: 2px 0 0; font-size: 16px; line-height: 1.4; letter-spacing: -.025em; }
  .step-desc { color: #66666e; font-size: 13px; line-height: 1.75; }
}

@media (max-width: 359px) {
  .about-hero { --about-hero-height: 195px; }
  .about-hero-content { width: 82%; }
  .about-benefit { padding: 18px 16px; column-gap: 12px; }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .about-primary-btn:hover,
  .step:hover .step-num { transform: none; }
}
