*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --void:    #050507;
  --ink:     #0c0c10;
  --panel:   #111116;
  --surface: #18181f;
  --border:  rgba(255,255,255,.07);
  --cyan:    #00e5c8;
  --cyan-dim: rgba(0,229,200,.12);
  --white:   #ffffff;
  --off:     #e8e8ee;
  --muted:   #9ca0b0;
}

html { scroll-behavior: smooth; }

.ab2-content p,
.pj-item__copy p,
.pj-item__scopes li,
.cta p {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
  background: var(--void);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
nav.stuck {
  background: rgba(5,5,7,.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-wordmark .nm-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.nav-center { display: flex; gap: 40px; list-style: none; }
.nav-center a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-center a:hover, .nav-center a.nav-here { color: var(--cyan); }
.nav-end { display: flex; align-items: center; gap: 20px; }
.nav-tel {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-tel:hover { color: var(--cyan); }
.nav-btn {
  border: 1px solid var(--cyan); color: var(--cyan);
  padding: 9px 22px; font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
  position: relative; overflow: hidden;
}
.nav-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease; z-index: -1;
}
.nav-btn:hover { color: var(--void); }
.nav-btn:hover::before { transform: scaleX(1); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-backdrop { display: none; }

.ab2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  max-height: 960px;
  background: var(--void);
  border-bottom: 1px solid var(--border);
}
.ab2-hero__text {
  position: relative;
  padding: 120px 48px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ab2-hero__text::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 30%, rgba(0,229,200,.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,229,200,.04) 0%, transparent 50%),
    var(--void);
  pointer-events: none;
}
.ab2-hero__text::after {
  content: '';
  position: absolute; inset: 0;
  opacity: .035;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ab2-hero__inner { position: relative; z-index: 2; max-width: 520px; }
.ab2-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.ab2-eyebrow::before { content: '//'; opacity: .5; }
.ab2-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 800; line-height: .98; letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.ab2-hero h1 .hl { color: var(--cyan); }
.ab2-hero__meta {
  font-family: 'DM Mono', monospace;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 229, 200, 0.22);
  max-width: 380px;
}
.ab2-hero__visual {
  position: relative;
  min-height: 320px;
  background: var(--ink);
}
.ab2-hero__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(55%) brightness(.68);
}
.ab2-hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--void) 0%, rgba(5,5,7,.2) 28%, rgba(5,5,7,.1) 100%),
    linear-gradient(to top, rgba(5,5,7,.75) 0%, transparent 45%);
  pointer-events: none;
}
.ab2-hero__edge {
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; background: linear-gradient(180deg, var(--cyan), rgba(0,229,200,.2));
  z-index: 2;
  pointer-events: none;
}

.ab2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.ab2-stat {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .25s;
}
.ab2-stat:last-child { border-right: none; }
.ab2-stat:hover { background: var(--cyan-dim); }
.ab2-stat::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.ab2-stat:hover::after { transform: scaleX(1); }
.ab2-stat__num {
  font-family: 'Inter', sans-serif; font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1;
}
.ab2-stat__num sup { font-size: .55em; color: var(--cyan); vertical-align: super; }
.ab2-stat__label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-top: 10px;
}

.ab2-content {
  background: #050507;
  padding: 80px 220px;
  border-bottom: 1px solid var(--border);
}
.ab2-content__inner {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.ab2-content p {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.9; font-weight: 400; margin-bottom: 22px;
}
.ab2-content p:last-child { margin-bottom: 0; }

.pj-mosaic {
  background: var(--ink);
  padding: 72px 56px 72px;
  border-bottom: 1px solid var(--border);
}
.pj-mosaic__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pj-mosaic__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.pj-mosaic__eyebrow::before { content: '//'; opacity: .5; }
.pj-mosaic__header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.05;
}
.pj-mosaic__header p {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.75; font-weight: 400;
  max-width: 420px;
  text-align: right;
}
.pj-mosaic__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 220px;
  gap: 3px;
}
.pj-mosaic__cell {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  min-height: 180px;
}
.pj-mosaic__cell:first-child { grid-row: 1 / 3; }
.pj-mosaic__cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.55) saturate(.6) grayscale(30%);
  transition: filter .5s, transform .6s;
}
.pj-mosaic__cell:hover img {
  filter: brightness(.75) saturate(.9) grayscale(0%);
  transform: scale(1.05);
}
.pj-mosaic__label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px 28px;
  background: linear-gradient(to top, rgba(5,5,7,.95) 0%, transparent 55%);
  pointer-events: none;
}
.pj-mosaic__type {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px;
}
.pj-mosaic__name {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: -.01em; line-height: 1.1;
}
.pj-mosaic__cell:first-child .pj-mosaic__name { font-size: 26px; }

.pj-catalog {
  background: var(--void);
  padding: 0 56px 72px;
  border-bottom: 1px solid var(--border);
}
.pj-catalog__intro {
  padding: 72px 0 56px;
  max-width: 720px;
}
.pj-catalog__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.pj-catalog__eyebrow::before { content: '//'; opacity: .5; }
.pj-catalog__intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.05;
  margin-bottom: 16px;
}
.pj-catalog__intro p {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.75; font-weight: 400;
}

.pj-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  min-height: 380px;
}
.pj-item--reverse .pj-item__photo { order: 2; }
.pj-item--reverse .pj-item__copy {
  order: 1;
  border-left: none;
  border-right: 3px solid var(--cyan);
  background: linear-gradient(270deg, rgba(0,229,200,.06) 0%, transparent 70%);
}
.pj-item__photo {
  position: relative;
  min-height: 320px;
  background: var(--surface);
  overflow: hidden;
}
.pj-item__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(.65);
  transition: filter .45s ease, transform .55s ease;
}
.pj-item:hover .pj-item__photo img {
  filter: grayscale(10%) brightness(.78);
  transform: scale(1.03);
}
.pj-item__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,7,.35) 0%, transparent 45%);
  pointer-events: none;
}
.pj-item--reverse .pj-item__photo::after {
  background: linear-gradient(270deg, rgba(5,5,7,.35) 0%, transparent 45%);
}
.pj-item__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 64px 56px 48px;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(0,229,200,.06) 0%, transparent 70%);
}
.pj-item__index {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px;
}
.pj-item__client {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white);
  line-height: 1.1; margin-bottom: 12px;
}
.pj-item__sector {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75); margin-bottom: 24px;
}
.pj-item__scopes {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 24px;
}
.pj-item__scopes li {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.65; font-weight: 400;
  padding-left: 22px; position: relative;
}
.pj-item__scopes li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 8px; height: 2px; background: var(--cyan);
}
.pj-item__copy p {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.8; font-weight: 400;
}

.pj-video {
  background: var(--ink);
  padding: 72px 56px;
  border-bottom: 1px solid var(--border);
}
.pj-video__header {
  max-width: 800px;
  margin-bottom: 48px;
}
.pj-video__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.pj-video__eyebrow::before { content: '//'; opacity: .5; }
.pj-video__header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.05;
  margin-bottom: 16px;
}
.pj-video__header p {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.75; font-weight: 400;
}
.pj-video__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pj-video__card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  transition: outline-color .2s;
}
.pj-video__card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.pj-video__thumb {
  position: absolute; inset: 0;
  background: var(--surface);
}
.pj-video__thumb img,
.pj-video__thumb video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.5) saturate(.65) grayscale(25%);
  transition: filter .45s ease, transform .55s ease;
}
.pj-video__card:hover .pj-video__thumb img,
.pj-video__card:hover .pj-video__thumb video,
.pj-video__card:focus-visible .pj-video__thumb img,
.pj-video__card:focus-visible .pj-video__thumb video {
  filter: brightness(.65) saturate(.85) grayscale(0%);
  transform: scale(1.04);
}
.pj-video__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,.92) 0%, rgba(5,5,7,.25) 45%, rgba(5,5,7,.15) 100%);
  pointer-events: none;
}
.pj-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(5,5,7,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: border-color .25s, background .25s, transform .25s;
  z-index: 2;
}
.pj-video__play::before {
  content: '';
  margin-left: 4px;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--white);
}
.pj-video__card:hover .pj-video__play,
.pj-video__card:focus-visible .pj-video__play {
  border-color: var(--cyan);
  background: rgba(0,229,200,.15);
  transform: translate(-50%, -50%) scale(1.06);
}
.pj-video__card:hover .pj-video__play::before,
.pj-video__card:focus-visible .pj-video__play::before {
  border-left-color: var(--cyan);
}
.pj-video__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pj-video__site {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: -.01em; line-height: 1.15;
}
.pj-video__services {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px; line-height: 1.45; font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.pj-video-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.pj-video-modal.is-open {
  opacity: 1; visibility: visible;
}
.pj-video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,7,.88);
  backdrop-filter: blur(8px);
}
.pj-video-modal__dialog {
  position: relative; z-index: 1;
  width: min(960px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 48px);
}
.pj-video-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(5,5,7,.65);
  color: var(--white);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}
.pj-video-modal__close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,229,200,.1);
}
.pj-video-modal__close:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.pj-video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.pj-video-modal__player video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  z-index: 1;
}
.pj-video-modal__placeholder {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, var(--surface) 0%, #000 100%);
  color: rgba(255,255,255,.55);
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.pj-video-modal__placeholder[hidden] {
  display: none !important;
}
.pj-video-modal__placeholder svg {
  width: 48px; height: 48px;
  opacity: .35;
}
.pj-video-modal__meta {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 0;
  border-top: 1px solid var(--border);
  background: var(--void);
}
.pj-video-modal__field {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.pj-video-modal__field:last-child { border-right: none; }
.pj-video-modal__field dt {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 8px;
}
.pj-video-modal__field dd {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px; line-height: 1.5; font-weight: 400;
  color: rgba(255,255,255,.92);
  margin: 0;
}

body.pj-video-modal-open { overflow: hidden; touch-action: none; }

.cert-block {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid var(--border);
  margin: 0 auto;
  padding: 56px 56px 0;
}
.cert-block h3 {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.about-certs {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch;
  justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.about-cert--logo {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  width: 160px; height: 160px;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid rgba(0,229,200,.2);
  background: rgba(255,255,255,.02);
}
.about-cert--logo img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto; object-fit: contain;
}

.cta {
  background: var(--void); padding: 80px 56px;
  position: relative; overflow: hidden; text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,229,200,.06) 0%, transparent 70%);
}
.cta-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cta-eyebrow::before { content: '//'; opacity: .5; }
.cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5.2vw, 81px);
  font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: .88;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.cta h2 em {
  font-style: normal;
  font-weight: 800;
  color: var(--cyan);
}
.cta p { font-size: 18px; color: rgba(255, 255, 255, 0.9); max-width: 500px; margin: 0 auto 52px; font-weight: 400; line-height: 1.75; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-contact { margin-top: 64px; display: flex; justify-content: center; gap: 64px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-contact a {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s;
}
.cta-contact a:hover { color: var(--cyan); }
.cta-contact strong { display: block; font-size: 18px; color: rgba(255, 255, 255, 0.9); font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 2px; }
.btn-cyan {
  background: var(--cyan); color: var(--void);
  padding: 16px 40px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 0 40px rgba(0,229,200,.3);
  transition: box-shadow .3s, transform .2s;
}
.btn-cyan:hover { box-shadow: 0 0 60px rgba(0,229,200,.5); transform: translateY(-2px); }

footer { background: var(--panel); border-top: 1px solid var(--border); padding: 80px 56px 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand-word {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800;
  letter-spacing: .04em; color: var(--white); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-word .fd { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
footer .f-tag { font-size: 13px; color: rgba(255, 255, 255, 0.9); line-height: 1.7; max-width: 220px; font-weight: 400; }
.f-wbe { margin-top: 20px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,229,200,.2); display: inline-block; padding: 6px 12px; text-decoration: none; transition: border-color .2s, background .2s; }
.f-wbe:hover { border-color: rgba(0,229,200,.45); background: rgba(0,229,200,.08); }
footer h5 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { font-size: 13px; color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s; }
footer ul a:hover { color: var(--cyan); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.9); letter-spacing: .08em; }

@media (max-width: 1200px) {
  .ab2-content { padding: 64px 80px; }
  .pj-mosaic__header p { text-align: left; max-width: none; }
}

@media (max-width: 1024px) {
  .ab2-hero { grid-template-columns: 1fr; max-height: none; min-height: 60vh; }
  .ab2-hero__text { padding: 120px 40px 48px; order: 1; }
  .ab2-hero__visual { order: 0; min-height: 38vh; max-height: 420px; }
  .ab2-hero__edge { top: 10%; bottom: 10%; }
  .ab2-content { padding: 64px 40px; }
  .pj-mosaic__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pj-mosaic__cell:first-child { grid-row: auto; }
  .pj-mosaic__cell { min-height: 220px; }
  .pj-mosaic__cell:first-child .pj-mosaic__name { font-size: 20px; }
  .pj-item { grid-template-columns: 1fr; }
  .pj-item--reverse .pj-item__photo { order: 0; }
  .pj-item--reverse .pj-item__copy {
    order: 1;
    border-right: none;
    border-top: 3px solid var(--cyan);
    background: linear-gradient(180deg, rgba(0,229,200,.06) 0%, transparent 70%);
  }
  .pj-item__copy {
    border-left: none;
    border-top: 3px solid var(--cyan);
    padding: 40px 32px 48px;
  }
  .pj-video__grid { grid-template-columns: repeat(2, 1fr); }
  .pj-video-modal__meta { grid-template-columns: 1fr 1fr; }
  .pj-video-modal__field:nth-child(2n) { border-right: none; }
  .pj-video-modal__field:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px; min-height: 64px; height: auto;
    padding-top: 10px; padding-bottom: 10px; flex-wrap: nowrap; align-items: center;
  }
  .nav-wordmark { order: 1; z-index: 202; position: relative; font-size: 12px; gap: 8px; }
  .nav-end { order: 2; margin-left: auto; z-index: 202; position: relative; gap: 10px; }
  .nav-tel { font-size: 11px; }
  .nav-btn { padding: 8px 14px; font-size: 10px; }
  .nav-toggle { display: flex; order: 3; margin-left: 6px; z-index: 202; position: relative; }
  .nav-center {
    position: fixed; left: 0; right: 0; top: 72px; bottom: 0; z-index: 199;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    margin: 0; padding: 8px 0 32px; list-style: none;
    background: rgba(17, 17, 22, 0.98); border-top: 1px solid var(--border);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  nav.nav-open .nav-center { transform: translateX(0); visibility: visible; }
  .nav-center li { border-bottom: 1px solid var(--border); }
  .nav-center li:last-child { border-bottom: none; }
  .nav-center a { display: block; padding: 16px 24px; font-size: 12px; letter-spacing: 0.12em; }
  nav.nav-open .nav-backdrop { display: block; position: fixed; inset: 0; z-index: 198; background: rgba(0,0,0,.55); cursor: pointer; }
  nav.nav-open > .nav-wordmark, nav.nav-open > .nav-end, nav.nav-open > .nav-toggle { z-index: 203; }
  nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-menu-open { overflow: hidden; touch-action: none; }
  .ab2-stats { grid-template-columns: 1fr; }
  .ab2-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .ab2-stat:last-child { border-bottom: none; }
  .ab2-content { padding: 56px 24px; }
  .pj-mosaic { padding: 48px 24px 48px; }
  .pj-mosaic__header { margin-bottom: 32px; }
  .pj-catalog { padding: 0 24px 48px; }
  .pj-catalog__intro { padding: 48px 0 40px; }
  .pj-video { padding: 48px 24px; }
  .pj-video__header { margin-bottom: 32px; }
  .pj-video__grid { grid-template-columns: 1fr; }
  .pj-video-modal { padding: 16px; }
  .pj-video-modal__meta { grid-template-columns: 1fr; }
  .pj-video-modal__field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
  }
  .pj-video-modal__field:last-child { border-bottom: none; }
  .cert-block { padding: 48px 24px 0; }
  .cta { padding: 56px 24px; }
  .cta-contact { flex-direction: column; gap: 28px; margin-top: 48px; }
  footer { padding: 56px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-wordmark { font-size: 11px; }
  .nav-tel { font-size: 10px; }
  .nav-center { top: 68px; }
  .ab2-hero__text { padding: 100px 16px 40px; }
  .ab2-content { padding: 48px 16px; }
  .pj-mosaic { padding: 40px 16px 40px; }
  .pj-catalog { padding: 0 16px 40px; }
  .pj-video { padding: 40px 16px; }
  .cert-block { padding: 40px 16px 0; }
  .cta { padding: 48px 16px; }
  footer { padding: 44px 16px 0; }
}
