







/* =========================================================
   CUSTOM SOFTWARE DEVELOPMENT — MTL PREMIUM LAYOUT
   Layout 02 / Digital Product Studio
========================================================= */




:root{
    --black:#0a0a09;
    --black-2:#11110f;
    --black-3:#181815;

    --white:#fff;
    --off-white:#f8f6f1;

    --beige:#e8dfd0;
    --beige-2:#dcd0bd;

    --dark-text:#151512;
    --muted:#98958d;

    --line-dark:rgba(255,255,255,.13);
    --line-light:rgba(0,0,0,.12);
    --ease:cubic-bezier(.2,.65,.2,1);
}


/* =========================================================
   RESET
========================================================= */
body{
    color:white;
}
img{
    display:block;
    width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    font:inherit;
}



section{
    position:relative;
}

p{
    font-size:16px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:12px;
    font-weight:600;

    letter-spacing:2.2px;
    text-transform:uppercase;

    margin-bottom:25px;
}

.eyebrow:before{
    content:"";

    width:30px;
    height:1px;

    background:currentColor;
}

h1,h2,h3,h4{
    font-weight:500;
}

h1{
    font-size:clamp(45px,7vw,64px);
    line-height:.98;
    letter-spacing:-3px;
}

h2{
    font-size:clamp(38px,5vw,60px);
    line-height:1.03;
    letter-spacing:-2.5px;
}

h3{
    font-size:25px;
    line-height:1.15;
}

.muted{
    color:var(--muted);
}


/* =========================================================
   BUTTON
========================================================= */

.mtl-button{
    position:relative;

    display:inline-flex;
    align-items:center;
    gap:20px;

    padding:15px 23px;

    border:1px solid rgba(255,255,255,.28);
    border-radius:100px;

    overflow:hidden;

    transition:.45s var(--ease);
}

.mtl-button:before{
    content:"";

    position:absolute;
    inset:0;

    background:var(--white);

    transform:translateY(102%);

    transition:.45s var(--ease);
}

.mtl-button span{
    position:relative;
    z-index:2;
}

.mtl-button:hover{
    color:var(--black);
}

.mtl-button:hover:before{
    transform:translateY(0);
}

.mtl-button:hover .arrow{
    transform:translate(5px,-5px);
}

.arrow{
    transition:.4s var(--ease);
}





/* =========================
   HERO
========================= */

.cs-hero {

  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #090909;
  color: #fff;
  isolation: isolate;
}

/* Background image */
.cs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
    width: 100% !important;
  background-image:
  url("../images/services/software development/banner.webp");

  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroImage 1.8s ease-out forwards;
}

/* Dark premium overlay */
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.94) 0%,
      rgba(8, 8, 8, 0.78) 42%,
      rgba(8, 8, 8, 0.52) 75%,
      rgba(8, 8, 8, 0.68) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.05) 45%,
      rgba(0,0,0,0.7) 100%
    );
}

/* Very subtle editorial texture */
.cs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.035) 1px,
      transparent 1px
    );

  background-size: 90px 90px;
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    transparent 75%
  );
}

/* Container */
.cs-hero-inner {
  position: relative;
  width: min(1400px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
 
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 52px 0 38px;
}

/* Top row */
/* .cs-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
} */

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;

  color: #e8dfd0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-eyebrow-line {
  width: 42px;
  height: 1px;
  background: #e8dfd0;
}

.cs-hero-label {
  font-size: 16px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}

/* Main content */
.cs-hero-content {
  max-width: 1400px;
  margin-top: auto;
  margin-bottom: auto;
}

.cs-hero-kicker {
  margin: 0 0 18px;

  font-size: 16px;
  letter-spacing: 0.16em;
  color: #e8dfd0;
  font-weight: 500;
}

.cs-hero h1 {
  margin: 0;

  font-size: clamp(48px, 7vw, 65px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 950px;
}

.cs-hero h1 span {
  color: #e8dfd0;
}

/* Bottom content */
.cs-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;

  margin-top: 45px;
}

.cs-hero-bottom p {
  max-width: 530px;
  margin: 0;

  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

/* CTA */
.cs-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;

  padding: 16px 19px 16px 24px;

  color: #090909;
  background: #e8dfd0;

  text-decoration: none;
  font-size: 16px;
  font-weight: 500;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.cs-hero-button:hover {
  transform: translateY(-5px);
  background: #fff;
}

.cs-button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  background: #090909;
  color: #fff;

  transition: transform 0.35s ease;
}

.cs-hero-button:hover .cs-button-arrow {
  transform: rotate(45deg);
}


/* Entrance animations */
.reveal-hero {
  opacity: 0;
  transform: translateY(35px);
color: white !important;
  animation: heroReveal 0.9s cubic-bezier(.22,1,.36,1) forwards;
}

/* .cs-hero-top.reveal-hero {
  animation-delay: 0.15s;
} */

.cs-hero-kicker.reveal-hero {
  animation-delay: 0.35s;
}

.cs-hero h1.reveal-hero {
  animation-delay: 0.5s;
}

.cs-hero-bottom.reveal-hero {
  animation-delay: 0.7s;
}

/* Background entrance */
@keyframes heroImage {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

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

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .cs-hero {
    min-height: 700px;
    height: auto;
  }

  .cs-hero-inner {
    width: min(100% - 40px, 700px);
    padding: 35px 0 30px;
  }

  .cs-hero-top {
    align-items: flex-start;
  }

  .cs-hero-label {
    display: none;
  }

  .cs-hero-content {
    padding: 100px 0 80px;
  }

  .cs-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .cs-hero h1 {
    font-size: clamp(46px, 11vw, 62px);
  }
}

@media (max-width: 600px) {

  .cs-hero {
    min-height: 680px;
  }

  .cs-hero-inner {
    width: calc(100% - 32px);
  }

  .cs-hero-bg {
    background-position: 62% center;
  }

  .cs-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8,8,8,0.94) 0%,
        rgba(8,8,8,0.78) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.8)
      );
  }

  .cs-hero-content {
    padding: 80px 0 65px;
  }

  .cs-hero h1 {
    font-size: clamp(45px, 14vw, 58px);
  }

  .cs-hero-bottom p {
    max-width: 100%;
  }

  
}

/* =========================================================
   CREDIBILITY STRIP
========================================================= */

.credibility {
    background: var(--beige);
    color: var(--black);
    padding: 28px 0;
    overflow: hidden;
}

.credibility .container {
    max-width: 100%;
    padding: 0;
}

.credibility-track {
    display: flex;
    align-items: center;
    width: max-content;
    flex-wrap: nowrap;
    gap: 35px;

    animation: credibility-slider 20s linear infinite;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 12px;

    flex: 0 0 auto;

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    white-space: nowrap;
}

.credibility-item::after {
    content: "✦";
    opacity: .45;
}

@keyframes credibility-slider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* =========================================================
   INTRO IMAGE STORY
========================================================= */

.story{
    background:var(--white);
    color:var(--dark-text);
    width: min(1400px, calc(100% - 52px));
  margin: 0 auto;
    padding:130px 0;
}

.story-grid{
    display:grid;
    max-width: 1400px !important;
    grid-template-columns:
        .75fr
        1.25fr;

    gap:100px;

    align-items:center;
}

.story-copy .eyebrow{
    color:#68645c;
}

.story-copy p{
    color:#67635b;

    max-width:530px;

    margin-top:28px;
}

.story-link{
    display:inline-flex;

    margin-top:35px;

    padding-bottom:8px;

    border-bottom:1px solid #55514a;

    transition:.35s;
}

.story-link:hover{
    padding-left:8px;
}

.story-image{
    position:relative;

    height:650px;

    overflow:hidden;
}

.story-image img{
    height:100%;

    object-fit:cover;

    /* filter:saturate(.7); */

    transition:
        transform 1s var(--ease),
        filter 1s var(--ease);
}

.story-image:hover img{
    transform:scale(1.06);
    filter:saturate(1);
}

/* .story-image:after{
    content:"CUSTOM / 01";

    position:absolute;

    bottom:25px;
    left:25px;

    color:white;

    font-size:11px;

    letter-spacing:2px;
} */


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities{
    background:var(--black);
     width: 100% !important;
    padding:140px 0;
}
.capabilities .container{
    width: min(1400px, calc(100% - 52px));
  margin: 0 auto;
}
.capabilities-top{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    margin-bottom:90px;
}

.capabilities-top p{
    max-width:500px;

    color:var(--muted);

    align-self:end;
}

.capability-list{
    border-top:1px solid var(--line-dark);
}

.capability{
    display:grid;

    grid-template-columns:80px 1fr 1.1fr 45px;

    gap:30px;

    align-items:center;

    padding:36px 0;

    border-bottom:1px solid var(--line-dark);

    transition:.45s var(--ease);
}

.capability:hover{
    padding-left:20px;

    background:
        linear-gradient(
            90deg,
            rgba(232,223,208,.06),
            transparent
        );
}

.capability-number{
    color:var(--beige);

    font-size:13px;
}

.capability h3{
    font-size:25px;
}

.capability p{
    color:#88857e;
}

.capability-arrow{
    width:38px;
    height:38px;

    border:1px solid var(--line-dark);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s;
}

.capability:hover .capability-arrow{
    background:var(--beige);
    color:var(--black);

    transform:rotate(45deg);
}


/* =========================================================
   IMAGE BREAK
========================================================= */

.image-break{
    height:600px;

    overflow:hidden;

    background:var(--black);
}

.image-break img{
    height:100%;

    object-fit:cover;

    opacity:.65;

    transform:scale(1.04);

    transition:transform 1.2s var(--ease);
}

.image-break:hover img{
    transform:scale(1);
}

.image-break-content{
    position:absolute;

    inset:0;

    display:flex;

    align-items:center;
    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.55)
        );
}

.image-break-content div{
    max-width:700px;
}

.image-break-content p{
    margin-top:25px;

    color:#d0cdc5;
}


/* =========================================================
   ARCHITECTURE
========================================================= */

.architecture{
    background:var(--beige);
    color:var(--black);

    padding:140px 0;
}
 .architecture .container{
    width: min(1400px, calc(100% - 52px));
  margin: 0 auto;}
.architecture-header{
    max-width:800px;

    margin-bottom:80px;
}

.architecture-header .eyebrow{
    color:#666159;
}

.architecture-header p{
    max-width:650px;

    margin-top:28px;

    color:#666159;
}

.architecture-map{
    display:grid;

    grid-template-columns:
        1fr
        1.2fr
        1fr;

    gap:1px;

    background:rgba(0,0,0,.14);

    border:1px solid rgba(0,0,0,.14);
}

.architecture-card{
    min-height:300px;

    padding:38px;

    background:var(--beige);

    position:relative;

    overflow:hidden;

    transition:.45s var(--ease);
}

.architecture-card:hover{
    background:var(--off-white);

    transform:translateY(-7px);
}

.architecture-card.large{
    background:var(--black);
    color:var(--white);
}

.architecture-card.large:hover{
    background:var(--black-2);
}

.architecture-number{
    font-size:12px;

    letter-spacing:2px;

    margin-bottom:70px;

    opacity:.55;
}

.architecture-card h3{
    margin-bottom:15px;
}

.architecture-card p{
    color:#77736b;
}

.architecture-card.large p{
    color:#98958d;
}

.architecture-circle{
    position:absolute;

    width:180px;
    height:180px;

    right:-70px;
    bottom:-70px;

    border:1px solid currentColor;

    border-radius:50%;

    opacity:.12;

    transition:.5s;
}

.architecture-card:hover .architecture-circle{
    transform:scale(1.35);
}


/* =========================================================
   TECHNOLOGY STACK — BASE
========================================================= */

.mtl-v2-tech-stack {
    /* margin-bottom: 40px; */
  border-bottom: 1px solid var(--mtl-v2-light-line);
  position: relative;
  overflow: hidden;
  padding: 125px 0 135px;
  background: #101010;
  color: #fff;
}

.mtl-v2-tech-container {
  width: min(1400px, calc(100% - 52px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.mtl-v2-tech-head {
  display: grid;
  grid-template-columns: 1.1fr .65fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 70px;
}

.mtl-v2-tech-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.mtl-v2-tech-heading h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 800;
}

.mtl-v2-tech-heading h2 i {
  color: rgba(255,255,255,.42);
  font-style: normal;
}

.mtl-v2-tech-intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mtl-v2-tech-line {
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  margin-top: 9px;
  background: rgba(255,255,255,.45);
}

.mtl-v2-tech-intro p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.85;
}


/* =========================================================
   TECHNOLOGY GRID
========================================================= */

.mtl-v2-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,.13);
  border-left: 1px solid rgba(255,255,255,.13);
}


/* =========================================================
   CARD
========================================================= */

.mtl-v2-tech-card {
  position: relative;
  min-height: 235px;
  padding: 23px 23px 25px;
  overflow: hidden;

  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);

  background: rgba(255,255,255,.018);

  transition:
    background .5s ease,
    transform .55s cubic-bezier(.2,.75,.2,1);
}

.mtl-v2-tech-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;

  transition: width .55s cubic-bezier(.2,.75,.2,1);
}

.mtl-v2-tech-card:hover {
  z-index: 2;
  background: rgba(255,255,255,.055);
  transform: translateY(-5px);
}

.mtl-v2-tech-card:hover::before {
  width: 100%;
}


/* =========================================================
   CARD TOP
========================================================= */

.mtl-v2-tech-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: rgba(255,255,255,.3);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}


/* =========================================================
   LOGO
========================================================= */

.mtl-v2-tech-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

   width: 80px;
  height: 80px; 

  margin-top: 25px;
  margin-bottom: 25px;

  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;

  background: rgba(255,255,255,.035);

  transition:
    transform .55s cubic-bezier(.2,.75,.2,1),
    border-color .4s ease,
    background .4s ease;
}

.mtl-v2-tech-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;

  /* transition:
    transform .55s cubic-bezier(.2,.75,.2,1),
    filter .4s ease; */
}

.mtl-v2-tech-card:hover .mtl-v2-tech-logo {
  transform: translateY(-5px) rotate(-2deg);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
}

.mtl-v2-tech-card:hover .mtl-v2-tech-logo img {
  transform: scale(1.12);
}


/* =========================================================
   AI / TEXT LOGOS
========================================================= */

.mtl-v2-tech-ai-logo span {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.mtl-v2-tech-text-logo span {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.08em;
}


/* =========================================================
   CARD TYPOGRAPHY
========================================================= */

.mtl-v2-tech-card h3 {
  margin: 0 0 7px;

  color: #fff;

  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 700;
}

.mtl-v2-tech-type {
  color: rgba(255,255,255,.35);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.mtl-v2-tech-bottom {
  display: grid;
  grid-template-columns: 180px 1fr 300px;
  align-items: center;
  gap: 40px;

  margin-top: 70px;
  padding-top: 28px;

  border-top: 1px solid rgba(255,255,255,.15);
}

.mtl-v2-tech-bottom-number {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.mtl-v2-tech-bottom-number strong {
  font-size: 60px;
  line-height: .8;
  letter-spacing: -.07em;
}

.mtl-v2-tech-bottom-number span {
  color: rgba(255,255,255,.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.mtl-v2-tech-bottom-line {
  height: 1px;
  background: rgba(255,255,255,.15);
}

.mtl-v2-tech-bottom p {
  margin: 0;

  color: rgba(255,255,255,.55);

  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.mtl-v2-tech-bottom p i {
  color: #fff;
  font-style: normal;
}


/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.mtl-v2-tech-card {
  opacity: 0;
  transform: translateY(30px);
  animation: mtl-v2-tech-card-in .8s cubic-bezier(.2,.75,.2,1) forwards;
}

.mtl-v2-tech-card:nth-child(1)  { animation-delay: .05s; }
.mtl-v2-tech-card:nth-child(2)  { animation-delay: .10s; }
.mtl-v2-tech-card:nth-child(3)  { animation-delay: .15s; }
.mtl-v2-tech-card:nth-child(4)  { animation-delay: .20s; }
.mtl-v2-tech-card:nth-child(5)  { animation-delay: .25s; }
.mtl-v2-tech-card:nth-child(6)  { animation-delay: .30s; }
.mtl-v2-tech-card:nth-child(7)  { animation-delay: .35s; }
.mtl-v2-tech-card:nth-child(8)  { animation-delay: .40s; }
.mtl-v2-tech-card:nth-child(9)  { animation-delay: .45s; }
.mtl-v2-tech-card:nth-child(10) { animation-delay: .50s; }
.mtl-v2-tech-card:nth-child(11) { animation-delay: .55s; }
.mtl-v2-tech-card:nth-child(12) { animation-delay: .60s; }
.mtl-v2-tech-card:nth-child(13) { animation-delay: .65s; }
.mtl-v2-tech-card:nth-child(14) { animation-delay: .70s; }
.mtl-v2-tech-card:nth-child(15) { animation-delay: .75s; }
.mtl-v2-tech-card:nth-child(16) { animation-delay: .80s; }
.mtl-v2-tech-card:nth-child(17) { animation-delay: .85s; }

@keyframes mtl-v2-tech-card-in {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 950px) {

  .mtl-v2-tech-head {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mtl-v2-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mtl-v2-tech-bottom {
    grid-template-columns: 160px 1fr;
  }

  .mtl-v2-tech-bottom p {
    grid-column: 1 / -1;
    text-align: left;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

  .mtl-v2-tech-stack {
    padding: 85px 0 90px;
  }

  .mtl-v2-tech-container {
    width: calc(100% - 28px);
  }

  .mtl-v2-tech-heading h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .mtl-v2-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mtl-v2-tech-card {
    min-height: 215px;
    padding: 18px;
  }

  .mtl-v2-tech-logo {
    width: 62px;
    height: 62px;
    margin-top: 28px;
    margin-bottom: 21px;
  }

  .mtl-v2-tech-logo img {
    width: 36px;
    height: 36px;
  }

  .mtl-v2-tech-card h3 {
    font-size: 16px;
  }

  .mtl-v2-tech-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mtl-v2-tech-bottom-line {
    display: none;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .mtl-v2-tech-grid {
    grid-template-columns: 1fr;
  }

  .mtl-v2-tech-card {
    min-height: 190px;
  }

  .mtl-v2-tech-logo {
    margin-top: 24px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .mtl-v2-tech-card {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .mtl-v2-tech-card:hover {
    transform: none;
  }

}


/* =========================================================
   BENEFITS
========================================================= */

.benefits{
    background:var(--off-white);
    color:var(--black);

    padding:140px 0;
}
.benefits-layout{
     width: min(1400px, calc(100% - 52px));
  margin: 0 auto;
}
.benefits-layout{
    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:100px;
}

.benefits-copy .eyebrow{
    color:#666159;
}

.benefits-copy p{
    max-width:520px;

    color:#68645d;

    margin-top:28px;
}

.benefit-list{
    border-top:1px solid var(--line-light);
}

.benefit{
    display:flex;

    gap:22px;

    padding:25px 0;

    border-bottom:1px solid var(--line-light);

    transition:.35s;
}

.benefit:hover{
    padding-left:12px;
}

.benefit-icon{
    flex:0 0 34px;

    width:34px;
    height:34px;

    border:1px solid rgba(0,0,0,.2);

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

.benefit h3{
    font-size:20px;

    margin-bottom:6px;
}

.benefit p{
    color:#77736c;
}


/* =========================================================
   IMAGE FEATURE
========================================================= */

.feature-image{
    background:var(--black);

    padding:0;
}

.feature-image-wrap{
    display:grid;

    grid-template-columns:1.1fr .9fr;

    min-height:600px;
}

.feature-photo{
    overflow:hidden;
}

.feature-photo img{
    height:100%;

    object-fit:cover;

    transition:1s var(--ease);
}

.feature-image:hover .feature-photo img{
    transform:scale(1.04);
}

.feature-image-copy{
    background:var(--black);

    padding:70px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.feature-image-copy .eyebrow{
    color:var(--beige);
}

.feature-image-copy p{
    color:#96928a;

    margin-top:25px;

    max-width:480px;
}

.feature-stat{
    display:flex;

    gap:50px;

    margin-top:45px;
}

.stat strong{
    display:block;

    font-size:40px;

    font-weight:500;

    color:var(--beige);
}

.stat span{
    color:#77736c;

    font-size:13px;
}


/* =========================================================
   FAQ
========================================================= */

.faq{
    background:var(--beige);

    color:var(--black);

    padding:140px 0;
}

.faq-layout{
    display:grid;
  width: min(1400px, calc(100% - 52px));
  margin: 0 auto;
    grid-template-columns:.8fr 1.2fr;

    gap:100px;
}

.faq-title p{
    max-width:430px;

    color:#666159;

    margin-top:25px;
}

.faq-item{
    border-top:1px solid rgba(0,0,0,.18);
}

.faq-item:last-child{
    border-bottom:1px solid rgba(0,0,0,.18);
}

.faq-question{
    width:100%;

    background:none;
    border:0;

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    text-align:left;

    color:var(--black);
}

.faq-question span:first-child{
    font-size:19px;
}

.faq-plus{
    font-size:25px;

    transition:.4s;
}

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:.5s var(--ease);
}

.faq-answer p{
    color:#68645d;

    padding:0 50px 25px 0;
}

.faq-item.open .faq-answer{
    max-height:200px;
}

.faq-item.open .faq-plus{
    transform:rotate(45deg);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta{
    background:var(--black);

    padding:160px 0;

    text-align:center;

    overflow:hidden;
}

.final-cta:before{
    content:"";

    position:absolute;

    width:650px;
    height:650px;

    border:1px solid rgba(232,223,208,.08);

    border-radius:50%;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

.final-cta-content{
    position:relative;

    z-index:2;
}

.final-cta .eyebrow{
    justify-content:center;

    color:var(--beige);
}

.final-cta h2{
    max-width:850px;

    margin:auto;
}

.final-cta p{
    max-width:580px;

    margin:28px auto 35px;

    color:#96928a;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal{
    opacity:0;

    transform:translateY(45px);

    transition:
        opacity .9s ease,
        transform .9s var(--ease);
}

.reveal.active{
    opacity:1;

    transform:translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroIn{

    from{
        opacity:0;
        transform:translateY(35px);
    }

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

}

@keyframes orbital{

    from{
        transform:translateY(-50%) rotate(0deg);
    }

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

}

@keyframes pulse{

    0%,100%{
        opacity:.3;
    }

    50%{
        opacity:1;
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .hero-visual{
        right:-300px;

        opacity:.4;
    }

    .story-grid,
    .benefits-layout,
    .faq-layout{
        grid-template-columns:1fr;

        gap:60px;
    }

    .capabilities-top{
        grid-template-columns:1fr;

        gap:35px;
    }

    .architecture-map{
        grid-template-columns:1fr 1fr;
    }

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


    .feature-image-wrap{
        grid-template-columns:1fr;
    }

    .feature-photo{
        min-height:500px;
    }

}


@media(max-width:650px){

    .container{
        width:min(90%,var(--container));
    }

    h1{
        letter-spacing:-2px;
    }

    h2{
        letter-spacing:-1.5px;
    }

    .hero-content{
        padding:120px 0 100px;
    }

    .hero-visual{
        width:350px;
        height:350px;

        right:-220px;

        opacity:.2;
    }

    .hero-core{
        width:100px;
        height:100px;
    }

    .hero-buttons{
        flex-direction:column;

        align-items:flex-start;
    }

    .credibility-track{
        justify-content:flex-start;

        width:max-content;

        animation:marquee 18s linear infinite;
    }

    .story,
    .capabilities,
    .architecture,
    .benefits,
    .faq{
        padding:90px 0;
    }

    .story-image{
        height:430px;
    }

    .capability{
        grid-template-columns:45px 1fr 40px;
        gap:15px;
    }

    .capability p{
        grid-column:2 / 4;
    }

    .architecture-map{
        grid-template-columns:1fr;
    }

    .feature-image-copy{
        padding:50px 30px;
    }

    .feature-stat{
        flex-direction: column;
        gap:25px;
    }

    .stat strong{
        font-size:30px;
    }

    .final-cta{
        padding:110px 0;
    }

}


/* =========================================================
   MARQUEE ANIMATION
========================================================= */

@keyframes marquee{

    from{
        transform:translateX(0);
    }

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

}
