body.about-redesign-page {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  color: #0e0e0e;
  overflow-x: hidden;
}

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

.about-redesign-page {
  --red: #e8152a;
  --red-dark: #b50d1e;
  --red-pale: #fff0f1;
  --black: #0e0e0e;
  --gray: #6b6b6b;
  --gray-lt: #9a9a9a;
  --border: #e8e8e8;
  --light: #f7f7f5;
  --white: #ffffff;
  --container: 1200px;
  --sp: 100px 0;
}

.about-redesign-page .wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.about-redesign-page .about-hero-v2 {
  width: 100%;
  height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "right left";
  border: 0;
}

.about-redesign-page .about-hero-v2 > * {
  border: 0 !important;
  min-width: 0;
}

.about-redesign-page .about-hero-left {
  grid-area: left;
  position: relative;
  overflow: hidden;
  background: #edeae2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

.about-redesign-page .about-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(160, 140, 120, 0.3) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.about-redesign-page .about-big-num {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: 340px;
  line-height: 1;
  color: rgba(160, 140, 120, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}

.about-redesign-page .about-ring-outer {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(200, 50, 50, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aboutSpin 35s linear infinite;
}

.about-redesign-page .about-ring-mid {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200, 50, 50, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aboutSpin 22s linear infinite reverse;
}

.about-redesign-page .about-ticks {
  position: absolute;
  width: 440px;
  height: 440px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aboutSpin 35s linear infinite;
  z-index: 2;
}

.about-redesign-page .about-tick {
  position: absolute;
  width: 2px;
  background: rgba(200, 50, 50, 0.22);
  top: 0;
  left: 50%;
  transform-origin: 50% 220px;
}

.about-redesign-page .about-core {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #f5f0e8;
  border: 2px solid rgba(200, 50, 50, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 4;
  box-shadow: 0 8px 40px rgba(200, 50, 50, 0.08);
}

.about-redesign-page .about-core-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  color: #1a1614;
  line-height: 1;
}

.about-redesign-page .about-core-num sup {
  font-size: 26px;
  color: #ff0000;
  vertical-align: super;
}

.about-redesign-page .about-core-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9c8e85;
}

.about-redesign-page .about-orbit-label {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(100, 80, 70, 0.4);
  white-space: nowrap;
  z-index: 5;
}

.about-redesign-page .about-ol-top {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.about-redesign-page .about-ol-right {
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

.about-redesign-page .about-ol-bottom {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.about-redesign-page .about-ol-left {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.about-redesign-page .about-year-tag {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(100, 80, 70, 0.38);
  opacity: 0;
  animation: aboutFadeUp 0.5s ease 0.9s forwards;
}

.about-redesign-page .about-left-stats {
  position: absolute;
  bottom: 44px;
  left: 44px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: aboutFadeUp 0.6s ease 1.3s forwards;
}

.about-redesign-page .about-lstat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-redesign-page .about-lstat-bar {
  width: 3px;
  height: 30px;
  background: #ff0000;
  flex-shrink: 0;
}

.about-redesign-page .about-lstat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: #1a1614;
  line-height: 1;
}

.about-redesign-page .about-lstat-num sup {
  font-size: 13px;
  color: #ff0000;
  vertical-align: super;
}

.about-redesign-page .about-lstat-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c8e85;
}

.about-redesign-page .about-hero-right {
  grid-area: right;
  background: #faf8f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 0;
}

.about-redesign-page .about-hero-right-inner {
  width: 100%;
  max-width: 620px;
  padding: 148px 72px 120px;
  box-sizing: border-box;
}

.about-redesign-page .about-hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.about-redesign-page .about-ghost {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 360px;
  line-height: 1;
  color: rgba(180, 160, 140, 0.06);
  pointer-events: none;
  user-select: none;
}

.about-redesign-page .about-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: aboutFadeUp 0.7s ease 0.2s forwards;
  position: relative;
  z-index: 1;
}

.about-redesign-page .about-eyebrow::before {
  content: none;
}

.about-redesign-page .about-headline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: aboutFadeUp 0.7s ease 0.38s forwards;
}

.about-redesign-page .about-l1 {
  display: block;
  font-size: clamp(38px, 3.8vw, 60px);
  color: #1a1614;
}

.about-redesign-page .about-l2 {
  display: block;
  font-size: clamp(42px, 4.2vw, 66px);
  font-style: italic;
  color: #ff0000;
}

.about-redesign-page .about-l3 {
  display: block;
  font-size: clamp(38px, 3.8vw, 60px);
  -webkit-text-stroke: 1.5px rgba(26, 22, 20, 0.18);
  color: transparent;
}

.about-redesign-page .about-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: aboutFadeUp 0.7s ease 0.52s forwards;
  position: relative;
  z-index: 1;
}

.about-redesign-page .about-dl {
  width: 40px;
  height: 1px;
  background: rgba(26, 22, 20, 0.12);
}

.about-redesign-page .about-dd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff0000;
}

.about-redesign-page .about-body {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(26, 22, 20, 0.55);
  max-width: 420px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: aboutFadeUp 0.7s ease 0.66s forwards;
}

.about-redesign-page .about-body strong {
  color: rgba(26, 22, 20, 0.85);
  font-weight: 600;
}

.about-redesign-page .about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: aboutFadeUp 0.7s ease 0.8s forwards;
}

.about-redesign-page .about-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-redesign-page .about-sn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: #1a1614;
  line-height: 1;
}

.about-redesign-page .about-sn span {
  color: #ff0000;
}

.about-redesign-page .about-sl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c8e85;
}

.about-redesign-page .about-ss {
  width: 1px;
  height: 32px;
  background: rgba(26, 22, 20, 0.1);
}

.about-redesign-page .about-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: aboutFadeUp 0.7s ease 0.94s forwards;
}

.about-redesign-page .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.about-redesign-page .about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1a1614;
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-redesign-page .about-btn:hover::before {
  transform: translateX(0);
}

.about-redesign-page .about-btn:hover {
  color: #fff;
}

.about-redesign-page .about-btn span {
  position: relative;
  z-index: 1;
}

.about-redesign-page .about-lnk {
  font-size: 12px;
  font-weight: 500;
  color: rgba(26, 22, 20, 0.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.about-redesign-page .about-lnk:hover {
  color: #1a1614;
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes aboutSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .about-redesign-page .about-hero-right-inner {
    padding: 128px 48px 96px;
  }

  .about-redesign-page .about-big-num {
    font-size: 300px;
  }

  .about-redesign-page .about-ring-outer,
  .about-redesign-page .about-ticks {
    width: 390px;
    height: 390px;
  }

  .about-redesign-page .about-ring-mid {
    width: 265px;
    height: 265px;
  }

  .about-redesign-page .about-tick {
    transform-origin: 50% 195px;
  }

  .about-redesign-page .about-core {
    width: 172px;
    height: 172px;
  }

  .about-redesign-page .about-core-num {
    font-size: 54px;
  }

  .about-redesign-page .about-year-tag {
    top: 30px;
    left: 30px;
  }

  .about-redesign-page .about-left-stats {
    bottom: 30px;
    left: 30px;
  }
}

@media (max-width: 1024px) {
  .about-redesign-page .about-hero-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";
    height: auto;
  }

  .about-redesign-page .about-hero-right-inner {
    max-width: 100%;
    padding: 94px 30px 58px;
  }

  .about-redesign-page .about-body {
    max-width: 100%;
  }

  .about-redesign-page .about-hero-left {
    height: clamp(300px, 56vw, 460px);
  }

  .about-redesign-page .about-ghost {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-redesign-page .about-hero-right-inner {
    padding: 78px 22px 50px;
  }

  .about-redesign-page .about-eyebrow {
    margin-bottom: 14px;
    letter-spacing: 3px;
  }

  .about-redesign-page .about-l1,
  .about-redesign-page .about-l3 {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  .about-redesign-page .about-l2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .about-redesign-page .about-headline {
    margin-bottom: 12px;
  }

  .about-redesign-page .about-body {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.56;
    margin-bottom: 18px;
  }

  .about-redesign-page .about-cta {
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .about-redesign-page .about-hero-right-inner {
    padding: 68px 16px 42px;
  }

  .about-redesign-page .about-hero-left {
    height: clamp(260px, 72vw, 360px);
  }

  .about-redesign-page .about-big-num {
    font-size: 220px;
  }

  .about-redesign-page .about-ring-outer,
  .about-redesign-page .about-ticks {
    width: 300px;
    height: 300px;
  }

  .about-redesign-page .about-ring-mid {
    width: 210px;
    height: 210px;
  }

  .about-redesign-page .about-tick {
    transform-origin: 50% 150px;
  }

  .about-redesign-page .about-core {
    width: 136px;
    height: 136px;
  }

  .about-redesign-page .about-core-num {
    font-size: 42px;
  }

  .about-redesign-page .about-core-num sup {
    font-size: 18px;
  }

  .about-redesign-page .about-core-lbl {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .about-redesign-page .about-ol-left,
  .about-redesign-page .about-ol-right {
    display: none;
  }

  .about-redesign-page .about-orbit-label {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .about-redesign-page .about-year-tag {
    top: 16px;
    left: 16px;
    letter-spacing: 2px;
  }

  .about-redesign-page .about-left-stats {
    bottom: 16px;
    left: 16px;
  }

  .about-redesign-page .about-lstat {
    gap: 8px;
  }

  .about-redesign-page .about-lstat-bar {
    height: 20px;
  }

  .about-redesign-page .about-lstat-num {
    font-size: 18px;
  }

  .about-redesign-page .about-lstat-lbl {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .about-redesign-page .about-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }
}

.about-redesign-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.about-redesign-page .eyebrow.red {
  background: var(--red-pale);
  border: 1px solid rgba(232, 21, 42, 0.2);
  color: var(--red);
}

.about-redesign-page .eyebrow.light {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gray);
}

.about-redesign-page .eyebrow.ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
}

.about-redesign-page .hdl {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--black);
}

.about-redesign-page .btn-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--black);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.about-redesign-page .btn-black:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.about-redesign-page .btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(232, 21, 42, 0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.about-redesign-page .btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 21, 42, 0.38);
}

.about-redesign-page .btn-ghost-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.about-redesign-page .btn-ghost-w:hover {
  border-color: var(--white);
  color: var(--white);
}

.about-redesign-page .s-hero {
  background: var(--white);
}

.about-redesign-page .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  gap: 0;
}

.about-redesign-page .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 0;
  border-right: 4px solid var(--red);
}

.about-redesign-page .hero-hdl {
  font-size: clamp(36px, 4vw, 60px);
  margin-bottom: 22px;
}

.about-redesign-page .hero-hdl .ac {
  color: var(--red);
}

.about-redesign-page .hero-hdl .it {
  font-style: italic;
}

.about-redesign-page .hero-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.78;
  max-width: 400px;
  margin-bottom: 38px;
}

.about-redesign-page .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 72px 56px;
}

.about-redesign-page .video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.13);
  border: 1.5px solid var(--border);
}

.about-redesign-page .video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}

.about-redesign-page .vid-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.about-redesign-page .vid-arr.l {
  left: -17px;
}

.about-redesign-page .vid-arr.r {
  right: -17px;
}

.about-redesign-page .vid-arr i {
  color: var(--white);
  font-size: 11px;
}

.about-redesign-page .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-redesign-page .play-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.about-redesign-page .play-circle:hover {
  transform: scale(1.1);
  background: var(--red);
}

.about-redesign-page .play-circle:hover i {
  color: var(--white);
}

.about-redesign-page .play-circle i {
  color: var(--red);
  font-size: 22px;
  margin-left: 4px;
  transition: color 0.2s;
}

.about-redesign-page .s-mission {
  background: var(--light);
  padding: var(--sp);
}

.about-redesign-page .mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-redesign-page .mission-hdl {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 18px;
}

.about-redesign-page .mission-hdl em {
  font-style: italic;
  color: var(--red);
}

.about-redesign-page .mission-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 430px;
}

.about-redesign-page .pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-redesign-page .pillar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-redesign-page .pillar:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 21, 42, 0.09);
}

.about-redesign-page .pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  font-size: 16px;
  flex-shrink: 0;
}

.about-redesign-page .pillar-icon.r {
  background: var(--red-pale);
  color: var(--red);
}

.about-redesign-page .pillar-icon.d {
  background: #efefef;
  color: var(--black);
}

.about-redesign-page .pillar-title {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 7px;
  line-height: 1.3;
}

.about-redesign-page .pillar-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.62;
}

.about-redesign-page .s-stats {
  background: var(--black);
  padding: var(--sp);
  position: relative;
  overflow: hidden;
}

.about-redesign-page .s-stats::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(232, 21, 42, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.about-redesign-page .stats-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.about-redesign-page .stats-title em {
  font-style: italic;
  color: var(--red);
}

.about-redesign-page .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-redesign-page .stat-cell {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

.about-redesign-page .stat-cell:last-child {
  border-right: none;
}

.about-redesign-page .stat-cell:hover {
  background: rgba(232, 21, 42, 0.09);
}

.about-redesign-page .stat-cell i {
  font-size: 18px;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}

.about-redesign-page .stat-n {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.about-redesign-page .stat-n span {
  color: var(--red);
}

.about-redesign-page .stat-l {
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
}

.about-redesign-page .s-standfor {
  background: var(--white);
  padding: var(--sp);
}

.about-redesign-page .standfor-hdr {
  text-align: center;
  margin-bottom: 60px;
}

.about-redesign-page .standfor-hdl {
  font-size: clamp(26px, 3vw, 44px);
  max-width: 800px;
  margin: 0 auto 18px;
}

.about-redesign-page .standfor-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.78;
  max-width: 580px;
  margin: 0 auto;
}

.about-redesign-page .standfor-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start;
}

.about-redesign-page .sf-panel {
  background: var(--black);
  border-radius: 8px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.about-redesign-page .sf-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.about-redesign-page .sf-panel-tag {
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-redesign-page .sf-panel-hdl {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}

.about-redesign-page .sf-panel-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.72;
  margin-bottom: 26px;
}

.about-redesign-page .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-redesign-page .chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}

.about-redesign-page .chip:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.about-redesign-page .sf-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-redesign-page .sf-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-redesign-page .sf-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232, 21, 42, 0.09);
}

.about-redesign-page .sf-tag {
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-redesign-page .sf-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  transition: background 0.2s, border-color 0.2s;
}

.about-redesign-page .sf-card:hover .sf-icon {
  background: var(--red-pale);
  border-color: rgba(232, 21, 42, 0.2);
}

.about-redesign-page .sf-icon i {
  font-size: 17px;
  color: var(--red);
}

.about-redesign-page .sf-title {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.about-redesign-page .sf-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
}

.about-redesign-page .s-transform {
  background: var(--light);
  padding: var(--sp);
  position: relative;
}

.about-redesign-page .s-transform::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.about-redesign-page .transform-hdr {
  margin-bottom: 48px;
}

.about-redesign-page .transform-hdl {
  font-size: clamp(26px, 2.8vw, 42px);
  max-width: 540px;
  margin-top: 10px;
}

.about-redesign-page .t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-redesign-page .t-wrap {
  position: relative;
}

.about-redesign-page .t-wrap:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -10px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--red);
  opacity: 0.5;
  z-index: 3;
}

.about-redesign-page .t-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.about-redesign-page .t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--red);
}

.about-redesign-page .t-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-redesign-page .t-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.3s;
}

.about-redesign-page .t-card:hover .t-img {
  filter: brightness(0.88);
}

.about-redesign-page .t-body {
  padding: 18px 18px 20px;
}

.about-redesign-page .t-title {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 7px;
}

.about-redesign-page .t-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

.about-redesign-page .s-platform {
  background: var(--white);
  padding: var(--sp);
}

.about-redesign-page .platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-redesign-page .platform-hdl {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 16px;
}

.about-redesign-page .platform-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 34px;
}

.about-redesign-page .cat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-redesign-page .cat-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-redesign-page .cat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.about-redesign-page .cat-card:hover {
  border-color: rgba(232, 21, 42, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(232, 21, 42, 0.08);
}

.about-redesign-page .cat-card:hover::before {
  opacity: 1;
}

.about-redesign-page .cat-ico {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--light);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--red);
  transition: background 0.2s, border-color 0.2s;
}

.about-redesign-page .cat-card:hover .cat-ico {
  background: var(--red-pale);
  border-color: rgba(232, 21, 42, 0.2);
}

.about-redesign-page .cat-tag {
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 4px;
}

.about-redesign-page .cat-title {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 5px;
}

.about-redesign-page .cat-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

.about-redesign-page .s-cta {
  background: var(--black);
  padding: var(--sp);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-redesign-page .s-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(232, 21, 42, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-redesign-page .s-cta::after {
  content: '"';
  position: absolute;
  bottom: -80px;
  right: 24px;
  font-family: "Playfair Display", serif;
  font-size: 280px;
  font-weight: 900;
  color: rgba(232, 21, 42, 0.05);
  line-height: 1;
  pointer-events: none;
}

.about-redesign-page .cta-inner {
  position: relative;
  z-index: 1;
}

.about-redesign-page .s-cta .eyebrow {
  margin: 0 auto 14px;
}

.about-redesign-page .cta-hdl {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.8vw, 66px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.06;
  color: var(--white);
  max-width: 780px;
  margin: 14px auto 16px;
}

.about-redesign-page .cta-hdl em {
  font-style: italic;
  color: var(--red);
}

.about-redesign-page .cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.46);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.72;
}

.about-redesign-page .cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 1100px) {
  .about-redesign-page .hero-inner,
  .about-redesign-page .mission-grid,
  .about-redesign-page .standfor-body,
  .about-redesign-page .platform-grid {
    grid-template-columns: 1fr;
  }

  .about-redesign-page .hero-left {
    border-right: none;
    border-bottom: 4px solid var(--red);
    padding-right: 0;
  }

  .about-redesign-page .hero-right {
    padding: 48px 0 0;
  }

  .about-redesign-page .stats-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .about-redesign-page .stats-row .stat-cell:nth-child(2n) {
    border-right: none;
  }

  .about-redesign-page .pillars,
  .about-redesign-page .sf-cards,
  .about-redesign-page .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-redesign-page .t-wrap:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .about-redesign-page .s-mission,
  .about-redesign-page .s-stats,
  .about-redesign-page .s-standfor,
  .about-redesign-page .s-transform,
  .about-redesign-page .s-platform,
  .about-redesign-page .s-cta {
    padding: 72px 0;
  }

  .about-redesign-page .hero-left,
  .about-redesign-page .hero-right {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-redesign-page .hero-btns,
  .about-redesign-page .cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-redesign-page .cta-btns {
    align-items: center;
  }

  .about-redesign-page .pillars,
  .about-redesign-page .sf-cards,
  .about-redesign-page .t-grid,
  .about-redesign-page .stats-row {
    grid-template-columns: 1fr;
  }

  .about-redesign-page .t-wrap::after {
    display: none;
  }

  .about-redesign-page .standfor-body {
    gap: 16px;
  }
}
