:root {
  color-scheme: dark;
  --bg: #06080d;
  --panel: #10141d;
  --panel-2: #171c26;
  --text: #f7f9ff;
  --muted: #a8b0c4;
  --subtle: #697286;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #37e4b0;
  --accent-2: #8cf6d2;
  --max: 1360px;
  --nav-h: 76px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(55, 228, 176, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(55, 228, 176, 0.1), transparent 25rem);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

::selection {
  background: rgba(55, 228, 176, 0.45);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* ─── Scroll progress ─── */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(55, 228, 176, 0.6);
}

/* ─── Header (uses navigation.css but needs local overrides) ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 8, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(55, 228, 176, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* ─── Hero ─── */
.showcase-hero {
  min-height: clamp(540px, 64svh, 620px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 8px) 0 54px;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  align-self: center;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  padding-top: 12px;
}

.hero-eyebrow {
  margin: 0 0 -6px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-hero h1 {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(54px, 8.7vw, 126px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}

.showcase-hero h1 em {
  color: var(--accent-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero-intro {
  max-width: 700px;
}

.hero-intro > p {
  max-width: 650px;
  color: #d2d8e6;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-facts span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(6, 8, 13, 0.58);
  color: var(--muted);
  font-size: 11px;
}

.hero-facts strong {
  color: var(--text);
  font-size: inherit;
}

.round-link {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(140, 246, 210, 0.62);
  border-radius: 50%;
  background: rgba(6, 8, 13, 0.5);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.round-link b {
  margin-top: 4px;
  color: var(--accent-2);
}

.round-link:hover {
  transform: rotate(-8deg) scale(1.05);
  background: var(--accent-2);
  color: var(--bg);
}

.round-link:hover b {
  color: inherit;
}

/* ─── Marquee ─── */
.marquee {
  position: absolute;
  inset: auto 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(6, 8, 13, 0.78);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 42px;
  white-space: nowrap;
}

.marquee-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  flex: none;
  box-sizing: border-box;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(30px, 4vw, 68px);
  padding: 0 clamp(30px, 4vw, 68px);
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: clamp(30px, 4vw, 68px);
}

.marquee-group span::after {
  content: "·";
  color: var(--accent-2);
}

@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

/* ─── Showcase ─── */
.services-section {
  padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 9vw, 128px);
  scroll-margin-top: calc(var(--nav-h) + 16px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(55, 228, 176, 0.045), transparent 28%),
    rgba(6, 8, 13, 0.32);
}

.services-heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-heading h2,
.proof-heading h2 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: none;
}

.services-heading > p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 0%, rgba(55, 228, 176, 0.1), transparent 35%),
    rgba(16, 20, 29, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 246, 210, 0.4);
  background-color: rgba(20, 27, 37, 0.94);
}

.service-card.is-featured {
  border-color: rgba(140, 246, 210, 0.52);
  background:
    radial-gradient(circle at 92% 0%, rgba(55, 228, 176, 0.18), transparent 38%),
    rgba(17, 29, 31, 0.94);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--bg);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card-top span:last-child {
  color: var(--subtle);
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-promise {
  min-height: 52px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.service-price strong {
  color: var(--text);
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-price span {
  color: var(--subtle);
  font-size: 11px;
}

.service-card ul {
  flex: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.service-buy {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(140, 246, 210, 0.3);
  border-radius: 8px;
  background: rgba(55, 228, 176, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-buy:hover,
.service-buy:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}

.service-assurance {
  display: grid;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 14, 21, 0.72);
}

.service-assurance > div {
  min-height: 150px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.service-assurance > div:last-child {
  border-bottom: 0;
}

.service-assurance-single > div {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border: 0;
}

.service-assurance-single strong {
  margin: 0;
  color: var(--accent-2);
  font-size: 16px;
}

.service-assurance span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
}

.service-assurance strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 15px;
}

.service-assurance p,
.partner-strip p {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.55;
}

.partner-strip {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(140, 246, 210, 0.26);
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(55, 228, 176, 0.12), rgba(16, 20, 29, 0.75));
}

.partner-strip > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.partner-strip a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
}

.proof-heading {
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.showcase {
  padding: clamp(64px, 8vw, 112px) 0 72px;
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.showcase-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

h2,
h3,
p {
  margin: 0;
}

h2 {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-count {
  color: var(--subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.showcase-controls,
.filter-tabs {
  display: flex;
  align-items: center;
}

.showcase-controls {
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
}

.filter-tabs {
  gap: clamp(14px, 2vw, 28px);
}

.filter-tab {
  position: relative;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-tab::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: var(--accent-2);
}

.filter-tab:hover::after,
.filter-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── Project grid ─── */
.project-grid {
  display: grid;
  gap: clamp(30px, 4vw, 58px) 24px;
}

.project-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(55, 228, 176, 0.15), transparent 42%);
  transition: opacity 0.25s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 85% 12%, rgba(140, 246, 210, 0.18), transparent 28%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-visual::before {
  opacity: 1;
}

/* ─── Data visual (replaces video for marketing) ─── */
.data-visual-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.data-visual-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Project info ─── */
.project-info {
  display: grid;
  align-content: start;
  justify-content: stretch;
  gap: 13px;
  padding-top: 18px;
}

.project-heading {
  display: grid;
  gap: 9px;
}

.project-heading > span,
.project-notes > div > span,
.process-heading span,
.showcase-cta > div > span {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-info h3 {
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.project-info > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Outcome line */
.project-outcome {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--subtle);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-notes-toggle {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.project-notes-toggle span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-2);
  transition: transform 0.2s ease;
}

.project-notes-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.project-notes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--line);
}

.project-notes[hidden] {
  display: none;
}

.project-notes > div {
  padding: 15px;
  background: rgba(12, 16, 24, 0.97);
}

.project-notes p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.project-notes ul {
  margin: 6px 0 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.project-notes a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Process section ─── */
.process-section {
  padding: clamp(70px, 9vw, 126px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 5%, rgba(55, 228, 176, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.016);
}

.process-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.process-heading h2,
.showcase-cta h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: none;
}

.process-heading > p {
  max-width: 520px;
  align-self: end;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #0b0f17;
}

.process-grid li > span {
  color: var(--accent-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 800;
}

.process-grid strong {
  margin: auto 0 12px;
  font-size: clamp(19px, 2vw, 26px);
}

.process-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* ─── CTA ─── */
.showcase-cta {
  display: grid;
  align-items: end;
  gap: 30px;
  margin-top: clamp(58px, 8vw, 96px);
  padding: clamp(25px, 5vw, 58px);
  border: 1px solid rgba(140, 246, 210, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(55, 228, 176, 0.11), transparent 58%),
    var(--panel);
}

.showcase-cta h2 {
  max-width: 850px;
  font-size: clamp(32px, 5vw, 60px);
}

.showcase-cta > a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--accent-2);
  color: #04130f;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* ─── Footer ─── */
.footer {
  padding: 28px 0;
  color: var(--subtle);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
}

.footer a:hover {
  color: var(--accent-2);
}

/* ─── Back to top ─── */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 0.65s ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

/* ─── Desktop ─── */
@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-heading,
  .partner-strip {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-assurance-single {
    grid-template-columns: 1fr;
  }

  .service-assurance > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .service-assurance > div:last-child {
    border-right: 0;
  }

  .process-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ─── Mobile ─── */
@media (max-width: 759px) {
  :root {
    --nav-h: 68px;
  }

  .container,
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 8, 13, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .nav-links.is-open a {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open a:last-child {
    border-bottom: 0;
  }

  .showcase-hero {
    min-height: clamp(520px, 72svh, 580px);
    padding-top: calc(var(--nav-h) + 4px);
    padding-bottom: 50px;
  }

  .hero-content {
    gap: 14px;
    padding-top: 4px;
  }

  .hero-bottom {
    align-items: flex-end;
    gap: 18px;
  }

  .hero-facts span {
    min-height: 32px;
  }

  .showcase {
    padding: 18px 0 60px;
  }

  .showcase-bar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
  }

  .showcase-controls {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .project-grid {
    gap: 48px;
  }

  .project-info {
    padding-top: 16px;
  }

  .process-grid li {
    min-height: 190px;
  }
}

@media (max-width: 440px) {
  .showcase-hero h1 {
    font-size: clamp(46px, 14vw, 62px);
    line-height: 0.86;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .round-link {
    width: 72px;
    height: 72px;
    font-size: 10px;
    align-self: flex-end;
  }

  .project-visual {
    aspect-ratio: 4 / 3;
  }

  .project-info {
    align-items: baseline;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
