/* ----------------------------------------------------------------
   Certus ITM — Design System
   Premium tech-security: dark canvas + cyan accent
---------------------------------------------------------------- */

:root {
  /* Color */
  --bg:          #08090b;
  --bg-2:        #11171c;     /* lifted for visible section contrast */
  --surface:     #161d23;
  --surface-2:   #1c242b;
  --surface-3:   #232c34;
  --border:      #1e2830;
  --border-2:    #2a3640;
  --text:        #e6edf0;
  --text-2:      #a3aeb6;
  --text-3:      #6b7780;
  --text-4:      #475058;

  /* Light-navbar tokens */
  --nav-bg:      #ffffff;
  --nav-border:  #e6ebef;
  --nav-text:    #1f2a31;
  --nav-muted:   #5b6770;
  --nav-hover:   #f0f4f7;

  --cyan:        #16e0e0;
  --cyan-2:      #0fb8b8;
  --cyan-soft:   rgba(22, 224, 224, 0.12);
  --cyan-glow:   rgba(22, 224, 224, 0.35);
  --cyan-line:   rgba(22, 224, 224, 0.25);

  --danger:      #ff6363;
  --ok:          #4ade80;

  /* Type */
  --font-sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Geometry */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ----------------------------------------------------------------
   Reset
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------------------------------------------
   Typography utilities
---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--cyan);
  display: inline-block;
}

.h-display {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 60ch;
  text-wrap: pretty;
}
.muted { color: var(--text-2); }
.mono { font-family: var(--font-mono); }

/* Text gradient */
.glow-text {
  background: linear-gradient(90deg, var(--text) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------------------------------------------------
   Layout primitives
---------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative;
}
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2) 50%, transparent);
}

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn .arr {
  width: 14px; height: 14px;
  transition: transform .2s ease;
}
.btn:hover .arr { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--cyan);
  color: #001616;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 0 0 var(--cyan-glow), 0 1px 0 rgba(255,255,255,0.18) inset;
}
.btn--primary:hover {
  box-shadow: 0 0 32px -4px var(--cyan-glow);
  background: #2af0f0;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
}
.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* ----------------------------------------------------------------
   Header / Nav  (LIGHT bar over dark canvas)
---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 14px -6px rgba(0,0,0,0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__brand img { height: 30px; width: auto; }

.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-muted);
  border-radius: var(--r-sm);
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--nav-text); background: var(--nav-hover); }
.nav__link.is-active { color: var(--cyan-2); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 2px;
  height: 1.5px;
  background: var(--cyan-2);
  border-radius: 1px;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  padding: 3px;
  background: var(--nav-hover);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--nav-muted);
  transition: all .15s ease;
}
.lang-toggle button.is-active {
  background: var(--cyan-2);
  color: #ffffff;
}

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--nav-border);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  background: var(--nav-hover);
}
.nav__burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--nav-text);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--nav-text);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after  { top: 5px; }

@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    padding: 16px var(--gutter) 28px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform .25s ease;
    box-shadow: 0 24px 40px -16px rgba(0,0,0,0.18);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 16px; font-size: 16px; border-radius: var(--r-md); color: var(--nav-text); }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn { display: none; }
}

/* ----------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(72px, 11vw, 120px);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
}
.hero__glow {
  position: absolute;
  z-index: -1;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-soft) 0%, transparent 60%);
  top: -200px; right: -200px;
  filter: blur(30px);
  pointer-events: none;
}
.hero__glow--2 {
  top: auto; right: auto;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  opacity: 0.6;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
.hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__main { grid-template-columns: 1fr; }
}
.hero__copy { max-width: 880px; }
.hero__copy .eyebrow { margin-bottom: 28px; }
.hero__copy h1 { margin-bottom: 24px; }
.hero__copy h1 .accent { color: var(--cyan); }
.hero__copy .lead { max-width: 56ch; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__meta__item .num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.hero__meta__item .lbl {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------
   Section heading
---------------------------------------------------------------- */
.s-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 760px;
}
.s-head--centered { margin-inline: auto; text-align: center; }
.s-head--centered .eyebrow { justify-self: center; }
.s-head--row {
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: none;
  gap: 32px;
}
.s-head__right .lead { max-width: 48ch; }

/* ----------------------------------------------------------------
   Cards / Service grid
---------------------------------------------------------------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc {
  background: var(--bg);
  padding: 36px 32px 32px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 280px;
  position: relative;
  transition: background .2s ease;
}
.svc:hover { background: var(--surface); }
.svc__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--cyan);
  background: var(--cyan-soft);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.svc:hover .svc__icon {
  border-color: var(--cyan-line);
  box-shadow: 0 0 20px -6px var(--cyan-glow);
}
.svc__icon svg { width: 22px; height: 22px; }
.svc__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.05em;
}
.svc h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.svc p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  transition: color .15s ease;
}
.svc:hover .svc__more { color: var(--cyan); }

/* ----------------------------------------------------------------
   Service carousel (media-card variant for home page)
---------------------------------------------------------------- */
.svc-carousel { position: relative; }
.svc-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 24px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.svc-carousel__track::-webkit-scrollbar { display: none; }
@media (max-width: 1100px) {
  .svc-carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 720px) {
  .svc-carousel__track { grid-auto-columns: 88%; }
}

/* Override .svc inside carousel: media card */
.svc-carousel .svc {
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 0;
  transition: border-color .2s ease, transform .25s ease;
}
.svc-carousel .svc:hover {
  background: var(--bg);
  border-color: var(--cyan-line);
  transform: translateY(-3px);
}
.svc__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.svc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: saturate(1.05);
}
.svc-carousel .svc:hover .svc__img img { transform: scale(1.04); }
.svc__img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 9, 11, 0.55) 100%);
}
.svc__img .svc__num {
  top: 16px;
  right: 16px;
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.08em;
  padding: 5px 10px;
  background: rgba(8, 9, 11, 0.72);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}
.svc__body {
  padding: 26px 26px 28px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
}
.svc__body h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.svc__body p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.svc-carousel .svc__more {
  padding-top: 16px;
  margin-top: 0;
}

.svc-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.svc-carousel__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-2);
  background: var(--bg);
  color: var(--text-2);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.svc-carousel__btn:hover {
  border-color: var(--cyan-line);
  color: var(--cyan);
  background: var(--cyan-soft);
}
.svc-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: transparent;
  border-color: var(--border);
  color: var(--text-3);
}
.svc-carousel__btn svg { width: 18px; height: 18px; }
.svc-carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.svc-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  transition: background .15s ease, width .15s ease;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.svc-carousel__dot.is-active {
  background: var(--cyan);
  width: 22px;
  border-radius: 999px;
}

/* ----------------------------------------------------------------
   Two-col / Feature panel
---------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
}

.feat-list {
  display: grid;
  gap: 4px;
}
.feat-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.feat-list li:last-child { border-bottom: 1px solid var(--border); }
.feat-list .ic {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--cyan);
}
.feat-list .ic svg { width: 16px; height: 16px; }
.feat-list h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.feat-list p { color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ----------------------------------------------------------------
   Stage / Image card
---------------------------------------------------------------- */
.stage {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}
.stage img { width: 100%; height: 100%; object-fit: cover; }
.stage::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* ----------------------------------------------------------------
   Process / steps
---------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  padding-right: 16px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.05em;
  position: absolute;
  top: -8px;
  left: 0;
  background: var(--bg);
  padding-right: 8px;
}
.step h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 14px; line-height: 1.55; }
.step__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg);
  margin: 4px 0 18px;
}
.step__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.step:hover .step__thumb img { transform: scale(1.04); }

/* ----------------------------------------------------------------
   Ongoing partnership — Personalized Support + Managed + Team
---------------------------------------------------------------- */
.partner-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}
@media (max-width: 960px) {
  .partner-grid { grid-template-columns: 1fr; }
}
.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.partner-card__head { display: flex; flex-direction: column; gap: 12px; }
.partner-card__intro {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 56ch;
}
.partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  flex: 1;
  align-content: space-between;
}
@media (max-width: 560px) {
  .partner-list { grid-template-columns: 1fr; }
}
.partner-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.partner-list li:first-child,
.partner-list li:nth-child(2) { border-top: 0; }
@media (max-width: 560px) {
  .partner-list li:nth-child(2) { border-top: 1px solid var(--border); }
}
.partner-list .ic {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-line);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.partner-list .ic svg { width: 12px; height: 12px; }

.partner-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.partner-card--managed h3,
.partner-card--team h3 { font-size: clamp(22px, 2.2vw, 26px); line-height: 1.2; }
.partner-card--managed p,
.partner-card--team p { color: var(--text-2); font-size: 15px; line-height: 1.6; }
.partner-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.partner-card__metrics > div { display: flex; flex-direction: column; gap: 4px; }
.partner-card__metrics .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.partner-card__metrics .lbl {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.partner-card--team {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(22, 224, 224, 0.10), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
}
.partner-card--team .partner-team__copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.partner-card--team .btn { margin-top: 6px; }

/* ----------------------------------------------------------------
   CTA banner
---------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan-line), transparent 40%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-soft) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  filter: blur(20px);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
@media (max-width: 760px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
}
.cta-banner h2 { max-width: 18ch; margin-bottom: 12px; }
.cta-banner p { color: var(--text-2); max-width: 50ch; }

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--nav-bg);
  color: var(--nav-text);
  border-top: 1px solid var(--nav-border);
  padding: 64px 0 32px;
  margin-top: 0;
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 880px) {
  .foot { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot__brand { grid-column: 1 / -1; }
}
.foot__brand img { height: 32px; margin-bottom: 18px; }
.foot__brand p { color: var(--nav-muted); font-size: 14px; max-width: 36ch; white-space: pre-line; }
.foot h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.foot ul { display: grid; gap: 10px; }
.foot__addr {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--nav-muted);
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.foot a {
  font-size: 14px;
  color: var(--nav-muted);
  transition: color .15s ease;
}
.foot a:hover { color: var(--cyan-2); }
.foot__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--cyan-line);
  font-size: 13px;
  color: #8a96a0;
  flex-wrap: wrap;
  gap: 12px;
}
.foot__legal { display: flex; gap: 20px; align-items: center; }
.foot__legal a { color: #8a96a0; }
.foot__legal a:hover { color: var(--cyan-2); }
.foot__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #8a96a0;
  text-transform: none;
}
.foot__credit img {
  height: 22px;
  width: auto;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.foot__credit:hover img { opacity: 1; }

/* Brand tagline below footer logo */
.foot__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 14px;
}
.foot__tagline::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--cyan);
}

/* ----------------------------------------------------------------
   Logo wall
---------------------------------------------------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 24px;
}
.logos__item {
  background: var(--bg);
  padding: 22px;
  display: grid;
  place-items: center;
  min-height: 92px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-3);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   Pages — generic page hero
---------------------------------------------------------------- */
.page-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-soft) 0%, transparent 60%);
  top: -400px; right: -200px;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 860px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { max-width: 60ch; }

/* Two-column variant with right-side image */
.page-hero--media .page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.page-hero--media .page-hero__inner { max-width: 640px; }
.page-hero__visual { margin: 0; }
.page-hero__visual__frame {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  box-shadow:
    0 32px 80px -28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.page-hero__visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 50%, rgba(8, 9, 11, 0.45) 100%),
    radial-gradient(ellipse at top right, rgba(22, 224, 224, 0.16) 0%, transparent 55%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.page-hero__visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
@media (max-width: 900px) {
  .page-hero--media .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero--media .page-hero__inner { max-width: 100%; }
}

.crumbs {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.crumbs a { color: var(--text-3); }
.crumbs a:hover { color: var(--cyan); }
.crumbs .sep { color: var(--text-4); }

/* ----------------------------------------------------------------
   Portfolio cards
---------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.work {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.work:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 24px 40px -16px rgba(0,0,0,0.5);
}
.work__img {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.work__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work:hover .work__img img { transform: scale(1.04); }
.work__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--cyan-line);
}
.work__body { padding: 24px 26px 28px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.work__body h3 { font-size: 19px; }
.work__body p { color: var(--text-2); font-size: 14px; line-height: 1.55; }
.work__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

/* ----------------------------------------------------------------
   Certifications grid
---------------------------------------------------------------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cert {
  background: var(--bg);
  padding: 28px 26px;
  display: grid;
  gap: 12px;
  min-height: 200px;
  transition: background .2s ease;
}
.cert:hover { background: var(--surface); }
.cert__badge {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-line);
  display: grid;
  place-items: center;
  color: var(--cyan);
}
.cert__badge svg { width: 28px; height: 28px; }
.cert__name { font-size: 16px; font-weight: 700; line-height: 1.3; }
.cert__org {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cert__meta { margin-top: auto; font-size: 12px; color: var(--text-3); }

/* ----------------------------------------------------------------
   Certification rows (text list)
---------------------------------------------------------------- */
.cert-list {
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cert-row {
  background: var(--bg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 32px;
  transition: background .15s ease;
}
.bg-surface .cert-row { background: var(--bg-2); }
.cert-row:hover { background: var(--surface); }
.bg-surface .cert-row:hover { background: var(--surface); }
.cert-row__name {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.cert-row__id {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cert-row__id span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--text-4);
}
.cert-row__id code {
  font-family: var(--font-mono);
  color: var(--cyan);
  background: var(--cyan-soft);
  padding: 4px 9px;
  border-radius: var(--r-sm);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .cert-row {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    gap: 10px;
  }
  .cert-row__id { white-space: normal; }
}

/* Badge wall */
.badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
}
.badge {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.badge__card {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 32px 22px;
  background: linear-gradient(180deg, #f3f6f8 0%, #e6ecf0 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  box-shadow:
    0 18px 40px -22px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.badge:hover .badge__card {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -22px rgba(22, 224, 224, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.badge__card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(31, 42, 49, 0.18));
}
.badge figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  text-align: center;
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   Forms
---------------------------------------------------------------- */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.field input, .field textarea, .field select {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--surface);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------
   Contact panel
---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info {
  display: grid;
  gap: 32px;
  align-content: start;
}
.contact-block h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.contact-block p, .contact-block a { font-size: 16px; color: var(--text); }
.contact-block a:hover { color: var(--cyan); }
.contact-block .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 6px; }
.contact-block .row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--cyan); }

/* ----------------------------------------------------------------
   Reveal animations
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ----------------------------------------------------------------
   Helpers
---------------------------------------------------------------- */
.bg-surface { background: var(--bg-2); }
.section.bg-surface {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ----------------------------------------------------------------
   Clients carousel
---------------------------------------------------------------- */
.clients {
  padding: clamp(64px, 8vw, 96px) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.clients__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  padding: 0 var(--gutter);
}
.clients__head .eyebrow { justify-self: center; margin-bottom: 18px; display: inline-flex; }
.clients__head h2 { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
.clients__viewport {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients__track {
  display: flex;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  width: max-content;
  animation: clients-scroll 50s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }
.clients__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.clients__item img {
  max-height: 100%;
  width: auto;
  opacity: 0.55;
  transition: opacity .25s ease;
}
.clients__item:hover img { opacity: 0.95; }
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
  .clients__viewport { overflow-x: auto; }
}
[data-lang-hidden] { display: none !important; }

.scrim-top { position: relative; }
.scrim-top::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-line) 50%, transparent);
}

/* utility for inline icons */
.ic-arrow { width: 14px; height: 14px; }

/* ----------------------------------------------------------------
   Portfolio — tech stack chip grid + operating commitments
---------------------------------------------------------------- */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.stack-group {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stack-group__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips li {
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-2);
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .15s ease, color .15s ease;
}
.chips li:hover {
  border-color: var(--cyan-line);
  color: var(--cyan);
}

/* Commitments grid */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.commit {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
  overflow: hidden;
}
.commit:hover {
  border-color: var(--cyan-line);
  transform: translateY(-2px);
}
.commit__thumb {
  position: relative;
  margin: 0 -28px 18px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0a2026;
  border-bottom: 1px solid var(--border);
}
.commit__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.commit:hover .commit__thumb img { transform: scale(1.04); }
.commit__thumb .commit__num {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--cyan-line);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--cyan);
  display: inline-block;
  line-height: 1;
}
.commit__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}
.commit p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   CWS page — brand logo + integrated imagery
---------------------------------------------------------------- */
.cws-brand {
  display: block;
  width: clamp(320px, 36vw, 480px);
  height: auto;
  margin: 0 0 40px;
  filter: drop-shadow(0 8px 24px rgba(22, 224, 224, 0.18));
}

/* Section intro: text + framed image side by side */
.cws-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (max-width: 900px) {
  .cws-intro { grid-template-columns: 1fr; }
}
.cws-intro__copy .eyebrow { margin-bottom: 18px; }
.cws-intro__copy .h2 { margin-bottom: 18px; }
.cws-intro__copy .lead { max-width: 52ch; }

/* Framed figure for content imagery */
.cws-figure { margin: 0; }
.cws-figure__frame {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  box-shadow:
    0 24px 60px -22px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: var(--bg-2);
}
.cws-figure__frame::after {
  /* Subtle inner bevel + corner accent */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(22, 224, 224, 0.06) 0%, transparent 30%, transparent 70%, rgba(8, 9, 11, 0.5) 100%);
}
.cws-figure__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.cws-figure figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

/* Wide content banner: image with caption overlay */
.cws-banner { margin: 0 0 clamp(40px, 5vw, 56px); }
.cws-banner__frame {
  position: relative;
  aspect-ratio: 24 / 9;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  box-shadow:
    0 24px 60px -22px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: var(--bg-2);
}
.cws-banner__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.cws-banner__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 3vw, 40px);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 9, 11, 0.65) 60%, rgba(8, 9, 11, 0.9) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cws-banner__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
}
.cws-banner__line {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ----------------------------------------------------------------
   Home hero visual (image + live badge)
---------------------------------------------------------------- */
.hero__visual {
  position: relative;
  margin: 0;
}
.hero__visual__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  box-shadow:
    0 32px 80px -28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero__visual__frame::after {
  /* Cyan vignette + dark fade to match hero */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(8, 9, 11, 0.55) 100%),
    radial-gradient(ellipse at top right, rgba(22, 224, 224, 0.16) 0%, transparent 55%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.hero__visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.hero__visual__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.72);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.hero__visual__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 224, 224, 0.18);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 224, 224, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(22, 224, 224, 0.05); }
}

/* ----------------------------------------------------------------
   Feature grid (About — Key features of our service)
---------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.feature-card:hover {
  background: var(--surface);
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-line);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}
.feature-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------------------------------
   Feature carousel (About — Key features as scroll-snap carousel)
---------------------------------------------------------------- */
.feature-carousel .feature-card {
  scroll-snap-align: start;
  height: 100%;
}
.feature-carousel:hover .feature-card { transform: none; }
.feature-carousel .feature-card:hover { transform: translateY(-2px); }

/* ----------------------------------------------------------------
   Experience banner (About — between What drives us & Key features)
---------------------------------------------------------------- */
.exp-banner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22, 224, 224, 0.10), transparent 65%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  overflow: hidden;
}
.exp-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 45%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 45%, transparent 80%);
  pointer-events: none;
}
.exp-banner > * { position: relative; z-index: 1; }
.exp-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--cyan-line);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.exp-banner__pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 224, 224, 0.18);
}
.exp-banner__quote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 720px;
  margin: 0;
  text-wrap: pretty;
}

/* ----------------------------------------------------------------
   "What drives us" inline photo (About)
---------------------------------------------------------------- */
.drives-photo {
  position: relative;
  margin: 32px 0 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  box-shadow:
    0 28px 60px -28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.drives-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}
.drives-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(22, 224, 224, 0.16), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.45) 100%);
  pointer-events: none;
}
