:root {
  --ink: #221f1f;
  --muted: #69717b;
  --soft: #eef3f9;
  --accent: #f18700;
}

body {
  background: #fff;
  color: var(--ink);
}

.about-page {
  overflow: hidden;
}

.section-wrap {
  width: 1090px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.about-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=82") center / cover no-repeat;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.about-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .72)),
    radial-gradient(circle at center, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42));
}

.hero-copy {
  width: min(760px, calc(100% - 32px));
  padding-top: 42px;
}

.hero-copy p {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.hero-copy span {
  color: var(--accent);
}

.hero-copy h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}

.about-crumbs {
  width: 1090px;
  max-width: calc(100% - 32px);
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a0a7b0;
  font-size: 12px;
}

.about-crumbs b {
  color: #242a32;
}

.about-intro {
  min-height: 560px;
  padding: 80px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 490px;
  align-items: center;
  gap: 84px;
}

.intro-copy h2,
.section-heading h2,
.about-cta h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.intro-copy p {
  margin: 22px 0 0;
  color: #4f5965;
  line-height: 1.78;
  font-size: 14px;
}

.about-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 132px;
  height: 44px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(241, 135, 0, .28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.about-button:hover {
  transform: translateY(-3px);
  background: #ff970f;
  box-shadow: 0 18px 30px rgba(241, 135, 0, .34);
}

.intro-video {
  position: relative;
  height: 285px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: inset 0 18px 0 #050505, inset 0 -18px 0 #050505, 0 18px 42px rgba(0, 0, 0, .16);
}

.intro-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 18px 0;
  filter: saturate(.9) brightness(.92);
  transition: transform 5s ease;
}

.intro-video:hover img {
  transform: scale(1.06);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(241, 135, 0, .38);
}

.play-button:after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.capability {
  padding: 112px 0 135px;
  background: var(--soft);
}

.section-heading {
  position: relative;
  text-align: center;
}

.section-heading span {
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  color: rgba(33, 42, 54, .045);
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.section-heading p {
  width: min(720px, 100%);
  margin: 26px auto 0;
  color: #68727e;
  line-height: 1.7;
}

.capability-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.capability-grid article {
  text-align: center;
}

.capability-grid img {
  display: block;
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(32, 48, 68, .12);
  transition: transform .32s ease, box-shadow .32s ease;
}

.capability-grid article:hover img {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(32, 48, 68, .18);
}

.capability-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.capability-grid p {
  margin: 0;
  color: #7a838e;
  line-height: 1.65;
}

.about-cta {
  padding: 72px 16px 84px;
  text-align: center;
  background: #f6f8fb;
}

.about-cta .about-button {
  margin-top: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  padding: 12px 22px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-video {
    width: min(560px, 100%);
  }

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

}

@media (max-width: 760px) {
  .about-hero {
    min-height: 360px;
  }

  .hero-copy p {
    font-size: 28px;
  }

  .hero-copy h1,
  .intro-copy h2,
  .section-heading h2,
  .about-cta h2 {
    font-size: 26px;
  }

  .about-intro,
  .capability {
    padding-top: 58px;
    padding-bottom: 64px;
  }

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

  .section-heading span {
    top: -20px;
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .about-button,
  .intro-video img,
  .capability-grid img {
    transition: none;
  }
}
