/* ══════════════════════════════════════════════════════════
   DESKTOP / BASE STYLES
   ══════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --cyan: #00ace9;
  --cyan-light: #00bcff;
  --beam-a: #5ED0FF;
    --beam-b: #A66BFF;
  --dark: #09090e;
  --dark2: #1b1b1b;
  --grad-text: linear-gradient(180deg,var(--beam-a),var(--beam-b));
  --grad-btn: linear-gradient(to right, #ed00bb 0%, #0045db 100%);
  --grad-btn-rev: linear-gradient(to left, #ed00bb 0%,  #0045db 100%);
  --easing: cubic-bezier(.25,.46,.45,.94);
  --main-font: -apple-system,"SF Pro Display","SF Pro Text",sans-serif;
  --sec-font: -apple-system,"SF Pro Display","SF Pro Text",sans-serif;
  --main-font-medium: -apple-system,"SF Pro Display","SF Pro Text",sans-serif;
      --line: #1d1d22;

          --bg: #000005;
    --bg-elev: #0a0a0f;
    --ink: #f5f5f7;
    --muted: #86868b;
    --line: #1d1d22;
    --beam-a: #5ED0FF;
    --beam-b: #A66BFF;
    --maxw: 1600px;
    --ease: cubic-bezier(.22, .61, .36, 1);

    --f-size: 17px;
    --f-height: 1.65;

}


body{
  font-family: var(--main-font) !important;
}
html.lenis { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }



/* @font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SFPRODISPLAYBOLD.OTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Medium';
  src: url('../fonts/SFPRODISPLAYMEDIUM.OTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}  */
h1, h2, h3, h4 {
  font-family: -apple-system,"SF Pro Display","SF Pro Text",sans-serif !important;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system,"SF Pro Display","SF Pro Text",sans-serif !important;
  background: #000005;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background .4s,backdrop-filter .4s,border-color .4s;
}
#navbar.scrolled {
 background: rgba(8, 8, 12, .6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
#desktop-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: fit-content;
  display: flex;
  white-space: nowrap;
  flex-direction: column;
  gap: 15px;
  padding: 25px 30px;
  background: rgba(9, 9, 14, .83);
  backdrop-filter: blur(50px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease,transform .18s ease,visibility .18s ease;
}
#desktop-nav .group:hover .nav-dropdown, #desktop-nav .nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#desktop-nav .nav-dropdown a, #desktop-nav .dropdown-link {
  color: #f7fbff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  transition: color .2s ease;
}
#desktop-nav .nav-dropdown a:hover, #desktop-nav .dropdown-link:hover {
  color: #00c5ff;
}
#desktop-nav .group {
  position: relative;
}
#desktop-nav .group > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown .dropdown-group {
  position: relative;
}
.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.dropdown-link span {
  font-size: 13px;
  opacity: .78;
}
.dropdown-group {
  display: block;
}
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 25px 30px;
  margin-left: 12px;
  background: rgba(9, 9, 14, .83);
  backdrop-filter: blur(50px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity .18s ease,transform .18s ease,visibility .18s ease;
  z-index: 60;
}
.dropdown-group:hover > .sub-dropdown, .dropdown-group:hover > .dropdown-link + .sub-dropdown, .dropdown-link:hover + .sub-dropdown, .sub-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.details-controls {
  cursor: pointer;
}
.menu-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0.5rem 0;
  margin: 0;
  border-radius: 12px;
  transition: background .25s ease, color .25s ease;
}
.menu-summary:hover {
  background: rgba(9,13,22,.1);
}
.menu-summary::-webkit-details-marker {
  display: none;
}
.sub-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-left: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0.96);
  transform-origin: top;
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}
details[open] > .sub-menu-mobile {
  max-height: 600px;
  opacity: 1;
  transform: scaleY(1);
}
.sub-menu-mobile a {
  text-decoration: none;
  color: rgba(255,255,255,.85);
  padding: 10px 0;
  transition: color .2s ease;
}
.sub-menu-mobile a:hover {
  color: #fff;
}
/* details[open] .menu-summary {
  background: rgba(9,13,22,.1);
} */
.menu-arrow {
  font-size: 14px;
  transition: transform .25s ease;
}
details[open] .menu-arrow {
  transform: rotate(180deg);
}
/* ══════════════════════════════════════════════
   HERO + ABOUT — ALRE scroll-morph video system
   ══════════════════════════════════════════════

   LAYOUT OVERVIEW
   ───────────────
   #hero-scroll-space  — tall scroll driver (200vh), background:#000
     #hero-sticky       — position:sticky, top:0, height:100vh, overflow:hidden
       #hero-video-el   — the video, starts fullscreen via JS
       #hero-overlay    — gradient overlay, fades out as scroll progresses
       #hero-text       — title/tagline at bottom-left, fades out on scroll
   #about             — normal-flow section underneath; its right column
                         contains #about-video-slot (invisible placeholder)
                         so JS can read its target rect and morph the video into it
*/
/* ── Scroll-space wrapper ── */
/* #hero-scroll-space{background:#000} */
/* ── Sticky container ── */
#hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* ── The video — positioned by JS ── */
#hero-video-el {
  position: absolute;
  object-fit: cover;
  will-change: top,left,width,height,border-radius;
   border: 1px solid rgba(113, 113, 113, .21); 
  /* box-shadow: -1px 6px 120px -40px rgba(2, 181, 255, .71); */
  
  /* box-shadow: 0px 0px 80px 0px rgba(2, 181, 255, .21); */
  box-shadow: rgba(94, 208, 255, 0.3) 0px 0px 60px, rgba(166, 107, 255, 0.21) 0px 0px 96px;
  border-radius: 30px;
}
/* ── Overlay dims video in hero, fades to 0 as video morphs away ── */
#hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top,rgba(0,0,0,.78) 0%,rgba(0,0,0,.22) 55%,rgba(0,0,0,.08) 100%);
  will-change: opacity;
}
/* ── Hero text block ── */
#hero-text {
  position: relative;
  z-index: 15;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 64px 72px;
  will-change: opacity,transform;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100vh;
  align-items: flex-start;
  transition: opacity .35s ease, transform .35s ease;
}
/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.65)}}
/* Main headline */
#hero-text h1 {
  font-size: clamp(52px,6.5vw,56px);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 32px;
  text-align: left;
}
#hero-text h1 em {
  font-style: normal;
  color: var(--cyan);
}
/* Sub row */
.hero-sub-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-tagline {
  font-size: clamp(14px,1.4vw,19px);
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
/* ── Scroll hint ── */
#scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}
/* ══ ABOUT SECTION ══ */
#about {
  padding: 100px 64px 50px;
  z-index: 5;
  /* margin-top: -70vh; */
}
.about-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Left: text */
.about-label {
  color: var(--cyan-light);
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  text-overflow: clip;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  font-family: var(--sec-font);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.headline {
  font-size: clamp(34px,3.2vw,40px);
  font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.15;
  color: #f5f5f7;
  margin-bottom: 28px;
  font-family: var(--main-font) !important;

}
.headline em {
  font-style: normal;
  color: var(--cyan);
}
.about-body {
  font-size: clamp(15px,1.1vw,17px);
  color: #86868b;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Stats strip inside about */
.about-stats {
  display: flex;
  margin-top: 36px;
  padding-top: 100px;
  /* padding-bottom: 100px; */
      gap: 20px;
}
.about-stat {
  flex: 1;
  padding-right: 28px;
  text-align: center;
}
/* .about-stat+.about-stat{padding-left:28px;border-left:1px solid rgba(255,255,255,.08)} */
.about-stat-num {
  font-size: clamp(36px,3vw,52px);
  font-weight: 900;
  line-height: 1;
}
.about-stat-label {
  font-size: 16px;
  color: #86868b;
  margin-top: 6px;
  line-height: 1.4;
}
/* Right: video slot — invisible placeholder so JS can measure target rect */
.about-video-col {
  position: relative;
}
#about-video-slot {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  visibility: hidden;
}
/* Mobile */
/* ── FLOAT VIDEO ── */
#video-float {
  position: fixed;
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  height: 180px;
  box-shadow: 0 20px 60px rgba(0,172,233,.3);
  border: 2px solid rgba(0,172,233,.4);
  opacity: 0;
  pointer-events: none;
  z-index: 150;
  transition: opacity .5s var(--easing);
  bottom: 24px;
  right: 24px;
}
#video-float.active {
  opacity: 1;
  pointer-events: auto;
}
#video-float video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#video-float-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}
#video-float-close:hover {
  background: rgba(255,0,0,.7);
}
/* ── GRADIENT TEXT ── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--main-font-medium);
  font-weight: 500;
  font-size: 65px;
}
/* ── BUTTONS ── */
.btn-cyan {
  background-image: var(--grad-btn);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all .4s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
}
.btn-cyan:hover {
  background-image: var(--grad-btn-rev);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,172,233,.35);
}
/* .btn-ghost{
  background:rgba(255,255,255,.22);color:#fff;padding:12px 20px;border-radius:12px;
  font-size:18px;font-weight:500;cursor:pointer;border:none;white-space:nowrap;
  display:inline-flex;align-items:center;gap:6px;
  transition:background .25s,transform .2s
} */
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .25s ease, transform .2s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.32);
  transform: translateY(-2px);
}
/* ── SECTION LABEL ── */
.s-label {
  color: var(--cyan-light);
  font-size: 15px;
  font-weight: 600;
}
/* ── TAG PILL ── */
.tag-pill {
  background: #ccf2ff;
  color: #000;
  padding: 3px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
}
/* ── SERVICE CARD ── */
/* .svc-card {
  border-radius: 25px;
  padding: 45px 36px;
  background: rgba(11,11,11,.6);
  border: 1px solid rgba(113,113,113,.35);
  transition: all .8s !important;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: #717171;
  box-shadow: 0 0 25px 0 rgba(0, 172, 233, 0.3);
  border: 1px solid #3d6f81;
  background: radial-gradient(45.24% 10.06% at 50.1% 97.83%, rgba(0, 172, 233, 0.8) 0%, rgba(0, 172, 233, 0) 100%);
} */

.svc-card {
    position: relative; /* Essential for the pseudo-element */
    transition: border-color .5s ease, transform .5s ease, box-shadow .6s ease;
    overflow: hidden; /* Keeps the gradient inside the card corners */
    border-radius: 25px;
  padding: 30px 23px;
  background: #0a0a0f;
  border: 1px solid rgba(113,113,113,.35);
  transition: all .5s !important;
}

/* The gradient layer */
.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(45.24% 10.06% at 50.1% 97.83%, rgba(0, 172, 233, 0.8) 0%, rgba(0, 172, 233, 0) 100%); */
    background: radial-gradient(60% 80% at 50% 100%, rgb(33 150 243 / 20%), transparent 80%);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.5s ease; /* This makes the gradient fade in */
    z-index: -1; /* Keeps it behind your text */
}

/* On hover, just change opacity */
.svc-card:hover {
        border-color: rgba(166, 107, 255, .35);
    transform: translateY(-4px);
    box-shadow: 0 0 50px -6px rgba(94,208,255,.30),0 0 80px -10px rgba(166,107,255,.28);
    /* border-color: #717171;
    box-shadow: 0 0 25px 0 rgba(0, 172, 233, 0.3); */
}

.svc-card:hover::before {
    opacity: 1; /* Smoothly fades the gradient in */
}

/* ── STAT BAR ── */
.stat-bar {
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 100%,rgba(0,172,233,1) 0%,rgba(0,86,117,1) 35%,rgba(0,0,0,1) 70%);
}
.stat-num {
  font-size: clamp(48px,5vw,80px);
  font-weight: 800;
  line-height: 1;
}
/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-inner:hover {
  animation-play-state: paused;
}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
/* .logo-img {
  
  object-fit: contain;
  flex-shrink: 0;
  transition: filter .3s,opacity .3s;
  background: #fff;
    border-radius: 20px;
    padding: 15px;
} */
.logo-img:hover {
  filter: none;
  opacity: 1;
}
/* ── CASE STUDIES — Squish Prompts style ── */
/* #cs-space rule moved to stacked-cards section below */
.cs-grid {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cs-card.cs-large {
  grid-column: 1/-1;
}
/* image wrapper */
.cs-card.cs-large .cs-img-wrap {
  height: 500px;
  border-radius: 25px;
  width: 50%;
}
.cs-card:not(.cs-large) .cs-img-wrap {
  height: 500px;
  border-radius: 0px;
  width: 50%;
}
.cs-card:hover .cs-card-img {
  transform: scale(1.04);
}

.cs-title-block{
  margin-bottom: 80px;
  width: 100%;
    text-align: center;
}
/* category tags overlay */
.cs-tag {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  background: #323232;
  border-radius: 25px;
}
/* card body */
.cs-card.cs-large .cs-card-body {
  padding: 36px 40px 40px;
}
.cs-card-title {
  font-family: var(--main-font-medium) !important;
  
  font-size: clamp(19px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: -.01em;
    margin-top: 10px;
    line-height: 1.2;
}
.cs-card.cs-large .cs-card-title {
  font-size: clamp(24px,2.5vw,36px);
}


.case-tags {
    font-size: 11.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--beam-a);
}


.cs-card-desc {
  font-size: 17px;
  color: #86868b;
  line-height: 1.6;
}
.cs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cs-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
     padding: 1px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(185 185 185);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-left: 3px solid #00ace9;
}
.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(226,226,226,1);
  flex-shrink: 0;
  margin-top: -10px;
}
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: gap .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.view-btn:hover {
  gap: 12px;
}
/* ── PROCESS TABS ── */
.proc-tab {
  padding: 25px 24px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: border-color .3s;
}
/* .proc-tab.active{border-left-color:var(--cyan)} */
.proc-title {
  font-size: clamp(24px,2.5vw,35px);
  font-family: var(--main-font-medium);
  font-weight: 500;
  color: #868686;
  transition: color .3s;
  line-height: 1.3;
}
.proc-tab.active .proc-title {
  color: #f5f5f7;
  font-family: var(--main-font-medium);
  border-bottom: 1px solid #989898;
  padding-bottom: 25px;
}
.proc-desc {
  font-size: 18px;
  color: #86868b;
  line-height: 1.6;
  transition: max-height .5s,opacity .3s;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 25px;
}
.proc-tab.active .proc-desc {
  max-height: 200px;
  opacity: 1;
}
/* ── TESTIMONIAL CARD ── */
.testi-card:hover {
  transform: translateY(-4px);
}
/* ── PRESS / BLOG HORIZONTAL ── */
.hscroll-space {
  position: relative;
}
.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hscroll-track {
  gap: 28px;
  padding: 0 64px;
}
.press-card {
  background: #0a0a0f;
  border: 1px solid rgba(113,113,113,.35);
  transition: all .5s !important;
  border-radius: 25px;
  padding: 30px;
  width: 310px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: transform .3s,box-shadow .3s;
}
.press-card i {
  fill: #CCEEFB;
}
.press-card:hover {
   border-color: rgba(166, 107, 255, .35);
    transform: translateY(-4px);
    box-shadow: 0 0 50px -6px rgba(94,208,255,.30),0 0 80px -10px rgba(166,107,255,.28);
}
.blog-card {
  background: #0a0a0f;
  border-radius: 25px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .3s,box-shadow .3s,border-color .3s;
  margin: 0 16px;
  border: 1px solid rgba(255,255,255,.1);

}
.blog-card:hover {
  background: #010101;
  transform: translateY(-5px);
 
  border-color: rgba(94, 208, 255, .35);
    box-shadow: 0 0 46px -8px rgba(94, 208, 255, .32), 0 0 70px -12px rgba(166, 107, 255, .28);
}
.blog-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.read-more {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: gap .2s;

}
.read-more:hover {
  gap: 8px;
    
}
/* ── FAQ ── */
.faq-ans {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  color: #86868b;
  line-height: 1.6;
  transition:
   max-height .6s cubic-bezier(.22,.61,.36,1),
        opacity .35s ease;
}
.faq-item.open .faq-ans {
  max-height: none;
  opacity: 1;
  
}
/* ── CTA GRADIENT ── */
/* #cta-sec{background:linear-gradient(76.44deg,#000 1.2%,#00318c 56.51%,#ca00a5 98.636%)} */
@keyframes gradientShift {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 60% 50%; }
  100% { background-position: 100% 0%; }
}
.faq-ans p {
  margin-bottom: 15px;
}
/* #cta-sec {
  background: linear-gradient(76.44deg, #000 1.2%, #00318c 56.51%, #ca00a5 98.636%);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
} */
#cta-sec [data-bg] {
  background: linear-gradient(76.44deg, #000 1.2%, #00318c 56.51%, #ca00a5 98.636%) !important;
}
/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--easing),transform .7s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ── FOOTER ── */
footer a:hover {
  color: var(--cyan);
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s,transform .2s;
  cursor: pointer;
}
.social-btn:hover {
  background: var(--cyan);
  transform: scale(1.1);
}
/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: rgba(119,119,119,.6);
}
/* ── MOBILE ── */
#mob-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease, padding .25s ease, border .25s ease;
  pointer-events: none;
  background: rgba(9, 9, 14, 0.20);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}
#mob-menu.open {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  padding-bottom: 24px;
  backdrop-filter: blur(50px);
  gap: 5px;
}
.cs-header {
  max-width: 1700px;
  margin: 0 auto 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
  height: 100vh;
  padding: 0;
  position: sticky;
  top: 100px;
  z-index: 10;
  overflow: visible;
  pointer-events: none;
}
.cs-header > * {
  pointer-events: auto;
}
.subtitle {
  font-family: var(--sec-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #86868b;
}
.svc-card h3 {
  font-family: var(--main-font-medium) !important;
  
  color: #f5f5f7;
      font-size: 19px;
font-weight: 600;
    letter-spacing: -.01em;

}
/* ══════════════════════════════════════════════
   CASE STUDIES — CRAFTO STYLE STACKED CARDS
   ══════════════════════════════════════════════ */
/*
  HOW THE STACKING WORKS:
  ─────────────────────────────────────────────────────────────────
  #cs-space is given a large min-height (via padding-bottom on the
  inner wrapper) so there's enough scroll budget for both the sticky
  header AND each sticky card to stick in turn.

  .cs-header  → sticky at top: 100px  (stays visible throughout)
  .cs-stack-wrap → the scroll budget container
  Each .cs-stack-card → sticky at top: 180px  (same top = they
    stack on top of each other as each one hits the viewport edge)
  z-index increases per card so later cards cover earlier ones.
  ─────────────────────────────────────────────────────────────────
*/
#cs-space {
  position: relative;
  overflow: visible;
  padding: 120px 0px 0;
}
.cs-title-block .headline {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 14px;
}
.cs-title-block .subtitle {
  color: rgba(255,255,255,.55);
  font-size: 18px;
  line-height: 1.75;
}
/* ── Stack wrapper ──
   padding-bottom gives the scroll budget so the last card
   fully sticks before the section ends and the header unsticks.
   With 3 cards at ~560px each, we need ~560×2 = 1120px.            */
.cs-stack-wrap {
  position: relative;
  padding-top: 24px;
  padding-bottom: 200px;
  margin-top: -880px;
}
/* sticky stacked cards — all at the same 'top' so each one
   slides in over the previous as you scroll down               */
.cs-stack-card {
  position: sticky;
  top: 180px;
}
/* z-index: later cards render on top of earlier ones */
.cs-stack-card:nth-child(1) {
  z-index: 1;
  top: 300px;
}
.cs-stack-card:nth-child(2) {
  z-index: 2;
  top: 300px;
}
.cs-stack-card:nth-child(3) {
  z-index: 3;
  top: 300px;
}
/* card shell */
.cs-card {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
  margin-bottom: 180px;
  transform-origin: center top;

  border-radius: 20px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
}
/* first card can be a bit larger if you want */
.cs-large {
  min-height: 660px;
}
.cs-stack-card:hover .cs-card {
  box-shadow: 0 24px 80px rgba(0,172,233,.12);
}
/* image side */
.cs-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #111;
}
.cs-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.cs-stack-card:hover .cs-card-img {
  transform: scale(1.03);
}
/* content side */
.cs-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: center;
  background: #000;
}
/* tags */
.cs-tag-row {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
/* tablet */
/* mobile */
/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
  transition: all .5s;
}
/* ── FAQ — Squish-style sticky left / scroll right ── */
#faq {
  padding: 120px 0 !important;
}
.faq-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1700px;
  margin: 0 auto;
}
/* LEFT: sticky panel */
.faq-left {
  z-index: 1;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start center;
  align-items: flex-start;
  height: min-content;
  padding: 0;
  display: flex;
  position: sticky;
  top: 140px;
  overflow: visible;
}
.faq-left-label {
  color: var(--cyan-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.faq-left-title {
  font-size: clamp(28px,3vw,48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 36px;
}
.faq-left-answer {
  position: relative;
  min-height: 140px;
  margin-bottom: 36px;
}
.faq-left-ans-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.faq-left-ans-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.faq-left-ans-item p {
  font-size: clamp(15px,1.15vw,17px);
  color: rgba(255,255,255,.52);
  line-height: 1.75;
}
/* RIGHT: natural page scroll, each row is full viewport height */
/* .faq-right{ padding:0; } */
.faq-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 80px 64px 80px 72px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .35s;
}
.faq-row:last-child {
  border-bottom: none;
}
.faq-row.faq-active {
  background: rgba(0,172,233,.04);
}
.faq-row-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--cyan);
  border-radius: 0 2px 2px 0;
  transition: height .5s cubic-bezier(.25,.46,.45,.94);
}
.faq-row.faq-active .faq-row-bar {
  height: 100%;
}
.faq-row-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.18);
  margin-bottom: 18px;
  transition: color .35s;
}
.faq-row.faq-active .faq-row-num {
  color: var(--cyan);
}
.faq-row-q {
  font-size: clamp(20px,2vw,30px);
  font-weight: 800;
  color: rgba(255,255,255,.3);
  line-height: 1.2;
  letter-spacing: -.02em;
  transition: color .4s;
}
.faq-row.faq-active .faq-row-q {
  color: #fff;
}
/* ── TESTIMONIAL CAROUSEL ── */
#testi-carousel-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* left + right blur masks */
#testi-carousel-outer::before, #testi-carousel-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  pointer-events: none;
  z-index: 10;
}
#testi-carousel-outer::before {
  left: 0;
  background: linear-gradient(to right, rgba(9,9,14,0.02) 0%, rgba(9,9,14,0) 100%);
}
#testi-carousel-outer::after {
  right: 0;
  background: linear-gradient(to left, rgba(9,9,14,0.02) 0%, rgba(9,9,14,0) 100%);
}
#testi-track {
  display: flex;
  gap: 70px;
  align-items: stretch;
  will-change: transform;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  padding: 55px 0 55px;
}
.testi-card.active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.04);
 
 border:1px solid var(--line);
  box-shadow:0 0 70px -10px rgba(94,208,255,.4),0 0 0 1px rgba(255,255,255,.06);
}
/* dots */
#testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .3s,transform .3s;
}
.testi-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}
/* nav arrows */
#testi-prev,#testi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s,transform .25s;
  backdrop-filter: blur(8px);
}
#testi-prev {
  left: 20px;
}
#testi-next {
  right: 20px;
}
#testi-prev:hover,#testi-next:hover {
  background: var(--cyan);
  transform: translateY(-50%) scale(1.08);
}
.testi-card {
  /* background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, #1b1f2a 0%, #151821 100%); */

    background: #0a0a0f;
  border-radius: 24px;
  padding: 22px 28px 22px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94),
             box-shadow .5s,
             filter .5s,
             opacity .5s,
             border-color .5s;
  flex-shrink: 0;
  width: calc(100vw - 570px);
  filter: blur(5px);
  opacity: 0.8;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 570px;
  min-height: 300px;
  overflow: hidden;
}
.testi-left {
  position: relative;
  width: 150px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-badge {
  position: absolute;
  top: -26px;
  left: 8px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0eb8f3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(14,184,243,.25);
}
.quote-badge svg {
  width: 24px;
  height: 20px;
  display: block;
}
.testi-logo-box {
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 175px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.testi-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.testi-content {
  flex: 1;
  padding-right: 6px;
}
.testi-text {
  margin: 0 0 18px;
  color: #cfcfd1;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 780px;
}
.testi-name {
  margin: 0 0 6px;
  color: #06b6ff;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.testi-role {
  margin: 0;
  color: #b8bcc6;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}
/* mobile */
#press-track {
  width: 100%;
}
#press-track .slick-slide {
  height: auto !important;
}
#press-track .slick-slide > div {
  height: fit-content !important;
}
.press-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#press-track .press-card {
  margin: 0 12px;
}
#press-track .slick-list {
  overflow: hidden;
  margin: 0 -12px;
}
#press-track .slick-track {
  display: flex !important;
  align-items: stretch;
  padding-top: 50px;
  padding-bottom: 50px;
}
/* force-hide any default plain buttons if they still appear */
#press-track .slick-prev, #press-track .slick-next {
  display: none !important;
}
.blog-card h4 {
  font-family: var(--main-font-medium) !important;
      font-weight: 600;
    font-size: 20px;
  line-height: 140%;
  color: #f5f5f7;
  margin-bottom: 12px;
}
.blog-card p {
  font-family: var(--sec-font) !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #86868b !important;
}
.blog-body {
  padding: 26px 32px;
  gap: 16px;
}
#blog-track .slick-track {
  padding: 30px 0;
}
footer p {
  font-size: 14px !important;
}
footer a {
  transition: color .2s;
  font-size: 14px !important;
}
footer .font-bold {
  font-size: 16px !important;
  color: #f5f5f7 !important;
}
/* =========================
   CTA PARALLAX SECTION
   ========================= */
.cta-parallax-section {
  position: relative;
  padding: 140px 64px;
  overflow: clip;
  background: #070707;
  isolation: isolate;
}
.cta-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,120,40,.16), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(255,90,0,.14), transparent 30%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  transform: scale(1.08);
  will-change: transform;
}
.cta-parallax-wrap {
  position: relative;
  z-index: 1;
}
.cta-parallax-card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  padding: 90px 80px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transform: translateY(40px) scale(.96);
  opacity: 0;
}
.cta-parallax-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,140,60,.14), transparent 30%, transparent 70%, rgba(255,110,30,.10));
  pointer-events: none;
}
.cta-parallax-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffb37d;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.cta-title {
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: .98;
  font-weight: 900;
  color: #f5f5f7;
  margin: 0 0 22px;
}
.cta-text {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
}
.qn {
  font-size: 18px;
  color: #f5f5f7;
}
.proc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform .65s cubic-bezier(.22,.61,.36,1);
}
.proc-image.active {
  transform: translateY(0%);
  z-index: 2;
}
/* waiting below */
.proc-image.next {
  transform: translateY(100%);
  z-index: 3;
}
/* From Uiverse.io by Spacious74 */
.btn-update {
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.btn-container {
  position: relative;
  padding: 12px 20px;
  background: var(--grad-btn);
  border-radius: 10px;
  transition: all 0.4s ease;
}
.btn-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}
.btn-container:hover::before {
  background: var(--grad-btn);
  filter: blur(1.2em);
}
.btn-container:active::before {
  filter: blur(0.2em);
}
/* From Uiverse.io by Spacious74 */
.btn-update-gray {
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 15px;
  background: rgba(0,0,0);
}
.btn-container-gray {
  position: relative;
  padding: 2px 2px;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  transition: all 0.4s ease;
  width: fit-content;
}
.btn-container:hover .btn-container-gray {
  color: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-container-gray::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: opacity 0.8s ease, filter 0.8s ease;
  background: linear-gradient(90deg, #03a9f4, #f441a5); /* Same as hover */
  opacity: 0; /* Hidden by default */
  filter: blur(0);
}
.btn-container-gray:hover::before {
 
  filter: blur(10px);
  opacity: 1; /* Show on hover */
  
}
.btn-container-gray:active::before {
  filter: blur(10px);
}
.btn-update-gray1 {
  color: #d1d1d1;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 15px;
  background: rgba(0,0,0);
}
.btn-container-gray1 {
  position: relative;
  padding: 2px 2px;
  background: linear-gradient(90deg, #adadad, #7a7474);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  transition: all 0.4s ease;
  width: fit-content;
}
.btn-container1:hover .btn-container-gray1 {
  color: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-container-gray1::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: opacity 0.8s ease, filter 0.8s ease;
  background: linear-gradient(90deg, #adadad, #7a7474);
  opacity: 0; /* Hidden by default */
}
.btn-container-gray1:hover::before {
  opacity: 1; /* Show on hover */
  filter: blur(10px);
}
.btn-container-gray1:active::before {
  filter: blur(0.2em);
}
.cs-card .view-btn {
  color: #ffffff;
}
.cs-card .view-btn svg {
  color: #ffffff;
}
.museum-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit, sans-serif;
  font-size: 15px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}
.museum-table th, .museum-table td {
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}
.museum-table thead th {
  color:#f5f5f7;
  font-weight: 700;
  text-align: left;
}
.museum-table thead th:first-child {
  background: #222222;
  width: 180px;
}
.museum-table thead th:nth-child(2), .museum-table thead th:nth-child(3) {
  background: #222222;
}
.museum-table tbody td:first-child {
  font-weight: 600;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.museum-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}
.museum-table tbody tr:hover {
  background: rgba(0, 172, 233, 0.08);
  transition: background .3s ease;
}
.museum-table td {
  line-height: 1.7;
}
.faq-item .font-semibold {
  font-weight: 500 !important;
}
/* .faq-item.open {
  background: rgba(36, 36, 36, 0.32);
} */


/* ══════════════════════════════════════════════════════════
   MOBILE / RESPONSIVE STYLES  (consolidated by breakpoint,
   ordered widest -> narrowest)
   ══════════════════════════════════════════════════════════ */

@media (max-width:1100px) {
  .cs-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cs-large {
    min-height: auto;
  }
  .cs-img-wrap {
    min-height: 320px;
  }
  .cs-card-body {
    padding: 30px;
  }
}

@media (max-width:1024px) {
  #press-track .press-card {
    width: 280px;
  }
}

@media (max-width:1023px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-video-col {
    display: none;
  }
  #hero-text {
    padding: 0 24px 56px;
  }
  .hero-sub-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  #about {
    padding: 80px 24px;
  }
      .about-stats {
        flex-wrap: wrap;
        gap: 24px;
        display: grid;
        grid-column: 0 1;
    }
  .about-stat+.about-stat {
    padding-left: 0;
    border-left: none;
  }
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .cs-card.cs-large {
    grid-column: auto;
  }
  #desktop-nav {
    display: none;
  }
  #hamburger {
    display: flex !important;
  }
  .faq-outer {
    grid-template-columns: 1fr;
  }
  .faq-left {
    position: relative;
    height: auto;
    padding: 60px 24px 32px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .faq-left-answer {
    min-height: auto;
  }
  .faq-left-ans-item {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    display: none;
  }
  .faq-left-ans-item:first-child {
    display: block;
  }
  .faq-row {
    min-height: auto;
    padding: 40px 24px;
  }
}

@media (max-width:991px) {
  .cta-parallax-section {
    padding: 90px 24px;
  }
  .cta-parallax-card {
    padding: 54px 24px;
    border-radius: 24px;
  }
  .cta-title {
    line-height: 1.04;
  }
  .cta-text {
    font-size: .98rem;
    line-height: 1.7;
  }
}

@media (max-width:768px) {
  .cs-card.cs-large .cs-img-wrap {
    height: 260px;
  }


  #navbar img{
    height: 40px !important;
  }




.btn-theme{
  font-weight: 500 !important;
}

.link-cta {
    
    font-size: 17px;
}
#hero-text h1 {
    width: 100%;
    font-weight: 600;
}
  #mob-menu .btn-theme{
    width: 100% !important;
    text-align: center !important;
  }

  .about-copy{
    text-align: center;
  }

  .about-stat {
    padding: 33px 0 !important;
  }

  #hero-text{bottom:80px !important;}

  #hero-text h1{font-size:clamp(30px,6vw,72px);line-height:1.05;margin-bottom:18px;text-align: center}

      .faq-left {
        
        align-items: center;
    }
  .about-inner {
   
    text-align: center;
}

.about-actions {
    justify-content: center;
    gap: 10px !important;
}

  .wrap {
    max-width: 100% !important;
   gap:0 !important;
}

.footer-top {
    background: none !important;
    padding-bottom: 60px;
}

  #services .grid {
    grid-template-columns: repeat(1, 1fr) !important;
   
}

.closing-cta{
  margin-top: 50px;
}
  .cs-stack-card.reveal {
  opacity: 1;
  transform: none  !important;
  transition: none !important;
}

  .cs-card:not(.cs-large) .cs-img-wrap {
    height: 220px;
  }
  .cs-card {
    flex-direction: column;
            min-height: 580px;
                margin-bottom: 50px;
  }

  .cs-tag-row {
    
    margin-bottom: 0px;
}


html, body {
    overflow-x: none !important;
  }
.wrap{
  padding-right: 15px !important;
  padding-left: 15px !important;
}

  .cs-tag {
    color: #f5f5f7;
    font-size: 12px;
  }
  .cs-img {
    width: 100%;
    height: 240px;
  }
  .hscroll-track {
    padding: 0 20px;
  }
  #hero-content h1 {
    font-size: clamp(36px,8vw,60px);
  }
  #cs-space {
    padding: 80px 0;
  }
  .cs-title-block .headline {
    font-size: 34px;
  }
  .cs-title-block .subtitle {
    font-size: 14px;
    max-width: 100%;
  }
  .cs-stack-wrap {
    padding-bottom: 50px;
    margin-top: 0;
  }
  .cs-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
    justify-content: flex-start;
    position: relative !important;
    top: 20px !important;
  }
  .cs-stack-card, .cs-stack-card:nth-child(1), .cs-stack-card:nth-child(2), .cs-stack-card:nth-child(3) {
    position: sticky !important;
    top: 95px !important;
  }
  .cs-img-wrap {
    min-height: 240px;
  }
  .cs-card-body {
    padding: 40px 20px;
    justify-content: flex-start;
  }

  .cs-card-body .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
  }

  .badge {
    
    font-size: 13px;
    
}
  .cs-card-title {
    font-size: 18px;
  }

  .cs-card-desc {
    font-size: 14px;
    color: rgba(172, 172, 172, 1);
    line-height: 1.5;
}

  .museum-table {
    font-size: 14px;
  }
  .museum-table th, .museum-table td {
    padding: 12px 14px;
  }
}

@media (max-width:767px) {
  .testi-left {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding-top: 22px;
  }
  .quote-badge {
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .testi-logo-box {
    width: 100%;
    height: fit-content;
    min-height: fit-content;
  }

  .testi-logo-box img {
    height: 100px
}
  .testi-text {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .testi-name {
    font-size: 18px;
  }
  .testi-role {
    font-size: 14px;
  }
  #press-track .press-card {
    width: 240px;
    min-height: 190px;
    padding: 18px;
  }
  #hero-sticky {
    position: relative;
    top: 0;
    height: fit-content;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    background: #000;
  }
  #hero-text {
    position: absolute;
    margin: 180px auto;
    padding-bottom: 0px;
  }
  #hero-text h1 {
    font-size: clamp(30px, 6.5vw, 96px);
  }
  .hero-tagline {
    text-align: center;
  }
  .hero-sub-row {
    align-items: center;
  }
  #hero-video-el {
    position: relative !important;
  }
  #hero-scroll-space {
    height: fit-content !important;
  }
  #about {
    margin-top: 0 !important;
  }
  .hidden {
    display: none !important;
  }
  .headline {
    font-size: clamp(25px, 3.2vw, 40px);
  }
  .headline br {
    display: none !important;
  }
  .btn-cyan, .btn-ghost {
    font-size: 15px;
    width: fit-content;
    padding: 12px 12px;
  }
  .grad-text {
    font-size: 44px;
  }

  .case-tags {
    font-size: 9.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--beam-a);
}
  .ticker-inner {
    display: flex;
    gap: 30px;
  }
  .cs-header {
    height: auto;
  }
  .cs-stack-wrap {
    margin-top: 0px;
  }
  .svc-card h3 {
    line-height: 1.2;
  }
  .blog-card {
    margin: 0 8px !important;
    /* min-height: 610px !important; */
  }
  .blog-body {
    padding: 26px 28px;
  }
  .blog-img {
    height: 250px;
  }
  .blog-card h4 {
    line-height: 1.3;
  }
  html, body {
    overflow-x: clip;
  }
  footer .font-bold {
    line-height: 1.3;
    font-size: 15px !important;
    color: #f5f5f7 !important;
  }
  footer li {
    line-height: 1.2;
  }
  .faq-left {
    padding-top: 0px;
  }
  .about-stats {
    padding-top: 40px;
    padding-bottom: 40px;
            grid-template-columns: repeat(2, 1fr) !important;
  }
 
  .cs-card:not(.cs-large) .cs-img-wrap {
    width: 100%;
  }

  .testi-card {
  flex-direction: column-reverse;
  align-items: flex-start;
  padding: 35px;
  gap: 18px;
  min-height: auto;
   flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
}

  .subtitle {
    font-size: 16px;
  }
  .proc-desc {
    font-size: 16px;
  }
  .qn {
    font-size: 16px !important;
  }
  .testi-card {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 25px;
    gap: 18px;
    min-height: auto;
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  #testi-carousel-outer {
     overflow: hidden;
  }

  #testi-track {
    padding-left: 30px;   /* moved here */
    padding-right: 30px;
    box-sizing: border-box;
  }
  .about-stat-label {
    font-size: 14px;
    color: rgba(213, 213, 213, 1);
    margin-top: 6px;
    line-height: 1.4;
  }
  #testi-prev, #testi-next {
    display: none !important;
  }
}

@media (min-width:1024px) {
  #hamburger {
    display: none !important;
  }
}

.badge-dot{
  display: none;
}





.bg-layer{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height:300vh;
    z-index: 0;
   background: radial-gradient(circle at 100% 50%, rgb(1 70 145) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 100%);
    will-change: transform;
  }

  .scroll-content{
    position: relative;
    z-index: 1;
  }

  /* ---- Foreground layer (fast, contains the "depth" cards) ---- */
  .fg-layer{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .bg-wrapper{
    position: relative;
    overflow: hidden;
}



.bg-sticky {
            /* This pins the background to the top of the viewport 
               while its parent container is still in view */
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            background: radial-gradient(circle at 100% 50%, rgb(1 70 145) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 100%);
        }


        /* .endapproach {
  
    background: radial-gradient(circle at 100% 50%, rgb(0 192 130 / 43%) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 100%);
    
} */






        .bg-sticky-lb {
            /* This pins the background to the top of the viewport 
               while its parent container is still in view */
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            background: radial-gradient(circle at 10% 10%, rgb(73 0 121) 0%, rgb(0 0 0) 30%, rgb(0 0 0) 100%);
        }


        .bg-sticky-faq {
            /* This pins the background to the top of the viewport 
               while its parent container is still in view */
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            background: radial-gradient(circle at 10% 10%, rgb(1 70 145) 0%, rgb(0 0 0) 30%, rgb(0 0 0) 100%);
        }


        .bg-sticky-blog {
            /* This pins the background to the top of the viewport 
               while its parent container is still in view */
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            background: radial-gradient(circle at 100% 0%, rgb(81 12 50) 0%, rgb(0 0 0) 30%, rgb(0 0 0) 100%);
        }

        .mt-50vh{
          margin-top: -80vh;
        }


        #cta-sec{
              padding: 50px 0px 50px;
    color: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    /* background: url(../img/tst.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; */

    
        }


        .endend{
              border: 0.2px solid #717171;
    box-shadow: 0 0 25px 0 rgba(0, 172, 233, 0.3);
        }


        .kicker {
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--beam-b);
    font-weight: 600;
    margin-bottom: 18px;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--beam-a);
    font-weight: 600;
    margin-bottom: 22px;
}


.link-cta {
    font-size: 19px;
    color: var(--beam-a);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
}

.link-cta::after {
    content: "\203A";
    font-size: 21px;
    transition: transform .3s var(--ease);
}


.svc-card p{
  color: #86868b;
  font-size: 15px;
  font-family: var(--sec-font) !important;
}


#services .grid{
      display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
}

#scroll-hint {
  cursor: pointer;
}


.link-cta:hover::after {
    transform: translateX(3px);
}



.proc-image-wrap {
  position: relative;
}
.proc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.proc-img.active {
  opacity: 1;
}

#proc-img-1{
    z-index:2;
}

#proc-img-2{
    z-index:1;
}





.parallax-bg{
    position:fixed;inset:0;z-index:-1;pointer-events:none;overflow:hidden;
    background-color:var(--bg);
  }
  .parallax-bg .tile{
    position:absolute;left:0;right:0;top:-2600px;bottom:-2600px;
    background-repeat:repeat-y;
    background-image:
      radial-gradient(16vw 16vw at 28% 24%,
        rgba(94,208,255,.16) 0%, rgba(94,208,255,.10) 35%,
        rgba(94,208,255,.04) 60%, transparent 82%),
      radial-gradient(15vw 15vw at 72% 66%,
        rgba(166,107,255,.17) 0%, rgba(166,107,255,.11) 35%,
        rgba(166,107,255,.04) 60%, transparent 82%),
      radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size:100% 2600px,100% 2600px,3px 3px;
    will-change:transform;
    transform:translate3d(0,-2600px,0);
  }
  /* On narrow screens, vw-based blob sizes shrink along with the
     viewport width, so they'd barely be visible — scale them back up
     relative to the smaller screen. */
  @media(max-width:740px){
    .parallax-bg .tile{
      background-image:
        radial-gradient(52vw 52vw at 30% 22%,
          rgba(94,208,255,.16) 0%, rgba(94,208,255,.10) 35%,
          rgba(94,208,255,.04) 60%, transparent 82%),
        radial-gradient(48vw 48vw at 70% 68%,
          rgba(166,107,255,.17) 0%, rgba(166,107,255,.11) 35%,
          rgba(166,107,255,.04) 60%, transparent 82%),
        radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    }
  }
  @media(prefers-reduced-motion:reduce){
    .parallax-bg .tile{transform:translate3d(0,-2600px,0)!important}
  }


  /* footer{
    background: radial-gradient(60% 80% at 50% 120%, rgb(166 107 255 / 43%), transparent 60%)
  } */


  .footer-top{
        background: radial-gradient(60% 80% at 50% 120%, rgb(166 107 255 / 43%), transparent 60%);
    padding-bottom: 60px;
  }


  .beam {
    position: absolute;
    top: -10%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(60% 50% at 50% 0%, rgba(94, 208, 255, .22), transparent 60%), conic-gradient(from 180deg at 50% -10%, transparent 42%, rgba(166, 107, 255, .14) 50%, transparent 58%);
    filter: blur(8px);
}

.about-stat {
    padding: 33px 13px;
    border-radius: 15px;
    background: #0a0a0f;
    border: 1px solid #1d1d22;
    text-align: center;
}


.blog-card .link-cta{
  font-size: 16px;
}


#blog-space{
  align-items: center;
}

#blog-space h2{
  margin-bottom: 0px;
}

#blog-space .link-cta{
  margin-top: 0px;
}

.closing-points {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.closing-points li {
    list-style: none;
    color: #86868b;
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.closing-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--beam-a), var(--beam-b));
}

.closing-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}


.closing-cta a{
  width: 180px;
  text-align: center;
  justify-content: center;
}





.btn-theme {
    flex: 0 0 auto;
    padding: 9px 20px;
    border-radius: 980px;
        font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: 1.5px solid transparent;
    background-image: linear-gradient(rgba(8, 8, 12, 1), rgba(8, 8, 12, 1)), linear-gradient(150deg, var(--beam-a), var(--beam-b));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}


.btn-gray {
       background: transparent !important;
    color: var(--ink) !important;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 11px 23px;
    border-radius: 980px;
    background: var(--ink);
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: transform .3s var(--ease), opacity .3s;
    display:inline-flex; align-items:center; gap:8px;
}


.btn-gray:hover {

    transform: scale(1.04);
}



.btn-theme:hover {
    transform: scale(1.02);
    box-shadow: 0 0 18px -2px rgba(94, 208, 255, .4);
}


.btn-theme.pill-glow{
    animation: pillGlow 3.2s ease-in-out infinite;
}


@keyframes pillGlow {
    0%, 100% {
    box-shadow: 0 0 14px 0 rgba(94, 208, 255, .35), 0 0 26px 4px rgba(166, 107, 255, .18);
}
    50% {
    box-shadow: 0 0 22px 2px rgba(94, 208, 255, .5), 0 0 40px 8px rgba(166, 107, 255, .3);
}
}



.wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 22px;
}


nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}


.sol-mark {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(94, 208, 255, .18), rgba(166, 107, 255, .22));
    border: 1px solid rgba(255, 255, 255, .08);
}


.sol-mark img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(94, 208, 255, .5));
}






    #hamburger span:nth-child(2) {
        top: 10px;
        width: 16px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translateX(50%);
    }


    #hamburger span{
      background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
    }

.faq-ans-content {
  max-height: 4.5em;         /* roughly 3 lines at your font-size/line-height */
  overflow: hidden;
 transition: max-height .45s cubic-bezier(.22,.61,.36,1);
}

.faq-ans-content.expanded {
  max-height: 100%;         /* large enough to fit the full text */
  
}

.read-more-btn {
  display: inline-block;
  margin-top: 6px;
  color: var(--beam-a);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}



.text-white{
  color: #f5f5f7 !important;
}


/* ---------- hero: full-screen video ---------- */
  .hero{position:relative;height:100vh;overflow:hidden}
  .hero-video-frame{
    position:fixed;top:0;left:0;width:100vw;height:100vh;overflow:hidden;z-index:5;
    will-change:width,height,transform,border-radius,box-shadow;
    box-shadow:0 0 0 rgba(94,208,255,0);
  }
  .hero-bg-video{width:100%;height:100%;object-fit:cover;display:block;pointer-events:none}
  #hero-overlay{position:absolute;inset:0;pointer-events:none;z-index:6}
  #hero-text{position:absolute;left:0;right:0;bottom:40px;z-index:10;max-width:1500px;margin:0 auto;padding:0 24px;color:#fff;}
  #hero-text h1{font-size:clamp(27px,6vw,72px);line-height:1.05;margin-bottom:18px;}
  .hero-tagline{font-size:clamp(16px,1.2vw,20px);color:rgba(255,255,255,.85);max-width:760px;}
  .scroll-hint{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:10;
    color:rgba(255,255,255,.7);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
    animation:float 2.4s ease-in-out infinite}

  /* ---------- about ---------- */
  section.about{padding:150px 0 40px}
  .about-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:56px;align-items:center}
  /* Bigger slot than before, and it reserves the glow's breathing room too */
  .about-video-slot{aspect-ratio:16/9;border-radius:22px}
  .about-copy h2{font-size:clamp(28px,3.6vw,40px);font-weight:600;letter-spacing:-.02em;line-height:1.15;margin-top:10px}
  .about-copy p{color:var(--muted);font-size:16px;line-height:1.65;margin-top:16px;max-width:540px}
  .about-copy .cta-row{margin-top:26px}
  @media(max-width:860px){.about-grid{grid-template-columns:1fr;gap:28px}}



  .logo-chip {
    flex: 0 0 auto;
    width: 180px;
    height: 110px;
    border-radius: 16px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}


.logo-chip img {
    max-width: 100%;
    object-fit: contain;
}



/* .ticker-inner {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 92%, transparent);
} */

.logo-chip img {
    
    max-width: 100%;
    object-fit: contain;
}



.press-card img{
  filter: brightness(0) invert(1) ;
}


.press-card img.quote{
  filter:none
}






/* ══════════════════════════════════════════════════════════
   MUSEUM EXPERIENCE CENTERS — page-specific styles
   Additive to style.css. Reuses tokens: --beam-a, --beam-b, --ink,
   --muted, --line, --bg, --bg-elev, --ease, --maxw, --cyan, --cyan-light
   ══════════════════════════════════════════════════════════ */

.mec-section {
  padding: 130px 0;
  position: relative;
}
.mec-section.tight {
  padding: 90px 0;
}
.mec-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.mec-head .eyebrow { justify-content: center; display: flex; }
.mec-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.mec-head p {
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
}
.mec-head.left { text-align: left; margin: 0 0 56px; }
.mec-head.left .eyebrow { justify-content: flex-start; }

/* ── Mini hero ── */
.mec-hero {
  padding: 190px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mec-hero .eyebrow { justify-content: center; display: flex; }
.mec-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  max-width: 900px;
  margin: 0 auto 22px;
}
.mec-hero .sub {
  max-width: 660px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
}
.mec-hero .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ── Centered narrative blocks (Future / Corporate / Turnkey Delivery) ── */
.mec-narrative {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.mec-narrative h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 26px;
}
.mec-narrative p {
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
  max-width: 780px;
  margin: 0 auto 18px;
}
.mec-narrative-img {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.mec-narrative-img img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}

/* ── Project rows (alternating) ── */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.project-list .project-row:first-child { border-top: none; }
.project-row.reverse .project-media { order: 2; }
.project-row.reverse .project-copy { order: 1; }
.project-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  /* aspect-ratio: 16/10; */
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.project-media .fusion-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(9,9,14,.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.project-tag {
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--beam-a);
  font-weight: 600;
  margin-bottom: 14px;
}
.project-copy h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.project-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 460px;
}


.project-list .cs-card-body{
  background: rgba(255,255,255,0);
}

/* ── Draggable before/after comparison slider ── */
.compare-split {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 0 0 1px rgba(255,255,255,.02), 0 40px 100px -30px rgba(94,208,255,.15);
  aspect-ratio: 16/9;
  user-select: none;
  cursor: ew-resize;
}
.compare-split .split-base-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.split-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  will-change: width;
}
.split-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slider-w, 1000px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.compare-label {
  position: absolute;
  top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
  z-index: 3;
  pointer-events: none;
}
.compare-label.left { left: 24px; }
.compare-label.right { right: 24px; }
.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.6);
  box-shadow: 0 0 12px rgba(255,255,255,.5);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  will-change: left;
}
.compare-dot {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 6px rgba(94,208,255,.18), 0 6px 20px rgba(0,0,0,.4);
  cursor: ew-resize;
  will-change: left;
  transition: transform .15s;
}
.compare-dot:active,
.compare-split.dragging .compare-dot {
  transform: translate(-50%,-50%) scale(1.12);
}

/* ── Compare list (traditional vs digital) ── */
.compare-list {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.compare-col-label {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.compare-col-label.digital { color: var(--beam-a); }
.compare-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.compare-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.compare-item p {
 
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
}

/* ── Solutions block (copy + glow / vertical 3-step) ── */
.solutions-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.solutions-copy {
  position: sticky;
  top: 130px;
  /* border-radius: 24px;
  padding: 48px 40px;
  background: radial-gradient(120% 100% at 0% 100%, rgba(94,208,255,.12), transparent 60%);
  border: 1px solid rgba(255,255,255,.06); */
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solutions-copy p {
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
  margin-top: 16px;
  
}
.tl-vertical { position: relative; padding-left: 56px; }
.tl-vertical::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,.28) 50%, transparent 0%);
  background-size: 1px 10px;
  height: fit-content;
}
.tl-progress {
  position: absolute;
  left: 15px;
  top: 16px;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--beam-a), var(--beam-b));
  box-shadow: 0 0 10px rgba(94,208,255,.6);
  transition: height .45s var(--ease);
  z-index: 1;
}
.tl-step { position: relative; padding-bottom: 150px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -56px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #2a2a30;
  box-shadow: 0 0 0 5px var(--bg);
  z-index: 2;
  transition: background .4s, box-shadow .4s, transform .4s var(--ease);
}
.tl-step.active .tl-dot {
  background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
  box-shadow: 0 0 0 5px var(--bg), 0 0 24px rgba(94,208,255,.55);
  transform: scale(1.12);
}
.tl-step h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--muted);
  transition: color .4s;
}
.tl-step.active h4 { color: #fff; }
.tl-step p {
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
  max-width: 520px;
  opacity: .55;
  transition: opacity .4s;
}
.tl-step.active p { opacity: 1; }

/* ── Service rows (image left/right + copy) ── */
.service-rows { display: flex; flex-direction: column; gap: 60px; max-width: 1000px; margin: 0 auto; }
.service-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.service-row:hover {
  border-color: rgba(166,107,255,.32);
  box-shadow: 0 0 50px -12px rgba(94,208,255,.28), 0 0 80px -16px rgba(166,107,255,.24);
  transform: translateY(-3px);
}
.service-row .svc-img {
  position: relative;
  min-height: 190px;
}
.service-row .svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-row .svc-copy { padding: 68px 45px; }
.service-row .svc-copy h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-row .svc-copy p { 
  
  font-size: var(--f-size);
  line-height: var(--f-height);
  color: var(--muted);  }

/* ── Advantage grid ── */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
}
.advantage-item { padding-top: 20px; border-top: 2px solid #000005; position: relative; }
.advantage-item::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg,var(--beam-a),transparent, transparent);
}
.advantage-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.advantage-item p { font-size: 14.5px; color: var(--muted); font-size: var(--f-size);
  line-height: var(--f-height); }

/* ── Visitor experience tabs (Apple-style sliding indicator) ── */
.visit-tabs {
  position: relative;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  margin: 0 auto 48px;
}
.visit-tabs { display: flex; justify-content: center; width: max-content; }
.visit-tab-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: transform .48s cubic-bezier(.34,1.35,.4,1), width .48s cubic-bezier(.34,1.35,.4,1);
  z-index: 0;
  will-change: transform, width;
}
.visit-tab {
  position: relative;
  z-index: 1;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .35s ease;
  white-space: nowrap;
}
.visit-tab.active {
  color: #000;
}
.visit-panel { display: none; }
.visit-panel.active {
  display: grid;
  animation: visitPanelIn .55s cubic-bezier(.16,1,.3,1);
}
@keyframes visitPanelIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .visit-panel.active { animation: none; }
  .visit-tab-indicator { transition: none; }
}
.visit-panel {
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.visit-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(94,208,255,.28);
  box-shadow: 0 0 60px -18px rgba(94,208,255,.35);
  aspect-ratio: 4/5;
  width: 100% !important
}
.visit-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.visit-copy h3 { font-size: 28px; font-weight: 700; margin-bottom: 22px; }
.visit-feature { margin-bottom: 20px; }
.visit-feature h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.visit-feature p { font-size: var(--f-size);
  line-height: var(--f-height); color: var(--muted);  max-width: 460px; }

/* ── Execute CTA (centered glow) ── */
.execute-cta {
  text-align: center;
  position: relative;
  padding: 90px 0;
}
.execute-cta .eyebrow { justify-content: center; display: flex; }
.execute-cta h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; margin-bottom: 16px; }
.execute-cta p { color: var(--muted); font-size: var(--f-size);
  line-height: var(--f-height); margin-bottom: 32px; }
.execute-cta .cta-row { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-play svg { width: 12px; height: 12px; }

/* ── Zigzag journey timeline ── */
.journey-timeline { position: relative; max-width: 1100px; margin: 0 auto; }
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,.22) 50%, transparent 0%);
  background-size: 1px 10px;
  transform: translateX(-50%);
}
.journey-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--beam-a), var(--beam-b));
  box-shadow: 0 0 12px rgba(94,208,255,.6);
  transform: translateX(-50%);
  transition: height .5s var(--ease);
  z-index: 0;
}
.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 100px;
}
.journey-item:last-child { margin-bottom: 0; }
.journey-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  max-width: 420px;
  opacity: .4;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .5s;
}
.journey-item.active .journey-card {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(94,208,255,.28);
}
.journey-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.journey-card p { font-size: var(--f-size);
  line-height: var(--f-height); color: var(--muted); }
.journey-item.left .journey-card { grid-column: 1; justify-self: end; }
.journey-item.left .journey-spacer { grid-column: 2; }
.journey-item.right .journey-card { grid-column: 2; justify-self: start; }
.journey-item.right .journey-spacer { grid-column: 1; }
.journey-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2a2a30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 6px var(--bg);
  z-index: 2;
  opacity: .5;
  transition: background .4s, box-shadow .4s, opacity .4s;
}
.journey-item.active .journey-dot {
  background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
  box-shadow: 0 0 0 6px var(--bg), 0 0 26px rgba(94,208,255,.6);
  opacity: 1;
  animation: journeyDotPop .55s var(--ease) forwards;
}
@keyframes journeyDotPop {
  0%   { transform: translate(-50%,-50%) scale(.5); }
  55%  { transform: translate(-50%,-50%) scale(1.3); }
  100% { transform: translate(-50%,-50%) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .journey-item.active .journey-dot { animation: none; }
}

/* ── Technology tag cloud ── */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tech-copy p { color: var(--muted); font-size: var(--f-size);
  line-height: var(--f-height); margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
.tech-tags .tag-row { display: flex; gap: 12px; flex-wrap: wrap; width: 100%; }
.tech-tags .tag-row:nth-child(2) { justify-content: center; }
.tech-tags .tag-row:nth-child(3) { justify-content: flex-end; }
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px;
  font-weight: 500;
  color: #e5e5ea;
  white-space: nowrap;
}
.tech-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
  flex-shrink: 0;
}

/* ── Segments served (3-col) ── */
.segments-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.segments-panel-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
  flex-shrink: 0;
}

.seg-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(20,20,24,.85);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
}
.seg-nav-btn:hover { background: rgba(40,40,46,.9); }
.seg-nav-btn:active { transform: scale(.94); }






  .segments-panel-list::-webkit-scrollbar { display: none; }


.segment-item {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 14px 18px;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.segment-item:hover { border-color: rgba(94,208,255,.3); }
.segment-item .seg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 600;
}
.segment-item .seg-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .3s;
}
.segment-item.active { background: rgba(255,255,255,.06); }
.segment-item.active .seg-icon { transform: rotate(45deg); }
.segment-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, margin .35s ease;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.segment-item.active .segment-desc {
  max-height: 160px;
  opacity: 1;
  margin-top: 10px;
}
.segments-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(94,208,255,.28);
  box-shadow: 0 0 60px -18px rgba(94,208,255,.35);
  aspect-ratio: 16/9;
  position: relative;
}
.segments-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.segments-media .media-base { position: relative; z-index: 1; }
.segments-media .media-wipe {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .65s cubic-bezier(.65,0,.35,1);
}

.segments-panel {
  position: relative;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: calc(100% - 52px);
}


@media (prefers-reduced-motion: reduce) {
  .segments-media .media-wipe { transition: none; }
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .project-row { grid-template-columns: 1fr; gap: 24px; }
  .project-row.reverse .project-media { order: 1; }
  .project-row.reverse .project-copy { order: 2; }
  .project-copy p { max-width: 100%; }
  .solutions-grid { grid-template-columns: 1fr; gap: 40px; }
  .compare-list { grid-template-columns: 1fr; gap: 32px; }
  .compare-item, .compare-col-label { text-align: left; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-row .svc-img { min-height: 220px; }
  .visit-panel { grid-template-columns: 1fr; }
  .visit-media { margin: 0 auto; }
  .journey-item { grid-template-columns: 1fr; }
  .journey-timeline::before { left: 20px; }
  .journey-dot { left: 20px; }
  .journey-item.left .journey-card,
  .journey-item.right .journey-card { grid-column: 1; justify-self: stretch; max-width: 100%; margin-left: 56px; }
  .tech-grid { grid-template-columns: 1fr; gap: 32px; }
  .segments-grid { grid-template-columns: 1fr; }
  .segments-media { max-width: 420px; margin: 0 auto; aspect-ratio: 16/9; }
.seg-nav-btn { width: 28px; height: 28px; }


}
@media (max-width: 640px) {
  .mec-section { padding: 80px 0; }
  .advantage-grid { grid-template-columns: 1fr !important; gap: 70px; }
  .mec-hero { padding: 150px 0 60px; }
}




.compare-col-label.right{
  text-align: right;
}

.compare-col-label.left{
  text-align: left;
}

.compare-item.right {
  text-align: right;
}

.compare-item.left {
  text-align: left;
}

.segments-grid {
      position: relative;
      display: grid;
      grid-template-columns: 420px minmax(0, 1fr);
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
      align-items: start;
    }



.segments-left {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px;
      height: 530px;
    }

    .segments-nav {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .segments-nav button {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--seg-card-bg);
      border: 1px solid var(--seg-card-border);
      color: var(--seg-text);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .25s ease, transform .2s ease;
    }
    .segments-nav button:hover { background: #1c1c20; }
    .segments-nav button:active { transform: scale(.94); }
    .segments-nav svg { width: 16px; height: 16px; }

    .segments-list {
      height: 100%;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding-right: 4px;
      scroll-behavior: smooth;
    }
    .segments-list::-webkit-scrollbar { width: 4px; }
    .segments-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }


     @media (max-width: 900px) {
      .segments-grid { grid-template-columns: 1fr; }
      .segments-visual { position: static; order: -1; }
      .segments-left { height: 420px; }
    }
    


.segments-panel-list { display: flex; 
  flex-direction: column; 
  gap: 10px;
  max-height: 500px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; }

  
.segments-panel-list::-webkit-scrollbar { display: none; }

.seg-pill {
  background: rgba(20,20,24,.86);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-radius .5s cubic-bezier(.32,1.5,.5,1);
}

/* The bubble-morph technique: each state is a CSS Grid row whose track
   animates between 0fr and 1fr, which lets height:auto content animate
   smoothly (a fixed max-height would clip long descriptions or feel abrupt).
   Both states crossfade at the same time via opacity. */
.seg-pill-row {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows .5s cubic-bezier(.32,1.5,.5,1),
              opacity .32s ease;
}
.seg-pill.active .seg-pill-row {
  grid-template-rows: 0fr;
  opacity: 0;
}
.seg-pill-row-inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px 13px 14px;
  font-size: 20px;
  line-height: var(--f-height);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.seg-pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
}

.seg-pill-desc {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  cursor: default;
  transition: grid-template-rows .5s cubic-bezier(.32,1.5,.5,1),
              opacity .35s ease .08s;
}
.seg-pill.active .seg-pill-desc {
  grid-template-rows: 1fr;
  opacity: 1;
}
.seg-pill-desc-inner {
  overflow: hidden;
  padding: 0 22px;
}
.seg-pill.active .seg-pill-desc-inner {
  padding: 4px 22px 20px;
}
.seg-pill-desc p {
 font-size: var(--f-size);
  line-height: var(--f-height);
  color: rgba(255,255,255,.82);
  white-space: normal;
  cursor: pointer;
}
.seg-pill-desc strong { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .seg-pill,
  .seg-pill-row,
  .seg-pill-desc { transition: none; }
}




.segments-media {
  position: relative;
  overflow: hidden;
}
.segments-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-base {
  position: relative;
  z-index: 1;
}
.media-wipe {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .65s cubic-bezier(.65,0,.35,1);
}



@media(min-width: 1080px){
  .segments-panel-list.left .seg-pill-row-inner
 {
    
    flex-direction: row-reverse;
}

.segments-panel-list.left .seg-pill-desc-inner
 {
    
    text-align: right;
}
}


/* ── STICKY SECTION NAVIGATOR ── */
.section-nav {
  position: fixed;
  bottom: 80px;
  top: auto;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 22px;
  z-index: 150;
  pointer-events: none;
  opacity: 0;                              /* ← hidden by default */
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.section-nav.is-visible {
  opacity: 1;                              /* ← only visible once class is added */
  transform: translateY(0);
}
.section-nav-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  max-width: 100%;
  padding: 5px;
  background: rgba(18, 18, 24, .6);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  pointer-events: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-indicator {
  position: absolute;
  top: 5px;
  left: 0px;
  height: calc(100% - 10px);
  width: 0;
  border-radius: 999px;
  background: #f5f5f7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
  transition: transform .4s cubic-bezier(.22,.61,.36,1), width .4s cubic-bezier(.22,.61,.36,1);
  z-index: 0;
  will-change: transform, width;
}
.section-nav-item {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 9px 18px;
  border: none;
  background: transparent;
  color: #cfcfd4;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: color .3s;
}
.section-nav-item:hover { color: #fff; }
.section-nav-item.active { color: #0a0a0f; }
@media (max-width: 900px) {
  .section-nav { padding: 12px 16px; justify-content: flex-start; }
  .section-nav-item { padding: 8px 14px; font-size: 13px; }
}




/* ===== Container that holds the floating pills ===== */
  .tech-tags-float {
    position: relative;
    width: 100%;
    height: 100%;         /* adjust to taste / responsive below */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    /* remove the next line if you don't want a visible boundary */
    /* border: 1px dashed rgba(255,255,255,0.08); */
  }

  @media (max-width: 640px) {
    .tech-tags-float { height: 620px; }
  }

  /* ===== The pill itself ===== */
  .tech-tag {
    position: absolute;
    top: 0; left: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 10px 18px;
    border-radius: 999px;
    background: #101014;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fffff7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    user-select: none;
    cursor: default;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    /* will-change helps smooth GPU-accelerated movement */
    will-change: transform;
  }

  .tech-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-text);
    /* box-shadow: 0 0 8px 1px rgba(122,125,255,0.8); */
    flex-shrink: 0;
  }

  /* subtle pulse so it doesn't feel static even mid-pause */
  .tech-tag.bounced {
    
    box-shadow: 0 0 18px -2px rgba(94, 208, 255, .4);
  }



  @media(max-width: 760px){
    .journey-progress {
    position: absolute;
    left: 20px;
    }

    .solutions-copy {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.service-row .svc-copy {
    padding: 50px 30px;
}


.compare-col-label
 {
    font-size: 25px;
    font-weight: 700;
    text-align: center !important;
    /* padding-bottom: 20px; */
    /* margin-bottom: 20px; */
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.compare-item.right {
    text-align: left !important;
}


.compare-item.right h4::before {
    content: "TRADITIONAL MUSEUMS";
    display: block;      /* or inline-block */
    white-space: normal; /* allow wrapping */
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--beam-b);
    font-weight: 600;
    margin-bottom: 5px;

}


.compare-item.left h4::before {
    content: "DIGITAL MUSEUMS";
    display: block;      /* or inline-block */
    white-space: normal; /* allow wrapping */
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--beam-a);
    font-weight: 600;
    margin-bottom: 5px;

}

.compare-col-label.digital.left::before {
   content: "Vs";
        display: inline-block;
        margin-right: 0.5rem;
        display: block;
        white-space: normal;
        color: #fff;
        /* border: 1px solid #fff; */
        /* width: fit-content; */
        /* left: 46%; */
        /* position: absolute; */
        padding: 9px;
        border-radius: 50%;
        font-size: 25px;
}

.compare-col-label.digital {
    color: var(--beam-a);
    margin-top: -35px;
}

/* #segmentsMediaImg{
  display: none;
} */

.compare-item {
    padding: 30px 18px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .05); */
    text-align: center;
        background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.compare-item h4{
  font-size: 22px;
}


.project-row {
    display: block;
}

.visit-media {
    
    height: 350px;
}
  }



  .project-row.reverse .cs-card-body .case-tags{
  text-align: right;
  }


  .project-row.reverse .cs-card-body .cs-card-title{
  text-align: right;
  }
  
.project-row.reverse .cs-card-body .cs-card-desc{
  text-align: right;
}

.project-row.reverse .cs-card-body .cs-badges{
    justify-content: flex-end;
}


.project-row.reverse .badge {
    border-left: 0;
    border-right: 3px solid #00ace9;

}


.project-row.reverse .cs-card-body {
    
    align-items: flex-end;
}




  .cardi{
    position: relative;
    background: #0b0e18;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 32px;
    overflow: hidden;
    isolation: isolate;
    cursor: default;
    transition: border-color 0.35s ease, transform 0.35s ease;
  }

  .cardi::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
      480px circle at var(--x, 50%) var(--y, 50%),
      rgba(77,141,255, 0.14),
      rgba(77,141,255, 0.05) 35%,
      transparent 65%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .cardi::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
      280px circle at var(--x, 50%) var(--y, 50%),
      rgba(77, 141, 255, 0.55),
      transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .cardi:hover::before,
  .cardi:hover::after{
    opacity: 1;
  }

  .cardi:hover{
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
  }

  .cardi > *{
    position: relative;
    z-index: 1;
  }

  .eyebrow{
    
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }

  .cardi h3{
    color: #f5f6fa;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
  }

  .cardi p{
    font-size: var(--f-size);
    line-height: var(--f-height);
    margin: 0 0 22px;
    color: #8b93a7;
  }

  .cardi .pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cardi .pill{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: #b7bdcc;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
  }


   .servicessec .grid{
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
        max-width: 1200px;
        margin: 0 auto;
  }

  @media (max-width: 720px){
    .servicessec .grid{ grid-template-columns: 1fr !important }

    .inservice .grid{ grid-template-columns: 1fr !important }
  }



  .chip-wrap{ margin-top:56px; }
  .chip-diagram{
    position:relative;
    max-width:900px;
    margin:0 auto;
    aspect-ratio:900/620;
  }
  .chip-svg{
    position:absolute; inset:0;
    width:100%; height:100%;
  }
  .chip-track{
    fill:none;
    stroke:rgba(255,255,255,.08);
    stroke-width:2;
  }
  .chip-flow{
    fill:none;
    stroke-width:2.25;
    stroke-linecap:round;
    stroke-dasharray:10 14;
    animation:chipDash 1.4s linear infinite;
  }
  #chipPathTR.chip-flow, #chipPathBR.chip-flow{ animation-direction:reverse; }
  @keyframes chipDash{ to{ stroke-dashoffset:-48; } }
  .chip-dot{
    filter:drop-shadow(0 0 6px currentColor);
  }
  .chip-pad{
    fill:var(--beam-a);
    filter:drop-shadow(0 0 5px rgba(94,208,255,.9));
    animation:chipPadPulse 2.4s ease-in-out infinite;
  }
  .chip-pad.pad-a{ animation-delay:-.2s; }
  .chip-pad.pad-b{ animation-delay:-.9s; fill:var(--beam-b); }
  .chip-pad.pad-c{ animation-delay:-1.5s; }
  .chip-pad.pad-d{ animation-delay:-2.1s; fill:var(--beam-b); }
  @keyframes chipPadPulse{
    0%,100%{ opacity:.55; }
    50%{ opacity:1; }
  }

  .chip-hub{
    position:absolute;
    left:50%; top:50%;
    transform:translate(-50%,-50%);
    width:29%;
    aspect-ratio:170/60;
    display:flex; align-items:center; justify-content:center;
    background:var(--bg-elev);
    border:1px dashed rgba(166,107,255,.55);
    border-radius:8px;
    box-shadow:0 0 0 1px rgba(94,208,255,.12), 0 0 30px rgba(166,107,255,.28), inset 0 0 20px rgba(94,208,255,.06);
    animation:chipHubPulse 2.6s ease-in-out infinite;
  }
  .chip-hub span{
    font-size:15px; font-weight:800; letter-spacing:.04em;
    background:var(--grad-text);
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  @keyframes chipHubPulse{
    0%,100%{ box-shadow:0 0 0 1px rgba(94,208,255,.12), 0 0 30px rgba(166,107,255,.28), inset 0 0 20px rgba(94,208,255,.06); }
    50%{ box-shadow:0 0 0 1px rgba(94,208,255,.22), 0 0 46px rgba(166,107,255,.5), inset 0 0 26px rgba(94,208,255,.12); }
  }

  .chip-node{
    position:absolute;
    width:24.4%;
    aspect-ratio:1/1;
    padding:26px 28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
        border-radius: 25px !important;
    background:var(--bg-elev);
    border:1px solid rgba(255,255,255,.08);
    border-radius:4px;
    transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  }
  .chip-node:hover{
    border-color:rgba(166,107,255,.5);
    box-shadow:0 0 24px rgba(94,208,255,.15);
    transform:translateY(-2px);
  }
  .chip-node .chip-bar{
    display:block; width:28px; height:3px; border-radius:2px;
    background:var(--grad-text); margin-bottom:12px;
  }
  .chip-node h4{ font-size:23px; font-weight:800; color:#f5f5f7; margin:0 0 8px; line-height:1.2; }
  .chip-node p{ font-size:13px; color:var(--muted,#9a9aa5); margin:0; }

  .chip-tl{ left:0;   top:6.45%; }
  .chip-tr{ right:0;  top:6.45%; }
  .chip-bl{ left:0;   bottom:6.45%; }
  .chip-br{ right:0;  bottom:6.45%; }

  .chip-mobile-trunk{ display:none; }

  @media (max-width:768px){
    .chip-diagram{
      aspect-ratio:auto;
      padding-left:30px;
    }
    .chip-svg{ display:none; }

    .chip-mobile-trunk{
      display:block;
      position:absolute;
      left:10px; top:0; bottom:0;
      width:2px;
      background-image:repeating-linear-gradient(
        to bottom,
        var(--beam-a) 0 6px,
        transparent 6px 16px
      );
      background-repeat:repeat-y;
      background-size:2px 32px;
      filter:drop-shadow(0 0 4px rgba(94,208,255,.7));
      animation:trunkFlow 1.1s linear infinite;
    }
    @keyframes trunkFlow{
      to{ background-position-y:-32px; }
    }


    
  .project-row.reverse .cs-card-body .case-tags{
  text-align: left;
  }


  .project-row.reverse .cs-card-body .cs-card-title{
  text-align: left;
  }
  
.project-row.reverse .cs-card-body .cs-card-desc{
  text-align: left;
}

.project-row.reverse .cs-card-body .cs-badges{
    justify-content: flex-start
}


.project-row.reverse .badge {
    border-right: 0;
    border-left: 3px solid #00ace9;

}


.segments-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    height: 600px;
}

.segments-nav {
    /* justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 12px; */

    display: none;
}

.project-row.reverse .cs-card-body {
    
    align-items: flex-start;
}



    .chip-hub{
      position:relative; transform:none; width:100%; aspect-ratio:auto;
      padding:14px 0; margin-bottom:18px;
      left: 0;
    }
    .chip-node{
      position:relative; width:100%; aspect-ratio:auto; padding:20px 22px; margin-bottom:14px;
    }
    .chip-tl,.chip-tr,.chip-bl,.chip-br{ left:auto; right:auto; top:auto; bottom:auto; }

    /* branch pad + connector stub linking each block to the trunk */
    .chip-hub::before,
    .chip-node::before{
      content:'';
      position:absolute;
      left:-23px; top:50%;
      transform:translateY(-50%);
      width:8px; height:8px;
      border-radius:1px;
      background:var(--beam-a);
      filter:drop-shadow(0 0 5px rgba(94,208,255,.9));
      animation:chipPadPulse 2.4s ease-in-out infinite;
      z-index:2;
    }
    .chip-hub::after,
    .chip-node::after{
      content:'';
      position:absolute;
      left:-19px; top:50%;
      transform:translateY(-50%);
      width:19px; height:2px;
      background:var(--beam-a);
      opacity:.55;
      z-index:1;
    }
    .chip-tr::before, .chip-tr::after,
    .chip-br::before, .chip-br::after{ background:var(--beam-b); }
    .chip-tl::before{ animation-delay:-.2s; }
    .chip-tr::before{ animation-delay:-.9s; }
    .chip-bl::before{ animation-delay:-1.5s; }
    .chip-br::before{ animation-delay:-2.1s; }
  }

  @media (prefers-reduced-motion:reduce){
    .chip-flow{ animation:none; stroke-dasharray:none; }
    .chip-hub{ animation:none; }
    .chip-dot{ display:none; }

    
  }




   /* ---------- ⑨⑩ technology & segment pill clouds ---------- */
  .pill-cloud{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;max-width:1000px;margin:50px auto}
  .chip{display:inline-flex;align-items:center;gap:9px;padding:10px 20px;border-radius:980px;border:1px solid var(--line);
    background:var(--bg-elev);color:var(--ink);font-size:14.5px;transition:border-color .3s,transform .3s,box-shadow .3s}
  .chip::before{content:"";width:6px;height:6px;border-radius:50%;flex:0 0 auto;
    background:linear-gradient(135deg,var(--beam-a),var(--beam-b))}


    .chip:hover{border-color:rgba(94,208,255,.4);transform:translateY(-2px);box-shadow:0 8px 24px -12px rgba(94,208,255,.35)}




    /* ── Point cards (Concerns / Mistakes checklists) ── */
.i40-point-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.i40-point-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg-elev);
      align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.i40-point-card:hover {
  transform: translateY(-3px);
  border-color: rgba(94,208,255,.3);
  box-shadow: 0 20px 50px -24px rgba(94,208,255,.28);
}
.i40-point-ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #ffa9a9, #eb0000);
  color: #fff;
}
.i40-point-ico svg { width: 15px; height: 15px; }
.i40-point-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #d6d6dc;
}
/* warn variant used for "mistakes" section */
.i40-point-card.warn:hover {
  border-color: rgba(255,158,94,.35);
  box-shadow: 0 20px 50px -24px rgba(255,140,60,.3);
}
.i40-point-card.warn .i40-point-ico {
  background: linear-gradient(150deg, #ffb37d, #ff7a3d);
}



.i40-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(9,9,14,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.i40-video-media:hover .i40-play-btn {
  transform: translate(-50%,-50%) scale(1.08);
  background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
}
.i40-play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.i40-video-media:hover .i40-play-btn svg path { fill: #05050a; }
.i40-video-len {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(9,9,14,.65);
  border: 1px solid rgba(255,255,255,.14);
  padding: 5px 11px;
  border-radius: 100px;
}




.mec-head h3{
    font-size: clamp(18px, 3.4vw, 25px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 18px;
}


.gain-card{
      padding: 80px 26px;
    background: rgb(10 10 15 / 75%);
    border: 1px solid var(--line);
    border-radius: 16px;
}



/* ── Revolutions timeline (1.0 → 4.0) ── */
.i40-rev-grid {
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 50px;
}
.i40-rev-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 20px 26px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.i40-rev-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rev-grad);
}
.i40-rev-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.65);
}
.i40-rev-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--rev-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  color: #05050a;
  letter-spacing: -.02em;
  box-shadow: 0 10px 26px -10px var(--rev-shadow, rgba(0,0,0,.5));
}
.i40-rev-year {
  margin-top: 20px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    position: absolute;
    right: 17px;
    top: 0;
    opacity: .3;
}
.i40-rev-label {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--rev-accent);
}
.i40-rev-desc {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.i40-rev-ico {
  margin-top: 20px;
  width: 34px;
  height: 34px;
  color: var(--rev-accent);
  opacity: .9;
}
.i40-rev-card.rev-1 { --rev-grad: linear-gradient(135deg,#ff3d8a,#c9007a); --rev-accent: #ff5fa0; --rev-shadow: rgba(255,61,138,.35); }
.i40-rev-card.rev-2 { --rev-grad: linear-gradient(135deg,#12d3c4,#00958a); --rev-accent: #1fe0d1; --rev-shadow: rgba(18,211,196,.35); }
.i40-rev-card.rev-3 { --rev-grad: linear-gradient(135deg,#ffb545,#ff8a00); --rev-accent: #ffb545; --rev-shadow: rgba(255,138,0,.35); }
.i40-rev-card.rev-4 { --rev-grad: linear-gradient(135deg,var(--beam-a),var(--beam-b)); --rev-accent: #9fd8ff; --rev-shadow: rgba(94,208,255,.35); }



@media (max-width: 900px) {
 
  .i40-rev-grid { grid-template-columns: repeat(1, 1fr); }


  .project-copy{
    margin-top: 30px;
  }

  .mec-section  .project-row {
        display: flex;
        flex-direction: column;
    }

    .i40-point-grid {
    
    grid-template-columns: 1fr;
    
}

.mec-section .project-row.project-row.reverse {
        flex-direction: column-reverse;
    }

.gain-card .project-row{
  align-items: flex-start;
}
}


.project-row.grid-3{
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}








.stage {
    position: relative;
    width: min(600px, 92vw);
    aspect-ratio: 1536 / 1024;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0e18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
  }

  .frame-label {
    position: absolute;
    top: -46px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--beam-a);
    font-weight: 600;
    margin-bottom: 22px;
  }

  .frame-label span {
    color: var(--accent);
  }

  .engine-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: none;
    border-radius: 18px;
  }

  .engine-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .layer-normal {
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
  }

  .layer-digital {
    z-index: 2;
    filter: drop-shadow(0 0 25px rgba(63,208,255,0.45));
    -webkit-mask-image: radial-gradient(circle 0px at 50% 50%, #000 0%, #000 60%, transparent 100%);
    mask-image: radial-gradient(circle 0px at 50% 50%, #000 0%, #000 60%, transparent 100%);
    transition: -webkit-mask-image 0.05s linear, mask-image 0.05s linear;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .engine-wrap.active .layer-digital {
    opacity: 1;
  }

  .scan-ring {
    position: absolute;
    z-index: 3;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(63,208,255,0.55);
    box-shadow: 0 0 0 1px rgba(63,208,255,0.12) inset,
                0 0 30px rgba(63,208,255,0.25);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .scan-ring::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px dashed rgba(63,208,255,0.35);
    animation: spin 9s linear infinite;
  }

  .scan-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px 3px rgba(63,208,255,0.8);
  }

  .engine-wrap.active .scan-ring {
    opacity: 1;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hint {
    position: absolute;
    bottom: -42px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
  }

  .hint b { color: var(--accent); font-weight: 600; }

  .engine-wrap .badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    background: rgba(10,15,20,0.6);
    border: 1px solid rgba(63,208,255,0.35);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }



  .engine-wrap.active .badge {
    opacity: 1;
  }



  .inservice .grid{
    max-width: none;
    grid-template-columns: 1fr 1fr 1fr ;

    display: grid;
    gap: 30px !important;
    margin: 0 auto;
  }


  .advantage-grid {
    grid-template-columns: repeat(3, 1fr);
   
}


.press-sec .press-card.featured{
  width: 100%;
  justify-content: center;
 
}

.press-sec h4{
    font-family: var(--main-font-medium) !important;
      font-weight: 600;
    font-size: 20px;
  line-height: 140%;
  color: #f5f5f7;
  margin-bottom: 12px;
}


.press-sec .kicker{
  font-size: 12px;
}

.press-sec .press-card .flex{
  gap: 35px;
   align-items: flex-start !important;
   flex-direction: column !important;
}

.press-sec .press-card.featured .flex{
  gap: 35px;
   align-items: center !important;
   flex-direction: row !important;
}

.press-sec .press-card p{
  font-size: var(--f-size);
    line-height: var(--f-height);
}


.press-sec {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 24px;
}

.press-sec .press-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    
    background: linear-gradient(120deg, #0a0a0f, #101018);
}


.press-sec .press-card{
  width: 100%;
}


.press-card img{
  filter: none;
}



@media(max-width: 760px){
  .press-sec .press-card.featured .flex {
    gap: 35px;
    align-items: flex-start !important;
     flex-direction: column !important; 
}
}




.ct-wrap{
  max-width: 1300px;
}

.ct-readout{border-radius:25px; padding:34px; background:#0a0a0f; border:1px solid rgba(113,113,113,.35); position:relative;}
.ct-readout .k{font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:14px;}
.ct-readout .v{font-size:26px; font-weight:600; background:var(--grad-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:10px;}
.ct-readout p{color:var(--muted); font-size:14px; line-height:1.75;}

.ct-section{padding:130px 0; position:relative;}
.ct-head{max-width:100%; margin-bottom:48px;    text-align: center;}
.ct-head h2{font-size:clamp(26px,3.4vw,38px); margin-bottom:16px;}
.ct-head p{color:var(--muted); font-size:var(--f-size); line-height:var(--f-height);}
.ct-head p a{color:var(--beam-a);}

.ct-grid{display:grid; grid-template-columns:1fr 1.55fr; gap:28px; align-items:start;}

.ct-form-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; flex-wrap:wrap; gap:10px;}
.ct-form-tag{font-size:18px; letter-spacing:.1em; text-transform:uppercase; color:#d5d5d5;}
.ct-status{display:flex; align-items:center; gap:8px; font-size:12px; color:var(--beam-a); text-transform:uppercase; letter-spacing:.06em;}
.ct-status .dot{width:6px; height:6px; border-radius:50%; background:var(--beam-a); box-shadow:0 0 8px var(--beam-a); animation:pulse-dot 2s ease-in-out infinite;}

.ct-form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px 22px;}
.ct-field{display:flex; flex-direction:column; gap:8px;}
.ct-field.full{grid-column:1 / -1;}
.ct-field label{font-size:15px; color:var(--muted);}
.ct-field label .req{color:var(--beam-b);}
.ct-field input, .ct-field select, .ct-field textarea{
  background:#212121; border:1px solid var(--line); color:var(--ink);
  padding:13px 15px; border-radius:12px; font-size:15px; font-family:inherit; 
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus{
  outline:none; border-color:rgba(94,208,255,.5); box-shadow:0 0 0 4px rgba(94,208,255,.12), 0 0 18px -4px rgba(94,208,255,.4);
}
.ct-field textarea{resize:vertical; min-height:120px;}
.ct-field select{appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2386868b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center;}
.ct-wordcount{font-size:12px; color:var(--muted); text-align:right;}

.ct-captcha-row{display:flex; align-items:center; gap:12px;}
.ct-captcha-box{font-family:ui-monospace,monospace; font-size:18px; letter-spacing:.3em; color:var(--ink); background:repeating-linear-gradient(135deg, #101018, #101018 4px, #16161f 4px, #16161f 8px); border:1px solid var(--line); padding:11px 18px; border-radius:12px; user-select:none;}
.ct-captcha-refresh{background:none; border:1px solid var(--line); color:var(--muted); width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; transition:border-color .2s, color .2s;}
.ct-captcha-refresh:hover{border-color:var(--beam-a); color:var(--beam-a);}

.ct-consent{display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:var(--muted); line-height:1.6;}
.ct-consent input{margin-top:3px; accent-color:var(--cyan);
width: fit-content !important
}

.ct-submit-row{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-top:50px;}
.ct-form-note{font-size:12px; color:var(--muted);}

.ct-side{display:flex; flex-direction:column; gap:18px;}
.ct-side .tag{font-size:17px; letter-spacing:.1em; text-transform:uppercase; color:#d5d5d5; margin-bottom:16px; display:block;}
.ct-coord{font-size:19px; font-weight:600; background:var(--grad-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:10px;}
.ct-addr{color:var(--muted); font-size:var(--f-size); line-height:var(--f-height);}

.ct-channel{display:flex; align-items:center; gap:14px; padding:7px 0; border-top:1px solid var(--line);}
.ct-channel:first-of-type{border-top:none; padding-top:0;}
.ct-channel-icon{width:32px; height:32px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(160deg, rgba(94,208,255,.18), rgba(166,107,255,.22)); border:1px solid rgba(255,255,255,.08); color:var(--beam-a);}
.ct-channel-text .k{font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em;}
.ct-channel-text .v{font-size:var(--f-size); color:#bfbfbf; margin-top:2px; transition:color .2s;}
.ct-channel-text .v:hover{color:var(--beam-a);}

.ct-social-row{display:flex; gap:10px; margin-top:18px;}
.ct-social-row a{width:38px; height:38px; border-radius:10px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--muted); transition:all .25s var(--ease);}
.ct-social-row a:hover{border-color:var(--beam-a); color:var(--beam-a); transform:translateY(-2px);}

.ct-hours{display:flex; justify-content:space-between; font-size:var(--f-size); padding:9px 0; border-top:1px solid var(--line); color:var(--muted);}
.ct-hours:first-of-type{border-top:none; padding-top:0;}
.ct-hours span:last-child{color:#bfbfbf; font-weight:500;}

.ct-careers{background:radial-gradient(120% 100% at 0% 0%, rgba(166,107,255,.14), transparent 70%);}
.ct-careers h4{font-size:22px; margin-bottom:8px;}
.ct-careers p{font-size:var(--f-size); color:var(--muted); margin-bottom:18px;}

.ct-map-wrap{position:relative; border-radius:25px; overflow:hidden; border:1px solid rgba(113,113,113,.35); height:440px;}
.ct-map-wrap iframe{width:100%; height:100%; border:0; filter:grayscale(.6) invert(.92) contrast(.88);}
.ct-map-label{position:absolute; top:24px; left:24px; background:rgba(8,8,12,.85); backdrop-filter:blur(14px); border:1px solid rgba(255,255,255,.12); padding:18px 22px; border-radius:16px; max-width:280px;}
.ct-map-label .tag{font-size:11px; color:var(--beam-a); letter-spacing:.1em; text-transform:uppercase; margin-bottom:6px; display:block;}
.ct-map-label h4{font-size:15px; margin-bottom:4px;}
.ct-map-label p{font-size:12.5px; color:var(--muted); margin-bottom:10px;}

.ct-toast{position:fixed; bottom:26px; right:26px; background:rgba(8,8,12,.9); backdrop-filter:blur(14px); border:1px solid rgba(94,208,255,.4); color:var(--ink); padding:16px 20px; border-radius:14px; font-size:13px; transform:translateY(120%); opacity:0; transition:all .35s var(--ease); z-index:300; max-width:300px;}
.ct-toast.show{transform:translateY(0); opacity:1;}

footer.ct-footer{border-top:1px solid var(--line);}
.ct-footer-inner{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding:34px 0;}
.ct-footer-inner p{font-size:12px; color:var(--muted);}
.ct-flinks{display:flex; gap:24px; font-size:13.5px; color:var(--muted);}
.ct-flinks a:hover{color:var(--beam-a);}

@media (max-width:920px){
  .ct-hero-grid{grid-template-columns:1fr;}
  .ct-grid{grid-template-columns:1fr;}
  .ct-form-grid{grid-template-columns:1fr;}
  .ct-hero{padding:150px 0 60px;}
  .ct-section{padding:90px 0;}
}



.about-stat1{
  
    position: relative;
    background: linear-gradient(180deg, rgba(20, 20, 28, .72), rgba(10, 10, 15, .72));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 28px 24px 26px;
    backdrop-filter: blur(6px);
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
    overflow: hidden;
    text-align: left !important;
}

.about-stat1::before{
      content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--beam-a), var(--beam-b), transparent);
    opacity: .35;
    transition: opacity .4s;
    
}


.about-stat1:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 208, 255, .4);
    box-shadow: 0 18px 50px -18px rgba(94, 208, 255, .35), 0 0 0 1px rgba(166, 107, 255, .15);
}


.ct-careers{
  text-align: left !important;
  padding: 28px 24px 26px;
}




@media(max-width: 760px){
  .about-stat1, .ct-careers{
    padding: 28px 24px 26px !important;
  }

  .ct-submit-row button{
  width: 100%;

}

.ct-submit-row{
  margin-top: 50px;
}


}



/* ══════════════════════════════════════════════
   PRESS ARTICLE PAGE — additive
   ══════════════════════════════════════════════ */

.article-shell {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 170px 64px 100px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  isolation: isolate;
}
.article-shell::before {
  content: "";
  position: absolute;
  inset: -10% -10% 40% -10%;
  background:
    radial-gradient(40% 60% at 12% 0%, rgba(94,208,255,.18), transparent 60%),
    radial-gradient(36% 50% at 92% 15%, rgba(166,107,255,.16), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

/* ── Left: sticky byline column ── */
.article-side {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.article-crumb {
  font-size: 17px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.article-crumb a:hover { color: var(--cyan); }
.article-crumb .sep { opacity: .5; }

.article-author {
  background: #0a0a0f;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-author img.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.article-author .who b {
  display: block;
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.article-author .who span {
  display: block;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.article-pub {
  background: #0a0a0f;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-pub img {
  width: 70%;
  padding: 5px 9px;
  border-radius: 5px;
}
.article-pub .pub-meta {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.article-pub .pub-meta b { color: var(--ink); display: block; font-size: 18px; }
.article-pub .pub-meta a { color: var(--cyan-light); }

/* ── Right: title + content column ── */
.article-main { min-width: 0; }
.article-main h1 {
  font-family: var(--main-font) !important;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 28px;
}
.article-banner {
  margin-bottom: 20px;
}
.article-banner img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: block;
}

.article-body {
  color: #c8c8ce;
  font-size: 16.5px;
  line-height: 1.85;
}
.article-body h3 {
  font-family: var(--main-font-medium) !important;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 16px;
  letter-spacing: -.01em;
}
.article-body h3:first-child { margin-top: 0; }
.article-body p { margin: 0 0 22px; }
.article-body ul {
  margin: 0 0 22px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li { padding-left: 4px; }
.article-body ul li::marker { color: var(--beam-a); }
.article-body strong { color: var(--ink); font-weight: 600; }

@media (max-width: 1000px) {
  .article-shell {
    grid-template-columns: 1fr;
    padding: 130px 24px 70px;
    gap: 32px;
  }
  .article-side {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .article-author, .article-pub { flex: 1; min-width: 220px; }
}



.ss-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
}


.ss-wrap .project-copy p {
    color: var(--muted);
    font-size: var(--f-size);
    line-height: var(--f-height);
    margin-bottom: 18px;
   max-width: 100%;
}



  .ss-desc{ position:relative; overflow:hidden; max-height:140px; transition:max-height .5s var(--ease); }
  .ss-desc.ss-expanded{ max-height:1200px; }
  .ss-desc.ss-no-clamp{ max-height:none !important; overflow:visible; }
  
  .ss-desc.ss-expanded::after, .ss-desc.ss-no-clamp::after{ opacity:0; }
  .ss-ellipsis{ display:none; color:var(--muted); }
  .ss-desc:not(.ss-expanded):not(.ss-no-clamp) .ss-ellipsis{ display:inline; }
  .ss-more-btn{ background:none; border:none; padding:6px 0 0;top: -17px;
    position: relative; margin:0 0 4px; font-size:14px; font-weight:600; color:var(--beam-a); cursor:pointer; display:flex; align-items:center; gap:5px; font-family:inherit; transition:opacity .2s var(--ease); }
  .ss-more-btn:hover{ text-decoration:underline; opacity:.85; }
  .ss-more-btn.ss-hidden{ display:none; }
  .ss-chevron{ width:11px; height:11px; stroke:currentColor; stroke-width:2.6; fill:none; transition:transform .3s var(--ease); }
  .ss-more-btn.ss-open .ss-chevron{ transform:rotate(180deg); }



/* ── Video preview modal ── */
.ss-modal-overlay{ position:fixed; inset:0; background:rgba(4,4,8,.82); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; padding:24px; z-index:9999; opacity:0; visibility:hidden; transition:opacity .3s var(--ease), visibility .3s var(--ease); }
.ss-modal-overlay.ss-open{ opacity:1; visibility:visible; }
.ss-modal-box{ position:relative; width:100%; max-width:960px; transform:scale(.94); transition:transform .35s var(--ease); }
.ss-modal-overlay.ss-open .ss-modal-box{ transform:scale(1); }
.ss-modal-frame{ position:relative; width:100%; aspect-ratio:16/9; border-radius:16px; overflow:hidden; background:#000; box-shadow:0 30px 80px rgba(0,0,0,.55); border:1px solid var(--line); }
.ss-modal-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.ss-modal-close{ position:absolute; top:-46px; right:0; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.25); color:#fff; font-size:22px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s var(--ease), transform .2s var(--ease); }
.ss-modal-close:hover{ background:rgba(255,255,255,.18); transform:rotate(90deg); }
@media (max-width:600px){ .ss-modal-close{ top:-42px; width:34px; height:34px; }

.ss-wrap {
    margin: 0 auto;
    padding: 0 30px;
}

}




.ss-play-icon{ fill:currentColor; margin-right:2px; flex-shrink:0; }


@media (max-width: 900px) {
    .ss-wrap .project-row {
        display: flex;
        flex-direction: column !important;
    }

    

.project-row.reverse .project-tag, .project-row.reverse h3, .project-row.reverse .ss-desc {
  text-align: left !important;
}


.project-row.reverse .ss-more-btn {
      justify-content: start !important;
      width: 100%;
}


.project-row.reverse .btn-gray{
  justify-content: start !important;
}

.project-row.reverse .flex.justify-end{
  justify-content: start !important;
}

}



.project-row.reverse .project-tag, .project-row.reverse h3, .project-row.reverse .ss-desc {
  text-align: right;
}


.project-row.reverse .ss-more-btn {
      justify-content: end;
      width: 100%;
}


.project-row.reverse .btn-gray{
  justify-content: end;
}




/* ---------- FIXED FAQ heading ---------- */
  .faq-head{
    position:fixed;top:48px;left:0;right:0;z-index:50;height:var(--head-h);
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    text-align:center;pointer-events:none;
    background:linear-gradient(180deg, rgba(0,0,5,.95) 58%, rgba(0,0,5,.8) 82%, transparent);
  }
  .faq-head .beam{
    position:absolute;top:-140%;left:50%;width:120vw;height:220%;
    transform:translateX(-50%);pointer-events:none;z-index:-1;
    background:
      radial-gradient(60% 50% at 50% 30%, rgba(94,208,255,.16), transparent 62%),
      conic-gradient(from 180deg at 50% -10%, transparent 42%, rgba(166,107,255,.10) 50%, transparent 58%);
    filter:blur(8px);
  }
  .faq-head .eyebrow{font-family:var(--f-head);font-size:12px;letter-spacing:.22em;text-transform:uppercase;
    color:var(--beam-a);font-weight:700;margin-bottom:9px}
  .faq-head h1{
    font-size:clamp(26px,4.2vw,42px);line-height:1.04;
  }

  main{padding-top:250px;padding-bottom:110px}

  /* =========================================================
     TAB LAYOUT — two states on the same container:
     .grid-mode : centered 3 rows x 5 boxes  (initial)
     .rail-mode : tabs docked as a vertical rail on the LEFT,
                  question panel opens beside/underneath the
                  selected tab on the right. Other tabs remain
                  fully clickable in the rail.
     The move between states is FLIP-animated in JS.
     ========================================================= */
  .layout{display:block}
  .layout.rail-mode{display:grid;grid-template-columns:228px 1fr;gap:30px;align-items:start}

  .tabs{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-bottom:44px}
  .rail-mode .tabs{grid-template-columns:1fr;gap:8px;margin-bottom:0;
    position:sticky;top:calc(48px + var(--head-h) + 10px)}

  .tab{
    appearance:none;
    background: #0a0a0f;
    border: 1px solid rgba(113, 113, 113, .35);
    color: #bdbdbd;
    border-radius:14px;padding:10px;cursor:pointer;text-align:center;
    font-family:var(--f-head);font-weight:700;font-size:13.5px;letter-spacing:-.01em;line-height:1.25;
    min-height:58px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
    
    will-change:transform;
    transition: all .5s !important;
  }


  .tab:hover{
    border-color: rgba(166, 107, 255, .35);
    transform: translateY(-4px);
    box-shadow: 0 0 50px -6px rgba(94, 208, 255, .30), 0 0 80px -10px rgba(166, 107, 255, .28);

  }
  .rail-mode .tab{
    flex-direction:row;justify-content:flex-start;gap:10px;text-align:left;
    min-height:0;padding:11px 14px;font-size:13px;border-radius:12px;
  }
  .tab .idx{font-size:10px;letter-spacing:.14em;color:rgba(255,255,255,.28);font-weight:600}
  .rail-mode .tab .idx{letter-spacing:.06em;min-width:22px}
  .rail-mode .tab .idx .word{display:none}
  .tab:hover{color:var(--ink);border-color:rgba(255,255,255,.22)}
  .tab.active{
    color:#fff;border-color:transparent;
    background:linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
    box-shadow:0 0 0 1px rgba(94,208,255,.45), 0 12px 34px -14px rgba(94,208,255,.4);
  }
  .tab.active .idx{color:rgba(255,255,255,.55)}

  /* content panel (hidden in grid mode) */
  .panel{display:none;min-width:0}
  .rail-mode .panel{display:block;animation:panelIn .5s var(--ease)}
  @keyframes panelIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}

  .sec-meta{margin-bottom:20px}
  .sec-meta .kicker{font-family:var(--f-head);font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;
    color:var(--beam-b);font-weight:700}
  .sec-meta h2{font-size:clamp(20px,2.6vw,27px);margin-top:7px;line-height:1.2;font-weight: 600;}
  .sec-meta .count{color:var(--muted);font-size:13px;margin-top:5px}

  /* ---------- question list ---------- */
  .qa-list{border-top:1px solid var(--line)}
  .qa{border-bottom:1px solid var(--line)}
  .qa .q{
    width:100%;appearance:none;background:none;border:none;color:var(--ink);cursor:pointer;
    display:flex;justify-content:space-between;align-items:center;gap:18px;text-align:left;
    padding:20px 4px;font-family:var(--f-head);font-weight:700;font-size:16px;letter-spacing:-.01em;line-height:1.4;
    transition:color .25s;
  }
  .qa .q:hover{color:var(--beam-a)}
  .qa .q .plus{flex-shrink:0;width:26px;height:26px;border-radius:50%;border:1px solid rgba(255,255,255,.2);
    display:flex;align-items:center;justify-content:center;color:var(--beam-a);font-size:15px;
    transition:transform .3s var(--ease),background .3s;font-family:var(--f-body);font-weight:400}
  .qa.open .q .plus{transform:rotate(45deg);background:rgba(94,208,255,.12)}

  .qa .a{max-height:0;overflow:hidden;transition:max-height .55s var(--ease)}
  .qa .a-inner{padding:2px 4px 26px;color:var(--muted);font-size:15px;line-height:1.75;max-width:820px}
  .qa .a-inner p{margin-bottom:14px}
  .qa .a-inner .subh{font-family:var(--f-head);font-weight:700;color:var(--ink);font-size:14.5px;
    letter-spacing:.02em;margin:20px 0 10px}
  .qa .a-inner ul, .qa .a-inner ol{margin:0 0 14px 20px}
  .qa .a-inner li{margin-bottom:6px}
  .qa .a-inner .rest{display:none}
  .qa.expanded .a-inner .rest{display:block}
  .qa .a-inner .ellipsis{color:var(--muted)}
  .qa.expanded .a-inner .ellipsis{display:none}

  /* ---------- tables from the document ---------- */
  .tbl-scroll{overflow-x:auto;margin:6px 0 18px;border:1px solid var(--line);border-radius:14px;
    background:var(--bg-elev)}
  .a-inner table{border-collapse:collapse;width:100%;min-width:520px;font-size:13.5px;line-height:1.5}
  .a-inner th,.a-inner td{padding:11px 14px;text-align:left;vertical-align:top;
    border-bottom:1px solid var(--line);border-right:1px solid rgba(255,255,255,.05)}
  .a-inner th:last-child,.a-inner td:last-child{border-right:none}
  .a-inner tr:last-child td{border-bottom:none}
  .a-inner thead th, .a-inner tr:first-child th{
    font-family:var(--f-head);font-weight:700;color:var(--ink);font-size:12.5px;
    letter-spacing:.05em;text-transform:uppercase;
    background:linear-gradient(135deg, rgba(94,208,255,.12), rgba(166,107,255,.12));
    white-space:nowrap;
  }
  .a-inner td:first-child{color:var(--ink);font-weight:600}
  .a-inner tbody tr:nth-child(even) td{background:rgba(255,255,255,.015)}

  /* ---------- diagram from the document ---------- */
  .diagram{margin:6px 0 18px;border-radius:14px;overflow:hidden;border:1px solid var(--line);
    background:#fff}
  .diagram img{display:block;width:100%;height:auto}
  .diagram figcaption{background:var(--bg-elev);color:var(--muted);font-size:12px;
    letter-spacing:.06em;text-transform:uppercase;padding:9px 14px;border-top:1px solid var(--line);
    font-family:var(--f-head);font-weight:700}

  .continue-btn{
    appearance:none;border:1px solid rgba(94,208,255,.4);background:rgba(94,208,255,.08);
    color:var(--beam-a);border-radius:980px;padding:8px 22px;margin-top:4px;cursor:pointer;
    font-family:var(--f-head);font-weight:700;font-size:13px;letter-spacing:.04em;
    transition:background .25s,transform .25s var(--ease);
  }
  .continue-btn:hover{background:rgba(94,208,255,.16);transform:scale(1.03)}
  .qa.expanded .continue-btn{display:none}

  /* grid-mode intro hint under tabs */
  .pick-hint{text-align:center;color:var(--muted);font-size:14.5px;margin-top:6px}
  .rail-mode .pick-hint{display:none}

  /* ---------- responsive: rail becomes horizontal chip strip ---------- */
  @media(max-width:880px){
    .layout.rail-mode{display:block}
    .rail-mode .tabs{
      position:sticky;top:calc(48px + var(--head-h));z-index:40;
      display:flex;overflow-x:auto;gap:8px;padding:10px 0 12px;margin-bottom:18px;
      background:linear-gradient(180deg,var(--bg) 75%,transparent);
      scrollbar-width:none;
    }
    .rail-mode .tabs::-webkit-scrollbar{display:none}
    .rail-mode .tab{flex:0 0 auto;white-space:nowrap}
    main {
    padding-top: 180px;
    padding-bottom: 110px;
}
.rail-mode .tabs {
    top: 0 !important;
}

.tab:hover {
    transform: translateY(0);
}
  }
  @media(max-width:900px){.tabs{grid-template-columns:repeat(3,1fr)}}
  @media(max-width:560px){.tabs{grid-template-columns:repeat(2,1fr)}}

  footer{padding:40px 0;border-top:1px solid var(--line);color:var(--muted);font-size:12px}
  footer .wrap{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px}

  @media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}




 main .wrap{
    max-width: 1200px;
  }

  .testimonial .wrap{
max-width: 1200px;
    gap: 40px !important;
    display: flex;
    flex-direction: column;
  }

  .testimonial{
    padding-top: 0 !important;
    padding-bottom: 50px !important;
    
  }

  .testimonial .testi-card{
    filter: none;
    width: 100%;
    max-width: 100%;
    opacity: 1;
  }

   .testimonial .testi-card:hover{
    
 
 border:1px solid var(--line);
  box-shadow:0 0 70px -10px rgba(94,208,255,.4),0 0 0 1px rgba(255,255,255,.06);
  }

  .testimonial .testi-card p{
    
    width: 100%;
    max-width: 100%;
    
    color: #bfbdbd;
}
  

.testi-content h5{
  font-size: 20px;
  font-weight: 500;
}

  .rail-mode .tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 0;
    position: sticky;
    top: 250px;
}


.qa.faq-item{
  padding: 0;
}


.a-inner.faq-ans-content{
  max-height:80px;
  overflow: hidden;
    transition: max-height 0.5s ease;
}


.a-inner.faq-ans-content.expanded {
    max-height: 100% !important;
    transition: max-height 2s ease-in-out;
}


.layout .tab span{
  font-size: 15px;
}

.layout .tab span.idx, .layout .tab span.idx .word{
  font-size: 12px !important;
}



.rd-quote {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
        display: flex;
    align-items: center;
    flex-direction: column;
}


.rd-quote .mark {
    font-family: var(--main-font);
    font-size: 64px;
    line-height: 1;
    color: var(--beam-a);
    opacity: .5;
    margin-bottom: 6px;
}

.rd-quote p {
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 18px;
}

.rd-quote span {
    color: var(--muted);
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    
}


.rdsec .project-copy p {
    color: var(--muted);
    font-size: var(--f-size);
    line-height: var(--f-height);
    margin-bottom: 18px;
    max-width: 100% !important;
}

.rdsec .wrap{
  max-width: 1400px;
}


/* ── Advantage grid ── */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
}
.advantage-item { padding-top: 20px; border-top: 2px solid #000005; position: relative; }
.advantage-item::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg,var(--beam-a),transparent, transparent);
}
.advantage-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.advantage-item p { font-size: 14.5px; color: var(--muted); font-size: var(--f-size);
  line-height: var(--f-height); }


  /* Innovation platforms — 3-up variant of advantage-grid */
.advantage-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
@media(max-width:860px){ .advantage-grid.cols-3{ grid-template-columns:1fr; gap:40px; } }
.advantage-item .rd-plat-icon{
  width:44px; height:44px; border-radius:12px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg, rgba(94,208,255,.18), rgba(166,107,255,.18));
  border:1px solid rgba(255,255,255,.1); color:var(--beam-a);
}
.advantage-item .rd-plat-icon svg{ width:20px; height:20px; }



.rd-plat-icon img{
  height: 25px;
}


.testi .logo-chip{
  background-color: #fff;
}

.testi-logo-box{
  min-width: 150px;
}



.inst-chip
 {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: border-color .3s, transform .3s;
        width: 250px;
    height: 267px;
}


.inst-logo-box {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    
}


.inst-name {
font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-top: 14px;
}


.inst-loc {
    font-size: 14px;
    color: var(--muted);
}

.inst-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.aicte-banner {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 44px 48px;
    background: linear-gradient(135deg, rgba(94, 208, 255, .1), rgba(166, 107, 255, .08));
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    
}

.aicte-banner p {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 700px;
}



.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1600px;
    margin: 0 auto;
}

.course-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s;
}

.course-card .course-img {
    height: fit-content;
    overflow: hidden;
}

.course-card .course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card .course-body {
    padding: 26px 26px 30px;
    border-top: none;
}

.course-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.course-card p {
    color: var(--muted);
    font-size: var(--f-size);
    line-height: var(--f-height);
}

.course-card.cardi{
  padding: 0;
}



.case-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 55px;
}

.case {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
    padding: 28px;
    border-radius: 20px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    background: radial-gradient(40% 90% at 0% 0%, rgba(94, 208, 255, .30), transparent 60%), linear-gradient(150deg, #0c1420, #06060c)
}



.case h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.case p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.55;
}

.narrative-img-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.narrative-img-row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
}


.advantage-grid.assure {
    grid-template-columns: repeat(3, 1fr);
   gap: 50px;
}


 


.cs-card-body ul li {
    font-size: var(--f-size);
    color: var(--muted);
    line-height: var(--f-height);
    padding-left: 16px;
    position: relative;
}

.cs-card-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
}

.cs-card-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.reverse .cs-card-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: end;
}


.reverse .cs-card-body ul li::before {
    content: "";
    position: absolute;
    right: 0;
    left: revert !important;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
}


.reverse .cs-card-body ul li {
    font-size: var(--f-size);
    color: var(--muted);
    line-height: var(--f-height);
    padding-right: 16px;
    position: relative;
}


.cthumb img{
  width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}


@media(max-width:768px){
  .course-grid {
    grid-template-columns: repeat(1, 1fr);
    
}

.case-list .case{
    grid-template-columns: 1fr;
    
}

.narrative-img-row {
    grid-template-columns: repeat(1, 1fr);
  
}

.reverse .cs-card-body ul {
    
    align-items: start;
}

.reverse .cs-card-body ul li::before {
    content: "";
    position: absolute;
    left: 0 !important;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--beam-a), var(--beam-b));
}

.aicte-banner {
    padding: 24px 24px;
    line-height: 2;
    text-align: center;
    justify-content: center;
}

}