:root {
  --navy: #0f1015;
  --navy-2: #16181f;
  --teal: #2cb6a3;
  --teal-hover: #239a8a;
  --teal-soft: rgba(44,182,163,.16);
  --white: #ffffff;
  --bg: #14161c;
  --line: rgba(255,255,255,.1);
  --ink: #ffffff;
  --muted: #9aa3b0;
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --header: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 80; background: var(--navy); color: #fff; padding: 8px 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header);
  background: rgba(15,16,21,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header);
}
.logo img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a,
.nav .drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 0;
  background: none;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 550;
  border-radius: 8px;
  cursor: pointer;
}
.nav > a:hover,
.nav .drop > button:hover,
.nav > a.is-active,
.nav .drop.is-active > button { color: #fff; background: rgba(255,255,255,.08); }
.drop { position: relative; }
.drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  background: #16181f;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
}
.drop:hover .drop-panel,
.drop:focus-within .drop-panel,
.drop.is-open .drop-panel { display: grid; gap: 2px; }
.drop-panel a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
}
.drop-panel a:hover { background: rgba(255,255,255,.06); }
.drop-panel strong { font-size: 14px; }
.drop-panel span { color: var(--muted); font-size: 12.5px; font-weight: 450; }

.header-cta { display: flex; align-items: center; gap: 10px; overflow: visible; }
.header-inner.is-open { background: var(--navy); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  border-radius: 10px;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 16px; height: 2px; background: #fff; margin: 0 auto; position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 650;
  font-size: 14.5px;
  color: #f5f5f5;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    0 8px 24px rgba(0, 0, 0, .25);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .15s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.specular-button__fx {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 1;
}
.specular-button__fx canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.specular-button__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.specular-button:active {
  transform: scale(0.97);
}
.specular-button:focus-visible {
  outline: 2px solid color-mix(in srgb, currentColor 60%, transparent);
  outline-offset: 3px;
}
.btn-primary { background: transparent; color: #f5f5f5; }
.btn-primary:hover { background: rgba(255, 255, 255, .06); }
.btn-navy { background: transparent; color: #f5f5f5; }
.btn-navy:hover { background: rgba(255, 255, 255, .06); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .16); color: #f5f5f5; }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .06); }
.btn-on-dark { color: #f5f5f5; border-color: rgba(255, 255, 255, .16); }
.btn-on-dark:hover { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .06); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 18px; height: 1px; background: var(--teal); }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 58ch; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 650; }

.section { padding: 92px 0; }
.section.alt { background: var(--bg); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy .lead, .section.navy p { color: #9aa6b8; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { margin-top: 10px; }

.hero {
  background: var(--navy);
  color: #fff;
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { max-width: 14ch; }
.hero .lead { color: #b7c2d0; }
.hero .actions { margin-top: 28px; }
.dims {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 22px 0 0;
}
.dims span {
  border: 1px solid rgba(19,124,139,.45);
  color: #d7eef1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 650;
}
.chain {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 36px;
  color: #8b97a8;
  font-size: 13px;
  font-weight: 600;
}
.chain b { color: #fff; font-weight: 650; }
.chain span { color: var(--teal); }

.sys {
  position: relative;
  min-height: 420px;
  height: 420px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}
.magic-rings-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.magic-rings-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .sys { display: none; }
}

.cards-3, .cards-4 { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card p { color: var(--muted); margin: 0 0 16px; }
.card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 20px; }
.tag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #d7eef1;
}
.product { display: flex; flex-direction: column; min-height: 100%; }
.product .kicker { margin-bottom: 10px; }
.product h2 { font-size: 1.7rem; }

.shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1220;
}
.shot img { width: 100%; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split + .split { margin-top: 56px; }
.tree {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  line-height: 1.8;
  background: var(--navy-2);
  color: #d5dde8;
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.08);
}
.tree b { color: var(--teal); }

.flow {
  display: grid;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.flow li {
  position: relative;
  padding: 14px 18px 14px 52px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  margin-bottom: 18px;
}
.flow li::before {
  content: "";
  position: absolute;
  left: 22px; top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}
.flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px; top: calc(50% + 10px);
  width: 1px; height: calc(100% + 8px);
  background: rgba(19,124,139,.45);
}

.hw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hw-grid ul { margin-top: 12px; }
.hw-grid li {
  color: var(--muted);
  padding: 4px 0 4px 14px;
  position: relative;
}
.hw-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.strong-line {
  margin-top: 36px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: -.03em;
  font-weight: 700;
  max-width: 22ch;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.step { padding: 22px 18px; border-top: 2px solid var(--teal); }
.step small { color: var(--teal); font-weight: 700; letter-spacing: .08em; }
.step p { color: var(--muted); margin: 8px 0 0; font-size: .95rem; }

.page-hero { padding: calc(var(--header) + 48px) 0 56px; }
.page-hero h1 { max-width: 16ch; }

.sol-stage {
  min-height: calc(100vh - var(--header));
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 0 36px;
  box-sizing: border-box;
}
.sol-stage-head h1 {
  max-width: none;
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -.04em;
}
.sol-stage-head .lead {
  margin: 0;
  max-width: 46ch;
}
.sol-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  min-height: 420px;
}
.sol-card {
  position: relative;
  display: flex;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 0;
  color: #fff;
  background: #0a0b10;
}
.sol-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transform: scale(1.001);
  transition: transform 480ms ease;
}
.sol-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 16, 21, .12) 10%, rgba(15, 16, 21, .55) 48%, rgba(15, 16, 21, .94) 100%);
}
.sol-card:hover img,
.sol-card:focus-visible img {
  transform: scale(1.05);
}
.sol-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.sol-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.sol-card-body h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}
.sol-card-body p:not(.kicker) {
  margin: 0;
  color: #c5ccd6;
  font-size: .98rem;
  max-width: 34ch;
}
.sol-card-body .kicker { margin: 0; }
.sol-card-cta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.sol-card-cta::after { content: " ›"; }
.page-hero.navy {
  background: var(--navy);
  color: #fff;
  padding: calc(var(--header) + 48px) 0 64px;
}
.page-hero.navy .lead { color: #b7c2d0; }

.eq-card { min-height: 230px; display: flex; flex-direction: column; }
.eq-card .btn { margin-top: auto; align-self: flex-start; }
.eq-card .meta { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 650; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--navy-2);
  color: #fff;
}
input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  accent-color: var(--teal);
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(44,182,163,.35); border-color: var(--teal); }
textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.alert { padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; }
.alert-ok { background: var(--teal-soft); color: #d7eef1; }
.alert-err { background: rgba(138,31,31,.28); color: #ffd0d0; }
.contact-aside {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
}
.contact-aside a { color: #8fd3de; }
.contact-aside p { color: #b7c2d0; }

.site-footer { background: var(--navy); color: #9aa6b8; padding: 56px 0 24px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .logo img { height: 52px; width: auto; margin-bottom: 12px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a:hover { color: #fff; }
.site-footer li { margin: 7px 0; }
.legal-bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 18px; font-size: 13px; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; color: #fff;
}

.wa-fab {
  position: fixed; right: 18px; bottom: 18px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  z-index: 40;
}
.legal-prose { max-width: 760px; }
.legal-prose h2 { font-size: 1.2rem; margin-top: 32px; }
.legal-prose p, .legal-prose li { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: #d7dbe2; }

.aqsa-logo { height: 52px; width: auto; margin-bottom: 18px; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.media-grid.two { grid-template-columns: 1fr 1fr; }
.media-card {
  margin: 0;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.media-card img { width: 100%; height: 180px; object-fit: cover; }
.media-card figcaption { padding: 14px 16px 16px; }
.media-card strong { display: block; margin-bottom: 4px; }
.media-card span { color: var(--muted); font-size: .92rem; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .header-inner.is-open { flex-wrap: wrap; height: auto; padding-bottom: 16px; }
  .header-inner.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    width: 100%; order: 3; padding-top: 8px;
  }
  .header-inner.is-open .header-cta {
    display: flex; width: 100%; order: 4; padding-top: 8px;
  }
  .drop-panel { position: static; box-shadow: none; border: 0; padding: 0 0 0 10px; display: none; }
  .drop.is-open .drop-panel { display: grid; }
  .cards-3, .cards-4, .hw-grid, .timeline, .footer-grid, .media-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero-grid, .split, .cards-3, .cards-4, .hw-grid, .timeline, .footer-grid, .form-grid, .contact-layout, .media-grid, .media-grid.two {
    grid-template-columns: 1fr;
  }
  .sys { height: 320px; min-height: 320px; }
  .hero { padding-top: 56px; }
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .hero h1 { max-width: none; }
  .section { padding: 64px 0; }
  .c-hero { min-height: 78vh; }
  .c-about { min-height: 0; }
  .c-hero h1 { font-size: 3.2rem; }
  .c-hero-media,
  .c-about-media { width: 100%; left: 0; right: 0; }
  .c-hero-media::after,
  .c-about-media::after {
    background: rgba(15, 16, 21, .52);
  }
  .c-hero-photo { width: 100%; }
  .c-hero-rings { right: 0; }
  .c-about-copy {
    width: min(var(--max), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0 36px;
  }
  .c-services-grid, .c-refs-grid, .c-together-grid, .x-chain { grid-template-columns: 1fr; }
  .c-quote, .c-services, .c-refs, .c-together { padding-left: 24px; padding-right: 24px; }
  .sol-stage { min-height: 0; padding-top: 24px; }
  .sol-grid { grid-template-columns: 1fr; min-height: 0; }
  .sol-card { min-height: 280px; }
}

/* Homepage overlay header */
body.is-home .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
}

.c-intro {
  background: #0f1015;
}
.c-hero,
.c-about {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f1015;
}
.c-hero { min-height: 100vh; }
.c-about { min-height: 440px; }
.c-hero-media,
.c-about-media {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}
.c-hero-media {
  inset: 0 0 0 auto;
  width: 58%;
}
.c-about-media {
  left: 0;
  width: 58%;
}
.c-hero-media::after,
.c-about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.c-hero-media::after {
  background: linear-gradient(90deg, #0f1015 0%, rgba(15, 16, 21, .28) 38%, rgba(15, 16, 21, .22) 100%);
}
.c-about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 42% 48%, rgba(44, 182, 163, .18), transparent 64%);
}
.c-about-media::after {
  z-index: 1;
  background: linear-gradient(270deg, #0f1015 0%, rgba(15, 16, 21, .28) 38%, rgba(15, 16, 21, .18) 100%);
}
.c-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.c-hero-photo,
.c-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.06);
}
.c-about-media img {
  filter: grayscale(1) contrast(1.08) brightness(.9);
}
.c-hero-rings {
  position: absolute;
  inset: 0 38% 0 0;
  min-height: 0;
  height: auto;
  z-index: 1;
  opacity: .9;
}
.c-hero-copy {
  position: relative;
  z-index: 2;
  padding: 120px 0 96px;
}
.c-hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .95;
}
.c-hero-tag {
  margin: 22px 0 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.78);
}
.c-hero::after,
.c-about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
.c-hero::after {
  bottom: 0;
  background: linear-gradient(180deg, transparent, #0f1015);
}
.c-about::before {
  top: 0;
  height: 56px;
  background: linear-gradient(0deg, transparent, #0f1015);
}

.c-about-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: min(440px, calc(100% - 48px));
  margin-left: auto;
  margin-right: max(24px, calc((100% - var(--max)) / 2));
  padding: 48px 0 56px;
}
.c-about-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}
.c-about-copy p:not(.kicker) {
  margin: 0;
  max-width: 38ch;
  color: #b7c0cc;
  font-size: 1.08rem;
}
.c-about-copy .kicker {
  margin: 0;
}

.glare-hover {
  width: var(--gh-width, 100%);
  height: var(--gh-height, 100%);
  background: var(--gh-bg, #000);
  border-radius: var(--gh-br, 0);
  border: 1px solid var(--gh-border, transparent);
  overflow: hidden;
  position: relative;
}
.glare-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    var(--gh-angle, -45deg),
    hsla(0, 0%, 0%, 0) 60%,
    var(--gh-rgba, rgba(255, 255, 255, 0.5)) 70%,
    hsla(0, 0%, 0%, 0),
    hsla(0, 0%, 0%, 0) 100%
  );
  transition: var(--gh-duration, 650ms) ease;
  background-size:
    var(--gh-size, 250%) var(--gh-size, 250%),
    100% 100%;
  background-repeat: no-repeat;
  background-position:
    -100% -100%,
    0 0;
}
.glare-hover:hover::before {
  background-position:
    100% 100%,
    0 0;
}
.glare-hover--play-once::before {
  transition: none;
}
.glare-hover--play-once:hover::before {
  transition: var(--gh-duration, 650ms) ease;
  background-position:
    100% 100%,
    0 0;
}
@media (prefers-reduced-motion: reduce) {
  .glare-hover::before { display: none; }
}
.c-quote {
  padding: 96px 0;
  text-align: center;
  background: #0f1015;
}
.c-quote blockquote { margin: 0 auto; max-width: 720px; }
.c-quote p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}
.c-quote .blur-text-unit {
  display: inline-block;
  will-change: transform, filter, opacity;
}
.c-quote footer {
  margin-top: 28px;
  color: #8b93a0;
  font-size: 14px;
}

.c-services {
  padding: 40px 0 88px;
  background: #0f1015;
}
.c-services h2 {
  margin: 0 0 40px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.c-services-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px 40px;
  align-items: center;
}
.c-services-shot { margin: 0; }
.c-services-shot img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(1);
}
.c-service-list { display: grid; gap: 28px; }
.c-service-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.c-service-list span {
  font-size: 1.35rem;
  font-weight: 650;
  color: rgba(255,255,255,.28);
  line-height: 1.2;
}
.c-service-list h3 { margin: 0 0 6px; font-size: 1.05rem; }
.c-service-list p { margin: 0; color: #9aa3b0; font-size: .95rem; }
.c-service-list a:hover { color: var(--teal); }

.c-refs {
  padding: 24px 0 96px;
  background: #0f1015;
}
.c-refs-lead {
  margin: 0 0 36px;
  max-width: 28ch;
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.15;
}
.c-refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.c-refs-grid article { color: #c5ccd6; }
.c-refs-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(1);
  margin-bottom: 16px;
}
.c-refs-grid h3 { margin: 6px 0 8px; color: #fff; }
.c-refs-grid p { margin: 0; }

.c-together {
  padding: 80px 0 96px;
  background: #0f1015;
  border-top: 1px solid rgba(255,255,255,.08);
}
.c-together h2 {
  margin: 0 0 40px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.c-together-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-together h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8b93a0;
}
.c-together p { margin: 0; color: #fff; }
.c-together-cta { margin: 40px 0 0; }

@property --ag-gray {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}
@property --ag-dim {
  syntax: "<number>";
  inherits: true;
  initial-value: 0.35;
}
.accordion-gallery {
  --ag-accent: #ffffff;
  --ag-overlay: #060010;
  --ag-text: #ffffff;
  --ag-gap: 10px;
  --ag-radius: 16px;
  --ag-media-size: 320px;
  --ag-duration: 0.6s;
  display: flex;
  flex-direction: row;
  gap: var(--ag-gap);
  width: 100%;
  max-width: 100%;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.ag-panel {
  --ag-gray: 1;
  --ag-dim: 0.35;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--ag-radius);
  cursor: pointer;
  display: block;
  text-decoration: none;
  outline: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  background: #0a0713;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
  will-change: flex-grow, transform;
  -webkit-tap-highlight-color: transparent;
  transition:
    flex-grow var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1),
    transform var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ag-panel:focus-visible {
  box-shadow:
    0 0 0 2px var(--ag-accent),
    0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.ag-panel__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.ag-panel__media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ag-media-size);
  height: 100%;
  filter: grayscale(var(--ag-gray));
  will-change: transform, filter;
  transition:
    transform var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1),
    filter var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ag-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.ag-panel__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--ag-overlay) 78%, transparent) 100%),
    color-mix(in srgb, var(--ag-overlay) calc(var(--ag-dim, 0.35) * 100%), transparent);
  transition: background var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ag-panel__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  z-index: 2;
}
.ag-panel__bar {
  flex: 0 0 auto;
  width: 3px;
  height: 26px;
  border-radius: 3px;
  background: var(--ag-accent);
  opacity: 0;
  box-shadow: 0 0 12px color-mix(in srgb, var(--ag-accent) 60%, transparent);
  transition:
    opacity var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1),
    transform var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ag-panel__text {
  color: var(--ag-text);
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  transition:
    opacity var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1) 0.06s,
    transform var(--ag-duration) cubic-bezier(0.215, 0.61, 0.355, 1) 0.06s;
}
@media (max-width: 520px) {
  .accordion-gallery {
    flex-direction: column;
    perspective: none;
    height: auto !important;
  }
  .ag-panel {
    min-height: 84px;
    transform: none !important;
  }
  .accordion-gallery .ag-panel__media {
    width: 100%;
    height: var(--ag-media-size);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ag-panel,
  .ag-panel__media {
    will-change: auto;
  }
}

.x-chain-wrap {
  padding: 8px 0 72px;
  background: #0f1015;
}
.x-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.x-chain span {
  display: block;
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 650;
  color: rgba(255, 255, 255, .28);
}
.x-chain h3 { margin: 0 0 8px; font-size: 1.05rem; }
.x-chain p { margin: 0; color: #9aa3b0; font-size: .95rem; }
.x-domain { scroll-margin-top: calc(var(--header) + 20px); }
.x-tech {
  padding: 24px 0 72px;
  background: #0f1015;
}
.x-tech h2 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}
.x-tech .chips { margin: 0; }
.c-services-shot.glare-hover {
  display: block;
  min-height: 320px;
  border: 0;
}

@media (max-width: 1080px) {
  .x-chain { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .c-services-grid, .c-refs-grid { grid-template-columns: 1fr 1fr; }
}

/* AQSA public landing (demo.aqsa.cloud) */
.is-aqsa {
  --aqsa-cloud: #f4f7fb;
  --aqsa-greasy: #94a3b8;
  --aqsa-wax: #1e293b;
  --aqsa-sooty: #070b14;
  --aqsa-armor: #000000;
  --aqsa-font-display: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --aqsa-font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--aqsa-sooty);
  color: var(--aqsa-cloud);
  font-family: var(--aqsa-font-body);
  -webkit-font-smoothing: antialiased;
}
.is-aqsa #contenu { padding: 0; }
.is-aqsa .site-header {
  background: rgba(7, 11, 20, .88);
  border-bottom-color: rgba(148, 163, 184, .12);
}

@keyframes aqsa-hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aqsa-glow-pulse {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(1); }
  50% { opacity: .9; transform: translateX(-50%) scale(1.06); }
}
@keyframes aqsa-logo-rise {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.aqsa-public {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.aqsa-public__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: clamp(56px, 10vh, 96px) clamp(24px, 6vw, 80px) clamp(64px, 10vh, 104px);
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(56, 189, 248, .14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 85%, rgba(99, 102, 241, .1), transparent 55%),
    linear-gradient(180deg, #000 0%, #070b14 55%, #0b1220 100%);
  color: var(--aqsa-cloud);
  animation: aqsa-hero-in 900ms ease-out both;
}
.aqsa-public__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(148, 163, 184, .05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 15%, transparent 75%);
  pointer-events: none;
}
.aqsa-public__hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -140px;
  width: 480px;
  height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(56, 189, 248, .12), transparent 68%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  animation: aqsa-glow-pulse 7s ease-in-out infinite;
}
.aqsa-public__logo {
  height: clamp(120px, 22vw, 200px);
  width: auto;
  margin: 0 auto 32px;
  display: block;
  animation: aqsa-logo-rise 1100ms cubic-bezier(.22, 1, .36, 1) both;
}
.aqsa-public__rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  margin: 0 auto 24px;
  box-shadow: 0 0 12px rgba(56, 189, 248, .45);
}
.aqsa-public__tagline { display: none; }
.aqsa-public__title {
  font-family: var(--aqsa-font-display);
  font-size: clamp(34px, 5.5vw, 56px);
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 920px;
  color: #fff;
  font-weight: 720;
}
.aqsa-public__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--aqsa-greasy);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.aqsa-public__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.aqsa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: transparent;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 650;
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.aqsa-public__actions .aqsa-btn {
  width: auto;
  min-width: 168px;
  flex: 1 1 168px;
}
.aqsa-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}
.aqsa-btn-solid {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, .12);
}
.aqsa-btn-solid:hover {
  background: #e2e8f0;
  border-color: #e2e8f0;
  color: #000;
  box-shadow: 0 0 28px rgba(255, 255, 255, .2);
}
.aqsa-public__section {
  width: 100%;
  margin: 0;
  padding: clamp(56px, 8vh, 88px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, .08);
  background: #070b14;
}
.aqsa-public__section:nth-of-type(even) {
  background:
    radial-gradient(ellipse 55% 40% at 80% 20%, rgba(56, 189, 248, .06), transparent 60%),
    #0b1220;
}
.aqsa-public__section > .aqsa-public__eyebrow,
.aqsa-public__section > .aqsa-public__h2,
.aqsa-public__section > .aqsa-public__intro {
  margin-left: auto;
  margin-right: auto;
}
.aqsa-public__section > .aqsa-public__product,
.aqsa-public__section > .aqsa-public__features,
.aqsa-public__section > .aqsa-public__activities,
.aqsa-public__section > .aqsa-public__access {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.aqsa-public__eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
  font-weight: 650;
}
.aqsa-public__h2 {
  font-family: var(--aqsa-font-display);
  font-size: clamp(26px, 3.6vw, 36px);
  letter-spacing: -.03em;
  margin: 0 auto 14px;
  max-width: 820px;
  color: #fff;
  font-weight: 700;
}
.aqsa-public__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--aqsa-greasy);
  max-width: 640px;
  margin: 0 auto 40px;
}
.aqsa-public__product {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: 48px;
  text-align: left;
}
.aqsa-public__product:last-child { margin-bottom: 0; }
.aqsa-public__product--reverse { grid-template-columns: .85fr 1.15fr; }
.aqsa-public__product--reverse .aqsa-public__product-copy { order: 1; }
.aqsa-public__product--reverse .aqsa-public__product-media { order: 2; }
.aqsa-public__product-media {
  margin: 0;
  background: rgba(30, 41, 59, .85);
  border: 1px solid rgba(56, 189, 248, .18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(56, 189, 248, .06);
  overflow: hidden;
  border-radius: 16px;
  transition: border-color 280ms ease, transform 320ms ease, box-shadow 280ms ease;
}
.aqsa-public__product-media:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .4);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .5), 0 0 24px rgba(56, 189, 248, .12);
}
.aqsa-public__product-media img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}
.aqsa-public__product-copy h3 {
  font-family: var(--aqsa-font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.02em;
}
.aqsa-public__product-copy p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--aqsa-greasy);
  margin: 0;
  max-width: 420px;
}
.aqsa-public__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aqsa-public__feature {
  background: rgba(30, 41, 59, .75);
  border: 1px solid rgba(148, 163, 184, .12);
  padding: 28px 22px;
  border-radius: 14px;
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.aqsa-public__feature:hover {
  border-color: rgba(56, 189, 248, .35);
  background: rgba(30, 41, 59, .95);
  box-shadow: 0 0 24px rgba(56, 189, 248, .08);
}
.aqsa-public__feature h3 {
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 650;
}
.aqsa-public__feature h3 span {
  display: block;
  width: 24px;
  height: 2px;
  background: #38bdf8;
  margin-bottom: 16px;
  box-shadow: 0 0 8px rgba(56, 189, 248, .5);
}
.aqsa-public__feature p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--aqsa-greasy);
  margin: 0;
}
.aqsa-public__activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aqsa-public__activity {
  margin: 0;
  background: rgba(30, 41, 59, .75);
  border: 1px solid rgba(148, 163, 184, .12);
  overflow: hidden;
  border-radius: 14px;
  text-align: left;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.aqsa-public__activity:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, .35);
  box-shadow: 0 0 20px rgba(56, 189, 248, .08);
}
.aqsa-public__activity img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(.95);
}
.aqsa-public__activity figcaption { padding: 16px 16px 18px; }
.aqsa-public__activity strong {
  display: block;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 650;
}
.aqsa-public__activity span {
  font-size: 12px;
  line-height: 1.45;
  color: var(--aqsa-greasy);
}
.aqsa-public__access {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.aqsa-public__access .aqsa-public__activity img { height: 220px; }
.aqsa-public__cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  width: 100%;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(56, 189, 248, .12), transparent 60%),
    #000;
  border-top: 1px solid rgba(56, 189, 248, .2);
  color: var(--aqsa-cloud);
  padding: clamp(64px, 10vh, 96px) clamp(24px, 6vw, 80px);
  margin: 0;
}
.aqsa-public__cta-band h2 {
  font-family: var(--aqsa-font-display);
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 auto 14px;
  max-width: 720px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.03em;
}
.aqsa-public__cta-band p {
  font-size: 15px;
  color: var(--aqsa-greasy);
  margin: 0 auto 32px;
  max-width: 480px;
}

@media (max-width: 900px) {
  .aqsa-public__product,
  .aqsa-public__product--reverse,
  .aqsa-public__access { grid-template-columns: 1fr; }
  .aqsa-public__product--reverse .aqsa-public__product-copy,
  .aqsa-public__product--reverse .aqsa-public__product-media { order: initial; }
  .aqsa-public__features,
  .aqsa-public__activities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .aqsa-public__title { font-size: 30px; }
  .aqsa-public__features,
  .aqsa-public__activities { grid-template-columns: 1fr; }
  .aqsa-public__actions { flex-direction: column; }
  .aqsa-public__actions .aqsa-btn { width: 100%; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  flex-shrink: 0;
}
.header-cart:hover,
.header-cart[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }
.header-cart svg { display: block; }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 1.15em;
  height: 1.15em;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--teal);
  color: #04110f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15em;
  text-align: center;
}
.shop-hero { padding-bottom: 28px; }
.shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.shop-cats a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 550;
}
.shop-cats a.is-active,
.shop-cats a:hover { border-color: var(--teal); color: #fff; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.shop-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #0a0b10;
}
.shop-card-media img,
.shop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.05);
}
.shop-card-ph { display: block; width: 100%; height: 100%; background: #1a1d26; }
.shop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--teal);
  color: #04110f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.shop-price-lg .shop-badge { position: static; margin-left: 8px; }
.shop-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card-body h2 { margin: 0; font-size: 1.2rem; }
.shop-price { margin: 0; }
.shop-price s { color: var(--muted); margin-right: 8px; }
.shop-stock, .shop-muted, .shop-pay-note { color: var(--muted); font-size: .92rem; margin: 0; }
.shop-add { display: flex; gap: 8px; align-items: center; margin-top: auto; }
.shop-add input[type="number"] { width: 72px; }
.shop-add-lg { flex-wrap: wrap; margin-top: 18px; }
.shop-product { padding-top: calc(var(--header) + 24px); }
.shop-product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.shop-product-media { margin: 0; border-radius: var(--radius); overflow: hidden; background: #0a0b10; min-height: 280px; }
.shop-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.shop-table th, .shop-table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.shop-table input[type="number"] { width: 72px; }
.shop-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.shop-cart-remove {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}
.shop-cart-remove:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.shop-cart-total { font-size: 1.15rem; }
.shop-pay-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 34rem;
}
.shop-pay {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  column-gap: 12px;
  align-items: start;
  margin: 0;
  cursor: pointer;
}
.shop-pay input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
}
.shop-pay small { display: block; color: var(--muted); font-weight: 450; }
.shop-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.shop-gallery-thumbs button {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0a0b10;
  cursor: pointer;
}
.shop-gallery-thumbs button.is-active { border-color: var(--teal); }
.shop-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.admin-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.admin-thumbs figure { margin: 0; }
.admin-thumbs img { display: block; object-fit: cover; border-radius: 6px; }
.admin-thumbs a { font-size: 12px; color: var(--muted); }
.home-popup-card--media { padding: 0; overflow: hidden; width: min(560px, 100%); }
.home-popup-media { display: block; }
.home-popup-media img { width: 100%; height: auto; display: block; }
.home-popup-cta { padding: 16px 20px 20px; margin: 0; text-align: center; }
.home-popup-card--media .home-popup-close { z-index: 2; }
.home-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.62);
}
.home-popup[hidden] { display: none; }
.home-popup-card {
  position: relative;
  width: min(480px, 100%);
  padding: 32px 28px 28px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.home-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.is-admin { background: var(--navy); min-height: 100vh; }
.admin-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(15,16,21,.92);
}
.admin-bar nav { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-bar nav a { padding: 6px 10px; border-radius: 8px; font-size: 14px; color: rgba(255,255,255,.8); }
.admin-bar nav a.is-active, .admin-bar nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.admin-bar .logo img { height: 36px; width: auto; }
.admin-main { padding: 32px 0 64px; }
.admin-main h1 { margin-bottom: 24px; }
.admin-h2 { margin: 40px 0 16px; font-size: 1.3rem; }
.admin-form { margin-bottom: 28px; }
.admin-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-cards .card { text-align: center; padding: 28px 16px; }
.admin-cards strong { display: block; font-size: 2rem; }
.admin-login { max-width: 400px; padding: 80px 0; }

@media (max-width: 1080px) {
  .shop-grid, .admin-cards { grid-template-columns: 1fr 1fr; }
  .shop-product-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .shop-grid, .admin-cards { grid-template-columns: 1fr; }
  .shop-table { display: block; overflow-x: auto; }
}
