:root {
  color-scheme: dark;
  --ink: #f6fbff;
  --muted: #87a1aa;
  --soft: #c8d8de;
  --line: rgba(74, 197, 255, 0.14);
  --bg: #000305;
  --panel: #050b0f;
  --panel-2: #07151c;
  --accent: #eaffff;
  --gold: #78f6ff;
  --cyan: #35c9ff;
  --cyan-bright: #9af4ff;
  --cyan-soft: rgba(53, 201, 255, 0.16);
  --cyan-line: rgba(53, 201, 255, 0.32);
  --deep-blue: #03121b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
  --page-gutter: clamp(24px, 7vw, 120px);
  --header-gutter: clamp(14px, 4vw, 32px);
  --text-xs: clamp(0.78rem, 0.74rem + 0.18vw, 0.88rem);
  --text-sm: clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.28vw, 1.12rem);
  --text-lead: clamp(1.08rem, 1rem + 0.42vw, 1.3rem);
  --title-small: clamp(1.15rem, 1.04rem + 0.5vw, 1.45rem);
  --title-card: clamp(1.35rem, 1.16rem + 0.9vw, 1.85rem);
  --title-section: clamp(2rem, 1.55rem + 1.7vw, 3.15rem);
  --title-page: clamp(2.65rem, 2rem + 2.8vw, 4.8rem);
  --title-hero: clamp(3rem, 2.1rem + 3.2vw, 5.2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Montserrat, Cairo, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 52% 48%, rgba(154, 244, 255, 0.22) 0 1px, transparent 1.8px),
    radial-gradient(ellipse at 50% 46%, rgba(53, 201, 255, 0.18), transparent 34%),
    linear-gradient(rgba(53, 201, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 201, 255, 0.032) 1px, transparent 1px);
  background-position: center;
  background-size: 18px 18px, 100% 100%, 76px 76px, 76px 76px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 0 18%, rgba(0, 0, 0, 0.75) 32%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 18%, rgba(0, 0, 0, 0.75) 32%, transparent 72%);
  opacity: 0.55;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 22%, rgba(53, 201, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(0, 3, 5, 0.42), #000305 74%);
}

body:has(.site-loader:not(.is-hidden)) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #050505;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(53, 201, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(154, 244, 255, 0.09), transparent 44%),
    #000305;
  color: var(--ink);
  opacity: 1;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.loader-mark {
  color: transparent;
  font-size: clamp(3.8rem, 12vw, 8.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(53, 201, 255, 0.14);
  -webkit-text-stroke: 1px rgba(154, 244, 255, 0.82);
  background: linear-gradient(90deg, var(--ink), var(--cyan-bright));
  background-clip: text;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  filter: drop-shadow(0 0 20px rgba(53, 201, 255, 0.26));
  animation: logo-fill 1000ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-loader span {
  display: none;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes logo-fill {
  0% {
    background-size: 0% 100%;
    text-shadow: 0 0 10px rgba(53, 201, 255, 0.1);
  }

  78%,
  100% {
    background-size: 100% 100%;
    text-shadow: 0 0 30px rgba(53, 201, 255, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    animation: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: calc(100% - (var(--header-gutter) * 2));
  max-width: 1240px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(53, 201, 255, 0.095), transparent 32%, rgba(154, 244, 255, 0.045)),
    rgba(0, 4, 8, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(53, 201, 255, 0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
}

.brand img {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(53, 201, 255, 0.3));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 4vw, 48px);
  min-width: 0;
  color: #8ea7af;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a,
.button,
.filter-button,
.lightbox-close {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: #fff;
}

.nav a {
  position: relative;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: block;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(53, 201, 255, 0.82);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a.is-active {
  color: #f5ffff;
  text-shadow: 0 0 16px rgba(154, 244, 255, 0.62);
}

.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a:hover,
.nav a:focus-visible {
  color: #f5ffff;
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  align-items: end;
  min-height: calc(100svh - 116px);
  padding: clamp(128px, 14vw, 172px) var(--page-gutter) 36px;
}

.hero-copy {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(53, 201, 255, 0.52);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1 {
  color: #f4fbff;
  font-size: var(--title-hero);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(244, 251, 255, 0.42),
    0 0 34px rgba(53, 201, 255, 0.18);
}

.hero h1,
.about-page h1 {
  text-transform: none;
}

h1 span {
  color: var(--cyan);
  text-shadow:
    0 0 14px rgba(53, 201, 255, 0.72),
    0 0 34px rgba(53, 201, 255, 0.42);
}

.hero-typewriter-block {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 3vw, 28px);
}

.hero-typewriter-line {
  display: block;
}

.hero-typewriter-line-0 {
  min-height: 1em;
  color: var(--cyan);
  text-shadow:
    0 0 14px rgba(53, 201, 255, 0.72),
    0 0 34px rgba(53, 201, 255, 0.42);
}

.hero-typewriter-line-1 {
  min-height: 1.35em;
  color: var(--cyan-bright);
  font-size: var(--text-lead);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 0 20px rgba(53, 201, 255, 0.42);
}

.hero-typewriter-line-2 {
  max-width: 760px;
  min-height: 3.2em;
  color: var(--muted);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.7;
}

.typewriter-line {
  min-height: 1.7em;
  margin: 20px auto 0;
  color: var(--cyan-bright);
  font-size: var(--text-lead);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 0 20px rgba(53, 201, 255, 0.42);
}

[data-typewriter]::after {
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.12em;
  vertical-align: -0.12em;
  content: "";
  background: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(120, 246, 255, 0.72);
  animation: cursor-blink 900ms steps(2, start) infinite;
}

.typing-cursor {
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.12em;
  vertical-align: -0.12em;
  background: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(120, 246, 255, 0.72);
  animation: cursor-blink 900ms steps(2, start) infinite;
}

.about-typewriter {
  margin-inline: 0;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-typewriter]::after {
    animation: none;
  }

  .typing-cursor {
    animation: none;
  }
}

.hero-text {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.7;
}

.typed-copy {
  min-height: 3.4em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button.primary {
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
  color: #001116;
  box-shadow:
    0 0 18px rgba(53, 201, 255, 0.32),
    0 0 44px rgba(53, 201, 255, 0.14);
}

.button.secondary {
  background: rgba(53, 201, 255, 0.055);
  color: #fff;
  box-shadow: inset 0 0 20px rgba(53, 201, 255, 0.06);
}

.hero-carousel {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
  margin: 70px auto 0;
  margin-bottom: clamp(58px, 7vw, 96px);
  overflow: visible;
  isolation: isolate;
}

.hero-showcase {
  position: relative;
  height: clamp(380px, 46vw, 560px);
  overflow: hidden;
}

.showcase-item {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: clamp(260px, 30vw, 400px);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #02080c;
  box-shadow: var(--shadow);
  opacity: calc(1 - (var(--distance) * 0.22));
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * min(30vw, 360px)))
    scale(calc(1 - (var(--distance) * 0.08)));
  transition: transform 300ms ease, opacity 300ms ease, filter 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  z-index: var(--stack);
}

.showcase-item.is-active {
  border-color: var(--cyan-line);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(154, 244, 255, 0.16),
    0 0 34px rgba(53, 201, 255, 0.22),
    inset 0 0 24px rgba(53, 201, 255, 0.06);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.showcase-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-weight: 600;
  text-align: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.showcase-item:not(.is-active) {
  filter: brightness(0.72);
}

.showcase-item.is-hidden {
  pointer-events: none;
  opacity: 0;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .showcase-item span,
  .carousel-panel,
  .site-footer {
    background: rgba(0, 8, 12, 0.94);
  }
}

.carousel-panel {
  z-index: 18;
  display: inline-grid;
  grid-template-columns: repeat(3, 48px);
  justify-self: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  background: rgba(0, 8, 12, 0.74);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.08);
}

.carousel-panel-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(154, 244, 255, 0.2);
  border-radius: 8px;
  background: rgba(53, 201, 255, 0.055);
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.carousel-panel-button:hover,
.carousel-panel-button:focus-visible {
  border-color: var(--cyan-bright);
  background: rgba(53, 201, 255, 0.1);
  color: #fff;
  box-shadow:
    inset 0 0 22px rgba(53, 201, 255, 0.14),
    0 0 24px rgba(53, 201, 255, 0.12);
  transform: translateY(-1px);
}

.carousel-panel-button.is-primary {
  background: rgba(120, 246, 255, 0.12);
  color: #fff;
}

.carousel-panel-button .fa-solid {
  pointer-events: none;
}

.home-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(calc(100% - (var(--page-gutter) * 2)), 1200px);
  margin: 0 auto clamp(24px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(120, 246, 255, 0.14);
  border-radius: 10px;
  background: rgba(120, 246, 255, 0.12);
  box-shadow:
    inset 0 0 28px rgba(53, 201, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.22);
}

.home-service-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 128px;
  align-content: center;
  padding: clamp(18px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.11), transparent 34%),
    rgba(0, 8, 12, 0.88);
}

.home-service-strip i {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 10px;
  background: rgba(53, 201, 255, 0.09);
  color: var(--cyan-bright);
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.08);
}

.home-service-strip span {
  color: #fff;
  font-size: var(--text-base);
  font-weight: 900;
}

.home-service-strip p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.55;
}

.featured-work {
  position: relative;
  isolation: isolate;
}

.featured-work::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 20% 0%, rgba(53, 201, 255, 0.12), transparent 32%),
    radial-gradient(circle at 78% 48%, rgba(154, 244, 255, 0.055), transparent 30%);
}

.featured-all {
  margin-left: auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

.featured-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.1), transparent 34%),
    rgba(0, 6, 10, 0.86);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.featured-card:hover,
.featured-card:focus-within {
  border-color: var(--cyan-line);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(53, 201, 255, 0.11);
  transform: translateY(-3px);
}

.featured-cover {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 14px;
  background: #02080c;
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
  transition: transform 260ms ease;
}

.featured-card:hover .featured-cover img,
.featured-card:focus-within .featured-cover img {
  transform: scale(1.025);
}

.featured-body {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 26px);
}

.featured-body > span {
  color: var(--cyan);
  font-size: var(--text-xs);
  font-weight: 800;
}

.featured-body h3 {
  font-size: var(--title-card);
}

.featured-body p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
  font-weight: 600;
}

.section,
.contact {
  width: 100%;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 132px) var(--page-gutter);
}

.content-page {
  width: 100%;
}

.page-hero {
  width: 100%;
  padding: clamp(132px, 14vw, 184px) var(--page-gutter) clamp(52px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(53, 201, 255, 0.12), transparent 32%),
    radial-gradient(ellipse at 20% 100%, rgba(154, 244, 255, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 72%);
}

.page-hero h1 {
  max-width: 920px;
  font-size: var(--title-page);
  font-weight: 400;
  line-height: 0.9;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.7;
}

.skills-page h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  line-height: 1.02;
}

.error-page {
  min-height: 76vh;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 82% 32%, rgba(53, 201, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(0, 8, 12, 0.18), transparent);
}

.error-page .hero-actions {
  margin-top: 34px;
}

.about-page {
  min-height: 54vh;
  display: grid;
  align-content: center;
}

.about-main {
  overflow: hidden;
}

.about-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.about-hero-editorial {
  position: relative;
  min-height: calc(100vh - 44px);
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: stretch;
  padding-top: clamp(142px, 12vw, 176px);
  padding-bottom: clamp(44px, 7vw, 76px);
  border-bottom: 1px solid rgba(120, 246, 255, 0.12);
  background:
    radial-gradient(circle at 24% 24%, rgba(154, 244, 255, 0.12), transparent 20%),
    radial-gradient(circle at 74% 38%, rgba(53, 201, 255, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.045), transparent 44%),
    rgba(0, 3, 5, 0.16);
}

.about-hero-editorial::before {
  position: absolute;
  inset: clamp(92px, 9vw, 126px) var(--page-gutter) 34px;
  z-index: -1;
  border: 1px solid rgba(120, 246, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(rgba(53, 201, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 201, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  opacity: 0.7;
}

.about-hero-copy {
  max-width: 900px;
}

.about-editorial-left,
.about-editorial-right {
  min-width: 0;
}

.about-editorial-left {
  position: relative;
  display: grid;
  align-content: start;
  padding: clamp(14px, 3vw, 34px) 0 0;
}

.about-display {
  max-width: 760px;
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6.7vw, 7rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: none;
  text-shadow:
    0 0 18px rgba(234, 255, 255, 0.32),
    0 0 42px rgba(53, 201, 255, 0.12);
}

.about-display span {
  color: var(--cyan-bright);
  text-shadow:
    0 0 18px rgba(120, 246, 255, 0.7),
    0 0 38px rgba(53, 201, 255, 0.28);
}

.about-intro {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--soft);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.8;
}

.about-intro strong {
  color: var(--cyan-bright);
  font-weight: 800;
}

.about-signature {
  margin: 24px 0 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 20px rgba(234, 255, 255, 0.28);
}

.about-lower-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1fr);
  gap: 16px;
  width: min(760px, 100%);
  margin-top: 26px;
}

.about-tools,
.about-quote {
  width: 100%;
  border: 1px solid rgba(120, 246, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(53, 201, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(0, 10, 14, 0.8);
  box-shadow:
    inset 0 0 24px rgba(53, 201, 255, 0.055),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.about-tools {
  position: relative;
  z-index: 3;
  padding: 20px clamp(20px, 3vw, 32px) 24px;
}

.about-tools > span {
  display: block;
  color: var(--cyan-bright);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-tools div {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 28px);
  margin-top: 16px;
}

.about-tools strong {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.26);
  border-radius: 8px;
  background: rgba(53, 201, 255, 0.07);
  color: var(--cyan-bright);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.1);
}

.about-tools strong:nth-child(2) {
  border-color: rgba(255, 140, 0, 0.38);
  color: #ff9a2d;
}

.about-tools strong:nth-child(3) {
  border-color: rgba(255, 60, 130, 0.38);
  color: #ff5f9e;
}

.about-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px clamp(20px, 3vw, 32px);
}

.about-quote i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 201, 255, 0.16);
  color: var(--cyan-bright);
  box-shadow: 0 0 26px rgba(53, 201, 255, 0.25);
}

.about-quote p {
  margin: 0;
  color: var(--soft);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.55;
}

.about-editorial-right {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: clamp(12px, 3vw, 34px);
}

.about-board-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  color: var(--cyan-bright);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-board-title::after {
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 246, 255, 0.7), rgba(120, 246, 255, 0.08));
  content: "";
}

.about-hero .hero-actions {
  margin-top: 34px;
}

.about-figures {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.about-figures::before {
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(53, 201, 255, 0.18), transparent 34%),
    rgba(0, 13, 18, 0.45);
  box-shadow: inset 0 0 44px rgba(53, 201, 255, 0.08);
  content: "";
}

.figure-card,
.figure-strip {
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(53, 201, 255, 0.105), rgba(255, 255, 255, 0.018)),
    rgba(0, 10, 14, 0.78);
  box-shadow:
    inset 0 0 26px rgba(53, 201, 255, 0.055),
    0 22px 52px rgba(0, 0, 0, 0.24);
}

.figure-card {
  min-height: 210px;
  padding: clamp(20px, 3vw, 28px);
}

.figure-card > i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.22);
  border-radius: 50%;
  background: rgba(53, 201, 255, 0.09);
  color: var(--cyan-bright);
  font-size: 1.1rem;
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.16), 0 0 24px rgba(53, 201, 255, 0.12);
}

.figure-card.is-primary {
  border-color: rgba(120, 246, 255, 0.48);
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 246, 255, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(0, 14, 20, 0.88);
  box-shadow:
    inset 0 0 34px rgba(53, 201, 255, 0.12),
    0 0 34px rgba(53, 201, 255, 0.12);
}

.figure-card.is-wide,
.figure-strip {
  grid-column: 1 / -1;
}

.figure-label {
  display: block;
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.figure-card strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 0.92;
  text-shadow:
    0 0 14px rgba(120, 246, 255, 0.38),
    0 0 32px rgba(53, 201, 255, 0.16);
}

.figure-card.is-wide strong {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.figure-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.55;
}

.figure-inline,
.figure-language {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 136px;
}

.figure-inline > i {
  width: 64px;
  height: 64px;
  margin: 0;
}

.figure-inline .figure-label,
.figure-language .figure-label {
  margin-top: 0;
}

.figure-language strong {
  min-width: 92px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  text-align: center;
}

.figure-language strong span {
  color: var(--cyan-bright);
  font-family: Cairo, Montserrat, sans-serif;
  font-size: 0.86em;
}

.figure-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.figure-strip span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 800;
  text-align: center;
}

.about-work-link {
  justify-self: end;
  min-height: 48px;
  gap: 12px;
}

.figure-strip span + span {
  border-left: 1px solid var(--line);
}

.figure-strip i {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(120, 246, 255, 0.5);
}

.about-story {
  padding-top: clamp(64px, 8vw, 110px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  margin-top: 34px;
}

.about-bio,
.about-snapshot {
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.09), transparent 30%),
    rgba(0, 10, 14, 0.72);
  box-shadow: inset 0 0 28px rgba(53, 201, 255, 0.05);
}

.about-bio {
  padding: clamp(26px, 4vw, 44px);
}

.about-bio p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.72;
}

.about-bio p + p {
  margin-top: 22px;
}

.about-snapshot {
  display: grid;
  grid-template-columns: 1fr;
}

.about-snapshot div {
  padding: 22px 24px;
}

.about-snapshot div + div {
  border-top: 1px solid var(--line);
}

.about-snapshot span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-snapshot strong {
  display: block;
  color: var(--text);
  font-size: var(--text-base);
}

.about-detail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(42px, 7vw, 86px) var(--page-gutter) clamp(70px, 10vw, 132px);
  border-top: 1px solid rgba(120, 246, 255, 0.1);
  background:
    radial-gradient(circle at 16% 10%, rgba(53, 201, 255, 0.1), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(154, 244, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(0, 3, 5, 0.2), rgba(0, 3, 5, 0.78));
  isolation: isolate;
}

.about-detail::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(53, 201, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 201, 255, 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.32;
  pointer-events: none;
}

.about-detail article {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(120, 246, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(0, 8, 12, 0.78);
  box-shadow:
    inset 0 0 26px rgba(53, 201, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.about-detail span {
  color: var(--cyan-bright);
  font-weight: 800;
  text-shadow: 0 0 14px rgba(120, 246, 255, 0.4);
}

.about-detail h2 {
  margin: 42px 0 0;
  font-size: var(--title-card);
}

.about-detail p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.strength-grid article {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(53, 201, 255, 0.09), rgba(255, 255, 255, 0.015)),
    rgba(0, 10, 14, 0.66);
  color: var(--text);
  font-weight: 800;
  box-shadow: inset 0 0 22px rgba(53, 201, 255, 0.045);
}

.strength-grid i {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.32);
  border-radius: 8px;
  background: rgba(53, 201, 255, 0.08);
  color: var(--cyan);
  font-size: 1rem;
  text-shadow: 0 0 12px rgba(120, 246, 255, 0.44);
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  padding-top: clamp(56px, 8vw, 92px);
  border-top: 1px solid var(--line);
}

.about-cta h2 {
  max-width: 850px;
  margin: 0;
  font-size: var(--title-section);
  line-height: 1;
}

.about-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.archive-page-section {
  padding-top: clamp(48px, 7vw, 86px);
}

.process-page h1 {
  max-width: 1080px;
}

.process-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: clamp(620px, 82svh, 780px);
  border-bottom: 0;
  overflow: hidden;
}

.process-page::before {
  position: absolute;
  inset: 112px var(--page-gutter) auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(154, 244, 255, 0.58), transparent);
  opacity: 0.5;
}

.process-hero-copy {
  position: relative;
  z-index: 1;
}

.process-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 4vw, 38px);
}

.process-hero-actions span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 201, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(4, 15, 20, 0.72);
  color: var(--soft);
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: inset 0 0 20px rgba(53, 201, 255, 0.05);
}

.process-hero-actions i {
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 10px rgba(120, 246, 255, 0.44));
}

.process-hero-visual {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(120, 246, 255, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 46%, rgba(154, 244, 255, 0.12), transparent 24%),
    radial-gradient(circle at 18% 16%, rgba(53, 201, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.07), rgba(0, 4, 8, 0.86));
  box-shadow:
    inset 0 0 60px rgba(53, 201, 255, 0.07),
    0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.process-hero-visual::before,
.process-hero-visual::after {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.process-hero-visual::after {
  inset: 86px;
  opacity: 0.42;
}

.process-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.process-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 188px;
  height: 188px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(120, 246, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, rgba(234, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle, rgba(53, 201, 255, 0.18), rgba(1, 10, 14, 0.98) 68%);
  box-shadow:
    inset 0 0 34px rgba(120, 246, 255, 0.12),
    0 0 48px rgba(53, 201, 255, 0.22);
  text-align: center;
}

.process-core strong {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 0 22px rgba(154, 244, 255, 0.72);
}

.process-core span {
  color: var(--cyan-bright);
  font-size: var(--text-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-dot {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 18px rgba(120, 246, 255, 0.9);
}

.dot-one {
  top: 94px;
  left: 26%;
}

.dot-two {
  top: 48%;
  right: 14%;
}

.dot-three {
  right: 34%;
  bottom: 86px;
}

.process-mini-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 128px;
  min-height: 104px;
  place-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--cyan-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(154, 244, 255, 0.12), transparent 44%),
    rgba(5, 18, 24, 0.84);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 22px rgba(53, 201, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.26);
}

.process-mini-card i {
  color: var(--cyan-bright);
  font-size: 1.45rem;
  filter: drop-shadow(0 0 14px rgba(120, 246, 255, 0.66));
}

.card-research {
  top: 74px;
  left: 12%;
}

.card-design {
  top: 138px;
  right: 12%;
}

.card-deliver {
  right: 22%;
  bottom: 62px;
}

.process-page-section {
  padding-top: clamp(48px, 7vw, 88px);
}

.process-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.process-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.process-section-heading h2 {
  margin: 0;
  font-size: var(--title-section);
  line-height: 1.02;
}

.process-section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.6;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(53, 201, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(154, 244, 255, 0.05), transparent 30%);
}

.process-timeline::before {
  position: absolute;
  top: 62px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(120, 246, 255, 0.7), transparent);
  box-shadow: 0 0 20px rgba(53, 201, 255, 0.22);
}

.process-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 330px;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(120, 246, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(0, 8, 12, 0.78);
  box-shadow:
    inset 0 0 26px rgba(53, 201, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms ease,
    border-color 700ms ease;
}

.process-timeline article > i {
  position: absolute;
  top: clamp(22px, 3.2vw, 34px);
  right: clamp(22px, 3.2vw, 34px);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.22);
  border-radius: 12px;
  background: rgba(53, 201, 255, 0.08);
  color: var(--cyan-bright);
  font-size: 1.12rem;
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.08);
}

.process-timeline.is-enhanced article {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.985);
  transition-delay: calc(var(--process-step, 0) * 145ms);
}

.process-timeline.is-enhanced.is-visible article {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.process-timeline.is-enhanced.is-visible article:hover {
  border-color: rgba(120, 246, 255, 0.34);
  box-shadow:
    inset 0 0 34px rgba(53, 201, 255, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px) scale(1);
}

.process-timeline article:nth-child(1) {
  --process-step: 0;
}

.process-timeline article:nth-child(2) {
  --process-step: 1;
}

.process-timeline article:nth-child(3) {
  --process-step: 2;
}

.process-timeline article:nth-child(4) {
  --process-step: 3;
}

.process-timeline article:nth-child(5) {
  --process-step: 4;
}

.process-timeline article:nth-child(6) {
  --process-step: 5;
}

.process-timeline span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
  transition:
    background 500ms ease,
    box-shadow 500ms ease,
    color 500ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-timeline.is-enhanced article span {
  transform: scale(0.85);
  transition-delay: calc((var(--process-step, 0) * 145ms) + 180ms);
}

.process-timeline.is-enhanced.is-visible article span {
  background: rgba(53, 201, 255, 0.1);
  color: var(--cyan-bright);
  box-shadow:
    inset 0 0 18px rgba(53, 201, 255, 0.12),
    0 0 18px rgba(53, 201, 255, 0.16);
  transform: scale(1);
}

.process-timeline h2 {
  margin: 34px 0 0;
  font-size: var(--title-card);
}

.process-timeline ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
  list-style: none;
}

.process-timeline li {
  position: relative;
  padding-left: 20px;
}

.process-timeline li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(120, 246, 255, 0.56);
}

.process-result-section {
  padding-top: 0;
}

.process-result-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--cyan-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 12%, rgba(154, 244, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.075), rgba(255, 255, 255, 0.015)),
    rgba(3, 13, 18, 0.82);
  box-shadow:
    inset 0 0 42px rgba(53, 201, 255, 0.055),
    0 24px 70px rgba(0, 0, 0, 0.26);
}

.process-result-panel h2 {
  max-width: 620px;
  margin: 0;
  font-size: var(--title-section);
  line-height: 1.02;
}

.process-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-result-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(120, 246, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 8, 12, 0.62);
}

.process-result-grid i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--cyan-line);
  border-radius: 10px;
  margin-bottom: 22px;
  color: var(--cyan-bright);
  background: rgba(53, 201, 255, 0.08);
  box-shadow: 0 0 22px rgba(53, 201, 255, 0.12);
}

.process-result-grid h3 {
  margin: 0 0 12px;
  font-size: var(--title-small);
}

.process-result-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.7;
}

.section h2,
.contact h2 {
  max-width: 970px;
  font-size: var(--title-section);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(53, 201, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--cyan-bright);
  background: var(--cyan-bright);
  color: #001116;
  box-shadow: 0 0 22px rgba(53, 201, 255, 0.22);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.project-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 201, 255, 0.08), transparent 28%),
    rgba(0, 5, 9, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    border-color 220ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    box-shadow 220ms ease;
  transition-delay: calc(var(--stagger, 0) * 45ms);
}

.project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover,
.project-card:focus-within {
  border-color: var(--cyan-line);
  background: rgba(0, 10, 15, 0.95);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(53, 201, 255, 0.08);
  transform: translateY(-2px);
  transition-delay: 0ms;
}

.archive-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  width: 100%;
  display: grid;
  place-items: center;
  background: #02080c;
}

.archive-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 45% 50%, rgba(154, 244, 255, 0.1), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.archive-img {
  position: relative;
  z-index: 1;
  display: block;
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 100%;
  padding: clamp(12px, 2vw, 22px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
  transition: transform 260ms ease;
}

.archive-media.is-square-media .archive-img {
  width: min(100%, 360px);
  height: min(100%, 360px);
}

.archive-media.is-wide-media .archive-img {
  width: 100%;
  height: auto;
  max-height: 82%;
  margin: auto;
}

.archive-media.is-tall-media .archive-img {
  width: auto;
  max-width: 82%;
  height: 100%;
  margin: auto;
}

.archive-media.is-wide-media,
.archive-media.is-tall-media {
  padding: clamp(12px, 2vw, 24px);
}

.project-card:hover .archive-img,
.thumb:hover img,
.thumb:focus-visible img {
  transform: scale(1.025);
}

.load-more-gallery {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: clamp(16px, 3vw, 28px);
}

.archive-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px);
}

.archive-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.archive-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
}

.archive-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.archive-heading div > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.archive-content p {
  max-width: 760px;
  margin: 0;
  color: var(--soft);
  font-size: var(--text-sm);
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.archive-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #f2f2f2;
  font-weight: 600;
}

.archive-link {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 700;
}

.archive-link:hover,
.archive-link:focus-visible {
  background: rgba(53, 201, 255, 0.1);
}

.thumb {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  background: #171717;
  cursor: zoom-in;
  padding: 0;
}

.case-main {
  width: min(900px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(132px, 14vw, 164px) 0 clamp(58px, 8vw, 92px);
}

.case-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 38px);
  align-items: start;
  min-height: auto;
  padding-top: clamp(28px, 5vw, 68px);
}

.case-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.case-title {
  max-width: 620px;
  font-size: var(--title-section);
  font-weight: 700;
  line-height: 0.96;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-weight: 600;
}

.case-cover {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: min(520px, 100%);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #02080c;
  box-shadow: var(--shadow);
}

.case-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-intro {
  display: block;
  max-width: 760px;
  margin: clamp(36px, 6vw, 58px) auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.12), transparent 34%),
    rgba(0, 7, 11, 0.84);
}

.case-intro h2 {
  font-size: var(--title-card);
  margin-bottom: 16px;
}

.case-intro p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.75;
}

.case-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.case-story article {
  min-height: 220px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(2, 10, 15, 0.96);
}

.case-story span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(53, 201, 255, 0.42);
}

.case-story ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}

.case-story li {
  position: relative;
  padding-left: 18px;
}

.case-story li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(53, 201, 255, 0.55);
}

.case-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 680px;
  margin: 0 auto;
}

.case-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #02080c;
  cursor: zoom-in;
  padding: 0;
}

.case-image.is-wide {
  grid-column: auto;
  aspect-ratio: 4 / 3;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.case-image:hover img,
.case-image:focus-visible img {
  transform: scale(1.035);
}

.case-pagination {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 680px;
  margin: clamp(34px, 6vw, 64px) auto 0;
}

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

.case-page-link {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.case-page-link:hover,
.case-page-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.capabilities {
  width: 100%;
  max-width: none;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 0%, rgba(53, 201, 255, 0.12), transparent 32%),
    #03090d;
}

.capabilities > .section-heading,
.capabilities > .capability-grid {
  width: 100%;
  margin-inline: auto;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.capability-grid article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  background: #03090d;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.capability-grid article:hover {
  background: #06121a;
  box-shadow: inset 0 0 34px rgba(53, 201, 255, 0.08);
}

.capability-grid span {
  color: var(--cyan);
  font-weight: 600;
}

.capability-grid h3 {
  margin-top: 44px;
  font-size: var(--title-card);
}

.capability-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.compact-heading {
  align-items: start;
}

.toolkit {
  position: relative;
  isolation: isolate;
}

.toolkit::before,
.contact::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(53, 201, 255, 0.11), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(154, 244, 255, 0.06), transparent 30%);
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.toolkit-grid article {
  min-height: 176px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(53, 201, 255, 0.07), rgba(255, 255, 255, 0.014)),
    #03090d;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.toolkit-grid article:hover {
  border-color: var(--cyan-line);
  box-shadow: inset 0 0 28px rgba(53, 201, 255, 0.11);
  transform: translateY(-2px);
}

.toolkit-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  background: rgba(53, 201, 255, 0.09);
  color: var(--cyan);
  font-weight: 800;
}

.toolkit-grid strong {
  display: block;
  font-size: var(--text-base);
}

.toolkit-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.skills-main {
  width: min(calc(100% - 48px), 1480px);
  margin-inline: auto;
  padding-inline: 0;
}

.skills-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  margin: clamp(108px, 11vw, 136px) 0 14px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(120, 246, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 28%, rgba(53, 201, 255, 0.18), transparent 32%),
    radial-gradient(circle at 48% 46%, rgba(154, 244, 255, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(0, 9, 14, 0.76);
  box-shadow:
    inset 0 0 46px rgba(53, 201, 255, 0.055),
    0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.skills-hero-copy {
  position: relative;
  z-index: 3;
}

.skills-hero-copy::after {
  position: absolute;
  top: 18%;
  right: -18%;
  z-index: -1;
  width: clamp(180px, 22vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(120, 246, 255, 0.1);
  border-radius: 50%;
  content: "";
  opacity: 0.52;
  box-shadow:
    inset 0 0 42px rgba(53, 201, 255, 0.045),
    0 0 36px rgba(53, 201, 255, 0.075);
}

.skills-hero h1 {
  max-width: 860px;
  margin-top: 16px;
  font-size: clamp(2.3rem, 3.35vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
  white-space: normal;
}

.skills-hero h1 em {
  display: inline;
  color: var(--cyan-bright);
  font-style: normal;
  text-shadow:
    0 0 16px rgba(120, 246, 255, 0.65),
    0 0 34px rgba(53, 201, 255, 0.24);
}

.skills-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.75;
}

.skills-hero .button {
  width: fit-content;
  margin-top: 26px;
}

.skills-visual {
  position: relative;
  min-height: clamp(500px, 42vw, 600px);
  perspective: 900px;
}

.skills-orbit {
  display: block;
  isolation: isolate;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 56%, rgba(53, 201, 255, 0.16), transparent 32%),
    radial-gradient(circle at 50% 10%, rgba(154, 244, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(53, 201, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(0, 8, 12, 0.78);
  box-shadow:
    inset 0 0 38px rgba(53, 201, 255, 0.045),
    0 26px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.skills-orbit::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(120, 246, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 246, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 54%, #000 0 48%, transparent 78%);
}

.skills-orbit::after {
  position: absolute;
  right: 18%;
  bottom: 5%;
  left: 18%;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse, rgba(120, 246, 255, 0.58), transparent 68%);
  filter: blur(9px);
  opacity: 0.55;
}

.orbit-core {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: clamp(180px, 16vw, 220px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 246, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(234, 255, 255, 0.22), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(53, 201, 255, 0.18), transparent 58%),
    rgba(0, 12, 18, 0.84);
  box-shadow:
    inset 0 0 42px rgba(53, 201, 255, 0.14),
    0 0 70px rgba(53, 201, 255, 0.2);
  transform: translate(-50%, -24%);
}

.orbit-core::before,
.orbit-core::after {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(120, 246, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.orbit-core::after {
  inset: 18px;
  border-color: rgba(120, 246, 255, 0.08);
}

.orbit-core span {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-shadow:
    0 0 18px rgba(234, 255, 255, 0.56),
    0 0 36px rgba(120, 246, 255, 0.32);
}

.orbit-core strong {
  position: static;
  margin-top: 12px;
  color: var(--cyan-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-core small {
  position: static;
  max-width: 130px;
  margin-top: 8px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.orbit-ring {
  position: absolute;
  top: 18%;
  left: 50%;
  width: clamp(340px, 31vw, 440px);
  aspect-ratio: 1;
  border: 1.5px solid rgba(94, 202, 255, 0.42);
  border-radius: 50%;
  box-shadow:
    inset 0 0 44px rgba(53, 201, 255, 0.055),
    0 0 34px rgba(53, 201, 255, 0.12);
  transform: translateX(-50%);
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(120, 246, 255, 0.8);
}

.orbit-ring::before {
  top: 22%;
  left: 4%;
}

.orbit-ring::after {
  right: 10%;
  bottom: 16%;
}

.orbit-ring-one {
  transform: translateX(-50%);
}

.orbit-ring-two {
  top: 24%;
  width: clamp(260px, 24vw, 340px);
  border-color: rgba(120, 246, 255, 0.14);
  transform: translateX(-50%);
}

.orbit-node {
  position: absolute;
  z-index: 5;
  display: grid;
  width: clamp(92px, 9vw, 122px);
  min-height: 70px;
  align-content: start;
  justify-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.orbit-node i,
.orbit-node > span:first-child {
  display: grid;
  width: clamp(56px, 5.7vw, 70px);
  height: clamp(56px, 5.7vw, 70px);
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(154, 244, 255, 0.22), transparent 28%),
    rgba(0, 18, 28, 0.82);
  color: var(--cyan-bright);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  text-shadow: 0 0 16px rgba(120, 246, 255, 0.5);
  box-shadow:
    inset 0 0 22px rgba(53, 201, 255, 0.11),
    0 0 22px rgba(53, 201, 255, 0.18);
}

.orbit-node span:last-child {
  display: none;
  margin-top: 6px;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-node small {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.38;
}

.node-brand {
  top: 13%;
  left: 39%;
}

.node-social {
  top: 29%;
  right: 8%;
}

.node-print {
  right: 13%;
  bottom: 27%;
}

.node-arabic {
  left: 10%;
  bottom: 31%;
}

.node-system {
  left: 50%;
  bottom: 19%;
  transform: translateX(-50%);
}

.orbit-benefits {
  position: absolute;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 28px);
  left: clamp(18px, 3vw, 30px);
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(120, 246, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 8, 12, 0.66);
  box-shadow: inset 0 0 22px rgba(53, 201, 255, 0.05);
  backdrop-filter: blur(16px);
}

.orbit-benefits span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 10px;
  background: rgba(53, 201, 255, 0.045);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.design-window {
  position: absolute;
  border: 1px solid rgba(120, 246, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(154, 244, 255, 0.13), rgba(53, 201, 255, 0.045)),
    rgba(7, 21, 32, 0.82);
  box-shadow:
    inset 0 0 26px rgba(120, 246, 255, 0.11),
    0 22px 60px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(53, 201, 255, 0.18);
  backdrop-filter: blur(18px);
}

.window-dots::before {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(154, 244, 255, 0.9) 0 2px, transparent 2.4px) 0 0 / 9px 6px repeat-x;
  content: "";
  opacity: 0.8;
}

.typography-window {
  top: 16%;
  left: 6%;
  z-index: 2;
  display: grid;
  width: min(58%, 310px);
  aspect-ratio: 1.12;
  place-items: center;
  transform: rotateY(-18deg) rotateZ(4deg);
}

.typography-window strong {
  color: #eaffff;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 600;
  text-shadow: 0 0 24px rgba(120, 246, 255, 0.5);
}

.typography-window i {
  position: absolute;
  right: 18%;
  bottom: 18%;
  color: var(--cyan);
  font-size: 1.4rem;
}

.image-window {
  top: 24%;
  right: 0;
  display: grid;
  width: min(56%, 340px);
  aspect-ratio: 1.34;
  place-items: center;
  transform: rotateY(-18deg) rotateZ(7deg);
}

.image-window i {
  color: rgba(234, 255, 255, 0.42);
  font-size: clamp(4rem, 7vw, 6.8rem);
  filter: drop-shadow(0 0 18px rgba(120, 246, 255, 0.28));
}

.swatch-window {
  right: 24%;
  bottom: 12%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 158px;
  padding: 14px;
  transform: rotateY(-16deg) rotateZ(2deg);
}

.swatch-window span {
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #9af4ff, #2d98dd);
}

.swatch-window span:nth-child(2) {
  background: linear-gradient(180deg, #5bd5ff, #1577bd);
}

.swatch-window span:nth-child(3) {
  background: linear-gradient(180deg, #d8fbff, #6fb5da);
}

.skills-panel {
  margin-top: 18px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(120, 246, 255, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 0%, rgba(53, 201, 255, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(0, 9, 14, 0.78);
  box-shadow: inset 0 0 34px rgba(53, 201, 255, 0.045);
}

.skills-panel.capabilities {
  width: auto;
  max-width: none;
  border-block: 1px solid rgba(120, 246, 255, 0.12);
}

.skills-panel .section-heading {
  padding: 0;
}

.skills-panel .section-heading h2 {
  max-width: 650px;
  font-size: clamp(1.65rem, 3vw, 3.05rem);
  line-height: 1.08;
}

.skills-panel .section-note {
  max-width: 520px;
  align-self: end;
}

.skills-panel .capability-grid {
  gap: 14px;
  margin-top: 28px;
  background: transparent;
}

.skills-panel .capability-grid article {
  position: relative;
  min-height: 222px;
  padding: 24px;
  border: 1px solid rgba(120, 246, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(53, 201, 255, 0.075), rgba(255, 255, 255, 0.012)),
    rgba(1, 10, 15, 0.82);
}

.skills-panel .capability-grid i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid rgba(120, 246, 255, 0.22);
  border-radius: 10px;
  background: rgba(53, 201, 255, 0.1);
  color: var(--cyan-bright);
  font-size: 1.18rem;
  box-shadow: inset 0 0 24px rgba(53, 201, 255, 0.1);
}

.skills-panel .capability-grid span {
  color: var(--cyan-bright);
  font-size: var(--text-xs);
  font-weight: 900;
}

.skills-panel .capability-grid h3 {
  margin-top: 10px;
  font-size: var(--title-small);
  line-height: 1.15;
}

.skills-panel .capability-grid p {
  font-size: var(--text-sm);
}

.skills-panel .toolkit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.skills-panel .toolkit-grid article {
  position: relative;
  min-height: 156px;
  padding: 22px;
  overflow: hidden;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tool-tags small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(120, 246, 255, 0.13);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(53, 201, 255, 0.055);
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.skills-quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 clamp(24px, 4vw, 42px);
  padding: 24px clamp(22px, 4vw, 42px);
  border: 1px solid rgba(120, 246, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(53, 201, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(0, 9, 14, 0.78);
}

.skills-quote-panel div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.skills-quote-panel i {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 201, 255, 0.14);
  color: var(--cyan-bright);
  box-shadow: 0 0 26px rgba(53, 201, 255, 0.22);
}

.skills-quote-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.7;
}

.skills-quote-panel strong {
  color: var(--cyan-bright);
}

.contact {
  position: relative;
  isolation: isolate;
  min-height: 58vh;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact-page {
  min-height: 78vh;
  padding-top: clamp(132px, 14vw, 184px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.contact h1 {
  max-width: 860px;
  margin: 0;
  font-size: var(--title-section);
  font-weight: 700;
  line-height: 1.03;
}

.contact h2 {
  max-width: 860px;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-promise {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 4vw, 36px);
}

.contact-promise span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--cyan-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 201, 255, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(3, 14, 20, 0.72);
  color: var(--soft);
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.055);
}

.contact-promise i {
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 10px rgba(120, 246, 255, 0.48));
}

.contact-card {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--cyan-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.18), transparent 34%),
    radial-gradient(circle at 18% 100%, rgba(154, 244, 255, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.075), rgba(255, 255, 255, 0.016)),
    rgba(3, 14, 20, 0.84);
  box-shadow:
    inset 0 0 42px rgba(53, 201, 255, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.contact-card::before {
  position: absolute;
  inset: auto -24% -38% 24%;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(154, 244, 255, 0.16), transparent 66%);
  pointer-events: none;
}

.contact-card-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--soft);
  font-weight: 800;
}

.contact-card-head p {
  margin: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #84ffbd;
  box-shadow: 0 0 16px rgba(132, 255, 189, 0.8);
}

.contact-socials {
  position: relative;
  display: grid;
  gap: 14px;
}

.contact-socials a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(120, 246, 255, 0.16);
  border-radius: 10px;
  background: rgba(0, 8, 12, 0.58);
  color: var(--muted);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  border-color: rgba(120, 246, 255, 0.38);
  background: rgba(53, 201, 255, 0.075);
  box-shadow: inset 0 0 28px rgba(53, 201, 255, 0.08);
  transform: translateY(-2px);
}

.contact-socials i:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--cyan-line);
  border-radius: 10px;
  color: var(--cyan-bright);
  background: rgba(53, 201, 255, 0.08);
  font-size: 1.15rem;
  box-shadow: 0 0 20px rgba(53, 201, 255, 0.14);
}

.contact-socials strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: var(--title-small);
}

.contact-socials span {
  font-size: var(--text-sm);
  font-weight: 650;
  line-height: 1.5;
}

.contact-socials .fa-arrow-up-right-from-square {
  color: var(--cyan-bright);
  opacity: 0.8;
}

.contact-work-button {
  position: relative;
  width: 100%;
  margin-top: 18px;
}

.contact-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 6vw, 72px);
}

.contact-brief-grid article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(120, 246, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 201, 255, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(53, 201, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(0, 8, 12, 0.68);
  box-shadow: inset 0 0 28px rgba(53, 201, 255, 0.04);
}

.contact-brief-grid i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--cyan-line);
  border-radius: 10px;
  margin-bottom: 26px;
  color: var(--cyan-bright);
  background: rgba(53, 201, 255, 0.08);
}

.contact-brief-grid h2 {
  margin: 0;
  font-size: var(--title-small);
}

.contact-brief-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

.contact-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(32px, 5vw, 58px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--cyan-line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(53, 201, 255, 0.075), transparent 46%),
    rgba(0, 8, 12, 0.76);
  box-shadow: inset 0 0 34px rgba(53, 201, 255, 0.045);
}

.contact-flow h2 {
  margin: 0;
  font-size: var(--title-section);
  line-height: 1.04;
}

.contact-flow ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-flow li {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(120, 246, 255, 0.13);
}

.contact-flow li + li {
  padding-top: 26px;
}

.contact-flow li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-flow li span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--cyan-line);
  border-radius: 10px;
  color: var(--cyan-bright);
  background: rgba(53, 201, 255, 0.08);
  font-weight: 900;
}

.contact-flow strong {
  color: #fff;
  font-size: var(--title-small);
}

.contact-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - (var(--page-gutter) * 2)));
  margin: clamp(36px, 6vw, 72px) auto 24px;
  padding: 16px 18px;
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(154, 244, 255, 0.07), rgba(53, 201, 255, 0.025)),
    rgba(0, 8, 12, 0.82);
  color: var(--muted);
  box-shadow:
    inset 0 0 24px rgba(53, 201, 255, 0.055),
    0 16px 52px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.footer-brand {
  display: inline-grid;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(120, 246, 255, 0.18);
  border-radius: 8px;
  background: rgba(53, 201, 255, 0.055);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 0 18px rgba(53, 201, 255, 0.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
}

.footer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--soft);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: var(--cyan-line);
  background: rgba(53, 201, 255, 0.08);
  color: var(--cyan-bright);
  box-shadow: inset 0 0 20px rgba(53, 201, 255, 0.12);
}

.site-footer p {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: right;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px 20px 28px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.lightbox p {
  position: absolute;
  right: 20px;
  bottom: 12px;
  left: 20px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 920px) {
  :root {
    --page-gutter: clamp(22px, 5vw, 46px);
  }

  .home-service-strip {
    grid-template-columns: 1fr;
  }

  .home-service-strip article {
    min-height: auto;
  }

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

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding-block: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
    font-size: var(--text-sm);
    scrollbar-width: none;
  }

  .nav a {
    min-height: 38px;
  }

  .nav a::after {
    bottom: 2px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .process-page {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
  }

  .process-hero-visual {
    min-height: 360px;
  }

  .process-section-heading,
  .process-result-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    height: 440px;
  }

  .showcase-item {
    width: min(70vw, 340px);
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--offset) * 42vw))
      scale(calc(1 - (var(--distance) * 0.08)));
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }

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

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

  .process-timeline::before {
    display: none;
  }

  .process-result-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-detail {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-editorial {
    min-height: auto;
    align-items: start;
  }

  .about-figures {
    max-width: 680px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

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

  .about-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    width: calc(100% - (var(--page-gutter) * 2));
    padding: 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 720px;
  }

  .contact-brief-grid,
  .contact-flow {
    grid-template-columns: 1fr;
  }

  .case-header {
    min-height: auto;
    padding-top: 0;
  }

  .case-main {
    width: min(680px, calc(100% - (var(--page-gutter) * 2)));
  }

  .case-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 18px;
    --header-gutter: 10px;
  }

  .home-service-strip {
    width: min(calc(100% - 24px), 560px);
    margin-bottom: 34px;
  }

  .home-service-strip article {
    grid-template-columns: 1fr;
  }

  .home-service-strip i {
    grid-row: auto;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .filter-button {
    flex: 1 1 auto;
  }

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

  .site-header {
    top: 10px;
    width: calc(100% - (var(--header-gutter) * 2));
    max-width: calc(100vw - (var(--header-gutter) * 2));
    margin-top: 0;
    padding: 12px 14px;
  }

  .brand {
    width: 130px;
  }

  .brand img {
    width: 126px;
  }

  .nav {
    justify-content: flex-start;
    gap: 18px;
    font-size: var(--text-sm);
  }

  .process-timeline article {
    min-height: auto;
  }

  .process-page {
    padding-top: 138px;
  }

  .process-page::before {
    inset: 94px 18px auto;
  }

  .process-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process-hero-visual {
    min-height: 330px;
  }

  .process-mini-card {
    min-width: 108px;
    min-height: 88px;
    padding: 12px;
    font-size: 0.82rem;
  }

  .card-research {
    top: 48px;
    left: 8%;
  }

  .card-design {
    top: 112px;
    right: 7%;
  }

  .card-deliver {
    right: 16%;
    bottom: 42px;
  }

  .process-core {
    width: 152px;
    height: 152px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline article > i {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 150px;
  }

  h1 {
    font-size: var(--title-hero);
  }

  .page-hero h1 {
    font-size: var(--title-page);
  }

  .skills-page h1 {
    font-size: clamp(2.45rem, 9vw, 4.2rem);
  }

  .about-display {
    font-size: clamp(3.15rem, 15vw, 5.8rem);
    line-height: 0.84;
  }

  .about-intro {
    max-width: none;
  }

  .about-lower-row {
    grid-template-columns: 1fr;
  }

  .about-detail article {
    min-height: auto;
  }

  .about-figures::before {
    inset: -10px;
  }

  .figure-card {
    min-height: 148px;
  }

  .figure-inline,
  .figure-language {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .figure-language strong {
    width: 100%;
    min-width: 0;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .figure-strip {
    grid-template-columns: 1fr;
  }

  .figure-strip span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-bio p {
    font-size: var(--text-base);
  }

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

  .strength-grid article {
    min-height: 86px;
  }

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

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

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

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

  .toolkit-grid article {
    min-height: 158px;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-promise {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-socials a {
    grid-template-columns: 44px 1fr;
  }

  .contact-socials .fa-arrow-up-right-from-square {
    display: none;
  }

  .contact-brief-grid article {
    min-height: auto;
  }

  .contact-flow li {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .contact-flow li span {
    grid-row: auto;
  }

  .hero-carousel {
    margin-top: 42px;
    margin-bottom: 70px;
  }

  .hero-showcase {
    height: 370px;
  }

  .showcase-item {
    width: min(76vw, 300px);
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--offset) * 58vw))
      scale(calc(1 - (var(--distance) * 0.08)));
  }

  .carousel-panel {
    grid-template-columns: repeat(3, 44px);
    gap: 10px;
  }

  .carousel-panel-button {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .project-card {
    height: auto;
  }

  .archive-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .archive-media.is-square-media .archive-img {
    width: min(100%, 300px);
    height: min(100%, 300px);
  }

  .archive-heading {
    grid-template-columns: 1fr;
  }

  .archive-content {
    padding: 24px;
  }

  .archive-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-title {
    font-size: var(--title-section);
  }

  .case-cover {
    aspect-ratio: 1 / 1;
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
  }

  .case-intro {
    margin: 44px auto;
  }
}

@media (max-width: 390px) {
  :root {
    --page-gutter: 14px;
    --header-gutter: 8px;
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    width: 116px;
  }

  .brand img {
    width: 112px;
  }

  .nav {
    gap: 14px;
    font-size: var(--text-xs);
  }

  .hero,
  .case-main {
    padding-top: 142px;
  }

  .button {
    width: 100%;
  }

  .skills-page h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
    line-height: 1.08;
  }

  .skills-page h1 br {
    display: none;
  }

  .about-figures {
    grid-template-columns: 1fr;
  }

  .about-hero-editorial::before {
    inset: 118px var(--page-gutter) 24px;
  }

  .about-display {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .about-tools div {
    gap: 10px;
  }

  .about-tools strong {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }

  .about-quote {
    grid-template-columns: 1fr;
  }

  .about-work-link {
    justify-self: stretch;
  }

  .about-cta-actions {
    width: 100%;
  }

  .site-footer {
    margin-bottom: 16px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    min-height: 36px;
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .skills-main {
    width: min(calc(100% - 32px), 760px);
    padding-inline: 0;
  }

  .skills-hero {
    grid-template-columns: 1fr;
    margin-top: clamp(108px, 18vw, 138px);
  }

  .skills-hero h1 {
    max-width: 720px;
    white-space: normal;
  }

  .skills-visual {
    min-height: 560px;
  }

  .skills-panel .capability-grid,
  .skills-panel .toolkit-grid {
    grid-template-columns: 1fr;
  }

  .skills-quote-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .skills-quote-panel .button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .skills-main {
    width: min(calc(100% - 24px), 560px);
    padding-inline: 0;
  }

  .skills-hero,
  .skills-panel,
  .skills-quote-panel {
    border-radius: 8px;
  }

  .skills-hero {
    padding: 28px 20px;
  }

  .skills-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1;
  }

  .skills-hero h1 br {
    display: none;
  }

  .skills-hero .button,
  .skills-quote-panel .button {
    width: 100%;
  }

  .skills-visual {
    min-height: 520px;
  }

  .orbit-core {
    top: 42%;
    width: 148px;
  }

  .orbit-node {
    width: 86px;
    min-height: 56px;
  }

  .orbit-node i,
  .orbit-node > span:first-child {
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }

  .orbit-node span:last-child {
    font-size: 0.72rem;
  }

  .orbit-node small {
    display: none;
  }

  .node-brand {
    top: 19%;
    left: 39%;
  }

  .node-social {
    top: 34%;
    right: 6%;
  }

  .node-print {
    right: 10%;
    bottom: 32%;
  }

  .node-arabic {
    left: 8%;
    bottom: 35%;
  }

  .node-system {
    bottom: 23%;
  }

  .orbit-benefits {
    grid-template-columns: 1fr;
  }

  .orbit-benefits span {
    min-height: 34px;
    font-size: 0.66rem;
  }

  .skills-panel {
    padding: 24px 18px;
  }

  .skills-panel .section-heading {
    gap: 16px;
  }

  .skills-panel .section-heading h2 {
    font-size: clamp(1.5rem, 8vw, 2.45rem);
  }

  .skills-quote-panel div {
    align-items: flex-start;
    flex-direction: column;
  }
}

