:root {
  --ink: #002147;
  --blue: #00539f;
  --cyan: #0095dd;
  --violet: #331e54;
  --orange: #e66000;
  --amber: #ff9500;
  --yellow: #ffcb00;
  --night: #111827;
  --night-soft: #172135;
  --white: #f8fafc;
  --muted: rgba(248, 250, 252, 0.38);
  --copy: rgba(248, 250, 252, 0.7);
  --line: rgba(248, 250, 252, 0.15);
  --display: "Switzer", "Segoe UI", Arial, sans-serif;
  --body: "Switzer", "Segoe UI", Arial, sans-serif;
  --mono: "Switzer", "Segoe UI", Arial, sans-serif;
  --shell: min(1300px, calc(100vw - 80px));
  --pointer-x: 50%;
  --pointer-y: 50%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 160;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: rgba(248, 250, 252, 0.05);
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--yellow), var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 0 14px rgba(0, 149, 221, 0.48);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.utility {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 14px 0 auto;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: transparent;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: visible;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 14px;
  padding: 9px 10px 9px 12px;
  pointer-events: auto;
  background: rgba(13, 21, 36, 0.72);
  box-shadow: 0 16px 50px rgba(2, 8, 18, 0.2);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.header-inner::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--yellow), var(--orange), transparent);
  content: "";
  opacity: 0.55;
  transform: scaleX(0.48);
  transition: transform 260ms ease, opacity 260ms ease;
}

.site-header.is-scrolled .header-inner {
  border-color: rgba(248, 250, 252, 0.2);
  background: rgba(13, 21, 36, 0.9);
  box-shadow: 0 20px 60px rgba(2, 8, 18, 0.34);
}

.site-header.is-scrolled .header-inner::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 192px;
  height: auto;
}

.site-nav {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a:not(.nav-contact) {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: 9px;
  padding: 0 15px;
  color: var(--copy);
  transition: color 160ms ease, background 160ms ease;
}

.nav-links > a:hover,
.nav-links > a[aria-current="true"] {
  color: var(--white);
}

.nav-links > a:not(.nav-contact):hover,
.nav-links > a:not(.nav-contact)[aria-current="true"] {
  background: rgba(248, 250, 252, 0.07);
}

.nav-links > a:not(.nav-contact)::after {
  position: absolute;
  right: 15px;
  bottom: 7px;
  left: 15px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links > a:not(.nav-contact)[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 203, 0, 0.35);
  border-radius: 10px;
  padding: 0 18px;
  background: linear-gradient(110deg, var(--orange), var(--amber));
  background-size: 180% 180%;
  color: var(--ink);
  animation: spectrum-shift 7s ease-in-out infinite alternate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-contact:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 96, 0, 0.26);
}

.nav-links > .nav-contact[aria-current="true"] {
  color: var(--ink);
}

.nav-links small,
.nav-links b,
.mobile-nav-intro,
.mobile-nav-footer {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px 0 76px;
  background:
    radial-gradient(circle at 82% 68%, rgba(51, 30, 84, 0.42), transparent 31%),
    radial-gradient(circle at 12% 20%, rgba(0, 83, 159, 0.16), transparent 25%),
    var(--night);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(620px circle at var(--pointer-x) var(--pointer-y), rgba(0, 149, 221, 0.16), rgba(51, 30, 84, 0.08) 38%, transparent 68%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 250, 252, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 48%, transparent);
}

.hero-orbit {
  position: absolute;
  right: -230px;
  bottom: -250px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 149, 0, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(0, 149, 221, 0.035),
    0 0 0 180px rgba(255, 203, 0, 0.022);
  animation: orbit-breathe 11s ease-in-out infinite alternate;
}

.hero-aurora {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(70px);
  mix-blend-mode: screen;
}

.hero-aurora i {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  opacity: 0.18;
  will-change: transform;
}

.hero-aurora i:nth-child(1) {
  top: -190px;
  left: 28%;
  background: var(--cyan);
  animation: aurora-one 14s ease-in-out infinite alternate;
}

.hero-aurora i:nth-child(2) {
  right: -110px;
  bottom: -170px;
  background: var(--violet);
  animation: aurora-two 17s ease-in-out infinite alternate;
}

.hero-aurora i:nth-child(3) {
  bottom: -260px;
  left: 18%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  animation: aurora-three 19s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 226px);
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.hero-content {
  min-width: 0;
}

.hero-signal {
  display: flex;
  min-height: 470px;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: 10px 24px 10px 0;
  opacity: 0;
  transform: translateX(-22px);
  animation: signal-in 750ms 250ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-signal > div {
  display: grid;
  gap: 5px;
}

.hero-signal span {
  color: var(--cyan);
}

.hero-signal strong,
.hero-signal time {
  color: var(--copy);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.hero-signal time {
  color: var(--white);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.hero-signal .signal-status {
  grid-template-columns: 8px 1fr;
  align-items: start;
  gap: 9px;
}

.signal-status i {
  width: 8px;
  height: 8px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 203, 0, 0.08), 0 0 15px rgba(255, 203, 0, 0.45);
}

.hero-kicker {
  margin: 0 0 42px;
  color: var(--cyan);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 700ms 50ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 7.8vw, 112px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(54px);
  animation: hero-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line:nth-child(2) {
  animation-delay: 100ms;
}

.hero-line:nth-child(3) {
  animation-delay: 200ms;
}

.hero-muted {
  color: var(--muted);
}

.hero-main {
  color: var(--white);
}

.hero-mark {
  display: inline-grid;
  width: 1.38em;
  height: 0.82em;
  margin: 0 0.12em;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 35%, var(--yellow), transparent 22%),
    linear-gradient(130deg, var(--orange), var(--violet) 55%, var(--cyan));
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.38em;
  font-style: normal;
  letter-spacing: 0;
  vertical-align: 0.12em;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
  background-size: 180% 180%;
  animation: spectrum-shift 6s ease-in-out infinite alternate;
}

.hero-mark:hover {
  transform: rotate(-4deg) scale(1.05);
}

.hero-footer {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) auto auto;
  align-items: end;
  gap: 42px;
  margin-top: 55px;
  opacity: 0;
  transform: translateY(32px);
  animation: hero-rise 850ms 350ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-footer > p {
  max-width: 590px;
  margin: 0;
  color: var(--copy);
  font-size: 20px;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 19px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  background: linear-gradient(110deg, var(--orange), var(--amber));
  background-size: 180% 180%;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(230, 96, 0, 0.2);
  animation: spectrum-shift 7s ease-in-out infinite alternate;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(230, 96, 0, 0.3);
}

.button-outline {
  border-color: rgba(248, 250, 252, 0.62);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--night);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--copy);
  font-size: 12px;
  white-space: nowrap;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 203, 0, 0.1), 0 0 16px rgba(255, 203, 0, 0.55);
}

.expertise-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  border-bottom: 1px solid rgba(248, 250, 252, 0.12);
  background:
    linear-gradient(90deg, rgba(0, 83, 159, 0.24), rgba(51, 30, 84, 0.34) 55%, rgba(230, 96, 0, 0.16)),
    var(--night);
  background-size: 180% 100%;
  animation: band-flow 12s ease-in-out infinite alternate;
}

.expertise-band-inner {
  display: grid;
  min-height: 96px;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.expertise-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
  background: rgba(0, 33, 71, 0.32);
}

.expertise-label > div {
  display: grid;
  gap: 7px;
}

.expertise-label .utility {
  color: var(--cyan);
}

.expertise-label small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--copy);
  font-size: 11px;
}

.expertise-label small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 11px rgba(255, 203, 0, 0.55);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.expertise-viewport {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.expertise-viewport:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -5px;
}

.expertise-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: toolkit-loop 30s linear infinite;
  will-change: transform;
}

.expertise-viewport:hover .expertise-track,
.expertise-viewport:focus .expertise-track {
  animation-play-state: paused;
}

.expertise-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
}

.expertise-band li {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: rgba(248, 250, 252, 0.78);
  font-size: 16px;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.expertise-band li::after {
  width: 5px;
  height: 5px;
  margin: 0 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--orange);
  content: "";
  box-shadow: 0 0 12px rgba(255, 149, 0, 0.35);
}

.expertise-band li:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.work {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 149, 221, 0.08), transparent 22%),
    var(--night-soft);
}

.work::before,
.services::before,
.experience::before {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  filter: blur(100px);
  opacity: 0.12;
  animation: section-color-drift 16s ease-in-out infinite alternate;
}

.work::before {
  top: 30%;
  left: -280px;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
}

.work > .shell,
.services > .shell,
.experience > .shell {
  position: relative;
  z-index: 1;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 62px;
}

.section-topline h2,
.services-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 7.8vw, 112px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.section-topline p {
  max-width: 410px;
  margin: 0 0 7px;
  color: var(--copy);
  font-size: 20px;
  line-height: 1.3;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 22px;
}

.project-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
}

.project-card-featured {
  grid-column: 1 / -1;
  width: calc((100% - 22px) / 2);
  justify-self: center;
}

.project-card-featured .project-image {
  min-height: 0;
}

.project-image {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.14);
  padding: 0;
  cursor: pointer;
  color: var(--white);
  text-align: left;
}

.project-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(300px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.28), transparent 62%);
  content: "";
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 240ms ease;
}

.project-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 33, 71, 0.62), transparent 34%, transparent 66%, rgba(0, 33, 71, 0.7));
  content: "";
}

.project-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.project-card:hover .project-screenshot,
.project-card:focus-within .project-screenshot {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.project-image:hover::before,
.project-image:focus-visible::before {
  opacity: 1;
}

.project-image-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  border: 1px solid rgba(248, 250, 252, 0.42);
  padding: 0 13px;
  background: rgba(0, 33, 71, 0.72);
  color: var(--white);
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  backdrop-filter: blur(12px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.project-image:hover .project-image-action,
.project-image:focus-visible .project-image-action {
  opacity: 1;
  transform: translateY(0);
}

.project-image:focus-visible {
  outline-offset: -5px;
}

.project-image-arrow {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 203, 0, 0.34), transparent 23%),
    linear-gradient(140deg, var(--ink), var(--orange) 58%, var(--violet));
}

.project-image-nanas {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 203, 0, 0.5), transparent 21%),
    linear-gradient(140deg, var(--violet), var(--orange) 63%, var(--amber));
}

.project-image-cm {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 149, 0, 0.4), transparent 24%),
    linear-gradient(135deg, var(--ink), var(--blue) 55%, var(--cyan));
}

.project-image-avtint {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 203, 0, 0.46), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(0, 149, 221, 0.5), transparent 28%),
    linear-gradient(135deg, var(--ink), var(--blue) 56%, var(--cyan));
}

.project-image-purple {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 203, 0, 0.46), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(0, 149, 221, 0.46), transparent 28%),
    linear-gradient(128deg, var(--violet), var(--blue) 42%, var(--orange) 78%, var(--amber));
}

.project-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 27px;
  color: rgba(248, 250, 252, 0.84);
}

.mockup {
  position: relative;
  z-index: 0;
  width: min(100%, 640px);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(10px) scale(1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .mockup,
.project-card:focus-within .mockup {
  transform: translateY(0) scale(1.04);
}

.mockup-bar {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  background: #e6ebf1;
}

.mockup-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c0cad5;
}

.mockup-bar i:first-child {
  background: var(--orange);
}

.mockup-dashboard {
  display: grid;
  grid-template-columns: 64px 1fr 0.72fr;
  grid-template-rows: 30px 310px;
}

.mockup-dashboard .mockup-bar,
.mockup-editorial .mockup-bar,
.mockup-home .mockup-bar,
.mockup-agency .mockup-bar,
.mockup-masonry .mockup-bar,
.mockup-tint .mockup-bar,
.mockup-wrap .mockup-bar {
  grid-column: 1 / -1;
}

.mockup-side {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 25px 16px;
  background: var(--ink);
}

.mockup-side b {
  height: 12px;
  margin-bottom: 16px;
  background: var(--cyan);
}

.mockup-side i {
  height: 5px;
  background: rgba(248, 250, 252, 0.38);
}

.mockup-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 35px;
}

.mockup-copy small,
.home-copy small {
  width: 58px;
  height: 7px;
  background: var(--cyan);
}

.mockup-copy b,
.home-copy b {
  width: 88%;
  height: 25px;
  margin-top: 18px;
  background: var(--ink);
}

.mockup-copy i,
.home-copy i {
  width: 70%;
  height: 7px;
  margin-top: 10px;
  background: #cbd5e1;
}

.mockup-copy i + i {
  width: 52%;
}

.mockup-copy span,
.home-copy span {
  width: 78px;
  height: 30px;
  margin-top: 23px;
  background: linear-gradient(90deg, var(--yellow), var(--amber));
}

.mockup-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--yellow), var(--amber));
}

.mockup-art i {
  position: absolute;
  width: 135px;
  height: 220px;
  bottom: 27px;
  left: 36px;
  border-radius: 80px 80px 15px 15px;
  background: var(--violet);
}

.mockup-art span {
  position: absolute;
  width: 82px;
  height: 82px;
  right: -18px;
  bottom: -18px;
  border-radius: 50%;
  background: var(--orange);
}

.mockup-editorial {
  padding-bottom: 28px;
}

.editorial-nav {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.editorial-nav b {
  width: 88px;
  height: 12px;
  background: var(--violet);
}

.editorial-nav i {
  width: 105px;
  height: 5px;
  background: #cbd5e1;
}

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  padding: 0 28px;
}

.editorial-cards > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.editorial-cards i {
  height: 150px;
  background: linear-gradient(145deg, var(--amber), var(--orange));
}

.editorial-cards > div:nth-child(2) i {
  background: linear-gradient(145deg, var(--cyan), var(--blue));
}

.editorial-cards > div:nth-child(3) i {
  background: linear-gradient(145deg, var(--yellow), var(--violet));
}

.editorial-cards b {
  width: 80%;
  height: 10px;
  margin-top: 15px;
  background: var(--ink);
}

.editorial-cards span {
  width: 100%;
  height: 5px;
  margin-top: 8px;
  background: #ccd6e2;
}

.editorial-cards span + span {
  width: 68%;
}

.mockup-home {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 30px 330px 90px;
}

.home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px;
}

.home-copy b {
  height: 32px;
}

.home-art {
  position: relative;
  margin: 25px 25px 25px 0;
  overflow: hidden;
  border-radius: 180px 180px 20px 20px;
  background: linear-gradient(145deg, var(--cyan), var(--blue) 58%, var(--violet));
}

.home-art i {
  position: absolute;
  width: 120px;
  height: 170px;
  right: 50px;
  bottom: -15px;
  border-radius: 70px 70px 10px 10px;
  background: var(--yellow);
}

.home-art span {
  position: absolute;
  width: 96px;
  height: 96px;
  left: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: var(--orange);
}

.home-tiles {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  padding: 0 30px 28px;
}

.home-tiles i {
  background: #e3e9f1;
}

.home-tiles i:nth-child(2) {
  background: linear-gradient(135deg, rgba(0, 149, 221, 0.25), rgba(255, 203, 0, 0.32));
}

.mockup-agency {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 30px 310px;
}

.agency-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
  background: #f8fafc;
}

.agency-intro small {
  width: 58px;
  height: 7px;
  background: var(--orange);
}

.agency-intro b {
  width: 86%;
  height: 25px;
  margin-top: 18px;
  background: var(--violet);
}

.agency-intro i {
  width: 70%;
  height: 7px;
  margin-top: 11px;
  background: #cbd5e1;
}

.agency-intro span {
  width: 92px;
  height: 31px;
  margin-top: 25px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 22px;
  background: var(--violet);
}

.agency-grid i {
  min-height: 90px;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
}

.agency-grid i:nth-child(2),
.agency-grid i:nth-child(3) {
  background: linear-gradient(145deg, var(--amber), var(--orange));
}

.agency-grid i:nth-child(4) {
  background: linear-gradient(145deg, var(--yellow), var(--blue));
}

.agency-orbit {
  display: none;
}

.mockup-masonry,
.mockup-tint {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 30px 285px 68px;
}

.masonry-copy,
.tint-copy,
.wrap-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  background: #f8fafc;
}

.masonry-copy small,
.tint-copy small,
.wrap-copy small {
  width: 54px;
  height: 7px;
  background: var(--orange);
}

.masonry-copy b,
.tint-copy b,
.wrap-copy b {
  width: 88%;
  height: 27px;
  margin-top: 18px;
  background: var(--ink);
}

.masonry-copy i,
.tint-copy i,
.wrap-copy i {
  width: 72%;
  height: 6px;
  margin-top: 9px;
  background: #cbd5e1;
}

.masonry-copy i + i,
.tint-copy i + i {
  width: 54%;
}

.masonry-copy span,
.tint-copy span,
.wrap-copy span {
  width: 88px;
  height: 30px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.masonry-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  padding: 24px;
  background: var(--ink);
}

.masonry-wall i {
  border: 1px solid rgba(255, 203, 0, 0.18);
  background: linear-gradient(145deg, #9d3f0c, var(--orange));
  box-shadow: inset 0 -11px 18px rgba(51, 30, 84, 0.28);
}

.masonry-wall i:nth-child(3n + 2) {
  background: linear-gradient(145deg, var(--amber), #b84c0a);
}

.masonry-wall i:nth-child(5n) {
  background: linear-gradient(145deg, var(--blue), var(--violet));
}

.masonry-strip,
.tint-specs {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 28px 20px;
  background: #f8fafc;
}

.masonry-strip i,
.tint-specs i {
  background: #e1e8f0;
}

.masonry-strip i:nth-child(2) {
  background: linear-gradient(90deg, rgba(230, 96, 0, 0.42), rgba(255, 203, 0, 0.4));
}

.tint-stage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg, transparent 0 48%, rgba(0, 149, 221, 0.3) 49% 50%, transparent 51%),
    linear-gradient(145deg, var(--ink), var(--blue));
}

.tint-stage > span {
  position: absolute;
  width: 68%;
  height: 27%;
  right: 15%;
  bottom: 28%;
  border-radius: 55% 28% 18% 20%;
  background: linear-gradient(115deg, var(--cyan), var(--blue) 48%, var(--violet));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  transform: skewX(-7deg);
}

.tint-stage > b {
  position: absolute;
  z-index: 1;
  width: 29%;
  height: 15%;
  right: 29%;
  bottom: 48%;
  border-radius: 70% 20% 0 0;
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.82), rgba(0, 149, 221, 0.32));
  transform: skewX(-16deg);
}

.tint-stage > i {
  position: absolute;
  z-index: 2;
  width: 36px;
  height: 36px;
  bottom: 21%;
  border: 8px solid #111827;
  border-radius: 50%;
  background: #dbe4ee;
}

.tint-stage > i:nth-of-type(1) {
  left: 25%;
}

.tint-stage > i:nth-of-type(2) {
  right: 22%;
}

.tint-specs i:first-child {
  background: linear-gradient(90deg, rgba(0, 149, 221, 0.4), rgba(0, 83, 159, 0.4));
}

.mockup-wrap {
  display: grid;
  width: min(100%, 960px);
  max-width: 960px;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-rows: 30px 350px 66px;
}

.wrap-stage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 0 37%, rgba(255, 203, 0, 0.86) 38% 44%, transparent 45% 54%, rgba(230, 96, 0, 0.84) 55% 61%, transparent 62%),
    linear-gradient(145deg, var(--violet), var(--blue) 58%, var(--cyan));
}

.wrap-car {
  position: absolute;
  width: 72%;
  height: 28%;
  right: 13%;
  bottom: 24%;
  border-radius: 55% 28% 18% 20%;
  background: linear-gradient(105deg, var(--yellow), var(--orange) 38%, var(--violet) 39% 58%, var(--cyan) 59%);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.38);
  transform: skewX(-7deg);
}

.wrap-car b {
  position: absolute;
  width: 42%;
  height: 54%;
  top: -42%;
  right: 24%;
  border-radius: 70% 22% 0 0;
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.88), rgba(0, 149, 221, 0.5));
}

.wrap-car span {
  position: absolute;
  inset: 8% 8% auto 8%;
  height: 7px;
  background: rgba(248, 250, 252, 0.78);
}

.wrap-car i {
  position: absolute;
  width: 42px;
  height: 42px;
  bottom: -20px;
  border: 9px solid #111827;
  border-radius: 50%;
  background: #dbe4ee;
}

.wrap-car i:first-of-type {
  left: 15%;
}

.wrap-car i:last-of-type {
  right: 15%;
}

.wrap-swatches {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.wrap-swatches i:nth-child(1) { background: var(--orange); }
.wrap-swatches i:nth-child(2) { background: var(--yellow); }
.wrap-swatches i:nth-child(3) { background: var(--cyan); }
.wrap-swatches i:nth-child(4) { background: var(--violet); }

.project-info {
  display: flex;
  min-height: 145px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}

.project-copy {
  min-width: 0;
}

.project-meta {
  display: block;
  margin-bottom: 11px;
  color: var(--cyan);
}

.project-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.project-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
}

.project-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.project-open,
.project-live {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  cursor: pointer;
  background: transparent;
  color: var(--copy);
  font-size: 16px;
  text-decoration: none;
}

.project-live {
  border-color: rgba(0, 149, 221, 0.5);
  color: var(--cyan);
}

.project-open:hover,
.project-live:hover {
  border-color: var(--orange);
  color: var(--white);
}

.project-dialog {
  width: min(1080px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--line);
  padding: 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(0, 149, 221, 0.18), transparent 24%),
    linear-gradient(140deg, var(--ink), var(--violet));
  color: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.project-dialog::backdrop {
  background: rgba(5, 9, 16, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  padding: 36px;
}

.dialog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-topline p {
  margin: 0;
  color: var(--cyan);
}

.dialog-close {
  border: 0;
  padding: 7px 0;
  cursor: pointer;
  background: transparent;
  color: var(--copy);
}

.dialog-close span {
  margin-left: 8px;
  font-size: 19px;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 75px;
  padding-top: 50px;
}

.dialog-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(39px, 5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.dialog-summary {
  margin: 25px 0 0;
  color: var(--copy);
  font-size: 17px;
}

.dialog-live-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  border: 1px solid rgba(255, 203, 0, 0.38);
  border-radius: 8px;
  padding: 0 18px;
  background: linear-gradient(110deg, var(--orange), var(--amber));
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dialog-live-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 96, 0, 0.22);
}

.dialog-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.dialog-facts > div {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-facts dt {
  color: var(--muted);
}

.dialog-facts dd {
  margin: 0;
  font-weight: 700;
}

.dialog-contribution {
  margin-top: 28px;
  padding: 24px;
  border-left: 3px solid var(--cyan);
  background: rgba(248, 250, 252, 0.06);
}

.dialog-contribution p {
  margin: 0 0 13px;
  color: var(--cyan);
}

.dialog-contribution ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
  color: var(--copy);
}

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 83, 159, 0.2), transparent 28%),
    var(--night);
}

.about::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 16%;
  left: -290px;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(135deg, var(--orange), var(--yellow) 38%, var(--cyan) 68%, var(--violet));
  content: "";
  filter: blur(120px);
  opacity: 0.13;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(450px, 1.22fr);
  align-items: center;
  gap: 100px;
}

.about-portrait {
  position: relative;
  width: min(100%, 440px);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 180px 20px 20px;
  padding: 1px;
  background: linear-gradient(145deg, var(--orange), var(--yellow) 32%, var(--cyan) 64%, var(--violet));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.portrait-image {
  position: absolute;
  inset: 1px;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 178px 18px 18px;
}

.portrait-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--copy);
  font-size: 13px;
}

.portrait-caption i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 203, 0, 0.5);
}

.about-heading > p,
.services-heading > p {
  margin: 0 0 30px;
  color: var(--cyan);
}

.about-heading h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.5vw, 76px);
  letter-spacing: -0.065em;
  line-height: 1.01;
}

.about-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--copy);
}

.about-copy .about-lede {
  color: var(--white);
  font-size: 26px;
  line-height: 1.35;
}

.about-copy > p + p {
  margin-top: 23px;
  font-size: 17px;
}

.about-meta {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.about-meta > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.about-meta span {
  color: var(--cyan);
}

.experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(0, 149, 221, 0.13), transparent 26%),
    linear-gradient(145deg, var(--night), #151d30 56%, #211c35);
}

.experience::before {
  right: -230px;
  bottom: 6%;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  animation-delay: -7s;
}

.experience-topline {
  align-items: start;
}

.experience-intro {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.experience-intro p {
  max-width: 430px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.experience-card {
  --career-accent: var(--amber);
  --career-rgb: 255, 149, 0;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px 56px 18px 18px;
  padding: 32px 32px 12px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(var(--career-rgb), 0.18), transparent 62%),
    linear-gradient(145deg, #17263b, #191c31);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.experience-card::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 96px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--career-accent), rgba(var(--career-rgb), 0.15));
  content: "";
}

.experience-card::after {
  position: absolute;
  top: -138px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(var(--career-rgb), 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(var(--career-rgb), 0.035), 0 0 0 54px rgba(var(--career-rgb), 0.025);
  pointer-events: none;
  content: "";
  transition: transform 400ms ease;
}

.experience-card > * {
  position: relative;
  z-index: 1;
}

.experience-card-current {
  border-color: rgba(var(--career-rgb), 0.42);
}

.experience-card-avoda {
  --career-accent: var(--cyan);
  --career-rgb: 0, 149, 221;
}

.experience-card-nanas {
  --career-accent: var(--yellow);
  --career-rgb: 255, 203, 0;
}

.experience-card-cm {
  --career-accent: var(--orange);
  --career-rgb: 230, 96, 0;
}

.experience-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.experience-monogram {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(var(--career-rgb), 0.42);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(var(--career-rgb), 0.24), rgba(var(--career-rgb), 0.04));
  color: var(--white);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.06em;
  transition: transform 250ms ease;
}

.experience-monogram > span {
  position: absolute;
  right: -7px;
  bottom: -5px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--career-accent);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.07em;
}

.experience-period {
  display: grid;
  justify-items: end;
  gap: 9px;
  color: var(--white);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.experience-period-label {
  color: var(--copy);
  font-size: 12px;
}

.experience-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(var(--career-rgb), 0.3);
  border-radius: 6px;
  background: rgba(var(--career-rgb), 0.1);
  color: var(--yellow);
  font-size: 11px;
}

.experience-current i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.experience-card-copy {
  min-height: 134px;
  margin-top: 32px;
}

.experience-focus {
  margin: 0 0 12px;
  color: var(--copy);
  font-size: 10px;
}

.experience-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.experience-role {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(248, 250, 252, 0.8);
  font-size: 18px;
  line-height: 1.4;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.experience-tags li {
  border: 1px solid rgba(var(--career-rgb), 0.24);
  border-radius: 5px;
  padding: 6px 10px;
  background: rgba(var(--career-rgb), 0.055);
  color: rgba(248, 250, 252, 0.8);
  font-size: 12px;
}

.experience-details {
  border-top: 1px solid var(--line);
}

.experience-details summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  list-style: none;
}

.experience-details summary::-webkit-details-marker {
  display: none;
}

.experience-expand {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(var(--career-rgb), 0.5);
  border-radius: 50%;
  background: rgba(var(--career-rgb), 0.08);
  color: var(--white);
  font-size: 23px;
  font-weight: 300;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.experience-details[open] .experience-expand {
  transform: rotate(45deg);
  background: var(--career-accent);
  color: var(--ink);
}

.experience-details-content {
  padding: 0 0 22px;
}

.experience-details[open] .experience-details-content {
  animation: experience-detail-in 280ms ease both;
}

.experience-details-content p {
  max-width: 480px;
  margin: 0 0 16px;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.55;
}

.experience-detail-note {
  color: var(--copy);
  font-size: 13px;
}

.experience-project-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--career-accent);
  padding: 0;
  cursor: pointer;
  background: none;
  color: var(--white);
  font-size: 14px;
}

.experience-card:focus-within,
.experience-card:has(.experience-details[open]) {
  border-color: rgba(var(--career-rgb), 0.65);
  box-shadow: 0 18px 44px rgba(var(--career-rgb), 0.07);
}

@media (hover: hover) {
  .experience-card:hover {
    border-color: rgba(var(--career-rgb), 0.65);
    box-shadow: 0 18px 44px rgba(var(--career-rgb), 0.09);
  }

  .experience-card:hover::after {
    transform: translate(-12px, 12px);
  }

  .experience-card:hover .experience-monogram {
    transform: translateY(-4px) rotate(-3deg);
  }

  .experience-details summary:hover .experience-expand {
    background: var(--career-accent);
    color: var(--ink);
  }
}

@keyframes experience-detail-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 15%, rgba(230, 96, 0, 0.1), transparent 22%),
    var(--night-soft);
}

.services::before {
  top: 12%;
  right: -250px;
  background: linear-gradient(135deg, var(--yellow), var(--violet), var(--cyan));
  animation-delay: -4s;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(620px, 1.32fr);
  align-items: start;
  gap: 76px;
}

.services-heading {
  position: sticky;
  top: 130px;
}

.services-intro {
  max-width: 370px;
  margin: 28px 0 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.45;
}

.services-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
}

.services-availability i,
.service-panel-footer i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 203, 0, 0.55);
}

.service-explorer {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(420px circle at var(--service-x, 82%) var(--service-y, 18%), rgba(0, 149, 221, 0.14), transparent 58%),
    linear-gradient(145deg, rgba(0, 83, 159, 0.16), rgba(51, 30, 84, 0.22)),
    #141e31;
  box-shadow: 0 34px 80px rgba(4, 8, 16, 0.34);
}

.service-explorer::after {
  position: absolute;
  height: 3px;
  inset: auto 0 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--cyan), var(--violet));
  content: "";
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 8, 16, 0.18);
}

.service-tab {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 100px;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(248, 250, 252, 0.3);
  border-radius: 9px;
  padding: 16px;
  cursor: pointer;
  background: linear-gradient(145deg, rgba(0, 149, 221, 0.1), rgba(248, 250, 252, 0.04));
  box-shadow: 0 3px 0 rgba(4, 8, 16, 0.4), inset 0 1px 0 rgba(248, 250, 252, 0.07);
  color: var(--white);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.service-tab strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-tab-action {
  color: rgba(248, 250, 252, 0.8);
  font-size: 12px;
  font-weight: 500;
}

.service-tab-action > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.service-tab-action i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(248, 250, 252, 0.3);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
  transition: transform 180ms ease;
}

.service-tab-action .service-tab-selected,
.service-tab[aria-selected="true"] .service-tab-idle {
  display: none;
}

.service-tab[aria-selected="true"] .service-tab-selected {
  display: flex;
}

.service-tab[aria-selected="true"] {
  border-color: var(--yellow);
  background: linear-gradient(120deg, var(--amber), var(--yellow));
  box-shadow: 0 3px 0 rgba(230, 96, 0, 0.5), 0 7px 24px rgba(255, 149, 0, 0.12);
  color: var(--ink);
}

.service-tab[aria-selected="true"] .service-tab-action {
  color: var(--ink);
}

.service-tab[aria-selected="true"] .service-tab-action i {
  border-color: rgba(0, 33, 71, 0.3);
  background: rgba(0, 33, 71, 0.08);
}

@media (hover: hover) {
  .service-tab:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: 0 6px 0 rgba(4, 8, 16, 0.3), 0 8px 24px rgba(0, 149, 221, 0.15);
  }

  .service-tab:hover .service-tab-idle i {
    transform: translateX(2px);
  }

  .service-tab[aria-selected="true"]:hover {
    border-color: var(--yellow);
  }
}

.service-tab:active {
  transform: translateY(1px);
  box-shadow: none;
}

.service-tab:focus-visible {
  z-index: 2;
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.service-panels {
  position: relative;
}

.service-panel {
  min-height: 500px;
  padding: 42px;
  animation: service-panel-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-panel[hidden] {
  display: none;
}

.service-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.service-panel-top .utility {
  color: var(--cyan);
}

.service-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 52px;
  padding: 46px 0 42px;
}

.service-panel h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.service-panel-layout > div:first-child > p {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.45;
}

.service-includes {
  padding: 24px;
  border-left: 2px solid var(--cyan);
  background: rgba(248, 250, 252, 0.045);
}

.service-includes .utility {
  margin: 0;
  color: var(--cyan);
}

.service-includes ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-includes li {
  position: relative;
  padding-left: 18px;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.4;
}

.service-includes li::before {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  content: "";
}

.service-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.service-panel-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.service-panel-footer a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 203, 0, 0.38);
  border-radius: 8px;
  padding: 0 17px;
  background: linear-gradient(110deg, var(--orange), var(--amber));
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-panel-footer a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 96, 0, 0.22);
}

@keyframes service-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  padding: 125px 0;
  background:
    radial-gradient(circle at 83% 72%, rgba(51, 30, 84, 0.64), transparent 31%),
    linear-gradient(120deg, var(--ink), #073361 60%, var(--night));
}

.contact-glow {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--blue), var(--cyan), var(--yellow), var(--orange), var(--violet), var(--blue));
  opacity: 0.16;
  filter: blur(65px);
  animation: contact-spectrum 13s ease-in-out infinite alternate;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 76px;
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy > .utility {
  margin: 0;
  color: var(--cyan);
}

.contact h2 {
  margin: 45px 0 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.contact h2 span {
  color: var(--copy);
}

.contact-intro {
  max-width: 420px;
  margin: 30px 0 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.6;
}

.contact-direct {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-direct > p {
  margin: 0 0 18px;
  color: var(--copy);
  font-size: 10px;
}

.contact-links {
  display: grid;
  gap: 14px;
  color: var(--copy);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.contact-links a:first-child {
  color: var(--white);
}

.contact-links a > span {
  margin-left: 8px;
  color: var(--amber);
}

.contact-links a:hover {
  color: var(--yellow);
}

.contact-form-shell {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(0, 33, 71, 0.85));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.contact-form-shell::before {
  position: absolute;
  top: -1px;
  left: 34px;
  width: 118px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--cyan));
  content: "";
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading .utility {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 10px;
}

.contact-form-heading h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.contact-form-heading > p:last-child {
  margin: 10px 0 0;
  color: var(--copy);
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form[hidden],
.contact-form-status[hidden] {
  display: none;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  min-width: 0;
}

.contact-field > label,
.contact-services legend {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.contact-field > label > span {
  color: var(--yellow);
}

.contact-field input,
.contact-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 1px solid rgba(248, 250, 252, 0.25);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(0, 33, 71, 0.45);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  caret-color: var(--yellow);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(248, 250, 252, 0.52);
}

.contact-field input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--cyan);
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(0, 149, 221, 0.1);
}

.contact-field [aria-invalid="true"] {
  border-color: var(--amber);
}

.contact-services {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-services legend {
  padding: 0;
}

.contact-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-choice {
  position: relative;
  cursor: pointer;
}

.contact-choice > span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(248, 250, 252, 0.25);
  border-radius: 7px;
  padding: 8px 12px;
  background: rgba(248, 250, 252, 0.035);
  color: var(--copy);
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-choice:hover > span {
  border-color: var(--cyan);
  color: var(--white);
}

.contact-choice input:checked + span {
  border-color: var(--amber);
  background: linear-gradient(120deg, var(--amber), var(--yellow));
  color: var(--ink);
}

.contact-choice input:checked + span::before {
  content: "✓";
}

.contact-choice input:focus-visible + span {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.contact-field-error {
  margin: 8px 0 0;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1.5;
}

.contact-field-error:empty {
  display: none;
}

.contact-message-hint {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--copy);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.contact-submit {
  width: 100%;
  justify-content: space-between;
  border: 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-note,
.contact-form-status {
  margin: -10px 0 0;
  color: var(--copy);
  font-size: 12px;
  line-height: 1.6;
}

.contact-form-status {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  margin: 0;
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: 9px;
  padding: 15px;
  background: rgba(248, 250, 252, 0.05);
  color: var(--copy);
  animation: experience-detail-in 220ms ease both;
}

.contact-status-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 600;
}

.contact-form-status[data-state="sending"] .contact-status-mark::before {
  content: "…";
}

.contact-form-status[data-state="success"] {
  border-color: rgba(0, 149, 221, 0.58);
  background: rgba(0, 149, 221, 0.1);
}

.contact-form-status[data-state="success"] .contact-status-mark::before {
  content: "✓";
}

.contact-form-status[data-state="error"],
.contact-form-status[data-state="validation"],
.contact-form-status[data-state="setup"] {
  border-color: rgba(255, 149, 0, 0.62);
  background: rgba(230, 96, 0, 0.1);
}

.contact-form-status[data-state="error"] .contact-status-mark,
.contact-form-status[data-state="validation"] .contact-status-mark,
.contact-form-status[data-state="setup"] .contact-status-mark {
  color: var(--amber);
}

.contact-form-status[data-state="error"] .contact-status-mark::before {
  content: "!";
}

.contact-form-status[data-state="validation"] .contact-status-mark::before {
  content: "↑";
}

.contact-form-status[data-state="setup"] .contact-status-mark::before {
  content: "1";
}

.contact-form-status strong,
.contact-form-status [data-contact-status-detail] {
  display: block;
}

.contact-form-status strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.contact-form-status [data-contact-status-detail] {
  margin-top: 3px;
}

.contact-form-status a {
  display: inline-block;
  margin-top: 8px;
  color: var(--yellow);
  font-weight: 500;
}

.contact-form-status a[hidden] {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--ink);
}

.site-footer .brand {
  width: 158px;
}

.site-footer .brand-logo {
  width: 100%;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(64px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signal-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes nav-link-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toolkit-loop {
  to {
    transform: translateX(-50%);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes spectrum-shift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes band-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes orbit-breathe {
  from {
    transform: translate3d(0, 0, 0) scale(0.96) rotate(0deg);
  }
  to {
    transform: translate3d(-28px, -20px, 0) scale(1.05) rotate(8deg);
  }
}

@keyframes aurora-one {
  from {
    transform: translate3d(-8%, -5%, 0) scale(0.88);
  }
  to {
    transform: translate3d(38%, 35%, 0) scale(1.18);
  }
}

@keyframes aurora-two {
  from {
    transform: translate3d(10%, 8%, 0) scale(0.9);
  }
  to {
    transform: translate3d(-45%, -28%, 0) scale(1.2);
  }
}

@keyframes aurora-three {
  from {
    transform: translate3d(-12%, 10%, 0) scale(0.9);
  }
  to {
    transform: translate3d(48%, -34%, 0) scale(1.08);
  }
}

@keyframes section-color-drift {
  from {
    transform: translate3d(-6%, -8%, 0) scale(0.9);
  }
  to {
    transform: translate3d(26%, 24%, 0) scale(1.2);
  }
}

@keyframes contact-spectrum {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.94);
  }
  to {
    transform: translate3d(-55px, -36px, 0) rotate(24deg) scale(1.12);
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(940px, calc(100vw - 56px));
  }

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

  .hero-inner {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 30px;
  }

  .hero-signal {
    min-height: 430px;
    padding-right: 18px;
  }

  .availability {
    grid-column: 1 / -1;
  }

  .project-image {
    min-height: 0;
    padding: 0;
  }

  .project-card-featured .project-image {
    min-height: 0;
  }

  .mockup-dashboard {
    grid-template-columns: 52px 1fr 0.72fr;
    grid-template-rows: 30px 270px;
  }

  .mockup-copy {
    padding: 25px;
  }

  .mockup-art i {
    width: 105px;
    height: 180px;
    left: 25px;
  }

  .about-layout,
  .services-layout {
    gap: 60px;
  }

}

@media (max-width: 820px) {
  :root {
    --shell: min(700px, calc(100vw - 36px));
  }

  .header-inner {
    min-height: 64px;
    padding: 7px 8px;
    backdrop-filter: none;
  }

  .site-header {
    inset: 8px 0 auto;
  }

  .site-header .brand-logo {
    width: 156px;
  }

  .site-header .brand {
    position: relative;
    z-index: 102;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 250, 252, 0.45);
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    background:
      linear-gradient(135deg, rgba(0, 83, 159, 0.2), rgba(51, 30, 84, 0.28)),
      rgba(248, 250, 252, 0.04);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .menu-toggle i {
    position: relative;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: background 160ms ease;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    right: 0;
    height: 2px;
    background: currentColor;
    content: "";
    transition: top 180ms ease, width 180ms ease, transform 180ms ease;
  }

  .menu-toggle i::before {
    top: -6px;
    width: 14px;
  }

  .menu-toggle i::after {
    top: 6px;
    width: 17px;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(0, 149, 221, 0.72);
    background: rgba(0, 33, 71, 0.72);
  }

  .menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] i::before,
  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    width: 20px;
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 22px;
    overflow-y: auto;
    padding: 112px max(22px, calc((100vw - 700px) / 2)) 28px;
    background:
      linear-gradient(rgba(248, 250, 252, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(248, 250, 252, 0.025) 1px, transparent 1px),
      radial-gradient(circle at 92% 12%, rgba(0, 149, 221, 0.22), transparent 30%),
      radial-gradient(circle at 8% 90%, rgba(230, 96, 0, 0.14), transparent 28%),
      linear-gradient(145deg, #0c1729, #121a35 52%, #241846);
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(1.01);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .header-inner {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .header-inner::after {
    opacity: 0;
  }

  .mobile-nav-intro {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .mobile-nav-intro .utility {
    color: var(--cyan);
    font-size: 10px;
  }

  .mobile-nav-intro strong {
    font-family: var(--display);
    font-size: clamp(25px, 5.4vw, 34px);
    font-weight: 400;
    letter-spacing: -0.025em;
  }

  .nav-links {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 9px;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .nav-links > a,
  .nav-links > .nav-contact {
    position: relative;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(248, 250, 252, 0.14);
    border-radius: 14px;
    padding: 10px 16px 10px 20px;
    background: rgba(248, 250, 252, 0.045);
    color: var(--white);
    font-family: var(--display);
    font-size: 27px;
    line-height: 1;
    opacity: 0;
    transform: translateY(16px);
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  }

  .nav-links > a::before {
    position: absolute;
    inset: 13px auto 13px 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--cyan);
    content: "";
  }

  .nav-links > a:nth-child(2)::before {
    background: var(--blue);
  }

  .nav-links > a:nth-child(3)::before {
    background: var(--violet);
  }

  .nav-links > a:nth-child(4)::before {
    background: var(--yellow);
  }

  .nav-links > a:not(.nav-contact)::after {
    display: none;
  }

  .nav-links > a > span {
    display: grid;
    gap: 5px;
  }

  .nav-links small,
  .nav-links b {
    display: block;
  }

  .nav-links small {
    color: var(--muted);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .nav-links b {
    color: var(--cyan);
    font-family: var(--body);
    font-size: 17px;
    font-weight: 400;
  }

  .nav-links > a:hover,
  .nav-links > a[aria-current="true"] {
    border-color: rgba(0, 149, 221, 0.55);
    background: rgba(0, 149, 221, 0.1);
    transform: translateX(3px);
  }

  .nav-links > .nav-contact {
    min-height: 70px;
    margin-top: 5px;
    border-color: rgba(255, 203, 0, 0.38);
    background: linear-gradient(110deg, var(--orange), var(--amber));
    color: var(--ink);
  }

  .nav-links > .nav-contact::before {
    display: none;
  }

  .nav-links > .nav-contact small {
    color: rgba(0, 33, 71, 0.7);
  }

  .nav-links > .nav-contact b {
    color: var(--ink);
  }

  .site-nav.is-open .nav-links > a {
    animation: nav-link-in 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .site-nav.is-open .nav-links > a:nth-child(2) { animation-delay: 45ms; }
  .site-nav.is-open .nav-links > a:nth-child(3) { animation-delay: 90ms; }
  .site-nav.is-open .nav-links > a:nth-child(4) { animation-delay: 135ms; }
  .site-nav.is-open .nav-links > a:nth-child(5) { animation-delay: 180ms; }

  .mobile-nav-footer {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 620px);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-inline: auto;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-nav-footer a {
    color: var(--copy);
  }

  .hero {
    padding-top: 125px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 201px);
    gap: 34px;
  }

  .hero-content {
    order: 1;
  }

  .hero-signal {
    order: 2;
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: auto;
    gap: 18px;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    padding: 24px 0 0;
  }

  .hero h1 {
    font-size: clamp(54px, 10vw, 78px);
  }

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

  .hero-actions {
    justify-self: start;
  }

  .availability {
    grid-column: auto;
  }

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

  .project-card-featured {
    grid-column: auto;
    width: 100%;
  }

  .project-card-featured .project-image {
    min-height: 0;
  }

  .about-layout,
  .services-layout,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 420px);
    justify-self: center;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .services-heading {
    position: static;
  }

  .service-panel {
    min-height: 0;
    padding: 36px;
  }

  .service-panel-layout {
    gap: 34px;
  }

  .dialog-layout {
    gap: 45px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 78px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-kicker {
    margin-bottom: 31px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 1.02;
  }

  .hero-mark {
    width: 1.28em;
  }

  .hero-footer {
    gap: 25px;
    margin-top: 42px;
  }

  .hero-footer > p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .availability {
    white-space: normal;
  }

  .section-topline {
    display: grid;
    gap: 22px;
    margin-bottom: 40px;
  }

  .section-topline h2,
  .services-heading h2 {
    font-size: 58px;
  }

  .project-grid {
    gap: 50px;
  }

  .project-image {
    min-height: 0;
    padding: 0;
  }

  .project-card-featured .project-image {
    min-height: 0;
  }

  .mockup-dashboard {
    grid-template-columns: 40px 1fr 0.68fr;
    grid-template-rows: 26px 205px;
  }

  .mockup-bar {
    height: 26px;
  }

  .mockup-side {
    padding: 16px 9px;
  }

  .mockup-copy {
    padding: 16px;
  }

  .mockup-copy b,
  .home-copy b {
    height: 18px;
  }

  .mockup-art i {
    width: 76px;
    height: 130px;
    left: 14px;
  }

  .editorial-nav {
    height: 47px;
    padding: 0 16px;
  }

  .editorial-cards {
    gap: 6px;
    padding: 0 16px;
  }

  .editorial-cards i {
    height: 95px;
  }

  .mockup-home {
    grid-template-rows: 26px 190px 60px;
  }

  .mockup-masonry,
  .mockup-tint {
    grid-template-rows: 26px 205px 50px;
  }

  .masonry-copy,
  .tint-copy,
  .wrap-copy {
    padding: 16px;
  }

  .masonry-copy b,
  .tint-copy b,
  .wrap-copy b {
    height: 18px;
  }

  .masonry-copy span,
  .tint-copy span,
  .wrap-copy span {
    width: 62px;
    height: 24px;
    margin-top: 14px;
  }

  .masonry-wall {
    gap: 3px;
    padding: 12px;
  }

  .masonry-strip,
  .tint-specs {
    gap: 6px;
    padding: 8px 16px 14px;
  }

  .tint-stage > i {
    width: 26px;
    height: 26px;
    border-width: 6px;
  }

  .mockup-wrap {
    grid-template-columns: 0.78fr 1.22fr;
    grid-template-rows: 26px 220px 48px;
  }

  .wrap-car i {
    width: 27px;
    height: 27px;
    bottom: -13px;
    border-width: 6px;
  }

  .home-copy {
    padding: 20px;
  }

  .home-art {
    margin: 14px 14px 14px 0;
  }

  .home-art i {
    width: 65px;
    height: 100px;
    right: 18px;
  }

  .home-tiles {
    padding: 0 16px 18px;
  }

  .project-info {
    display: grid;
    min-height: 0;
    gap: 13px;
  }

  .project-badge {
    top: 14px;
    left: 14px;
  }

  .project-info h3 {
    font-size: 22px;
  }

  .project-image-action {
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding-inline: 10px;
    opacity: 1;
    transform: none;
  }

  .project-meta {
    margin-bottom: 9px;
  }

  .project-open {
    width: max-content;
  }

  .project-actions {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .project-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .dialog-shell {
    padding: 22px;
  }

  .dialog-layout {
    padding-top: 34px;
  }

  .dialog-layout h2 {
    font-size: 38px;
  }

  .dialog-summary {
    font-size: 15px;
  }

  .dialog-facts > div {
    grid-template-columns: 58px 1fr;
  }

  .dialog-contribution {
    padding: 20px;
  }

  .about-heading h2 {
    font-size: 39px;
  }

  .portrait-frame {
    border-radius: 130px 16px 16px;
  }

  .portrait-image {
    border-radius: 128px 14px 14px;
  }

  .about-copy .about-lede {
    font-size: 21px;
  }

  .about-meta > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .services-layout {
    gap: 45px;
  }

  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .service-tab {
    min-height: 94px;
    padding: 14px;
  }

  .service-panel {
    padding: 24px;
  }

  .service-panel-top {
    display: grid;
    gap: 8px;
  }

  .service-panel-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 30px;
  }

  .service-panel h3 {
    font-size: 36px;
  }

  .service-panel-layout > div:first-child > p {
    font-size: 17px;
  }

  .service-panel-footer {
    display: grid;
    align-items: start;
  }

  .service-panel-footer a {
    width: 100%;
    justify-content: space-between;
  }

  .experience-card {
    border-radius: 14px 42px 14px 14px;
    padding: 24px 22px 8px;
  }

  .experience-card-copy {
    min-height: 0;
    margin-top: 28px;
  }

  .experience-monogram {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .experience-card h3 {
    font-size: 27px;
  }

  .experience-role {
    font-size: 16px;
  }

  .experience-tags {
    gap: 6px;
  }

  .experience-tags li {
    padding: 6px 8px;
    font-size: 11px;
  }

  .mockup-agency {
    grid-template-rows: 26px 205px;
  }

  .agency-intro {
    padding: 17px;
  }

  .agency-intro b {
    height: 18px;
  }

  .agency-grid {
    gap: 5px;
    padding: 12px;
  }

  .agency-grid i {
    min-height: 62px;
  }

  .hero-signal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .hero-signal > div {
    min-width: 0;
  }

  .expertise-band-inner {
    min-height: 132px;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 0;
  }

  .expertise-label {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    background: transparent;
  }

  .expertise-viewport,
  .expertise-track {
    min-height: 66px;
  }

  .expertise-band li {
    font-size: 14px;
  }

  .contact {
    min-height: 610px;
    padding: 90px 0;
  }

  .contact h2 {
    margin-top: 36px;
    font-size: clamp(44px, 12vw, 52px);
  }

  .contact-direct {
    margin-top: 32px;
  }

  .contact-links {
    font-size: 14px;
  }

  .contact-form-shell {
    padding: 26px 20px;
    border-radius: 14px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-heading h3 {
    font-size: 27px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .mockup,
  .hero-mark,
  .service-list article,
  .experience-monogram,
  .experience-card::after {
    transform: none !important;
  }

  .hero-kicker,
  .hero-line,
  .hero-footer,
  .hero-signal,
  html.motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .expertise-track {
    animation: none !important;
    transform: none !important;
  }

  .expertise-group[aria-hidden="true"] {
    display: none;
  }
}
