.about-page {
   background: #f7f9fc;
}

.about-page main {
   overflow: hidden;
}

.about-hero {
   min-height: 760px;
   height: 90vh;
   max-height: 940px;
   justify-content: flex-start;
   text-align: left;
}

.about-hero-media {
   height: 116%;
   top: -8%;
}

.about-hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center 48%;
}

.about-hero-overlay {
   position: absolute;
   inset: 0;
   z-index: 2;
   background:
      linear-gradient(90deg, rgba(5, 15, 29, 0.96) 0%, rgba(6, 19, 36, 0.86) 42%, rgba(6, 20, 38, 0.34) 74%, rgba(6, 20, 38, 0.55) 100%),
      linear-gradient(0deg, rgba(5, 15, 29, 0.82) 0%, transparent 45%);
}

.about-hero-grid {
   position: absolute;
   inset: 0;
   z-index: 3;
   opacity: 0.18;
   background-image:
      linear-gradient(rgba(94, 210, 255, 0.18) 1px, transparent 1px),
      linear-gradient(90deg, rgba(94, 210, 255, 0.18) 1px, transparent 1px);
   background-size: 72px 72px;
   mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.about-hero-content {
   position: relative;
   z-index: 5;
   padding-top: 88px;
}

.about-hero-eyebrow {
   display: flex;
   align-items: center;
   gap: 13px;
   margin-bottom: 22px;
   color: #8fe8ff;
   font-family: 'Inter', sans-serif;
   font-size: 0.82rem;
   font-weight: 700;
   letter-spacing: 0.18em;
}

.about-hero-eyebrow span {
   width: 42px;
   height: 2px;
   background: linear-gradient(90deg, #00d4ff, transparent);
}

.about-hero h1 {
   margin: 0;
   color: #fff;
   font-size: clamp(3rem, 4vw, 4rem);
   font-weight: 900;
   line-height: 1.1;
   letter-spacing: -0.045em;
   text-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}

.about-hero h1 span {
   display: inline-block;
   margin-top: 10px;
   background: linear-gradient(115deg, #fff 0%, #6cdbff 46%, #19a8ec 100%);
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;
   -webkit-text-fill-color: transparent;
}

.about-hero-lead {
   max-width: 760px;
   margin: 30px 0 0;
   color: rgba(255, 255, 255, 0.76);
   font-size: clamp(1.05rem, 1.7vw, 1.28rem);
   line-height: 1.9;
}

.about-hero-actions,
.about-cta-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 38px;
}

.about-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   min-height: 52px;
   padding: 14px 24px;
   border: 1px solid transparent;
   border-radius: 8px;
   font-weight: 700;
   text-decoration: none;
   transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.about-btn:hover {
   transform: translateY(-3px);
}

.about-btn-primary {
   background: linear-gradient(135deg, #00c7f4, #1472d3);
   color: #fff;
   box-shadow: 0 14px 34px rgba(0, 154, 225, 0.28);
}

.about-btn-primary:hover {
   color: #fff;
   box-shadow: 0 18px 38px rgba(0, 154, 225, 0.4);
}

.about-btn-ghost {
   border-color: rgba(255, 255, 255, 0.28);
   background: rgba(255, 255, 255, 0.06);
   color: #fff;
   backdrop-filter: blur(12px);
}

.about-btn-ghost:hover {
   border-color: rgba(255, 255, 255, 0.52);
   background: rgba(255, 255, 255, 0.12);
   color: #fff;
}

.about-hero-scroll {
   position: absolute;
   right: 38px;
   bottom: 60px;
   z-index: 5;
   display: flex;
   align-items: center;
   gap: 14px;
   color: rgba(255, 255, 255, 0.42);
   font-family: 'Inter', sans-serif;
   font-size: 0.68rem;
   font-weight: 600;
   letter-spacing: 0.2em;
   transform: rotate(90deg) translateX(100%);
   transform-origin: right bottom;
}

.about-hero-scroll i {
   display: block;
   width: 58px;
   height: 1px;
   overflow: hidden;
   background: rgba(255, 255, 255, 0.24);
}

.about-hero-scroll i::after {
   display: block;
   width: 42%;
   height: 100%;
   background: #54ddff;
   content: '';
   animation: aboutScrollLine 2s ease-in-out infinite;
}

.about-stats-wrap {
   position: relative;
   z-index: 10;
   margin-top: -36px;
}

.about-stats {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.65);
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.92);
   box-shadow: 0 22px 60px rgba(6, 26, 49, 0.13);
   backdrop-filter: blur(22px);
}

.about-stat {
   position: relative;
   padding: 34px 24px;
   text-align: center;
}

.about-stat + .about-stat::before {
   position: absolute;
   top: 25%;
   bottom: 25%;
   left: 0;
   width: 1px;
   background: #dce5ef;
   content: '';
}

.about-stat-value {
   color: #082442;
   font-family: 'Inter', sans-serif;
   font-size: clamp(2rem, 3.3vw, 3.2rem);
   font-weight: 800;
   letter-spacing: -0.04em;
   line-height: 1;
}

.about-stat p {
   margin: 12px 0 0;
   color: #6d7e91;
   font-size: 0.9rem;
   font-weight: 600;
}

.about-story {
   padding-top: 150px;
   background: #f7f9fc;
}

.about-story .container,
.about-choice .container {
   position: relative;
   z-index: 2;
}

.about-story .section-title,
.about-choice .section-title,
.about-presence .section-title {
   max-width: 590px;
}

.about-story-lead {
   margin-bottom: 20px;
   color: #183b5b;
   font-size: 1.18rem;
   font-weight: 600;
   line-height: 1.95;
}

.about-story-lead + p {
   margin-bottom: 0;
   color: #637488;
   font-size: 1.02rem;
   line-height: 1.95;
}

.about-story-signature {
   display: flex;
   align-items: center;
   gap: 18px;
   margin-top: 34px;
   padding-top: 26px;
   border-top: 1px solid #dbe4ed;
}

.about-story-signature span {
   color: #0c79c9;
   font-family: 'Inter', sans-serif;
   font-size: 0.75rem;
   font-weight: 800;
   letter-spacing: 0.16em;
}

.about-story-signature p {
   margin: 0;
   color: #203d58;
   font-weight: 700;
}

.about-story-visual {
   position: relative;
   min-height: 610px;
}

.about-story-main {
   position: absolute;
   top: 0;
   right: 0;
   width: 84%;
   height: 500px;
   overflow: hidden;
   border-radius: 4px 44px 4px 4px;
   box-shadow: 0 28px 70px rgba(10, 38, 65, 0.18);
}

.about-story-main img,
.about-story-inset img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.about-story-inset {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 55%;
   height: 250px;
   overflow: hidden;
   border: 10px solid #f7f9fc;
   border-radius: 4px;
   box-shadow: 0 18px 45px rgba(10, 38, 65, 0.18);
}

.about-story-year {
   position: absolute;
   right: -22px;
   bottom: 34px;
   display: flex;
   flex-direction: column;
   min-width: 158px;
   padding: 24px;
   border-left: 4px solid #00d4ff;
   background: #071d34;
   color: #fff;
   box-shadow: 0 18px 45px rgba(4, 22, 40, 0.28);
}

.about-story-year strong {
   font-family: 'Inter', sans-serif;
   font-size: 2.2rem;
   line-height: 1;
}

.about-story-year span {
   margin-top: 8px;
   color: rgba(255, 255, 255, 0.66);
   font-size: 0.82rem;
}

.about-orbit {
   position: absolute;
   border: 1px solid rgba(24, 132, 203, 0.14);
   border-radius: 50%;
   pointer-events: none;
}

.about-orbit::after {
   position: absolute;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: #00c7f4;
   box-shadow: 0 0 0 7px rgba(0, 199, 244, 0.1);
   content: '';
}

.about-orbit-one {
   top: 5%;
   left: -180px;
   width: 430px;
   height: 430px;
}

.about-orbit-one::after {
   top: 80px;
   right: 32px;
}

.about-orbit-two {
   right: -120px;
   bottom: 3%;
   width: 290px;
   height: 290px;
}

.about-orbit-two::after {
   bottom: 52px;
   left: 15px;
}

.about-video {
   isolation: isolate;
   min-height: 740px;
   display: flex;
   align-items: center;
   background: #061626;
}

.about-video-bg {
   position: absolute;
   inset: -10%;
   z-index: -3;
   background: url('/img/about-bitaint-warehouse-space.avif') center/cover no-repeat;
   opacity: 0.33;
}

.about-video-shade {
   position: absolute;
   inset: 0;
   z-index: -2;
   background:
      radial-gradient(circle at 70% 45%, rgba(0, 174, 239, 0.18), transparent 35%),
      linear-gradient(115deg, rgba(3, 17, 31, 0.98) 0%, rgba(5, 24, 43, 0.86) 55%, rgba(5, 23, 42, 0.96) 100%);
}

.about-video .container {
   position: relative;
   z-index: 2;
}

.about-video-notes {
   display: grid;
   gap: 13px;
   margin-top: 32px;
}

.about-video-notes span {
   display: flex;
   align-items: center;
   gap: 10px;
   color: rgba(255, 255, 255, 0.78);
   font-weight: 600;
}

.about-video-notes i {
   color: #4be1ff;
   font-size: 1.1rem;
}

.about-video-frame {
   position: relative;
   padding: 9px;
   border: 1px solid rgba(102, 222, 255, 0.25);
   background: rgba(255, 255, 255, 0.05);
   box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.about-video-frame::before,
.about-video-frame::after {
   position: absolute;
   z-index: 2;
   width: 55px;
   height: 55px;
   pointer-events: none;
   content: '';
}

.about-video-frame::before {
   top: -12px;
   left: -12px;
   border-top: 2px solid #48dcff;
   border-left: 2px solid #48dcff;
}

.about-video-frame::after {
   right: -12px;
   bottom: -12px;
   border-right: 2px solid #147bd5;
   border-bottom: 2px solid #147bd5;
}

.about-video-frame video {
   display: block;
   width: 100%;
   aspect-ratio: 16 / 9;
   background: #02070c;
   object-fit: cover;
}

.about-video-corner {
   position: absolute;
   right: 9px;
   bottom: -32px;
   color: rgba(120, 223, 255, 0.52);
   font-family: 'Inter', sans-serif;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 0.18em;
}

.about-process {
   background:
      linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
}

.about-process-grid {
   position: relative;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}

.about-process-grid::before {
   display: none;
}

.about-process-card {
   position: relative;
   z-index: 1;
   min-height: 420px;
   overflow: hidden;
   border: 1px solid #e3eaf1;
   border-radius: 16px;
   background: rgba(255, 255, 255, 0.94);
   box-shadow: 0 12px 38px rgba(15, 51, 82, 0.06);
   transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-process-card:hover {
   transform: translateY(-8px);
   border-color: #a9e3f6;
   box-shadow: 0 24px 50px rgba(15, 51, 82, 0.12);
}

.about-process-image {
   position: relative;
   height: 148px;
   margin: 0;
   overflow: hidden;
   background: #dce7ef;
}

.about-process-image::after {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 44%, rgba(5, 28, 48, 0.38));
   content: '';
   pointer-events: none;
}

.about-process-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-process-card:hover .about-process-image img {
   transform: scale(1.06);
}

.about-process-card-body {
   padding: 24px 26px 28px;
}

.about-process-meta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 22px;
}

.about-process-number {
   display: flex;
   align-items: baseline;
   gap: 8px;
   color: #0a75bd;
   font-family: 'Inter', sans-serif;
   font-size: 2rem;
   font-weight: 800;
   letter-spacing: -0.03em;
   line-height: 1;
}

.about-process-number span {
   color: #8ca0b2;
   font-size: 0.63rem;
   letter-spacing: 0.16em;
}

.about-process-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 48px;
   height: 48px;
   border-radius: 12px;
   background: linear-gradient(135deg, #e4f8ff, #eff4ff);
   color: #087ec9;
   font-size: 1.35rem;
}

.about-process-card h3 {
   margin-bottom: 14px;
   color: #112f4c;
   font-size: 1.25rem;
   font-weight: 800;
}

.about-process-card p {
   margin: 0;
   color: #6b7d8f;
   line-height: 1.8;
}

.about-process-visual {
   position: relative;
   margin-top: 56px;
}

.about-process-wide {
   height: 420px;
   margin: 0;
   overflow: hidden;
   border-radius: 18px;
}

.about-process-wide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center 58%;
}

.about-process-caption {
   position: absolute;
   right: 0;
   bottom: 0;
   width: min(520px, 90%);
   padding: 28px 34px;
   background: rgba(5, 25, 45, 0.94);
   color: #fff;
   backdrop-filter: blur(14px);
}

.about-process-caption span {
   color: #51dfff;
   font-family: 'Inter', sans-serif;
   font-size: 0.72rem;
   font-weight: 800;
   letter-spacing: 0.14em;
}

.about-process-caption p {
   margin: 10px 0 0;
   color: rgba(255, 255, 255, 0.74);
   font-size: 1.02rem;
}

.about-belief {
   min-height: 540px;
   height: auto;
   padding: 100px 0;
}

.about-belief .parallax-divider-bg {
   background-position: center 48%;
}

.about-belief .parallax-divider-overlay {
   background:
      linear-gradient(90deg, rgba(4, 16, 29, 0.93), rgba(4, 16, 29, 0.62)),
      linear-gradient(0deg, rgba(4, 16, 29, 0.72), transparent);
   backdrop-filter: none;
}

.about-belief-content {
   position: relative;
   max-width: 900px;
   padding-left: 46px;
   border-left: 3px solid #3bdcff;
}

.about-belief-mark {
   position: absolute;
   top: -82px;
   left: 16px;
   color: rgba(84, 220, 255, 0.16);
   font-family: Georgia, serif;
   font-size: 12rem;
   line-height: 1;
}

.about-belief h2 {
   position: relative;
   margin: 0;
   color: #fff;
   font-size: clamp(2.25rem, 4.8vw, 4rem);
   font-weight: 850;
   line-height: 1.3;
   letter-spacing: -0.035em;
}

.about-belief p {
   max-width: 760px;
   margin: 26px 0 0;
   color: rgba(255, 255, 255, 0.7);
   font-size: 1.08rem;
   line-height: 1.8;
}

.about-choice {
   background: #f7f9fc;
}

.about-orbit-three {
   top: -100px;
   right: -110px;
   width: 380px;
   height: 380px;
}

.about-orbit-three::after {
   bottom: 85px;
   left: 20px;
}

.about-text-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   margin-top: 28px;
   color: #087bc7;
   font-weight: 800;
   text-decoration: none;
}

.about-text-link i {
   transition: transform 0.25s ease;
}

.about-text-link:hover i {
   transform: translateX(5px);
}

.about-choice-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
}

.about-choice-card {
   min-height: 450px;
   overflow: hidden;
   border: 1px solid #dfe8f0;
   border-radius: 18px;
   background: #fff;
   box-shadow: 0 16px 48px rgba(13, 49, 78, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-choice-card:hover {
   transform: translateY(-7px);
   box-shadow: 0 26px 58px rgba(13, 49, 78, 0.14);
}

.about-choice-media {
   position: relative;
   height: 185px;
   margin: 0;
   overflow: hidden;
   background: #dce7ef;
}

.about-choice-media::after {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(4, 24, 43, 0.08) 25%, rgba(4, 24, 43, 0.68) 100%);
   content: '';
   pointer-events: none;
}

.about-choice-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-choice-card:hover .about-choice-media img {
   transform: scale(1.055);
}

.about-choice-body {
   position: relative;
   padding: 34px 32px 32px;
}

.about-choice-icon {
   position: absolute;
   top: -28px;
   right: 28px;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 56px;
   height: 56px;
   border: 5px solid #fff;
   border-radius: 50%;
   background: #e8f8ff;
   color: #1489d1;
   font-size: 1.35rem;
   box-shadow: 0 10px 25px rgba(12, 59, 91, 0.14);
}

.about-choice-tag {
   position: absolute;
   bottom: 18px;
   left: 22px;
   z-index: 2;
   color: #7890a6;
   font-family: 'Inter', sans-serif;
   font-size: 0.72rem;
   font-weight: 800;
   letter-spacing: 0.15em;
}

.about-choice-card h3 {
   margin: 4px 0 16px;
   color: #112f4c;
   font-size: 1.5rem;
   font-weight: 800;
}

.about-choice-card p {
   margin: 0;
   color: #6b7d8f;
   line-height: 1.85;
}

.about-choice-card-dark {
   border-color: #0a2948;
   background:
      linear-gradient(145deg, rgba(19, 107, 170, 0.22), transparent 45%),
      #071d34;
}

.about-choice-card-dark .about-choice-tag {
   color: #a5efff;
}

.about-choice-card-dark .about-choice-icon {
   border-color: #071d34;
   background: #0d3e60;
   color: #53ddff;
}

.about-choice-card-dark h3 {
   color: #fff;
}

.about-choice-card-dark p {
   color: rgba(255, 255, 255, 0.67);
}

.about-presence {
   background: #fff;
}

.about-project-gallery {
   display: grid;
   grid-template-columns: 1.1fr 0.9fr;
   grid-template-rows: repeat(2, 245px);
   gap: 14px;
}

.about-project-gallery figure {
   position: relative;
   overflow: hidden;
   margin: 0;
   border-radius: 12px;
   background: #dfe8ef;
}

.about-project-gallery figure::after {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 62%, rgba(4, 24, 43, 0.25));
   content: '';
   pointer-events: none;
}

.about-project-gallery img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-project-gallery figure:hover img {
   transform: scale(1.045);
}

.about-project-gallery .about-project-main {
   grid-row: 1 / 3;
}

.about-project-gallery .about-project-main img {
   object-position: 58% center;
}

.about-branches {
   position: relative;
   display: grid;
   gap: 0;
   margin-top: 34px;
}

.about-branches::before {
   position: absolute;
   top: 18px;
   bottom: 18px;
   left: 22px;
   width: 1px;
   background: linear-gradient(#33ccea, #1779c7);
   content: '';
}

.about-branch {
   position: relative;
   display: grid;
   grid-template-columns: 46px 1fr;
   gap: 18px;
   padding: 18px 0;
}

.about-branch-index {
   position: relative;
   z-index: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 46px;
   height: 46px;
   border: 4px solid #fff;
   border-radius: 50%;
   background: #0c75bf;
   color: #fff;
   box-shadow: 0 0 0 1px #b7ddec;
   font-family: 'Inter', sans-serif;
   font-size: 0.72rem;
   font-weight: 800;
}

.about-branch h3 {
   margin: 0 0 6px;
   color: #183a57;
   font-size: 1.08rem;
   font-weight: 800;
}

.about-branch p {
   margin: 0 0 5px;
   color: #708193;
   font-size: 0.88rem;
   line-height: 1.6;
}

.about-branch a {
   color: #087bc7;
   font-family: 'Inter', sans-serif;
   font-size: 0.86rem;
   font-weight: 700;
   text-decoration: none;
}

.about-branch a i {
   margin-left: 5px;
   font-size: 0.78rem;
}

.about-cta {
   min-height: 600px;
   height: auto;
   padding: 120px 0;
}

.about-cta .parallax-divider-bg {
   background-position: center;
}

.about-cta .parallax-divider-overlay {
   background:
      radial-gradient(circle at 78% 34%, rgba(20, 133, 205, 0.2), transparent 28%),
      linear-gradient(90deg, rgba(3, 15, 29, 0.95) 0%, rgba(3, 15, 29, 0.77) 55%, rgba(3, 15, 29, 0.5) 100%);
   backdrop-filter: none;
}

.about-cta-content {
   max-width: 860px;
}

.about-cta-kicker {
   margin-bottom: 18px;
   color: #5bdfff;
   font-family: 'Inter', sans-serif;
   font-size: 0.78rem;
   font-weight: 800;
   letter-spacing: 0.18em;
}

.about-cta h2 {
   margin: 0;
   color: #fff;
   font-size: clamp(2.5rem, 5vw, 4.5rem);
   font-weight: 850;
   line-height: 1.16;
   letter-spacing: -0.04em;
}

.about-cta p {
   max-width: 700px;
   margin: 24px 0 0;
   color: rgba(255, 255, 255, 0.72);
   font-size: 1.12rem;
   line-height: 1.8;
}

@keyframes aboutScrollLine {
   0%,
   100% {
      transform: translateX(-110%);
   }
   50% {
      transform: translateX(220%);
   }
}

@media (max-width: 1199.98px) {
   .about-hero {
      min-height: 740px;
      height: 86vh;
   }

   .about-story-year {
      right: 0;
   }

   .about-process-card-body {
      padding: 22px 20px 26px;
   }
}

@media (max-width: 991.98px) {
   .about-hero {
      min-height: 700px;
      height: 84vh;
   }

   .about-hero-overlay {
      background:
         linear-gradient(90deg, rgba(5, 15, 29, 0.94) 0%, rgba(6, 19, 36, 0.72) 70%, rgba(6, 20, 38, 0.52) 100%),
         linear-gradient(0deg, rgba(5, 15, 29, 0.86) 0%, transparent 50%);
   }

   .about-hero-scroll {
      display: none;
   }

   .about-stats {
      grid-template-columns: repeat(2, 1fr);
   }

   .about-stat:nth-child(3)::before {
      display: none;
   }

   .about-stat:nth-child(n + 3) {
      border-top: 1px solid #dce5ef;
   }

   .about-story {
      padding-top: 130px;
   }

   .about-story-visual {
      max-width: 720px;
      margin: 10px auto 0;
   }

   .about-video {
      min-height: auto;
   }

   .about-process-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .about-process-grid::before {
      display: none;
   }

   .about-process-card {
      min-height: 300px;
   }

   .about-choice-grid {
      margin-top: 10px;
   }

   .about-project-gallery {
      max-width: 760px;
      margin: 0 auto;
   }
}

@media (max-width: 767.98px) {
   .about-hero {
      min-height: 720px;
      height: 92svh;
      max-height: none;
   }

   .about-hero-media {
      height: 110%;
      top: -5%;
   }

   .about-hero-media img {
      object-position: 56% center;
   }

   .about-hero-content {
      padding-top: 100px;
   }

   .about-hero-grid {
      background-size: 46px 46px;
   }

   .about-hero h1 {
      font-size: clamp(2.55rem, 11.7vw, 4rem);
      line-height: 1.12;
   }

   .about-hero-lead {
      margin-top: 24px;
      font-size: 1rem;
      line-height: 1.78;
   }

   .about-hero-actions {
      margin-top: 28px;
   }

   .about-btn {
      width: 100%;
   }

   .about-stats-wrap {
      margin-top: -30px;
   }

   .about-stat {
      min-height: 126px;
      padding: 26px 12px;
   }

   .about-stat-value {
      font-size: 2rem;
   }

   .about-stat p {
      font-size: 0.78rem;
      line-height: 1.45;
   }

   .about-story {
      padding-top: 110px;
   }

   .about-page .section-padding {
      padding: 78px 0;
   }

   .about-story-signature {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
   }

   .about-story-visual {
      min-height: 480px;
   }

   .about-story-main {
      width: 92%;
      height: 390px;
      border-radius: 4px 28px 4px 4px;
   }

   .about-story-inset {
      width: 58%;
      height: 190px;
      border-width: 7px;
   }

   .about-story-year {
      right: 0;
      bottom: 18px;
      min-width: 126px;
      padding: 18px;
   }

   .about-story-year strong {
      font-size: 1.75rem;
   }

   .about-video-frame {
      padding: 5px;
   }

   .about-video-corner {
      display: none;
   }

   .about-process-grid {
      grid-template-columns: 1fr;
   }

   .about-process-card {
      min-height: 0;
   }

   .about-process-image {
      height: 190px;
   }

   .about-process-wide {
      height: 350px;
   }

   .about-process-caption {
      width: calc(100% - 20px);
      padding: 22px;
   }

   .about-belief,
   .about-cta {
      min-height: 560px;
      padding: 90px 0;
   }

   .about-belief-content {
      padding-left: 24px;
   }

   .about-belief-mark {
      top: -64px;
      left: 0;
      font-size: 9rem;
   }

   .about-belief h2 {
      font-size: 2.2rem;
   }

   .about-choice-grid {
      grid-template-columns: 1fr;
   }

   .about-choice-card {
      min-height: 330px;
   }

   .about-choice-media {
      height: 210px;
   }

   .about-choice-body {
      padding: 32px 28px;
   }

   .about-project-gallery {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 330px 190px;
   }

   .about-project-gallery .about-project-main {
      grid-column: 1 / 3;
      grid-row: auto;
   }

   .about-cta h2 {
      font-size: 2.55rem;
   }

   .about-cta-actions {
      margin-top: 30px;
   }
}

@media (max-width: 419.98px) {
   .about-hero {
      min-height: 750px;
   }

   .about-hero-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.13em;
   }

   .about-hero h1 {
      font-size: 2.55rem;
   }

   .about-stat p {
      padding: 0 4px;
   }

   .about-story-visual {
      min-height: 440px;
   }

   .about-story-main {
      height: 350px;
   }

   .about-story-inset {
      height: 165px;
   }

   .about-project-gallery {
      grid-template-rows: 290px 160px;
      gap: 9px;
   }
}

@media (prefers-reduced-motion: reduce) {
   .about-page .parallax-layer,
   .about-page [data-parallax-bg],
   .about-page .parallax-divider-bg {
      transform: none !important;
   }

   .about-hero-scroll i::after {
      animation: none;
   }
}
