/* ══════════════════════════════════════════════════════════
   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: "Soehne Halbfett",sans-serif;
  --sec-font: "Soehne Buch",sans-serif;
  --main-font-medium: "Soehne Halbfett",sans-serif;
      --line: #1d1d22;

          --bg: #000005;
    --bg-elev: #0a0a0f;
    --ink: #EDEDF0;
    --muted: #86868b;
    --line: #1d1d22;
    --beam-a: #5ED0FF;
    --beam-b: #A66BFF;
    --maxw: 1600px;
    --ease: cubic-bezier(.22, .61, .36, 1);
--dim:#6f7594;
    --f-size: 18px;
    --f-height: 1.65;

    --big-shade: 0 0 50px -6px rgba(94, 208, 255, .30), 0 0 80px -10px rgba(166, 107, 255, .28);
    --low-shade:  0 0 20px 5px rgba(107, 190, 255, .22);
        --accent: #5b7cff;
    --accent2: #9b6bff;
    --cyan: #43d8ff;



    --dark:#09090e;
    --panel:#14141c;
    --line:#242430;
    --cyan:#00ace9;
    --navy:#00318c;
    --navy-soft:#0b2a63;
    --maroon:#8a2b3c;
    --maroon-soft:#3a1620;

}


body{
  font-family: var(--main-font) !important;
}
html.lenis { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }

@font-face {
  font-family: 'Soehne Buch';
  src: url('fonts/soehne-buch.woff2') format('woff2'),
       url('fonts/soehne-buch.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Soehne Halbfett';
  src: url('fonts/soehne-halbfett.woff2') format('woff2'),
       url('fonts/soehne-halbfett.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




h1, h2, h3, h4 {
  font-family: var(--main-font) !important;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sec-font) !important;
  background: #000005;
  color: #EDEDF0;
  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: -14px;
    min-width: fit-content;
    display: flex;
    white-space: nowrap;
    flex-direction: column;
    gap: 15px;
    padding: 25px 15px;
    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 15px;
  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: fit-content;
  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: #EDEDF0;
}
/* 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: #EDEDF0;
  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: #EDEDF0;
  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-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: #EDEDF0;
  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: #EDEDF0;
  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:#EDEDF0;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: #EDEDF0;
  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: visible; /* 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: 40px;
  /* animation: ticker 30s linear infinite; */
  align-items: center;
  width: max-content;
  will-change: transform;
}
.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: #EDEDF0;
    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: #EDEDF0;
  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: var(--f-size);
  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: flex;
    flex-wrap: wrap;
    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: #EDEDF0;
  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 25px -6px rgba(94, 208, 255, .30), 0 0 25px -10px rgba(166, 107, 255, .28)
    /* 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); */

    box-shadow: 0 0 30px -8px rgba(94, 208, 255, .32), 0 0 30px -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);
}

/* #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;
}

body.menu-open {
  overflow: hidden;
}


#mob-menu.open {
  max-height: calc(100vh - 80px);
  opacity: 1;
  overflow-y: auto;                 
  -webkit-overflow-scrolling: touch;
  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;
} */


#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: 80vh;
  overflow-y: auto;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* old Edge/IE */
  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;
}
#mob-menu.open::-webkit-scrollbar {
  display: none;                /* Chrome/Safari/Edge */
}

body.menu-open {
  overflow: hidden;
}


.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: 19px;
  line-height: 150%;
  color: #86868b;
}
.svc-card h3 {
  font-family: var(--main-font-medium) !important;
  
  color: #EDEDF0;
      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: #EDEDF0;
  margin-bottom: 14px;
} */
.cs-title-block .subtitle {
  color: rgba(255,255,255,.55);
  font-size: 19px;
  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; */
  margin-top: -800px;
}
/* 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: 350px;
}
.cs-stack-card:nth-child(2) {
  z-index: 2;
  top: 350px;
}
.cs-stack-card:nth-child(3) {
  z-index: 3;
  top: 350px;
}

.cs-stack-card:nth-child(4) {
  z-index: 4;
  top: 350px;
}
/* card shell */
.cs-card {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
  margin-bottom: 100px;
  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: #EDEDF0;
  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: #EDEDF0;
}
/* ── 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); */
  box-shadow:0 0 50px -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: #EDEDF0;
  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: #EDEDF0;
  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: #1e1e1e;
  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;
  filter: brightness(0.8);
  
}
.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 !important;
  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; */
   margin: 0 20px;
}
#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: #EDEDF0;
  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: #EDEDF0 !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: #EDEDF0;
  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: #EDEDF0;
  text-decoration: none;
  transition: .3s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
}
.qn {
  font-size: 18px;
  color: #EDEDF0;
}
.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: #EDEDF0;
  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: #EDEDF0;
  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: #EDEDF0;
}
.cs-card .view-btn svg {
  color: #EDEDF0;
}
.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:#EDEDF0;
  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: #EDEDF0;
  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: #EDEDF0;
    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: #EDEDF0;
    font-size: 15px;
  }

  .badge {
    
    font-size: 13px;
    
}
  .cs-card-title {
    font-size: 18px;
  }

  .cs-card-desc {
    font-size: var(--f-size);
    color: rgba(172, 172, 172, 1);
    line-height: var(--f-height);
}

  .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: #EDEDF0 !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: var(--f-size);
  font-family: var(--sec-font) !important;
}


#services .grid{
      display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    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: #EDEDF0 !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:#EDEDF0;}
  #hero-text h1{font-size:clamp(27px,6vw,57px);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:flex-start}
  /* Bigger slot than before, and it reserves the glow's breathing room too */
  .about-video-slot{aspect-ratio:16/9;border-radius:22px;
  
  
  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;
  
  
  }
  .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: var(--f-size);line-height:var(--f-height);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: #0a0a0f;
    border: 1px solid rgba(113, 113, 113, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}


.logo-chip img {
    max-width: 100%;
    object-fit: contain;
    height: 87px
}

.grdnt_txt{
  font-style: normal;
    background: linear-gradient(96deg,var(--accent),var(--accent2) 55%,var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .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
}



a.i40-point-card{
  cursor: pointer;
}


a.cardi{
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   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: 50px 0;
  position: relative;
}
.mec-section.tight {
  padding: 50px 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 30px;
  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;
  color: #EDEDF0;
}
.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: var(--low-shade);
}

/* ── 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: #EDEDF0;
}
.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: 0px;
  line-height: 1.25;
}
.project-copy p {
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
  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: #EDEDF0;
  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: #EDEDF0;
  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: start;
}
.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: #EDEDF0;
  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: #EDEDF0; }
.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: #EDEDF0;
  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: var(--low-shade);
  /* 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%);
  display:none
}
.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: #EDEDF0;
  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: #EDEDF0;
  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 20px 5px rgb(107 190 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: 30px 0; }
  .advantage-grid { grid-template-columns: 1fr !important; gap: 70px; }
  .mec-hero { padding: 150px 0 60px; }

  .mec-section.tight { padding: 20px 0; }

  .cr-apply-btn {
    padding: 12px 13px;
}

.mec-hero .cta-row{
  gap: 5px;
}
}




.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: #EDEDF0;
  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: #EDEDF0; }
@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;
}
}


.con.project-copy p{
  max-width: 100%;
}

/* ── STICKY SECTION NAVIGATOR ── */
.section-nav {
  position: fixed;
  bottom:  60px !important;
  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: #EDEDF0;
  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: #EDEDF0; }
.section-nav-item.active { color: #0a0a0f; }
@media (max-width: 900px) {
  .section-nav { padding: 12px 16px; justify-content: center; }
  .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: #EDEDF0;
    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: #EDEDF0;
        /* border: 1px solid #EDEDF0; */
        /* 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;
        text-align: right;

}


.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(#EDEDF0 0 0) content-box, linear-gradient(#EDEDF0 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: #EDEDF0;
    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:#EDEDF0; 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;
       margin-bottom:18px;
      left: 0;
      padding: 14px 15px;
          justify-content: start;

    }
    .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: 32px;
}
.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 0 50px -6px rgba(94, 208, 255, .30), 0 0 80px -10px rgba(166, 107, 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: #EDEDF0;
}
.i40-point-ico svg { width: 15px; height: 15px; }
.i40-point-card p {
  font-size: var(--f-size);
  line-height: var(--f-height);
  color: var(--muted);
}
/* 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: #EDEDF0;
  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);
}
.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: var(--ink);
  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(--beam-b);
  opacity: .9;
}



.i40-rev-card.rev-1 { --rev: linear-gradient(90deg, transparent, var(--beam-a), var(--beam-b), transparent); --rev-grad: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev); --rev-accent: #fff; --rev-shadow: rgba(255,61,138,.35); }
.i40-rev-card.rev-2 {--rev: linear-gradient(90deg, transparent, var(--beam-a), var(--beam-b), transparent);  --rev-grad: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev); --rev-accent: #fff;  }
.i40-rev-card.rev-3 { --rev: linear-gradient(90deg, transparent, var(--beam-a), var(--beam-b), transparent); --rev-grad: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev); --rev-accent: #fff;  }
.i40-rev-card.rev-4 { --rev: linear-gradient(90deg, transparent, var(--beam-a), var(--beam-b), transparent); --rev-grad: linear-gradient(135deg,var(--beam-a),var(--beam-b)); --rev-accent: var(--beam-a);  }



@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: #EDEDF0;
  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: brightness(0.8);
}



@media(max-width: 760px){
  .press-sec .press-card.featured .flex {
    gap: 35px;
    align-items: flex-start !important;
     flex-direction: column !important; 
}
}


.spn-logo img{
  filter: brightness(0.8);
}


.op-9{
  filter: brightness(0.8);
}



.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:50px 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; height: auto;}


.ctgrid-1{
  grid-template-columns:1fr;
  max-width: 800px;
  margin: 0 auto;
}

.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:100px;}
.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; }
.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:has(.expan){
  max-height: none;
  overflow: visible;
}


.mec-section.dprr-con{
  padding-bottom: 0;
}

.mec-section.dprr-con .wrap {
    
    padding: 0px 22px;
}

/* 
  .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;
    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:#EDEDF0; 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;
    

        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;

    
    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:#EDEDF0;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:100%}
  .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:#EDEDF0}
  .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;
    position: sticky;
    top: 161px !important;
    z-index: 99;
    background: var(--bg);
}

.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: 60px !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:235px;
  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: #EDEDF0;
}

.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: #1e1e1e;
    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);
   transition:all .3s var(--ease);
}

.case:hover{
box-shadow: var(--big-shade);
}



.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);
    box-shadow: var(--low-shade);
}


.advantage-grid.assure {
    grid-template-columns: repeat(3, 1fr);
   gap: 50px;
}

.project-media{
  box-shadow: var(--low-shade);
}

 


.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.hmp_cust_2fr {
    grid-template-columns: 1fr !important;
    
}

.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;
}

.testi-dot {
    width: 4px;
    height: 4px;
    
}

}



.sme-yrs {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--beam-a);
}


.ap-hero { padding: 190px 0 70px; }
.ap-hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% 30% -10%;
  background:
    radial-gradient(38% 55% at 15% 10%, rgba(94,208,255,.16), transparent 60%),
    radial-gradient(34% 45% at 88% 5%, rgba(166,107,255,.14), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

/* ── Mission / intro narrative ── */
.ap-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: var(--f-size);
  line-height: var(--f-height);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ap-intro strong { color: var(--ink); font-weight: 600; }

/* ── Stat strip ── */
.ap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 56px auto 0;
}
.ap-stat {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s;
}
.ap-stat:hover { transform: translateY(-4px); border-color: rgba(94,208,255,.35); }
.ap-stat-num {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.ap-stat-label { font-size: 13.5px; color: var(--muted); letter-spacing: .01em; }

/* ── Quick jump chips ── */
.ap-quicknav-wrap { padding: 50px 0 10px; }
.ap-quicknav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.ap-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 100px;
  color: #d5d5d5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .25s, color .25s, transform .25s;
}
.ap-chip:hover { border-color: var(--beam-a); color: #EDEDF0; transform: translateY(-2px); }
.ap-chip img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255,255,255,.15);
}

/* ── Profile rows ── */
.ap-profiles {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.ap-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
  padding: 40px;
  border-radius: 24px;
  
  border: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.ap-profile.reverse { grid-template-columns: 1fr 260px; }
.ap-profile.reverse .ap-photo-col { order: 2; }
.ap-photo-col { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
/* .ap-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0a0a0f;
} */
.ap-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ap-full-link {
  color: var(--beam-a);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ap-full-link:hover { text-decoration: underline; }

.ap-name { font-size: 24px !important; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.ap-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ap-meta span {
  font-size: 14px;
  color: var(--beam-a);
  background: rgba(94,208,255,.08);
  border: 1px solid rgba(94,208,255,.22);
  padding: 5px 12px;
  border-radius: 100px;
}
.ap-bio { color: var(--muted); font-size: var(--f-size); line-height: var(--f-height); }
.ap-bio p { margin-bottom: 14px; }
.ap-bio p:last-child { margin-bottom: 0; }
.ap-bio-more {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .5s var(--ease);
}
.ap-bio-more.expanded { grid-template-rows: 1fr; }
.ap-bio-more-inner { min-height: 0; }
.ap-bio-more-inner p:first-child { margin-top: 14px; }
.ap-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: gap .2s;
}
.ap-toggle:hover { gap: 10px; }
.ap-toggle svg { width: 13px; height: 13px; transition: transform .3s; }
.ap-toggle.expanded svg { transform: rotate(180deg); }

/* ── responsive ── */
@media (max-width: 900px) {
  .ap-stats { grid-template-columns: repeat(2, 1fr); }
  .ap-profile, .ap-profile.reverse {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
  .ap-profile.reverse .ap-photo-col { order: 0; }
  .ap-photo { max-width: 220px; margin: 0 auto; }
  .ap-photo-col { align-items: center; }
}
@media (max-width: 560px) {
  .ap-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ap-stat { padding: 20px 14px; }
  .ap-hero { padding: 150px 0 50px; }
}


.i40-point-card .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);
}


.abt .i40-point-card {
    display: flex;
    gap: 0px;
    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);
    flex-direction: column;
    align-items: flex-start;
}


.abt .i40-point-grid{
      grid-template-columns: 1fr 1fr 1fr;
}


.sticky.project-row{
 

        align-items: start ;
}


.sticky .stick{
   position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
}

.sme .project-media{
  border: none;
}


@media(max-width: 768px){

  .spn-logo.founder{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
      .spn-logo.founder img {
        height: 120px !important;
        width: fit-content;
    }

    .abt .i40-point-grid {
    grid-template-columns: 1fr;
}

.sticky .stick{
   position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
}

.founders img {
    height: 150px !important;
    width: max-content;
}


.spn-logo {
  flex-direction: column;
}

.mec-qte {
    width: 100% !important;
}
}




/* ════ LISTEN (TEXT-TO-SPEECH) BUTTON — lives inside .a-inner, shown once expanded ════ */
  .listen-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 12px;
    margin:0 0 14px;
    border-radius:999px;
    background:rgba(0,172,233,.10);
    border:1px solid rgba(0,172,233,.4);
    color:var(--cyan);
    font-size:15px;
    font-family: var(--main-font-medium);
    font-weight:600;
    letter-spacing:.02em;
    cursor:pointer;
    z-index:6;
    user-select:none;
    white-space:nowrap;
    overflow:visible;
    transition:background .25s var(--easing),border-color .25s var(--easing),color .25s var(--easing);
  }
  .listen-btn:hover{ background:rgba(0,172,233,.22); }

  /* border-only rotating gradient — angle itself animates, element never transforms/rotates */
  @property --ring-angle{
    syntax:'<angle>';
    initial-value:0deg;
    inherits:false;
  }
  .listen-btn::before{
    content:'';
    position:absolute;
    inset:-3px;
    border-radius:999px;
    padding:2px;
    --ring-angle:0deg;
    background:conic-gradient(from var(--ring-angle), var(--cyan), #7b5cff, #00ffd0, var(--cyan));
    -webkit-mask:linear-gradient(#EDEDF0 0 0) content-box, linear-gradient(#EDEDF0 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    pointer-events:none;
    transition:opacity .25s var(--easing);
  }
  .listen-btn.speaking{
    /* background:linear-gradient(120deg, var(--cyan), #7b5cff, #00ffd0, var(--cyan)); */
    background-size:300% 300%;
    animation:btnBgShift 3s ease infinite;
    border-color:transparent;
    color:var(--cyan);
  }
  .listen-btn.speaking::before{
    opacity:1;
   animation:ringAngleSpin 2.2s linear infinite;
  }
  @keyframes ringAngleSpin{ to{ --ring-angle:360deg; } }
  @keyframes btnBgShift{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
  }

  .listen-btn .listen-icon{ font-size:13px; line-height:1; display:inline-block; position:relative; z-index:1; }
  .listen-btn .listen-label{ position:relative; z-index:1; }
  /* .listen-btn.speaking .listen-icon{ animation:listenPulse 1s ease-in-out infinite; } */
  @keyframes listenPulse{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.3); } }

  /* sparkle burst on click */
  .spark{
    position:absolute;
    top:50%;
    left:50%;
    width:5px;
    height:5px;
    border-radius:50%;
    background:radial-gradient(circle, #EDEDF0 0%, var(--cyan) 60%, transparent 100%);
    pointer-events:none;
    z-index:8;
    animation:sparkleFly .65s ease-out forwards;
  }
  @keyframes sparkleFly{
    0%{ transform:translate(-50%,-50%) scale(1); opacity:1; }
    100%{ transform:translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity:0; }
  }



  @media(max-width: 768px){
    .faq-head {
    top: 15px;
   }
  }

  
.cr-hero { padding: 190px 0 70px; }
.cr-hero-tags {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.cr-hero-tag {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: #d5d5d5; padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
}

/* ── Open role strip (Project Engineer listing) ── */
.cr-role-card {
  max-width: 980px; margin: 0 auto;
  padding: 34px 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(94,208,255,.08), rgba(166,107,255,.06));
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cr-role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94,208,255,.35);
  box-shadow: 0 24px 60px -26px rgba(94,208,255,.35);
}
.cr-role-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--beam-a); margin-bottom: 10px;
}
.cr-role-live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--beam-a);
  box-shadow: 0 0 10px var(--beam-a); animation: pulse-dot 2s ease-in-out infinite;
}
.cr-role-title { font-size: clamp(22px,2.4vw,28px); font-weight: 700; margin-bottom: 10px; }
.cr-role-meta { display: flex; flex-wrap: wrap; gap: 18px; }
.cr-role-meta span { font-size: 14.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.cr-role-meta svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--beam-a); }

.cr-role-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; width: 100%;
}
.cr-role-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cr-role-toggle { padding: 12px 18px; font-size: 15px; }
.cr-role-toggle .chev { transition: transform .3s var(--ease); }
.cr-role-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.cr-apply-btn { padding: 12px 22px; }

/* ── Expandable job details panel ── */
.cr-role-details {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s ease;
}
.cr-role-details.open { max-height: 1400px; opacity: 1; }
.cr-role-details-inner {
  padding-top: 30px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.cr-role-note {
  font-size: 13px; color: var(--muted); font-style: italic;
  padding: 10px 14px; border-left: 2px solid rgba(94,208,255,.4);
  background: rgba(94,208,255,.05); border-radius: 0 8px 8px 0; margin-bottom: 22px;
}
.cr-role-details h4 { font-size: 16px; font-weight: 700; margin: 22px 0 10px; }
.cr-role-details h4:first-of-type { margin-top: 0; }
.cr-role-list { display: flex; flex-direction: column; gap: 9px; padding-left: 20px; }
.cr-role-list li { font-size: 15px; line-height: 1.65; color: #d6d6dc; }

/* ── Apply modal ── */
.cr-modal-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(4,4,8,.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.cr-modal-overlay.open { opacity: 1; visibility: visible; }
.cr-modal {
  position: relative; width: 100%; max-width: 620px; max-height: 88vh; overflow-y: auto;
  background: #0d0d13; border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
  padding: 40px 40px 34px; box-shadow: 0 40px 100px rgba(0,0,0,.5);
  transform: translateY(24px) scale(.97); transition: transform .35s var(--ease);
}
.cr-modal-overlay.open .cr-modal { transform: translateY(0) scale(1); }
.cr-modal-close {
  position: absolute; top: 20px; right: 20px; width: 36px; height: 36px;
  border-radius: 10px; border: 1px solid var(--line); background: none; color: var(--muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cr-modal-close:hover { border-color: rgba(94,208,255,.4); color: var(--beam-a); }

/* ── "Are you someone who / experience in" — reuse .i40-point-card ── */
.cr-fit-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }

/* ── Tool / tech logo grid ── */
.cr-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 56px auto 0;
}
.cr-logo-tile {
  display: flex; align-items: center; justify-content: center;
  height: 88px; padding: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.cr-logo-tile:hover { transform: translateY(-3px); border-color: rgba(94,208,255,.3); }
.cr-logo-tile img { max-width: 100%; max-height: 34px; object-fit: contain; filter: grayscale(1) brightness(1.6); opacity: .85; transition: filter .3s, opacity .3s; }
.cr-logo-tile:hover img { filter: none; opacity: 1; }

/* ── Culture / values narrative (reuse .mec-narrative) with 3 pillars ── */
.cr-values-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  max-width: 1100px; margin: 56px auto 0;
}
.cr-value-card {
  padding: 30px 26px; text-align: left;
  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;
  transition: transform .4s var(--ease), border-color .4s;
}
.cr-value-card:hover { transform: translateY(-6px); border-color: rgba(94,208,255,.4); }
.cr-value-num {
  font-size: 15px; font-weight: 800; color: var(--beam-a);
  margin-bottom: 14px; letter-spacing: .04em;
}
.cr-value-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.cr-value-card p { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* ── Life at Fusion VR — stats reuse .about-stat1 grid ── */
.cr-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.cr-stats-grid .about-stat1 { text-align: center !important; }
.cr-stats-grid .about-stat-num { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Process / how hiring works ── */
.cr-steps {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.cr-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.cr-steps .cr-step:first-child { border-top: none; }
.cr-step-num {
  font-size: 22px; font-weight: 900; color: transparent;
  -webkit-text-stroke: 1.5px rgba(94,208,255,.55);
}
.cr-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.cr-step p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Contact strip at bottom (mirrors ct- contact block) ── */
.cr-contact-strip {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}

@media (max-width: 1080px) {
  .cr-logo-grid { grid-template-columns: repeat(4,1fr); }
  .cr-stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
}

@media (max-width: 920px) {
  .cr-hero { padding: 150px 0 50px; }
  .cr-values-grid { grid-template-columns: 1fr; }
  .cr-contact-strip { grid-template-columns: 1fr; }
  .cr-role-card { padding: 28px 24px; }
  .cr-role-card-top { flex-direction: column; align-items: flex-start; }
  .cr-role-actions { width: 100%; }
  .cr-role-toggle, .cr-apply-btn { flex: 1; justify-content: center; }
  .cr-modal { padding: 32px 22px 26px; }
}

@media (max-width: 640px) {
  .cr-logo-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .cr-stats-grid { grid-template-columns: 1fr 1fr; }
  .cr-step { grid-template-columns: 44px 1fr; }
}




.jobi .i40-point-ico{
  background: linear-gradient(160deg, rgba(94, 208, 255, .18), rgba(166, 107, 255, .22));
}


.cr-role-list 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));
  z-index: 1;
}

.cr-role-list li {
  font-size: 15px; line-height: 1.65; color: #d6d6dc;
  position: relative;
  padding-left: 20px;
  list-style: none;
}



.lp-wrap{max-width:var(--maxw);margin:0 auto;padding:0 64px;}
  .lp-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:600;text-transform:uppercase;letter-spacing:.08em;
    color:var(--beam-a);
  }
  .lp-eyebrow span.dot{width:6px;height:6px;border-radius:50%;background:var(--beam-a);box-shadow:0 0 8px var(--beam-a);}

  /* ═══════════════ SCROLL-DRIVEN PYRAMID SECTION ═══════════════ */
  .lp-scroll-space{ position:relative; height:650vh; }
  .lp-sticky{ position:sticky; top:0; height:100vh; overflow:hidden; display:flex; align-items:center; }
  
  .lp-inner{ position:relative; z-index:1; width:100%; }
  .lp-header{ text-align:center; margin-bottom:20px; }
  .lp-title{ font-size:clamp(26px,3.2vw,42px); font-weight:700; letter-spacing:-.02em; margin:16px 0 8px; }
  .lp-title em{ font-style:normal; background:var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
  .lp-sub{ color:var(--muted); font-size:14.5px; max-width:560px; margin:0 auto; }

  .lp-grid{
    display:grid; grid-template-columns:1.35fr .8fr; gap:44px; align-items:center;
    max-width:1480px; margin:0 auto; padding:0 48px;
  }

  /* ── Pyramid + annotations ── */
  .lp-pyramid-col{ position:relative; }
  #lp-svg{ width:100%; height:auto; overflow:visible; display:block; }

  .lp-band{ stroke:var(--bg); stroke-width:3; opacity:.13; transition:opacity .55s var(--ease); }
  .lp-band.is-active{ opacity:1; }

  /* percentage as a small tag sitting over the title */
  .lp-pct{ opacity:0; transition:opacity .4s var(--ease) .1s; }
  .lp-pct.is-active{ opacity:1; }

  .lp-pct-label{ font-family:var(--main-font); font-weight:800; font-size:12.5px; letter-spacing:.01em; fill:#050508; text-anchor:middle; }

  .lp-name{ font-family:var(--main-font); font-weight:750; font-size: 16px !important; fill:#EDEDF0; opacity:0; transition:opacity .4s var(--ease) .1s; text-anchor:middle; }
  .lp-name.is-active{ opacity:1; }

  .lp-sideline{ opacity:0; transition:opacity .6s var(--ease); }
  .lp-sideline.is-active{ opacity:1; }

  .lp-bracket{ opacity:0; transition:opacity .5s var(--ease); }
  .lp-bracket.is-active{ opacity:1; filter:drop-shadow(0 0 10px rgba(94,208,255,.55)); }

  /* rotated HTML labels overlaid on the SVG */
  .lp-diag-label{
    position:absolute; font-size:11.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
    white-space:nowrap; color:var(--muted); opacity:0; transition:opacity .6s var(--ease), color .4s;
    transform-origin:left center;
  }
  .lp-diag-label.is-active{ opacity:1; }
  .lp-diag-label.passive{ left: 23.5%;
    top: 30%;
    transform: rotate(298deg);
   }
  .lp-diag-label.cooperative{ left:11%; top:75%; transform:rotate(297deg); color:var(--beam-a); }
  .lp-diag-label.retention{     left: 72%;
    top: 48%;
    transform: rotate(62deg); }

  .lp-vr-badge{
    position:absolute; left:78%; top:75%; width:150px;
    padding:10px 14px; border-radius:14px; border:1px solid rgba(94,208,255,.35);
    background:rgba(10,10,15,.85); backdrop-filter:blur(6px);
    opacity:0; transform:translateY(8px); transition:opacity .5s var(--ease), transform .5s var(--ease);
  }
  .lp-vr-badge.is-active{ opacity:1; transform:translateY(0); }
  .lp-vr-badge b{ display:block; font-size:14px; background:var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
  .lp-vr-badge span{ font-size:11.5px; color:var(--muted); }

  .lp-callout{
    margin-top:18px; padding:14px 22px; border:1px solid var(--line);
    background:var(--bg-elev); border-radius:16px; text-align:center;
    font-size:13.5px; color:var(--muted); opacity:0; transform:translateY(8px);
    transition:opacity .5s var(--ease), transform .5s var(--ease); max-width:460px; margin-left:auto; margin-right:auto;
  }
  .lp-callout.is-active{ opacity:1; transform:translateY(0); }
  .lp-callout b{ background:var(--grad-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
  .lp-callout strong{ color:var(--ink); }

  /* ── Chip column (the controller) ── */
  .lp-chip-col{ position:relative; padding-left:26px; }
  .lp-track{ position:absolute; left:0; top:4px; bottom:4px; width:2px; background:var(--line); border-radius:2px; }
  .lp-track-fill{
    position:absolute; left:0; top:0; width:100%; height:0%;
    background:linear-gradient(180deg,#86868b,#A66BFF 33%,#5ED0FF 66%,#00ace9);
    border-radius:2px; transition:height .1s linear;
  }
  .lp-chip{
    position:relative; display:flex; gap:12px; align-items:flex-start;
    padding:12px 14px; margin-bottom:5px; border-radius:14px; border:1px solid transparent;
    opacity:.36; transition:opacity .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
  }
  .lp-chip::before{
    content:""; position:absolute; left:-31px; top:18px; width:9px; height:9px; border-radius:50%;
    background:var(--line); transition:background .4s var(--ease), box-shadow .4s var(--ease);
  }
  .lp-chip.is-done::before{ background:var(--swatch,var(--beam-a)); }
  .lp-chip.is-active{ opacity:1; border-color:var(--swatch-line,rgba(94,208,255,.3)); background:var(--bg-elev); transform:translateX(6px); }
  .lp-chip.is-active::before{ background:var(--swatch,var(--beam-a)); box-shadow:0 0 0 4px var(--swatch-glow,rgba(94,208,255,.16)); }
  .lp-chip.is-done{ opacity:.65; }

  .lp-chip-num{
    flex:none; width:30px; height:30px; border-radius:9px; display:flex; align-items:center; justify-content:center;
    font-size:11px; font-weight:700; color:var(--muted); background:rgba(255,255,255,.04); border:1px solid var(--line);
    transition:color .4s, border-color .4s, background .4s;
  }
  .lp-chip.is-active .lp-chip-num{ color:#04040a; background:var(--swatch,var(--beam-a)); border-color:transparent; }
  .lp-chip-body h4{ font-size:14.5px; font-weight:650; margin-bottom:2px; margin-top:2px; display:flex; align-items:baseline; gap:8px; }
  .lp-chip-body h4 small{ font-size:12px; font-weight:700; color:var(--swatch,var(--beam-a)); }
  .lp-chip-body p{ font-size:12.5px; color:var(--muted); line-height:1.5; }

  @media (max-width:1000px){
    .lp-wrap, .lp-grid{ padding:0 20px; }
    .lp-grid{ grid-template-columns:1fr; gap:30px; }
    .lp-scroll-space{ height:auto; }
    .lp-sticky{ position:relative; height:auto; padding:60px 0; }
    .lp-chip{ opacity:1; transform:none; }
    .lp-band, .lp-pct, .lp-name, .lp-sideline, .lp-bracket, .lp-diag-label, .lp-vr-badge{ opacity:1 !important; transform:none !important; }
    .lp-diag-label{ position:static; display:block; margin:4px 0; transform:none !important; }
    .lp-vr-badge{ position:static; width:auto; margin-top:14px; }
  }

  /* ═══════════════ Footer strip — original three highlights ═══════════════ */
  .lp-strip{ background:var(--bg); padding:90px 0 120px; }
  .lp-strip-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:var(--maxw); margin:0 auto; padding:0 64px; }
  .lp-strip-card{ background:var(--bg-elev); border:1px solid var(--line); border-radius:20px; padding:30px 28px; transition:transform .35s var(--ease), border-color .35s var(--ease); }
  .lp-strip-card:hover{ transform:translateY(-4px); border-color:rgba(94,208,255,.3); }
  .lp-strip-icon{ width:46px; height:46px; border-radius:12px; margin-bottom:16px; 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); }
  .lp-strip-card h3{ font-size:19px; font-weight:650; margin-bottom:8px; }
  .lp-strip-card p{ font-size:14.5px; color:var(--muted); line-height:var(--f-height); }
  .lp-strip-card b{ color:var(--ink); }
  @media (max-width:900px){ .lp-strip-grid{ grid-template-columns:1fr; padding:0 22px; } }



  .pfs .i40-point-grid{
    grid-template-columns: repeat(4, 1fr);
     max-width: none;
  }

    .dpr .i40-point-grid{
    grid-template-columns: repeat(3, 1fr);
     max-width: none;
  }

  .mp .grid{
    grid-template-columns: repeat(3, 1fr) !important;
  }

  @media(max-width: 768px){
    .pfs .i40-point-grid{
    grid-template-columns: repeat(1, 1fr);
    
  }

  .dpr .i40-point-grid{
    grid-template-columns: repeat(1, 1fr);
     
  }

  #testi-dots {
    display: none;
}
  
 .project-row.reverse p{
    text-align: left !important;
  }


  .project-row.reverse .link-cta{
    width: 100%;
    justify-content: start !important;
  }


  }


  .project-row.reverse p{
    text-align: right;
  }


  .project-row.reverse .link-cta{
    width: 100%;
    justify-content: end;
  }

  #top-engine-section{ padding:100px 0 70px; position:relative; text-align:center; }
 
  #top-engine-section .wrap{ position:relative; z-index:1; max-width:1800px; }

  /* stage — 2.5-3x the original 600px frame */
  #top-engine-section .stage{
    position: relative;
    width: min(1100px, 94vw);
    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;
    margin: 46px auto 0;
  }

  .engine-wrap{ position:relative; width:100%; height:100%; border-radius:18px; overflow:hidden; }
  .engine-wrap canvas{ position:absolute; inset:0; width:100%; height:100%; display:block; cursor:grab; touch-action:none; border-radius:18px; }
  .engine-wrap canvas:active{ cursor:grabbing; }

  .drag-cue{
    position:absolute; top:22px; right:22px; z-index:4;
    display:flex; align-items:center; gap:6px;
    font-size:12px; letter-spacing:.08em; text-transform:uppercase;
    color:var(--muted); background:rgba(10,15,20,.6);
    border:1px solid rgba(255,255,255,.08);
    padding:7px 13px; border-radius:100px; backdrop-filter:blur(6px);
    pointer-events:none;
  }
  .drag-cue svg{ width:13px; height:13px; opacity:.8; }

  .mode-toggle{ width:min(1100px,94vw); margin:24px auto 0; display:flex; justify-content:center; }
  .mode-toggle .switch{ display:inline-flex; gap:3px; padding:5px; background:#0b0e18; border:1px solid rgba(255,255,255,.08); border-radius:980px; }
  .mode-toggle button{ all:unset; cursor:pointer; font-size:14px; font-weight:600; letter-spacing:.02em; padding:11px 24px; border-radius:980px; color:var(--muted); transition:color .3s ease; }
  .mode-toggle button.is-active{ color:var(--dark); background:#EDEDF0; animation:pillGlow 3.2s ease-in-out infinite; }

  .ct-word-count{font-size:13px;margin-top:6px;color:#d9534f;}
.ct-word-count.ok{color:var(--muted, #6b7280);}

.cr-captcha-row{display:flex;align-items:center;gap:10px;}

.cr-captcha-row input{flex:1;}
.cr-captcha-refresh{flex:0 0 auto;width:36px;height:36px;border-radius:8px;border:1px solid var(--border,#333);background:#222;color:#EDEDF0;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.cr-captcha-refresh:hover{opacity:.85;}
.cr-captcha-code{flex:0 0 auto;font-weight:700;letter-spacing:1px;color:#5ED0FF;user-select:none;}


.cr-modal-brochure .ct-field{
  margin-bottom: 15px;
}

.cardi:hover{
  box-shadow: var(--big-shade);
}


.project-media{
  box-shadow: var(--low-shade);
}


.mec-narrative strong{
  font-weight: normal;
}

.mec-narrative strong.text-white{
  color: var(--muted) !important
}



* ── PCB board ── */
.board{max-width:1240px;margin:0 auto;position:relative}
.board .row{display:flex;align-items:stretch;justify-content:center;gap:10px}
.board .row.reverse{flex-direction:row-reverse}

/* chip module */
.board .chip{flex:1 1 0;min-width:0;position:relative;border-radius:6px;padding:22px 20px 20px;flex-direction: column;
    align-items: flex-start;
  background:linear-gradient(180deg,rgba(16,20,26,.86),rgba(9,11,15,.86));
  border:1px solid rgba(94,208,255,.16);transition:all .35s var(--ease);overflow:hidden}
.board .chip::before{content:"";position:absolute;inset:0;border-radius:6px;padding:1px;pointer-events:none;
  background:linear-gradient(135deg,rgba(94,208,255,.35),transparent 40%,transparent 60%,rgba(166,107,255,.3));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.6}
.board .chip:hover{transform:translateY(-4px);border-color:var(--beam-a);box-shadow:0 14px 40px -14px rgba(94,208,255,.5)}
/* solder pads on the sides */
.board .chip .pads{position:absolute;top:14px;bottom:14px;width:5px;display:flex;flex-direction:column;justify-content:space-around}
.board .chip .pads i{width:5px;height:5px;border-radius:1px;background:rgba(94,208,255,.35); display: none;}
.board .chip .pads.l{left:-3px}.board .chip .pads.r{right:-3px}
.board .chip .cap{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.board .chip .id{font-family:var(--mono);font-size:12px;font-weight:700;color:#0a0a12;background:linear-gradient(150deg,var(--beam-a),var(--beam-b));
  padding:3px 8px;border-radius:4px;letter-spacing:.05em;box-shadow:0 0 16px rgba(94,208,255,.5)}
.board .chip .tag{font-family:var(--mono);font-size:10px;letter-spacing:.18em;color:var(--beam-a);opacity:.7}
.board .chip h4{font-size:16px;font-weight:700;line-height:1.2;margin:0 0 8px;color:#EDEDF0}
.board .chip p{color:var(--muted);font-size:13px;line-height:1.5;margin:0}
.board .chip .led{position:absolute;top:10px;right:12px;width:7px;height:7px;border-radius:50%;background:var(--beam-a);
  box-shadow:0 0 10px var(--beam-a);animation:blink 2.4s ease-in-out infinite}
.board .chip:nth-child(3n) .led{animation-delay:.8s}.board .chip:nth-child(3n+1) .led{animation-delay:1.6s}
@keyframes blink{0%,100%{opacity:.25}50%{opacity:1}}

/* horizontal trace between chips */
.board .link{flex:0 0 44px;align-self:center;height:22px;position:relative}
.board .link svg{width:100%;height:100%;overflow:visible;display:block}
.board .trace{stroke:rgba(94,208,255,.22);stroke-width:2;fill:none}
.board .cur{stroke:url(#g);stroke-width:2.6;fill:none;stroke-linecap:round;stroke-dasharray:10 120;stroke-dashoffset:130;
  animation:flow 1.4s linear infinite;animation-delay:var(--d,0s);filter:drop-shadow(0 0 4px rgba(94,208,255,.9))}
.board .pad{fill:var(--beam-a);filter:drop-shadow(0 0 5px var(--beam-a))}
@keyframes flow{to{stroke-dashoffset:0}}

/* vertical trace connecting rows (drops on the right after row 1 & on the left after row 2) */
.board .link-v{position:relative;height:56px}
.board .link-v svg{position:absolute;top:0;transform:translateX(-50%);width:44px;height:58px;overflow:visible}
.board .link-v.right svg{left:calc(100% - (100% - 192px)/8)}
.board .link-v.left  svg{left:calc((100% - 192px)/8)}
.board .link-v .cur{stroke-dasharray:12 130;stroke-dashoffset:142;animation:flowV 1.6s linear infinite}
@keyframes flowV{to{stroke-dashoffset:0}}
/* invisible padding cell so the final short row keeps 4-column geometry */
.board .chip.spacer{visibility:hidden}
.board .link.ghost{visibility:hidden}

@media(max-width:1040px){
  .board{max-width:520px}
  .board .link,.board .link-v{display:none}
  .board .chip{flex:0 0 auto;margin-bottom:44px}
  .board .chip::after{content:"";position:absolute;left:50%;bottom:-32px;transform:translateX(-50%);
    width:2px;height:24px;background:linear-gradient(180deg,var(--beam-a),var(--beam-b));box-shadow:0 0 8px rgba(94,208,255,.6)}
  .board .chip.spacer{display:none}
  .board .chip.final::after{display:none}

  .board .row, .board .row.reverse{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}
}


#testi-carousel-outer {
   
    padding-top: 20px;
    padding-bottom: 20px;
}

#testimonials .mb-14{
  margin-bottom: 0px !important;
}

@media(max-width: 768px){
  #testi-carousel-outer {
    padding-top: 30px;
    padding-bottom: 30px;
}
}


@media (max-width: 1024px){
  .press-section-inner{
    grid-template-columns: 100% !important;
    gap: 20px !important;
  }
}

.press-section-inner{
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  align-items: center;
}


.qa_num_faq {
    font-family: var(--f-head);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--beam-a);
    font-weight: 700;
}


.hero .trust {
    margin-top: 26px;
    font-size: 13px;
    color: var(--mute);
    
    letter-spacing: .03em;
}



.clamp-wrap{ position:relative; }

  /* This is the ONLY thing controlling truncation — pure CSS, no JS content edits */
  .clamp-text{
    font-size:16px;
    line-height:1.7;
    color:var(--muted);

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:6;   /* <-- change this number to clamp to any line count */
    overflow:hidden;
  }
  .clamp-text p{ margin:0 0 14px; }
  .clamp-text p:last-child{ margin-bottom:0; }

  /* extra class — toggled by JS, does nothing but flip these two properties */
  .clamp-text.is-expanded{
    display:block;
    -webkit-line-clamp:unset;
    overflow:visible;
  }

  /* .clamp-wrap.is-clamped::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:48px;
    background:linear-gradient(to bottom, rgba(250,249,252,0), #faf9fc 85%);
    pointer-events:none;
  } */

  .toggle-btn{
    appearance:none;
    border:1px solid var(--line);
    background:#EDEDF0;
    color:var(--accent);
    font-size:14px;
    font-weight:600;
    padding:9px 16px;
    border-radius:999px;
    margin-top:14px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition: background .2s ease, border-color .2s ease, transform .05s ease;
  }
  .toggle-btn:hover{ background:var(--accent-soft); border-color:var(--accent); }
  .toggle-btn:active{ transform:scale(.97); }

  .toggle-btn.is-active{
    background:var(--accent);
    border-color:var(--accent);
    color:#EDEDF0;
  }
  .toggle-btn.is-active:hover{ background:#6b32c9; }

  .toggle-btn .chevron{
    width:10px;height:10px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    transition:transform .25s ease;
  }
  .toggle-btn.is-active .chevron{ transform:rotate(-135deg); }



  .about .ss-more-btn{
    top: 0
  }

  /* .about .ss-desc{
    max-height: 160px
  } */


  .case-chip.amber {
    background: rgba(245, 166, 35, .15);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, .5);
}

.case-chip.green {
    background: rgba(62, 207, 142, .13);
    color: #3ecf8e;

    border: 1px solid rgba(62, 207, 142, .45);
}

.case-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 999px;
    line-height: 13px;
    width: fit-content;
    margin-bottom: 12px;
    text-transform: uppercase;
}


/* 
.faq-wrap .faq-item {
  border-bottom: 1px solid var(--line, #e5e5e5);
  transition: background 0.3s var(--ease, ease);
}

.faq-wrap .faq-ico {
  display: inline-block;
  transition: transform 0.35s var(--ease, ease), color 0.3s ease;
  font-size: 1.3rem;
  color: var(--muted, #888);
}

.faq-wrap .faq-item.open .faq-ico {
  transform: rotate(180deg);
  color: var(--cyan, #00ace9);
}

.faq-wrap .qn {
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-wrap .faq-item.open .qn {
  color: var(--cyan, #00ace9);
}


.faq-wrap .faq-ans {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.4s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
    opacity 0.35s ease,
    transform 0.35s ease;
}

.faq-wrap .faq-item.open .faq-ans {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.45s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
    opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
}


.faq-wrap .read-more-btn {
  display: inline-block;
  margin-top: 6px;
  color: var(--cyan, #00ace9);
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
}

.faq-wrap .read-more-btn:hover {
  opacity: 0.7;
}


.faq-wrap .faq-item.open {
  background: linear-gradient(90deg, rgba(0,172,233,0.04), transparent);
}



.faq-wrap .faq-ans-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  transition: -webkit-line-clamp 0.2s ease;
}

.faq-wrap .faq-ans-content.faq-expanded {
  -webkit-line-clamp: unset;
  display: block;
}


.faq-wrap .read-more-btn {
  display: inline-block;
  margin-top: 6px;
  color: var(--cyan, #00ace9);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.faq-wrap .read-more-btn:hover {
  text-decoration: underline;
} */

@media(max-width: 480px){
  .about-video-slot {
    top: 0;
    position: relative;
}
}


#cta-sec .micro {
    margin-top: 22px;
    font-size: 15px;
    color: var(--beam-a);
}

@media (min-width: 769px){

.course-grid.hmp_cust_2fr{
      grid-template-columns: repeat(2, 1fr) !important;
}
}


.wrap.wrap_adj_1300{
  max-width: 1300px;
}
.project-row.hmps_prjt{
  align-items: flex-start;
}
.project-media.main_sem_me{
      align-items: flex-start;
    height: min-content;
  border-radius: 22px !important;
    display: flex;
    position: sticky;
    top: 140px;
    overflow: hidden;
}


.ct-file{
  display:flex; align-items:center; gap:10px;
  background:#212121; border:1px dashed var(--line); color:var(--muted);
  padding:16px 15px; border-radius:12px; font-size:14px;
  cursor:pointer; transition:border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.ct-file:hover{ border-color:rgba(94,208,255,.4); }
.ct-file.ct-file-drag{
  border-color:rgba(94,208,255,.6);
  box-shadow:0 0 0 4px rgba(94,208,255,.12), 0 0 18px -4px rgba(94,208,255,.4);
  background:#1a1a1a;
}
.ct-file-icon{ flex-shrink:0; color:var(--beam-a); }
.ct-file-text{ flex:1; }
.ct-file-name{ color:var(--ink); font-weight:500; }
.ct-optional{ color:var(--muted); font-size:12px; text-transform:none; }



.project-row.hmps_prjt {
    align-items: flex-start;
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
}


.idm .wrap{
max-width: 1200px;
}


.idm .ss-more-btn {
 
    text-align: center;
    justify-content: center;
    width: 100%;
}

.svc-card h3  span{
    margin-right: 10px;
    color: var(--beam-a);
}

.sub-step-img img{
  height: 100px;
}

.founders img{
  height: 100px;
}

 .quoteline {
    margin-top: 18px;
    font-style: italic;
    color: #c8a1fb;
    font-size: 18px;
}

.founderspro .project-row{
  border-top: none;
}


.aicte-banner .ss-desc{
  font-size: 17px;
  font-family: var(--sec-font);
  font-weight: 500;
}


 .mec-qte{
  flex-direction: column;
  width: 800px;
 }


 .mec-qte .quote-badge{
  position: relative;
  top: 0;
      left: 0;
 }


 .mec-qte .testi-role {
    margin: 0;
    color: #b8bcc6;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}


.mec-qte p{
  width: 100%;
    max-width: 100%;
    color: #bfbdbd;
}



.faqx-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  .faqx-item {
    border-bottom: 1px solid var(--line);
  }

  .faqx-q {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 22px 4px;
    cursor: pointer;
    box-sizing: border-box;
  }

  .faqx-q-text {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.4;
    background: linear-gradient(90deg, var(--ink), var(--ink));
    background-clip: text;
    -webkit-background-clip: text;
  }

  .faqx-item.faqx-open .faqx-q-text {
    color: #EDEDF0
  }

  .faqx-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: none;
  }

  .faqx-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--muted);
    transition: background .3s ease, transform .35s var(--ease);
  }

  .faqx-icon span:first-child {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
  }

  .faqx-icon span:last-child {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
  }

  .faqx-item.faqx-open .faqx-icon span {
    background: #EDEDF0;
  }

  .faqx-item.faqx-open .faqx-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
  }

  .faqx-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s var(--ease);
  }

  .faqx-item.faqx-open .faqx-panel {
    grid-template-rows: 1fr;
  }

  .faqx-panel-inner {
    overflow: hidden;
    min-height: 0;
  }

  .faqx-a {
    padding: 0 4px 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: var(--f-height);
  }

  .faqx-a p { margin: 0 0 10px; font-size: var(--f-size); line-height: var(--f-height); }
  .faqx-a p:last-child { margin-bottom: 0; }

  .faqx-a ul {
    margin: 10px 0 0;
    padding-left: 20px;
  }

  .faqx-a li {
    margin-bottom: 6px;
  }

  .faqx-a b {
    color: var(--ink);
  }

  .faqx-a.faqx-clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .faqx-a.faqx-clamped.faqx-expanded {
    -webkit-line-clamp: unset;
    display: block;
  }

  .faqx-more {
    all: unset;
    display: inline-block;
    margin: 0 4px 22px;
    color: var(--beam-a);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }

  .faqx-more:hover {
    text-decoration: underline;
  }


  .faqx-a.faqx-clamped {
  position: relative;
  /* max-height: 4.6em; */
  height: 100%;
  overflow: hidden;
  -webkit-line-clamp: unset;
  display: block;
}

.faqx-a.faqx-clamped::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2em;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.faqx-a.faqx-clamped.faqx-expanded {
  max-height: 100%;
  overflow: visible;
}

.faqx-a.faqx-clamped.faqx-expanded::after {
  display: none;
}


.faqx-more{
  display: none;
}

.numm{
  display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.numm span {
    margin-right: 10px;
    color: var(--beam-a);
    font-size: 25px;
    font-weight: 700;
    font-family: var(--main-font);
}

.numm .sol-mark{
  margin-bottom: 0;
}


.stepsi .tl-step {
    position: relative;
    padding-bottom: 50px;
}


@media(max-width: 768px){
  .hero-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: nowrap;
            justify-content: center;
}

.partneri{
  flex-direction: column;
  text-align: center;
} 

.hero .trust {
    text-align: center;
}

.about-copy .ss-more-btn{
  text-align: center;
    justify-content: center;
    width: 100%;
}
}


.partneri img{
  height: 80px;
}

.partneri{
  gap: 50px;
  align-items: center;
}

.iitm .wrap{
  max-width: 1000px;
}



@media(max-width: 480px){
  .founderspro{
    text-align: center;
  }

  .founderspro .ap-meta {
    justify-content: center;
}

.founderspro .spn-logo{
  justify-content: center;
  align-items: center;
}

.iaap-logo img{
          height: 50px !important;
        width: fit-content;
}

.iaap-logo{
  justify-content: center;
  align-items: center;
  gap: 25px;
}

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



}



/* ── Kalaignar Memorial: expandable case study panel ── */
.kal-case-btn{ background:none; border:none; cursor:pointer; font-family:inherit; }
.kal-case-btn::after{ transition:transform .3s var(--ease); }
.kal-case-btn.kal-open::after{ transform:rotate(90deg); display:inline-block; }

.kal-case-panel{ width:100%; overflow:hidden; max-height:0; transition:max-height .6s var(--ease); }

.kal-case-inner{ padding:0 0 48px; }

.kal-case-heading{
  font-family:var(--main-font);
  font-size:20px;
  color:var(--ink);
  margin-bottom:20px;
}

.kal-zone-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.kal-zone-card{
  background:var(--bg-elev);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  transition:transform .35s var(--ease), border-color .35s var(--ease);
}
.kal-zone-card:hover{
  transform:translateY(-4px);
  border-color:rgba(94,208,255,.4);
}

.kal-zone-img{ aspect-ratio:4/3; overflow:hidden; }
.kal-zone-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s var(--ease);
}
.kal-zone-card:hover .kal-zone-img img{ transform:scale(1.06); }

.kal-zone-body{ padding:16px 18px 20px; }
.kal-zone-tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--beam-a);
  font-weight:600;
  margin-bottom:8px;
}
.kal-zone-body h5{
  font-family:var(--main-font);
  font-size:15px;
  color:var(--ink);
  line-height:1.35;
  margin-bottom:8px;
}
.kal-zone-body p{
  font-size:13px;
  line-height:1.55;
  color:var(--muted);
}

@media (max-width:1100px){
  .kal-zone-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:600px){
  .kal-zone-grid{ grid-template-columns:1fr; }
  .kal-case-inner{ padding-top:24px; }
  .kal-case-heading{ font-size:18px; }

  .pillsbtn {
    flex-wrap: wrap;
}
}


.iaap-logo img{
  height: 70px
}

.iaap-logo{
  gap: 40px;
}


.short-con .wrap{
  max-width: 1000px !important;
}

.short-con .ss-more-btn {
   
    top: 0px;
}


.dprm-tblcap {
    background: linear-gradient(96deg, #1b2050, #231a4d);
    padding: 12px 18px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .12);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
}

.dprm-tblwrap {
    margin: 26px 0 8px;
}

.dprm-tblwrap .museum-table {
    border-radius: 0 0 14px 14px;
    margin-top: 0;
}

.mec-hero .ap-meta{
  justify-content: center;
}

.mec-hero .ap-meta span{
  color: #9aa0bd;
  background: #EDEDF006;
}

.short-con .about-stat {
    padding: 33px 13px;
    border-radius: 15px;
    /* background: #0a0a0f; */
    /* border: 1px solid #1d1d22; */
    background: transparent;
    border: none;
    text-align: center;
    border-color: #232640;

}

.short-con .about-stats{
  border-top: 1px solid var(--line);
}

.short-con .grad-text {
   
    font-weight: 900;
    line-height: 1;
  
    font-size: 37px;

}

.stat-text{
  font-size: 21px !important;
}



.pillsbtn a::after{
      content: "\203A";
    font-size: 21px;
    transition: transform .3s var(--ease);
}

.pillsbtn{
  justify-content: center;
}


.dprr-con .project-copy .ss-desc{
  text-align: justify;
}

.dprr-con .ss-more-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
}

.dprr-con .dprm-tblwrap{
  text-align: left;
}

.dprr-con .dprm-tblcap{
  text-align: center;
}

 .step-strip{
    width:100%;
    position:relative;
    z-index:2;
    /* background:rgba(255,255,255,.03);
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08); */
    padding:14px 0;
  }


  .step-strip p{
        font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 700;
    margin-bottom: 11px;
  }
  .step-strip .wrap{ padding-left:22px; padding-right:22px;justify-content: center;flex-direction: column; }
  .step-strip-inner{
    list-style:none;
    margin:0; padding:0;
    display:flex;
    align-items:center;
    gap:0;
    overflow-x:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;
    -webkit-overflow-scrolling:touch;
  }
  .step-strip-inner::-webkit-scrollbar{ display:none; }
  .step-strip-inner li{ display:flex; align-items:center; flex:0 0 auto; }
  .step-connector{
    width:28px;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:0 2px;
    flex:0 0 auto;
  }
  .step-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    padding:7px 14px;
    border-radius:999px;
    color:#9c9ca6;
    font-family:'Inter', -apple-system, sans-serif;
    font-size:13.5px;
    font-weight:500;
    letter-spacing:-.01em;
    text-decoration:none;
    transition:color .25s ease, background .25s ease;
  }
  a.step-item:hover{ color:#EDEDF0; background:rgba(255,255,255,.06); }
  .step-item .step-num{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:20px; height:20px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#cfcfd4;
    font-size:10.5px;
    font-weight:700;
    flex:0 0 auto;
  }
  .step-item.current{
    color: #EDEDF0;
        background: linear-gradient(135deg, rgba(94, 208, 255, .24), rgba(166, 107, 255, .24)), var(--bg-elev);
    cursor:default;
    font-weight:600;
    box-shadow: 0 0 0 1px rgba(94, 208, 255, .45), 0 12px 34px -14px rgba(94, 208, 255, .4);
  }
  .step-item.current .step-num{
    background:var(--cyan);
    color:#EDEDF0;
  }
  @media (max-width:900px){
    .step-strip{ padding:12px 0; }
    .step-strip .wrap{ padding-left:16px; padding-right:16px; }
    .step-strip-inner{ justify-content:flex-start; }
    .step-item{ padding:6px 11px; font-size:12.5px; gap:6px; }
    .step-item .step-num{ width:18px; height:18px; font-size:10px; }
    .step-connector{ width:16px; }
  }
  @media (max-width:480px){
    .step-item .step-label{ max-width:100%; overflow:hidden; text-overflow:ellipsis; }
  }
  


  .big.closing-cta a {
    width: 230px;
    text-align: center;
    justify-content: center;
}


/* @media (max-width:768px) {
    .step-connector {
        transform: rotate(90deg);
    }

        .step-strip-inner {
        flex-direction: column;
        gap: 15px;
    }
} */


@media (max-width: 768px) {
   .case.my_widt{
  grid-template-columns:  1fr;
  align-items: flex-start;
 }

 .mtitle {
    margin-bottom: 0 !important;
}


.sub-menu-mobile .mi{
  padding: 0 !important;
  margin-bottom: 7px;
}
/* .mi small {
    display: none !important
} */

.mi small {
    margin-top: -9px !important;
}

.sub-menu-mobile{
gap: 0
}
}



/* MEGA */
.mega{position:fixed;top:64px;left:0;right:0;z-index:99;background:#0b0c1a;
box-shadow:0 24px 60px #000a;max-height:0;overflow:hidden;transition:max-height .3s ease}
.mega.open{max-height:600px}
.megain{max-width:1080px;margin:0 auto;padding:32px 26px 36px;display:grid;grid-template-columns:1fr 2.1fr;gap:42px}
@media(max-width:820px){.megain{grid-template-columns:1fr;gap:24px;padding:22px}}
.mtitle{font-size:10.5px;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);font-weight:700;
margin-bottom:14px;padding-bottom:9px;border-bottom:1px solid var(--line)}
.mgrid{display:grid;grid-template-columns:1fr 1fr;gap:2px 20px}
@media(max-width:560px){.mgrid{grid-template-columns:1fr}}
.mi{text-align:left;background:none;border:0;font:inherit;color:var(--ink);cursor:pointer;padding:9px 11px;
border-radius:7px;font-size:13.5px;font-weight:500;display:block;width:100%;text-decoration:none}
.mi:hover{background:#EDEDF00d}
.mi.cur{background:#EDEDF00d;color:var(--accent)}
.mi small{display:block;font-size:11px;color:var(--dim);font-weight:400;margin-top:1px}


#mbtn{
  cursor: pointer;
}


.step-b{
  display: flex;
    flex-direction: column;
}



.i40-point-grid.grid-cols-2{
  grid-template-columns: 1fr 1fr !important;
}


.ss-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ss-content[data-expanded="true"] {
  max-height: 2000px;
}

.ss-chevron {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.btn-gray[aria-expanded="true"] .ss-chevron {
  transform: rotate(180deg); /* points up when expanded */
}


.project-copy.expannd{
      text-align: center;
    margin-top: 50px;
    text-align: center;
        max-width: 1200px;
    margin: 50px auto;
}

.project-copy.expannd p {
    max-width: 100%;
}


.im-formats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.im-format-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.im-format-item:first-child {
  border-top: 0;
}

.im-format-num {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
      background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.im-format-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.im-format-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.im-format-delivered {
  margin-top: 14px !important;
    padding: 11px 15px;
    background: rgb(176 197 199 / 19%);
    border-left: 2px solid var(--cyan);
    border-radius: 0 7px 7px 0;
    font-size: 13.5px !important;
    color: var(--muted) !important;
}

.dms .tl-step p{
  max-width: none;
}

.firsts .i40-point-card h3{
  font-size: 18px;
  margin-bottom: 15px;
}

.firsts .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, var(--beam-a), var(--beam-b));
    color: #EDEDF0;
}


.partneri .spn-logo img{
  height: 160px;
}


@media(max-width: 768px){
  .i40-point-grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
}

.project-copy h3 {
   
    text-align: left;
}

.hmps_prjt .project-copy{
  width: 100%;
}

.dprm-tblwrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
  scrollbar-width: thin;
}
}


.same-cta{
      position: absolute !important;
    bottom: 15px;
}


.idm-grid{display:grid;gap:20px;margin:24px 0}

  .idm-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:22px 24px}
  .idm-card p{margin:0;color:#c9c9c9;font-size:.95rem;line-height:1.65}
  .idm-card strong.idm-card-lead{display:block;color:#EDEDF0;font-size:1.02rem;margin-bottom:8px}


  .blist {
    list-style: none;
    padding: 0;
    margin: 10px 0 22px;
}


.blist li {
    position: relative;
    padding: 14px 0 14px 26px;
    border-bottom: 1px solid rgba(127, 230, 239, .12);
    font-size: inherit;
    color: var(--muted);
    font-size: var(--f-size);
}

.blist li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 22px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
}

.blist b{
  color: white;
}


.idm-list{display:flex;flex-direction:column;gap:22px;margin:24px 0}
  .idm-list-item{border-bottom:1px solid rgba(255,255,255,.08);padding-bottom:22px}
  .idm-list-item:last-child{border-bottom:none;padding-bottom:0}
  .idm-list-item p{margin:0;color:#c9c9c9;font-size:.95rem;line-height:1.7; display: inline-grid;}
  .idm-list-item strong{color:#FF9BA3;    font-size: 25px; white-space: wrap;}



  @media(max-width: 468px){
    .hero-actions{
              flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero .trust {
    margin-top: 10px;
    font-size: 9px;
}

    .hero-tagline {
        font-size: 12px !important;
    }
  }


  .legal-hero{
    padding:150px 0 70px;
    position:relative;
    overflow:hidden;
  }
  .legal-hero .wrap{ position:relative; z-index:1; max-width:1100px; }
  .legal-hero .eyebrow{ justify-content:flex-start; display:flex; }
  .legal-hero h1{
    font-size:clamp(32px,4.6vw,50px);
    font-weight:500;
    line-height:1.12;
    color:var(--ink,#EDEDF0);
    margin:0 0 18px;
  }
  .legal-hero .legal-sub{
    color:var(--muted,#86868b);
    font-size:17px;
    line-height:1.75;
    max-width:760px;
    margin:0 0 24px;
  }
  .legal-updated{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:999px;
    border:1px solid var(--line,#1d1d22);
    background:rgba(255,255,255,.03);
    color:#cfcfd4;
    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:.01em;
  }
  .legal-updated .dot{
    width:7px; height:7px; border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 8px var(--cyan);
    flex:0 0 auto;
  }

  /* ── LEGAL SHELL: TOC + CONTENT ── */
  .legal-shell{
    max-width:1500px;
    margin:0 auto;
    padding:10px 22px 120px;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:60px;
    align-items:start;
  }

  .legal-toc{
    position:sticky;
    top:110px;
    background:#0a0a0f;
    border:1px solid var(--line,#1d1d22);
    border-radius:16px;
    padding:22px 10px 22px 22px;
  }
  .legal-toc-title{
    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#6f6f78;
    margin-bottom:14px;
    padding-right:12px;
  }
  .legal-toc-list{
    list-style:none;
    margin:0; padding:0 12px 0 0;
    display:flex;
    flex-direction:column;
    gap:2px;
    max-height:calc(100vh - 220px);
    overflow-y:auto;
  }
  .legal-toc-list a{
    display:flex;
    align-items:baseline;
    gap:10px;
    padding:8px 10px;
    border-radius:8px;
    color:#9c9ca6;
    text-decoration:none;
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    font-weight:500;
    line-height:1.4;
    transition:color .2s ease, background .2s ease;
  }
  .legal-toc-list a .n{
    color:#55555f;
    font-size:12px;
    font-weight:700;
    flex:0 0 auto;
    width:18px;
  }
  .legal-toc-list a:hover{ color:#EDEDF0; background:rgba(255,255,255,.04); }
  .legal-toc-list a.active{ color:var(--cyan); background:rgba(0,172,233,.08); }
  .legal-toc-list a.active .n{ color:var(--cyan); }

  /* ── CONTENT COLUMN ── */
  .legal-body{
    color:#c8c8ce;
    font-size:16.5px;
    line-height:1.85;
    min-width:0;
  }
  .legal-section{ margin-bottom:52px; scroll-margin-top:110px; }
  .legal-section:last-child{ margin-bottom:0; }
  .legal-section h2{
    font-family:var(--main-font,'Soehne Halbfett'),sans-serif !important;
    font-size:24px;
    font-weight:600;
    color:var(--ink,#EDEDF0);
    letter-spacing:-.01em;
    margin:0 0 18px;
    padding-bottom:14px;
    border-bottom:1px solid var(--line,#1d1d22);
  }
  .legal-body p{ margin:0 0 18px; }
  .legal-body p:last-child{ margin-bottom:0; }
  .legal-body strong{ color:var(--ink,#EDEDF0); font-weight:600; }
  .legal-body ul{
    margin:0 0 18px;
    padding-left:20px;
    display:flex;
    flex-direction:column;
    gap:9px;
  }
  .legal-body ul:last-child{ margin-bottom:0; }
  .legal-body ul li{ padding-left:4px; }
  .legal-body ul li::marker{ color:var(--cyan); }
  .legal-contact-card{
    background:rgba(255,255,255,.03);
    border:1px solid var(--line,#1d1d22);
    border-left:2px solid var(--cyan);
    border-radius:12px;
    padding:20px 24px;
    margin:18px 0;
    color:#c8c8ce;
    font-style:normal;
    line-height:1.8;
  }
  .legal-contact-card b{ color:var(--ink,#EDEDF0); display:block; margin-bottom:4px; }
  .legal-contact-card a{ color:var(--cyan); text-decoration:none; }
  .legal-contact-card a:hover{ text-decoration:underline; }

  @media (max-width:1000px){
    .legal-shell{
      grid-template-columns:1fr;
      padding:0 20px 80px;
      gap:28px;
    }
    .legal-toc{
      position:static;
      padding:16px 16px 16px 18px;
    }
    .legal-toc-list{
      max-height:none;
      flex-direction:row;
      flex-wrap:wrap;
      overflow-y:visible;
      padding-right:0;
    }
    .legal-toc-list a{ padding:6px 10px; font-size:12.5px; }
    .legal-hero{ padding:130px 0 40px; }
    .legal-section h2{ font-size:20px; }
    .legal-body{ font-size:15.5px; }
  }


  .legal-section .blist li::before {
    content: "";
    position: absolute;
    left: -17px;
    top: 26px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
}
  .legal-section p{
    color: var(--muted);
  }


  @media (max-width: 768px) {

    .section-nav {
  bottom: 10px !important;
}
    
  }












  /* legend */
  .legend{
    display:flex;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
    margin:32px 0 40px;
    font-size:13px;
    color:var(--muted);
  }
  .legend span{display:inline-flex;align-items:center;gap:8px}
  .dot{width:10px;height:10px;border-radius:50%;display:inline-block}
  .dot.navy{background:var(--cyan)}
  .dot.maroon{background:#e6926b}

  /* groups */
  .groups{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    margin-bottom: 30px;
  }
  @media (max-width:760px){
    .groups{grid-template-columns:1fr}
  }

  .groupi{
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
        background: rgba(9, 9, 14, .30);
    backdrop-filter: blur(50px);
  }
  .group-head{
    padding:22px 24px;
    display:flex;
    align-items:center;
    gap:12px;
  }
  .group-head.ours{background:linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev)}
  .group-head.theirs{background:linear-gradient(
300deg, #203848, #3f1646)}
  .group-head .num{
    font-size:12px;
    font-weight:700;
    color:rgba(255,255,255,.75);
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .group-head h2{
    margin:2px 0 0;
    font-size:19px;
    font-weight:700;
    color:#EDEDF0;
  }
 .ours-mark{background:rgba(0,172,233,.15);color:var(--cyan)}
  .theirs-mark{background:rgba(230,146,107,.15);color:#e6926b}

    .groupi:nth-child(1) .label{color:var(--cyan)}
  .groupi:nth-child(2) .label{color:var(--beam-b)}

 
.marki {
    flex: 0 0 auto;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 1px;
    background: rgba(0, 172, 233, .15);
    color: var(--cyan);
}

.pergallery .carde .label {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: #EDEDF0;
    margin-bottom: 12px;
}


  .carde .label{
    display:block;
    font-size:11px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-bottom:5px;
  }

  .cards{
    display:flex;
    flex-direction:column;
    padding:10px;
    gap:8px;
  }
  .carde{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 14px;
    border-radius:12px;
    border:1px solid transparent;
    transition:border-color .2s ease,transform .2s ease,background .2s ease;
  }
  .carde:hover{
    border-color:var(--line);
    transform:translateY(-2px);
    background:#1d1d28;
  }
  .carde .mark{
    flex:0 0 auto;
    width:22px;height:22px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:12px;font-weight:700;
    margin-top:1px;
  }
  .group-head.ours ~ .cards .card .mark,
  .ours-mark{background:rgba(0,172,233,.15);color:var(--cyan)}
  .theirs-mark{background:rgba(230,146,107,.15);color:#e6926b}

  .carde p{
    margin:0;
    font-size:14.5px;
    line-height:1.5;
    color:#dcdce2;
  }

  .footnote{
    grid-column:1 / -1;
    padding:16px 18px;
    border-radius:12px;
    border:1px dashed var(--line);
    color:var(--muted);
    font-size:13.5px;
    line-height:1.6;
    margin-top:4px;
  }

  @media (max-width:760px){
    .footnote{margin-top:0}
  }



  .ladder-grid{
    padding:30px 22px;
  }

  .ladder-row{
    display:flex;
    align-items:stretch;
    gap:0;
  }
  .ladder-row.reverse{flex-direction:row-reverse}

  .rung{
    flex:1 1 0;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:18px 16px;
    border-radius:14px;
    border:1px solid transparent;
    transition:border-color .2s ease,transform .2s ease,background .2s ease;
    min-width:0;
  }
  .rung:hover{
    border-color:var(--line);
    transform:translateY(-3px);
    background:#1d1d28;
  }

  .mark{
    width:32px;height:32px;
    border-radius:9px;
    display:flex;align-items:center;justify-content:center;
    font-size:12.5px;font-weight:700;
    background:linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
    color:var(--cyan);
  }
  .rung.final .mark{
    background: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
    color:var(--cyan);
  }

  .rung .label{
    font-size:14.5px;
    font-weight:700;
    color:#EDEDF0;
  }
  .rung p{
    margin:0;
    font-size:12.8px;
    line-height:1.58;
    color:#c6c6d0;
  }

  @media (max-width:560px){
    .rung p{display:none}
  }

  /* horizontal connector inside a row */
  .arrow-h{
    flex:0 0 auto;
    width:44px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  @media (max-width:560px){
    .arrow-h{width:30px}
  }
  .arrow-h svg{width:34px;height:22px;overflow:visible}
  @media (max-width:560px){
    .arrow-h svg{width:22px;height:16px}
  }
  .arrow-h.flip svg{transform:scaleX(-1)}

  /* vertical connector between the two rows, aligned to the right-hand column */
  .arrow-v-wrap{
    display:flex;
    justify-content:flex-end;
    padding-right:calc(25% - 6px);
    margin:-2px 0;
  }
  @media (max-width:560px){
    .arrow-v-wrap{padding-right:calc(25% - 4px)}
  }
  .arrow-v-wrap svg{width:22px;height:34px;overflow:visible}

  .arrow-path{
    stroke:var(--cyan);
    stroke-width:2.5;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    filter:drop-shadow(0 0 3px rgba(0,172,233,.9)) drop-shadow(0 0 9px rgba(0,172,233,.5));
    stroke-dasharray:6 5;
    animation:arrow-flow 1.1s linear infinite, arrow-glow 2.2s ease-in-out infinite;
  }
  .row2-glow .arrow-path{stroke:#e6926b;filter:drop-shadow(0 0 3px rgba(230,146,107,.9)) drop-shadow(0 0 9px rgba(230,146,107,.5))}
  .v-glow .arrow-path{stroke:#8a72c4;filter:drop-shadow(0 0 3px rgba(138,114,196,.9)) drop-shadow(0 0 9px rgba(138,114,196,.5))}

  @keyframes arrow-flow{
    to{stroke-dashoffset:-22}
  }
  @keyframes arrow-glow{
    0%,100%{opacity:.55}
    50%{opacity:1}
  }



  /* MEGA v2 — anchored dropdown, not full width */
.has-mega{ position:relative; }

.mega{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  width:660px;
  max-width:calc(100vw - 40px);
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 24px 60px #000a;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px);
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index:99;
}
.has-mega:hover .mega,
.mega.open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.megain{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  padding:0;
  gap:0;
}
@media(max-width:820px){
  .mega{ width:calc(100vw - 40px); }
  .megain{ grid-template-columns:1fr; }
}

.mega-left{
  background:var(--dark);
  padding:24px 20px;
  border-right:1px solid var(--line);
  transition:background .3s var(--ease);
}
.mega-right{
  padding:24px 20px;
}

/* left column recolors when hovering the right (services) side */
.megain:has(.mega-right:hover) .mega-left .de{
  /* background:linear-gradient(160deg, var(--navy-soft), var(--dark)); */
  background: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev)
}

@media(max-width:820px){
  .mega-left{ border-right:0; border-bottom:1px solid var(--line); }
}


/* Blur everything when mobile menu is open, except the menu drawer and the hamburger toggle */
#page-wrap > *:not(header-details) {
  transition: filter 0.3s ease;
}
body.menu-open #page-wrap > *:not(header-details) {
  filter: blur(50px);
  pointer-events: none;
      background: rgba(9, 9, 14, 0.20);
}


#mob-menu a{
  font-size: 16px !important;
      padding: 5px 0;
}

#mob-menu details{
  font-size: 16px !important;
      padding: 5px 0;
}

#mob-menu .sub-menu-mobile a{
  font-size: 14px !important;

}

#mob-menu .menu-summary{
  padding: 0;
}


.hero-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}



/* box grid: 2 x 2 on desktop, 1 column on mobile */
  .box-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
  }
  @media (max-width:720px){
    .box-grid{grid-template-columns:1fr}
  }

  .boxi{
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--line);
    background:var(--panel);
    display:flex;
    flex-direction:column;
  }

  .box-head{
    padding:20px 22px;
    display:flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
  }
  /* .box:nth-child(4) .box-head{background:linear-gradient(135deg,var(--maroon),var(--maroon-soft))} */

  .box-head .num{
    flex:0 0 auto;
    width:32px;height:32px;
    border-radius:9px;
    display:flex;align-items:center;justify-content:center;
    font-size:12.5px;font-weight:700;
    background:rgba(255,255,255,.14);
    color:#EDEDF0;
  }
  .box-head h2{
    margin:0;
    font-size:17.5px;
    font-weight:700;
    color:#EDEDF0;
  }

  .box-body{
    padding:18px 22px 22px;
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .boxi .field .field-label{
    display:block;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--cyan);
    margin-bottom:6px;
  }
  

  .boxi .field p{
    margin:0;
    font-size:14.5px;
    line-height:1.6;
  }


  .dur{
    margin-top: 18px;
    color: var(--beam-a);
    font-size: 18px;
  }

  .dur span{
    font-weight: 700;
  }


  .tl-step .qn{
    color: #c8a1fb
  }


  .verstep{
    margin: 50px;
  }


  .tl-step li{
    color: var(--muted);
  }


  .groupi p{
    text-align: left;
  }


  .verstep p.ansss{
margin-bottom: 0 !important;
margin-top: 15px !important;
  }


  .cat-block { margin-bottom: 2rem; }
.cat-title { margin-bottom: .75rem;font-size: 25px !important; }

.cat-items { display: flex; gap: 1rem; }
.cat-items .carde { flex: 1; position: relative; }

.tag-ipr, .tag-dpr {
  
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .5rem;
  border-radius: 4px;
}
.tag-ipr { background: var(--beam-a, #444); color: #EDEDF0; }
.tag-dpr { background: var(--beam-b, #888); color: #EDEDF0; }

@media (max-width: 640px) {
  .cat-items { flex-direction: column; }
}


.groups-merged{
  grid-template-columns: 1fr;
  padding: 50px;
  text-align: left;
}

.groups-merged .carde {
flex-direction: column;
}

.groups-merged .tag-ipr, .groups-merged .tag-dpr {
   position: relative;
}


.hmps_prjt .ss-desc p{
  margin-bottom: 50px;
}


.hmps_prjt .ss-desc br{
  display: none;
}


.groupi p, .boxi p{
  margin-bottom: 0px !important;
}


.expan{
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}
.expan.ss-expanded{
    max-height: 100%;
}
p.previ{
  text-align: center;
}


.cat-title{
  margin-bottom: 15px !important;
}


/* ══════════════════════════════════════
     MOBILE — snap-scroll carousel, autoscroll
     ══════════════════════════════════════ */
  @media (max-width:768px){

      .reverse .clam-toggle-btn {
    justify-content: start !important;
    width: 100%;
}


.cthumb.c1.mad {
    margin-bottom: 15px;
}

.project-row .deri{
    flex-direction: column;
}


.deri a{
  width: fit-content;
}



.kal-case-inner{
  padding: 0 !important;
}
.kal-case-inner .case-list {
    
    grid-template-columns: repeat(1, 1fr);
}



    .step-strip p{ text-align:left; padding-left:4px; }

    .step-strip-inner{
      display:flex;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      -ms-overflow-style:none;
      gap:0;
      width: 100%;
    }
    .step-strip-inner::-webkit-scrollbar{ display:none; }

    .step-strip-inner li.step-item-li{
      flex:0 0 100%;
      scroll-snap-align:center;
      justify-content:center;
      display:flex;
    }
    .step-connector{ display:none; } /* connectors don't make sense one-card-at-a-time */

    .step-item{
      width:100%;
      justify-content:center;
      text-align:center;
      padding:16px 20px;
      border-radius:16px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      flex-direction:column;
      gap:10px;
    }
    .step-item .step-num{
      width:26px; height:26px; font-size:12px;
    }
    .step-b{ align-items:center; }
    .step-b .step-label{ font-size:14.5px; }

    /* progress dots — numbered, with a soft pulse/wave on the active one */
    .step-dots{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:16px;
      margin-top:16px;
    }

    .ct-file{
      flex-direction: column;

    }
    .step-dots span{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      width:22px; height:22px;
      border-radius:50%;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.14);
      color:rgba(255,255,255,.4);
      font-size:10px;
      font-weight:700;
      transition:background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
    }
    .step-dots span.active{
      background:rgba(0,172,233,.16);
      border-color:var(--cyan);
      color:var(--cyan);
      transform:scale(1.12);
    }
    /* wave rings pulsing outward from whichever dot the carousel is on */
    .step-dots span.active::before,
    .step-dots span.active::after{
      content:'';
      position:absolute;
      inset:0;
      border-radius:50%;
      border:1px solid rgba(0,172,233,.55);
      animation:dot-wave 1.8s ease-out infinite;
    }
    .step-dots span.active::after{
      animation-delay:.6s;
    }
    @keyframes dot-wave{
      0%{ transform:scale(1); opacity:.6; }
      100%{ transform:scale(1.9); opacity:0; }
    }

    /* permanent marker for the ACTUAL current step (e.g. step 04) — always on, regardless of scroll */
    .step-dots span.is-current{
      background:rgba(0,172,233,.16);
      border-color:var(--beam-b);
      color:var(--beam-b) !important;
    }
    .step-dots span.is-current::before,
    .step-dots span.is-current::after{
      border-color:rgba(166,107,255,.55);
    }
    /* if the current dot is also the one being scrolled to, its wave turns purple too */
    .step-dots span.is-current.active{
      background:rgba(0,172,233,.16);
      border-color:var(--beam-b);
      color:var(--beam-b) !important;
      transform:scale(1.12);
    }
  }
  @media (min-width:769px){
    .step-dots{ display:none; }
  }






  .step-item-li{
    padding: 5px;
  }


  /* ── Mobile number: country-code selector ── */
  .ct-phone-row{
    display:flex;
    align-items:stretch;
    gap:10px;
    position:relative;
  }
  .ct-phone-row #phone{
    flex:1 1 auto;
    min-width:0;
  }
  .ct-cc-btn{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:6px;
    padding:0 12px;
    min-width:84px;
    border-radius:10px;
    background:rgb(33, 33, 33);
    color:#EDEDF0;
    font:inherit;
    font-size:14px;
        border: 1px solid var(--line);
    cursor:pointer;
    transition:border-color .2s var(--easing),background .2s var(--easing);
  }
  .ct-cc-btn:hover,
  .ct-cc-btn[aria-expanded="true"]{
        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-flag-img{
    display:block;
    width:20px;
    height:15px;
    object-fit:cover;
    border-radius:2px;
    box-shadow:0 0 0 1px rgba(255,255,255,.12);
    flex:0 0 auto;
  }
  .ct-cc-caret{opacity:.6;transition:transform .2s var(--easing)}
  .ct-cc-btn[aria-expanded="true"] .ct-cc-caret{transform:rotate(180deg)}

  .ct-cc-list{
    display:none;
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    width:280px;
    max-height:260px;
    overflow-y:auto;
    margin:0;
    padding:6px;
    list-style:none;
    background:#101018;
    border:1px solid rgba(255,255,255,.14);
    border-radius:12px;
    box-shadow:0 18px 40px rgba(0,0,0,.45);
    z-index:20;
  }
  .ct-cc-list.open{display:block}
  .ct-cc-list li{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border-radius:8px;
    font-size:13.5px;
    color:#e6e6ee;
    cursor:pointer;
    white-space:nowrap;
  }
  .ct-cc-list li:hover,
  .ct-cc-list li.active{
    background:rgba(0,172,233,.14);
    color:#EDEDF0;
  }
  .ct-cc-list li .flag{
    display:block;
    width:20px;
    height:15px;
    object-fit:cover;
    border-radius:2px;
    box-shadow:0 0 0 1px rgba(255,255,255,.12);
    flex:0 0 auto;
  }
  .ct-cc-list li .dial{color:var(--cyan);min-width:46px}
  .ct-cc-list li .cname{
    overflow:hidden;
    text-overflow:ellipsis;
    color:#aab0bd;
  }
  .ct-cc-list li:hover .cname,
  .ct-cc-list li.active .cname{color:#dfe3ea}

  @media (max-width:520px){
    .ct-cc-list{width:240px}
  }


  @media (max-width: 480px){
    .hero-actions .btn-theme {
    font-size: 14px;
    padding: 6px 12px;
    }

    .hero-actions .btn-gray {
    font-size: 14px;
    padding: 6px 12px;
    }

    .hero-actions{
      flex-direction: row;
    }

    .hero-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%
    );
    pointer-events: none;
  }


  }



  /* ── 1. Triad comparison: OEM Warranty / Performance Guarantee / AMC ── */
.cvc-triad{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cvc-triad-card{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.cvc-triad-card: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);
}
.cvc-triad-top{
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
}
.cvc-triad-top h3{
  font-size: 17px;
  color: #fff;
  font-family: var(--main-font);
}
.cvc-triad-body{
  padding: 6px 22px 8px;
  flex: 1;
}
.cvc-row{
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cvc-row:last-child{ border-bottom: 0; }
.cvc-k{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.cvc-v{
  display: block;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.cvc-v.cvc-us{
  color: var(--cyan);
  font-weight: 600;
}

/* ── 2. Coverage tiers: Non-Comprehensive / Comprehensive / Comprehensive+ ── */
.cvc-tiers{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.cvc-tier{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
}
.cvc-tier.cvc-tier-best{
  border-color: rgba(94,208,255,.4);
  background: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
}
.cvc-tier-top{
  padding: 22px 20px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cvc-tier-badge{
  position: absolute;
  top: -1px;
  right: 16px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #08080c;
  background: var(--grad-text);
  padding: 4px 10px;
  border-radius: 999px;
}
.cvc-tier-top h3{
  font-size: 17px;
  color: var(--ink);
  font-family: var(--main-font);
}
.cvc-tier-list{
  padding: 6px 20px 20px;
  flex: 1;
}
.cvc-feat{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.cvc-feat:last-child{ border-bottom: 0; }
.cvc-feat-icon{
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.cvc-feat-icon.cvc-yes{ background: rgba(0,172,233,.15); color: var(--cyan); }
.cvc-feat-icon.cvc-no{ background: rgba(255,255,255,.06); color: var(--muted); }
.cvc-feat-icon.cvc-plus{ background: rgba(230,146,107,.18); color: #e6926b; }
.cvc-feat-text{ flex: 1; min-width: 0; }
.cvc-feat-label{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}
.cvc-feat-value{
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}

/* ── 3. Spares planning grid ── */
.cvc-spares{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cvc-spare-card{
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 22px 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}


/* .mec-section.dprr-con{
  padding: 0;
} */


.cvc-spare-card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,172,233,.3);
}
.cvc-spare-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cvc-spare-ico{
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(0,172,233,.15);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.cvc-spare-top h3{
  font-size: 21px;
  color: var(--ink);
  font-family: var(--main-font);
}
.cvc-spare-block{ margin-bottom: 20px; }
.cvc-spare-block:last-child{ margin-bottom: 0; }
.cvc-spare-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
  display: block;
}

.cvc-spare-label.lal{
  color: var(--beam-b);
}
.cvc-chips{ display: flex; flex-wrap: wrap; gap: 7px; }
.cvc-chip{
  font-size: 12.5px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #dcdce2;
  background: rgba(255,255,255,.02);
}
.cvc-spare-block p{
  font-size: 13.8px;
  line-height: 1.6;
  color: #c6c6d0;
}

/* ── 4. AMC vs Full O&M ── */
.cvc-duo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cvc-duo-card{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}
.cvc-duo-top{
  padding: 20px 22px;
  display: block;
  align-items: center;
  gap: 10px;
}
.cvc-duo-card.cvc-ours .cvc-duo-top{
  background: linear-gradient(
300deg, #203848, #3f1646);
}
.cvc-duo-card.cvc-theirs .cvc-duo-top{
  background: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
}
.cvc-duo-tag{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
}
.cvc-duo-top h3{
  font-size: 21px;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--main-font);
}
.cvc-duo-card.cvc-theirs .cvc-duo-top h3{ color: #fff; }
.cvc-duo-body{ padding: 6px 22px 8px; }

/* ── 5. Track record table ── */
.cvc-table-wrap{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  margin-bottom: 15px;
}
.cvc-table{
  width: 100%;
  border-collapse: collapse;
}
.cvc-table thead th{
  background: linear-gradient(135deg, rgba(94,208,255,.24), rgba(166,107,255,.24)), var(--bg-elev);
  color: #fff;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 16px 20px;
}
.cvc-table tbody td{
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #dcdce2;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cvc-table tbody tr:last-child td{ border-bottom: 0; }
.cvc-table tbody tr:nth-child(odd){ background: rgba(255,255,255,.015); }
.cvc-table td.cvc-where{ color: var(--ink); font-weight: 600; }
.cvc-table td.cvc-num{
  color: var(--cyan);
  font-weight: 700;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px){
  .cvc-triad{ grid-template-columns: 1fr; }
  .cvc-tiers{ grid-template-columns: 1fr; }
  .cvc-spares{ grid-template-columns: 1fr; }
  .cvc-duo{ grid-template-columns: 1fr; }
  .cvc-head h2{ font-size: 24px; }
  .cvc-table{ display: block; overflow-x: auto; white-space: nowrap; }
}


/* .expan {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
} */


.previ.text-left{
  text-align: left !important;
}

.expan.text-center{
  text-align: center !important;
}


.aicte-banner .ss-desc p{
    font-size: 17px !important;
    font-family: var(--sec-font) !important;
    font-weight: 500 !important;
}


.clam-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-height 0.4s ease;
    margin-top: 15px;
}

.clam-text.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.clam-toggle-icon {
    transition: transform 0.3s ease;
}

.clam-toggle-btn.is-active .clam-toggle-icon {
    transform: rotate(180deg);
}


.clam-toggle-btn{
      background: none;
    border: none;
    padding: 6px 0 0;
    top: 0;
    position: relative;
    margin: 0 0 14px;
    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);
}


.reverse .clam-toggle-btn {
    justify-content: end;
    width: 100%;
}

.clam-toggle-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}


.about-stat1 p{
  color: #bfbfbf;
}


p a{
  color: #7eadc0;
}


.cardi .linki{
  color: var(--beam-b);
  font-size: 20px;
  font-family: var(--main-font);
  margin-bottom: 10px;
}


.linki::after {
    content: "\203A";
    font-size: 21px;
    margin-left: 10px;
    transition: transform .3s var(--ease);
}

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


figure.ill {
    margin: 34px 0 14px;
}

figure.ill img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

figure.ill figcaption {
    font-size: 13px;
    color: #6d7280;
    margin-top: 10px;
    text-align: center;
}

.hero-video1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}


.fse{
  padding: 200px 0 250px;
}


@media(max-width: 480px){
  .fse{
  padding:100px 0 250px;
}

.chro-flex {
    flex-direction: column;
}


}


.fvr-zoom-img {
  width: 100%;      /* or a fixed width matching your layout */
  display: block;
}
.fvr-zoom-img img.zoomImg:not(.zoomImg + .zoomImg) {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--low-shade);
}


.zoomImg{
  border-radius: 14px;
}


.serv-inside{
      position: relative;
    text-align: center;
padding: 200px 0 250px;
    
}


.dpr-page{
background:
  linear-gradient(to bottom, transparent 40%, #050509 100%),
  url('../img/museum/services/digital-museum-dpr-documentation-banner.webp') center bottom / cover no-repeat;
}


.turnkey-page{
background:
  linear-gradient(to bottom, transparent 20%, #050509 100%),
  url('../img/museum/services/digital-museum-turnkey-execution-banner.webp') center bottom / cover no-repeat;
}


.amc-page{
background:
  linear-gradient(to bottom, transparent 20%, #050509 100%),
  url('../img/museum/services/digital-museum-amc-lifetime-support-banner.webp') center bottom / cover no-repeat;
}



.mp-page{
  
background: linear-gradient(to bottom, transparent 40%, #050509 100%), url('../img/museum/services/digital-museum-master-planning-banner.webp') center bottom/cover no-repeat;

}



@media(min-width: 769px) and (max-width: 1024px){
  .expan {
    max-width: 95%;
   
}
}


.testi-card .headline{
  font-size: 25px;
}

.chro-flex{
  display: flex;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.chro-flex img{
  height: 250px;
  border-radius: 15px;
}


.chro-flex .content .testi-role{
  color: var(--beam-b);
  font-size: 16px;
}

.chro-flex .content p.testi-content{
font-size: 18px;
font-style: italic;
}


.listen-btn{
  display: none;
}


.crumb{
  font-size: 15px;
    color: #6b819f !important;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;

}
.crumb a{text-decoration:none; color: #6b819f;}.crumb a:hover{color:var(--cyan)}

.crumb span{
  font-size: 15px;
    color: #6b819f !important;
}


p.textli{
  font-size: var(--f-size);
  line-height: var(--f-height);
  color: var(--muted);
}




.trm-grid{
  max-width:1200px; margin:15px 20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;

}

.marg{

  margin:30px
}


.idm-card:hover{
  box-shadow: var(--low-shade) !important;
}

.idm-card  p{
  margin-bottom:  0 !important;
}
.trm-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:28px 26px;
  display:flex;
  flex-direction:column;
  gap:16px;
  transition:transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.trm-card:hover{
  transform:translateY(-4px);
  border-color:rgba(94,208,255,.35);
  box-shadow:0 20px 50px -20px rgba(94,208,255,.25);
}
.trm-card.is-standard{
  border-color:rgba(166,107,255,.4);
  background:linear-gradient(180deg, rgba(166,107,255,.09), rgba(94,208,255,.03));
}

.trm-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.trm-mode{
  font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:5px 11px; border-radius:100px;
  border:1px solid rgba(255,255,255,.14); color:var(--muted);
  white-space:nowrap;
}
.trm-mode.online{ color:var(--beam-b); border-color:rgba(166,107,255,.35); background:rgba(166,107,255,.08); }
.trm-mode.physical{ color:var(--beam-a); border-color:rgba(94,208,255,.3); background:rgba(94,208,255,.07); }

.trm-name{
  font-family:var(--main-font);
  font-size:21px; font-weight:700; letter-spacing:-.01em; line-height:1.25; margin:0;
}

.trm-desc{
  color:var(--muted); font-size:15.5px; line-height:1.6; margin:0;
  min-height:64px;
}

.trm-role{
  display:flex; align-items:center; gap:9px;
  padding-top:14px; border-top:1px solid var(--line);
}
.trm-role-ico{
  width:26px; height:26px; flex:0 0 26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(94,208,255,.1); color:var(--beam-a);
}
.trm-role-ico svg{ width:14px; height:14px; }
.trm-role-text{ font-size:13.5px; }
.trm-role-text .lbl{ display:block; color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.trm-role-text .val{ color:var(--ink); font-weight:600; }

.trm-build{
  margin-top:auto;
  display:flex; align-items:center; gap:8px;
  font-size:14px; font-weight:700;
}
.trm-build.yes{ color:var(--beam-a); }
.trm-build.standard{ color:var(--beam-b); }
.trm-build svg{ width:16px; height:16px; flex:0 0 16px; }

.trm-build.talk{ }
.trm-build.talk a{
  color:var(--ink); text-decoration:none; display:inline-flex; align-items:center; gap:6px;
  padding:7px 14px; border-radius:100px;
  background:linear-gradient(150deg, var(--beam-a), var(--beam-b));
  font-size:13px;
}
.trm-build.talk a svg{ width:12px; height:12px; transition:transform .25s var(--ease); }
.trm-build.talk a:hover svg{ transform:translateX(3px); }

@media (max-width: 980px){
  .trm-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 620px){
  .trm-grid{ grid-template-columns:1fr; }
}


footer p a{
  color: rgb(255 255 255 / 0.55);
}







@media(max-width: 768px){
  .mobhide{
    display: none !important;
  }

  .deskhide{
    display: block !important;
  }

  .crumb {
    font-size: 15px;
    color: #6b819f !important;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.serv-inside {
    padding: 100px 0;
}

}

@media(min-width: 769px){
  .mobhide{
    display: block !important;
  }

  .deskhide{
    display: none !important;
  }
}


.slick-slider .slick-track{
  margin-top: 50px;
  margin-bottom: 50px;
}


.check-later-link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.check-later-link:hover {
  color: #fff;
}


.cta-wrapper a {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.8;
  filter: grayscale(40%);
  user-select: none;
}


.kal-case-inner{
  padding: 25px;
}


.cta-wrapper {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 20px;
}

.cta-wrapper .btn-gray {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
}

.check-later-link {
  font-size: 15px;
  color: #4a9eff;
  text-decoration: none;
  white-space: nowrap;
}

.check-later-link:hover {
  text-decoration: none;
}


.cta-wrapper div{
      justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.founderspro .project-media {
    box-shadow: var(--big-shade);
}


@media(min-width: 1200px) and (max-width: 1600px){
.cs-stack-wrap {
    
    margin-top: -650px;
    padding-bottom: 30px;
}
}


@media(min-width: 1921px){
  .cs-stack-wrap {
    padding-bottom: 250px;
    /* margin-top: -880px; */
    margin-top: -1000px;
}
}



@media(max-width: 768px){
.cs-stack-wrap .case-chip{
      position: absolute;
    top: 12px;
}
    .cs-stack-wrap .cs-card-body {
        padding: 20px 20px;
        
    }

    .cs-stack-wrap .cs-card-title{
      margin-top: 0;
    }

    .cs-stack-wrap .cs-card-desc{
      line-height: 1.4;
    }

    #cs-space .px-8{
padding: 15px;
    }

    .cs-stack-wrap .badge {
    gap: 3px;
}

    .cs-stack-wrap .cs-badges{
      margin-bottom: 0;
    }
    .cs-stack-wrap  .case-chip.green {
    background: rgb(0 98 54 / 41%);
    color: #3ecf8e;
    border: 1px solid rgba(62, 207, 142, .45);
}
}



#cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(700px, calc(100% - 32px));
    background: rgba(26, 26, 30, .80);
    backdrop-filter: blur(2px);
    color: #f2f2f2;
    border: 1px solid #2f2f35;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 999999;
    font-family: var(--sec-font);
    font-size: 14px;
    line-height: 1.5;
    justify-content: space-between;
  }
 
  #cookie-consent p {
    margin: 0;
    color: #d4d4d8;
    font-family: var(--sec-font);
  }
 
  #cookie-consent a {
    color: #8ab4ff;
    text-decoration: underline;
  }
 
#cookie-accept{
  background-color: #fff !important;
  color: #000 !important;
}


.case-study .link-cta{
  margin-top: 20px;
}

  #cc-banner #cookie-accept {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
  }
 
  /* #cc-banner button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
  } */
 
  #cookie-accept {
    background: #f2f2f2;
    color: #111;
  }
 
  #cookie-accept:hover {
    background: #ffffff;
  }
 
  /* Optional decline button styling — only needed if you enable it below */
  #cc-decline {
    background: transparent;
    color: #d4d4d8;
    border: 1px solid #3a3a42;
  }
 
  #cc-decline:hover {
    background: #232328;
  }
 
  @media (max-width: 480px) {
    #cookie-consent {
      flex-direction: column;
      align-items: stretch;
      text-align: left;
    }
    #cookie-consent #cookie-accept {
      justify-content: flex-end;
    }
  }




  #cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(700px, calc(100% - 32px));
    background: rgba(26, 26, 30, .80);
    backdrop-filter: blur(2px);
    color: #f2f2f2;
    border: 1px solid #2f2f35;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 999999;
    font-family: var(--sec-font);
    font-size: 14px;
    line-height: 1.5;
    justify-content: space-between;
  }
 
  #cookie-consent p {
    margin: 0;
    line-height: 1.5;
  }
 
  
 
  #cookie-consent button:hover {
    opacity: 0.85;
  }
 
  @media (max-width: 600px) {
    #cookie-consent {
      width: 85%;
      flex-direction: column;
      align-items: end;
      gap: 12px;
    }
 
    #cookie-consent button {
      width: fit-content;
      justify-content: end;
      display: flex;
    }
  }

  
.fa-pa p{
  max-width: 100%;
  margin-bottom: 50px;
}