.about-v2 {
  --about-red: #e31b23;
  --about-red-soft: rgba(227, 27, 35, 0.18);
  --about-black: #070707;
  --about-panel: #111111;
  --about-panel-2: #171717;
  --about-line: rgba(255, 255, 255, 0.11);
  --about-muted: #b7b7b7;
  overflow: hidden;
  color: #f7f7f7;
  background: var(--about-black);
}

.about-v2 *,
.about-v2 *::before,
.about-v2 *::after {
  box-sizing: border-box;
}

.about-v2 a {
  color: inherit;
}

.about-v2 .about-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  isolation: isolate;
  border-bottom: 1px solid rgba(227, 27, 35, 0.55);
}

.about-hero-media,
.about-hero-media img,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-media {
  z-index: -3;
  background: #111;
}

.about-hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.06);
  transform: translate3d(0, var(--about-hero-shift, 0), 0);
  will-change: transform;
}

.about-hero-shade {
  z-index: -2;
  background: rgba(0, 0, 0, 0.62);
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(5, 5, 5, 0.62);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: 48px;
  align-items: end;
  padding: 72px 0;
}

.about-kicker,
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #ff5057;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-kicker::before,
.about-label::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--about-red);
}

.about-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.72;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--about-red);
  border-radius: 4px;
  color: #fff;
  background: var(--about-red);
  box-shadow: 0 14px 34px rgba(227, 27, 35, 0.24);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.about-btn:hover,
.about-btn:focus-visible {
  transform: translateY(-3px);
  background: #ff2a32;
  border-color: #ff2a32;
}

.about-btn.is-ghost {
  color: #fff;
  background: rgba(7, 7, 7, 0.62);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.about-btn.is-ghost:hover,
.about-btn.is-ghost:focus-visible {
  background: #171717;
  border-color: #fff;
}

.about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-hero-points li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #eee;
  background: rgba(7, 7, 7, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.about-hero-facts {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.about-hero-facts > span {
  display: block;
  margin-bottom: 15px;
  color: #ff5f65;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.about-fact-list div {
  min-height: 112px;
  padding: 17px;
  border-top: 1px solid var(--about-line);
}

.about-fact-list div:nth-child(odd) {
  border-right: 1px solid var(--about-line);
}

.about-fact-list dt {
  margin: 0 0 7px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-fact-list dd {
  margin: 0;
  color: var(--about-muted);
  font-size: 12px;
  line-height: 1.5;
}

.about-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--about-line);
  background: #0d0d0d;
}

.about-marquee-track {
  width: max-content;
  display: flex;
  animation: aboutMarquee 28s linear infinite;
}

.about-marquee-track span {
  display: block;
  padding: 16px 30px;
  color: #cfcfcf;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-marquee-track b {
  margin-right: 10px;
  color: var(--about-red);
}

@keyframes aboutMarquee {
  to { transform: translateX(-50%); }
}

.about-band {
  padding: 88px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-band.is-deep {
  background: #0c0c0c;
}

.about-band.is-light {
  color: #141414;
  background: #f1f1ef;
}

.about-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.about-section-head h2,
.about-split-copy h2,
.about-expert-copy h2,
.about-final h2 {
  margin: 0;
  color: inherit;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-section-head p,
.about-split-copy > p,
.about-expert-copy > p {
  margin: 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.82;
}

.about-band.is-light .about-section-head p,
.about-band.is-light .about-split-copy > p {
  color: #4b4b4b;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.about-split-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--about-line);
  border-radius: 8px;
  background: #111;
}

.about-split-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.about-media-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
  font-size: 13px;
  line-height: 1.55;
  backdrop-filter: blur(8px);
}

.about-principles {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-principles li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--about-line);
  border-radius: 6px;
  background: var(--about-panel);
  color: #d3d3d3;
  line-height: 1.65;
}

.about-principles li::before {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  left: 17px;
  color: #ff555c;
  font-size: 12px;
  font-weight: 900;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-service {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--about-line);
  border-radius: 7px;
  background: var(--about-panel);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.about-service:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 27, 35, 0.64);
  background: var(--about-panel-2);
}

.about-service .about-service-num {
  color: #ff565d;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.about-service h3 {
  margin: 24px 0 12px;
  color: #fff;
  font-size: 21px;
  line-height: 1.28;
}

.about-service p {
  margin: 0 0 20px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.72;
}

.about-service a {
  margin-top: auto;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.about-service a::after {
  content: "  >";
  color: var(--about-red);
}

.about-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-step {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.about-step span {
  color: var(--about-red);
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.about-step h3 {
  margin: 30px 0 12px;
  color: #111;
  font-size: 21px;
  line-height: 1.3;
}

.about-step p {
  margin: 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.72;
}

.about-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: 18px;
}

.about-tech-copy,
.about-tech-facts {
  padding: 32px;
  border: 1px solid var(--about-line);
  border-radius: 8px;
  background: var(--about-panel);
}

.about-tech-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-tech-copy p {
  margin: 0 0 16px;
  color: var(--about-muted);
  line-height: 1.82;
}

.about-text-link {
  display: inline-flex;
  margin-top: 5px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.about-text-link::after {
  content: "  >";
  margin-left: 8px;
  color: var(--about-red);
}

.about-tech-facts {
  display: grid;
  gap: 10px;
}

.about-tech-facts div {
  padding: 16px;
  border-left: 3px solid var(--about-red);
  background: #0b0b0b;
}

.about-tech-facts strong,
.about-tech-facts span {
  display: block;
}

.about-tech-facts strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.about-tech-facts span {
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-case {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--about-line);
  border-radius: 7px;
  background: var(--about-panel);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.about-case:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 27, 35, 0.7);
}

.about-case img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #171717;
}

.about-case-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.about-case-copy span {
  color: #ff5b62;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-case-copy h3 {
  margin: 10px 0 9px;
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
}

.about-case-copy p {
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.62;
}

.about-case-copy b {
  margin-top: auto;
  padding-top: 18px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.about-expert {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.about-expert-card,
.about-expert-copy {
  padding: 32px;
  border: 1px solid var(--about-line);
  border-radius: 8px;
  background: var(--about-panel);
}

.about-expert-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--about-red);
}

.about-expert-card .about-role {
  color: #ff5d64;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-expert-card h3 {
  margin: 20px 0 8px;
  color: #fff;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.about-expert-card p {
  margin: 0;
  color: var(--about-muted);
  line-height: 1.72;
}

.about-expert-card a {
  margin-top: 30px;
  font-weight: 900;
  text-decoration: none;
}

.about-expert-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.about-expert-copy li {
  padding: 14px 16px;
  border-left: 2px solid var(--about-red);
  color: #d5d5d5;
  background: #0b0b0b;
  line-height: 1.62;
}

.about-proof-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.about-proof-links a {
  padding: 16px;
  border: 1px solid var(--about-line);
  border-radius: 5px;
  color: #fff;
  background: #0c0c0c;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.about-proof-links a:hover {
  border-color: var(--about-red);
}

.about-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-faq details {
  border: 1px solid var(--about-line);
  border-radius: 6px;
  background: var(--about-panel);
}

.about-faq summary {
  position: relative;
  cursor: pointer;
  padding: 20px 52px 20px 20px;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.about-faq summary::-webkit-details-marker {
  display: none;
}

.about-faq summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  color: #ff545b;
  font-size: 24px;
  font-weight: 500;
}

.about-faq details[open] summary::after {
  content: "-";
}

.about-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.74;
}

.about-final {
  position: relative;
  padding: 88px 0;
  text-align: center;
  background: #0c0c0c;
  border-top: 1px solid rgba(227, 27, 35, 0.45);
}

.about-final::before,
.about-final::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(227, 27, 35, 0.26);
}

.about-final::before { left: 18%; }
.about-final::after { right: 18%; }

.about-final .about-wrap {
  position: relative;
  z-index: 1;
}

.about-final h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 58px;
}

.about-final p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-final .about-actions {
  justify-content: center;
}

.about-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .about-hero-grid,
  .about-section-head,
  .about-split,
  .about-tech-grid,
  .about-expert {
    grid-template-columns: 1fr;
  }

  .about-hero::after {
    width: 100%;
    border-right: 0;
  }

  .about-hero-facts {
    max-width: 660px;
  }

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

  .about-case-grid,
  .about-proof-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-split-media,
  .about-split-media img {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .about-v2 .about-wrap {
    width: min(100% - 28px, 1180px);
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero-grid {
    gap: 26px;
    padding: 52px 0 38px;
  }

  .about-hero h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  .about-hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .about-actions,
  .about-actions .about-btn {
    width: 100%;
  }

  .about-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-points li {
    text-align: center;
  }

  .about-hero-facts {
    padding: 18px;
  }

  .about-fact-list div {
    min-height: 104px;
    padding: 14px 11px;
  }

  .about-fact-list dt {
    font-size: 23px;
  }

  .about-band,
  .about-final {
    padding: 58px 0;
  }

  .about-section-head {
    gap: 18px;
    margin-bottom: 26px;
  }

  .about-section-head h2,
  .about-split-copy h2,
  .about-expert-copy h2,
  .about-tech-copy h2,
  .about-final h2 {
    font-size: 37px;
    line-height: 1.02;
  }

  .about-section-head p,
  .about-split-copy > p,
  .about-expert-copy > p,
  .about-final p {
    font-size: 14px;
  }

  .about-split-media,
  .about-split-media img {
    min-height: 390px;
  }

  .about-service-grid,
  .about-process,
  .about-case-grid,
  .about-proof-links,
  .about-faq {
    grid-template-columns: 1fr;
  }

  .about-service,
  .about-step {
    min-height: 0;
  }

  .about-tech-copy,
  .about-tech-facts,
  .about-expert-card,
  .about-expert-copy {
    padding: 22px;
  }

  .about-expert-card h3 {
    font-size: 44px;
  }

  .about-case {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .about-case img {
    height: 100%;
    aspect-ratio: auto;
  }

  .about-case-copy {
    padding: 15px;
  }

  .about-case-copy h3 {
    font-size: 16px;
  }

  .about-final::before { left: 10px; }
  .about-final::after { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-marquee-track,
  .about-reveal,
  .about-hero-media img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .about-reveal {
    opacity: 1;
  }
}
