/* =========================================================
   OEM V2 — EDITORIAL / INTERACTIVE
   ========================================================= */

body.oem-v2-page{
  background:#f4f5f2;
  color:#101817;
  overflow-x:hidden;
}

body.oem-v2-page *{
  box-sizing:border-box;
}

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

body.oem-v2-page .oem-v2-hero{
  padding:105px 0 110px;
  background:#f4f5f2;
}

body.oem-v2-page .oem-v2-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 500px;
  gap:85px;
  align-items:center;
}

body.oem-v2-page .oem-v2-hero-copy{
  max-width:790px;
}

body.oem-v2-page .oem-v2-hero-copy .eyebrow{
  margin-bottom:28px;
}

body.oem-v2-page .oem-v2-hero h1{
  margin:0;
  max-width:800px;
  font-size:clamp(62px,7vw,108px);
  line-height:.86;
  letter-spacing:-.078em;
  font-weight:500;
}

body.oem-v2-page .oem-v2-hero-copy>p{
  max-width:590px;
  margin:34px 0 0;
  color:#64716c;
  font-size:14px;
  line-height:1.85;
}

body.oem-v2-page .oem-v2-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:34px;
}

body.oem-v2-page .oem-v2-actions .btn{
  border-radius:999px;
  min-height:50px;
  padding:0 25px;
}

body.oem-v2-page .oem-v2-hero-image{
  position:relative;
  height:500px;
  overflow:hidden;
  background:#e7e7df;
}

body.oem-v2-page .oem-v2-hero-image:after{
  content:"OEM / ODM";
  position:absolute;
  right:18px;
  bottom:16px;
  padding:7px 10px;
  background:#101817;
  color:#fff;
  font-size:8px;
  letter-spacing:.15em;
}

body.oem-v2-page .oem-v2-hero-image img{
  width:100%;
  height:100%;
  padding:22px;
  object-fit:contain!important;
  transition:transform .8s cubic-bezier(.16,1,.3,1);
}

body.oem-v2-page .oem-v2-hero-image:hover img{
  transform:scale(1.045);
}


/* =========================================================
   INTRO
   ========================================================= */

body.oem-v2-page .oem-v2-intro{
  padding:105px 0 115px;
  background:#fff;
  border-top:1px solid #dfe3df;
  border-bottom:1px solid #dfe3df;
}

body.oem-v2-page .oem-v2-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.65fr);
  gap:110px;
  align-items:start;
}

body.oem-v2-page .oem-v2-intro h2{
  margin:16px 0 0;
  max-width:800px;
  font-size:clamp(45px,5vw,74px);
  line-height:.9;
  letter-spacing:-.068em;
  font-weight:500;
}

body.oem-v2-page .oem-v2-intro-grid>div:last-child{
  padding-top:38px;
}

body.oem-v2-page .oem-v2-intro p{
  margin:0 0 22px;
  color:#5f6b66;
  font-size:14px;
  line-height:1.9;
}


/* =========================================================
   COMMON SECTION HEAD
   ========================================================= */

body.oem-v2-page .oem-v2-section-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:70px;
  align-items:end;
  margin-bottom:64px;
}

body.oem-v2-page .oem-v2-section-head h2{
  margin:16px 0 0;
  max-width:850px;
  font-size:clamp(46px,5.4vw,78px);
  line-height:.88;
  letter-spacing:-.072em;
  font-weight:500;
}

body.oem-v2-page .oem-v2-section-head>p{
  margin:0;
  color:#68746f;
  font-size:13px;
  line-height:1.85;
}


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

body.oem-v2-page .oem-v2-capabilities{
  padding:108px 0 120px;
  background:#f4f5f2;
}

body.oem-v2-page .oem-v2-capability-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

body.oem-v2-page .oem-v2-capability-grid article{
  position:relative;
  min-height:195px;
  padding:24px 24px 27px;
  overflow:hidden;
  border:1px solid #d7dcda;
  background:#f9faf8;
  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
  animation:oemCardIn .65s both;
}

body.oem-v2-page .oem-v2-capability-grid article:nth-child(2){
  animation-delay:.07s;
}

body.oem-v2-page .oem-v2-capability-grid article:nth-child(3){
  animation-delay:.14s;
}

body.oem-v2-page .oem-v2-capability-grid article:nth-child(4){
  animation-delay:.21s;
}

body.oem-v2-page .oem-v2-capability-grid article:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0;
  height:2px;
  background:#537d72;
  transition:width .45s cubic-bezier(.16,1,.3,1);
}

body.oem-v2-page .oem-v2-capability-grid article:after{
  content:"";
  position:absolute;
  right:-25px;
  bottom:-55px;
  width:150px;
  height:150px;
  border:1px solid rgba(70,110,99,.08);
  border-radius:50%;
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}

body.oem-v2-page .oem-v2-capability-grid article:hover{
  transform:translateY(-8px);
  background:#fff;
  border-color:#bcc6c1;
  box-shadow:0 18px 40px rgba(20,35,30,.07);
}

body.oem-v2-page .oem-v2-capability-grid article:hover:before{
  width:100%;
}

body.oem-v2-page .oem-v2-capability-grid article:hover:after{
  transform:scale(1.5);
}

body.oem-v2-page .oem-v2-capability-grid span{
  position:relative;
  z-index:2;
  display:block;
  margin-bottom:34px;
  color:#5d7b72;
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}

body.oem-v2-page .oem-v2-capability-grid h3{
  position:relative;
  z-index:2;
  margin:0 0 10px;
  font-size:25px;
  line-height:1;
  letter-spacing:-.045em;
  font-weight:500;
}

body.oem-v2-page .oem-v2-capability-grid p{
  position:relative;
  z-index:2;
  max-width:245px;
  margin:0;
  color:#68736e;
  font-size:13px;
  line-height:1.65;
}


/* =========================================================
   PROCESS
   ========================================================= */

body.oem-v2-page .oem-v2-process{
  padding:112px 0 125px;
  background:#fff;
}

body.oem-v2-page .oem-v2-process-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid #cfd6d2;
}

body.oem-v2-page .oem-v2-process-grid:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:2px;
  background:linear-gradient(
    90deg,
    #557d72 0 25%,
    #9eaaa5 25% 50%,
    #c2c9c5 50% 75%,
    #d9ddda 75%
  );
  transform-origin:left;
}

body.oem-v2-page .oem-v2-process-grid article{
  position:relative;
  min-height:210px;
  padding:30px 30px 25px;
  border-right:1px solid #dfe3e0;
  transition:
    background .35s ease,
    transform .35s cubic-bezier(.16,1,.3,1);
}

body.oem-v2-page .oem-v2-process-grid article:first-child{
  border-left:1px solid #dfe3e0;
}

body.oem-v2-page .oem-v2-process-grid article:before{
  content:"";
  position:absolute;
  top:-6px;
  left:30px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  border:2px solid #557d72;
  transition:transform .35s ease,background .35s ease;
}

body.oem-v2-page .oem-v2-process-grid article:hover{
  background:#f5f7f5;
  transform:translateY(-5px);
}

body.oem-v2-page .oem-v2-process-grid article:hover:before{
  background:#557d72;
  transform:scale(1.25);
}

body.oem-v2-page .oem-v2-process-grid .num{
  margin-bottom:42px;
  color:#718079;
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}

body.oem-v2-page .oem-v2-process-grid h3{
  margin:0 0 11px;
  font-size:26px;
  line-height:1;
  letter-spacing:-.045em;
  font-weight:500;
}

body.oem-v2-page .oem-v2-process-grid p{
  max-width:250px;
  margin:0;
  color:#68736e;
  font-size:13px;
  line-height:1.7;
}


/* =========================================================
   EXAMPLES
   ========================================================= */

body.oem-v2-page .oem-v2-examples{
  padding:112px 0 125px;
  background:#f4f5f2;
}

body.oem-v2-page .oem-v2-example-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:14px;
}

body.oem-v2-page .oem-v2-example-grid figure{
  margin:0;
  overflow:hidden;
}

body.oem-v2-page .oem-v2-example-grid figure img{
  display:block;
  width:100%;
  height:380px;
  object-fit:contain!important;
  background:#e8e8e1;
  transition:transform .7s cubic-bezier(.16,1,.3,1);
}

body.oem-v2-page .oem-v2-example-grid figure:first-child img{
  height:440px;
}

body.oem-v2-page .oem-v2-example-grid figure:hover img{
  transform:scale(1.035);
}

body.oem-v2-page .oem-v2-example-grid figcaption{
  padding:13px 0 0;
  color:#596660;
  font-size:11px;
}


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

body.oem-v2-page .oem-v2-cta{
  position:relative;
  padding:105px 0 110px;
  overflow:hidden;
  background:#0b1715;
  color:#fff;
}

body.oem-v2-page .oem-v2-cta:after{
  content:"OEM";
  position:absolute;
  right:-25px;
  bottom:-85px;
  color:rgba(255,255,255,.035);
  font-size:260px;
  line-height:1;
  font-weight:600;
  letter-spacing:-.1em;
  pointer-events:none;
}

body.oem-v2-page .oem-v2-cta-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:70px;
}

body.oem-v2-page .oem-v2-cta .eyebrow{
  color:#8eaaa2;
}

body.oem-v2-page .oem-v2-cta h2{
  max-width:850px;
  margin:16px 0 20px;
  font-size:clamp(52px,6.2vw,90px);
  line-height:.87;
  letter-spacing:-.075em;
  font-weight:500;
}

body.oem-v2-page .oem-v2-cta p{
  max-width:520px;
  margin:0;
  color:#aab9b3;
  font-size:13px;
  line-height:1.8;
}

body.oem-v2-page .oem-v2-cta .btn{
  flex:0 0 auto;
  border-radius:999px;
  min-height:50px;
  padding:0 28px;
}


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

@keyframes oemCardIn{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:none;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1000px){

  body.oem-v2-page .oem-v2-hero-grid{
    grid-template-columns:1fr 420px;
    gap:45px;
  }

  body.oem-v2-page .oem-v2-intro-grid{
    gap:55px;
  }

  body.oem-v2-page .oem-v2-capability-grid,
  body.oem-v2-page .oem-v2-process-grid{
    grid-template-columns:1fr 1fr;
  }

  body.oem-v2-page .oem-v2-example-grid{
    grid-template-columns:1fr 1fr;
  }

  body.oem-v2-page .oem-v2-example-grid figure:first-child{
    grid-column:1/-1;
  }

  body.oem-v2-page .oem-v2-section-head{
    grid-template-columns:1fr;
    gap:20px;
  }
}


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

@media(max-width:760px){

  body.oem-v2-page .oem-v2-hero{
    padding:60px 0 70px;
  }

  body.oem-v2-page .oem-v2-hero-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  body.oem-v2-page .oem-v2-hero h1{
    font-size:clamp(48px,13vw,70px);
    line-height:.9;
  }

  body.oem-v2-page .oem-v2-hero-copy>p{
    font-size:12px;
  }

  body.oem-v2-page .oem-v2-hero-image{
    height:auto;
    aspect-ratio:4/3;
  }

  body.oem-v2-page .oem-v2-actions{
    flex-wrap:wrap;
  }

  body.oem-v2-page .oem-v2-intro{
    padding:70px 0 75px;
  }

  body.oem-v2-page .oem-v2-intro-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  body.oem-v2-page .oem-v2-intro-grid>div:last-child{
    padding-top:0;
  }

  body.oem-v2-page .oem-v2-section-head{
    margin-bottom:42px;
  }

  body.oem-v2-page .oem-v2-section-head h2{
    font-size:clamp(44px,12vw,62px);
  }

  body.oem-v2-page .oem-v2-capabilities,
  body.oem-v2-page .oem-v2-process,
  body.oem-v2-page .oem-v2-examples{
    padding:72px 0 80px;
  }

  body.oem-v2-page .oem-v2-capability-grid,
  body.oem-v2-page .oem-v2-process-grid{
    grid-template-columns:1fr 1fr;
  }

  body.oem-v2-page .oem-v2-capability-grid article,
  body.oem-v2-page .oem-v2-process-grid article{
    min-height:180px;
    padding:21px;
  }

  body.oem-v2-page .oem-v2-capability-grid span,
  body.oem-v2-page .oem-v2-process-grid .num{
    margin-bottom:30px;
  }

  body.oem-v2-page .oem-v2-process-grid article{
    border-bottom:1px solid #dfe3e0;
  }

  body.oem-v2-page .oem-v2-example-grid{
    grid-template-columns:1fr;
  }

  body.oem-v2-page .oem-v2-example-grid figure:first-child{
    grid-column:auto;
  }

  body.oem-v2-page .oem-v2-example-grid figure img,
  body.oem-v2-page .oem-v2-example-grid figure:first-child img{
    height:auto;
    aspect-ratio:1/1;
  }

  body.oem-v2-page .oem-v2-cta{
    padding:72px 0 78px;
  }

  body.oem-v2-page .oem-v2-cta-inner{
    display:block;
  }

  body.oem-v2-page .oem-v2-cta h2{
    font-size:clamp(50px,13vw,70px);
  }

  body.oem-v2-page .oem-v2-cta .btn{
    display:inline-flex;
    margin-top:30px;
  }
}


@media(max-width:520px){

  body.oem-v2-page .oem-v2-capability-grid,
  body.oem-v2-page .oem-v2-process-grid{
    grid-template-columns:1fr;
  }

  body.oem-v2-page .oem-v2-capability-grid article,
  body.oem-v2-page .oem-v2-process-grid article{
    min-height:0;
  }

  body.oem-v2-page .oem-v2-process-grid article{
    min-height:175px;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

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

  body.oem-v2-page .oem-v2-capability-grid article{
    animation:none;
  }

  body.oem-v2-page *{
    transition:none!important;
  }
}

/* Mobile CTA: hide oversized decorative OEM lettering */
@media (max-width:760px){
  body.oem-v2-page .oem-v2-cta:after{
    display:none!important;
  }
}
