:root {
  --navy-950: #071421;
  --navy-900: #0a1b2e;
  --navy-800: #102a45;
  --navy-700: #183c5f;
  --sky-100: #dff6ff;
  --sky-200: #bceaff;
  --sky-300: #8ed8f8;
  --orange-500: #ff6b1a;
  --orange-600: #e8530b;
  --cream: #fff9ee;
  --paper: #ffffff;
  --ink: #0a1b2e;
  --muted: #496174;
  --line: rgba(10, 27, 46, 0.16);
  --line-bright: rgba(142, 216, 248, 0.34);
  --green: #6fc34a;
  --pink: #f68fb4;
  --shadow-soft: 0 24px 70px rgba(7, 20, 33, 0.13);
  --shadow-card: 0 14px 0 rgba(7, 20, 33, 0.08);
  --shadow-pixel: 5px 5px 0 #071421;
  --radius: 26px;
  --radius-small: 16px;
  --max: 1180px;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --pixel: "Pixelify Sans", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(142, 216, 248, 0.24), transparent 26rem),
    linear-gradient(180deg, #fafdff, var(--cream));
  font: 16px/1.7 var(--sans);
  font-optical-sizing: auto;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
}

p,
li {
  letter-spacing: -0.006em;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

::selection {
  color: #fff;
  background: var(--orange-500);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  font-weight: 900;
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 780px);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3.2rem, 6vw, 5.5rem) 0;
}

.surface-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 107, 26, 0.17), transparent 28rem),
    linear-gradient(150deg, var(--navy-900), var(--navy-950));
}

.surface-sky {
  background:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(160deg, var(--sky-100), var(--sky-300));
  background-size: 32px 32px, 32px 32px, auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 20, 33, 0.1);
  background: rgba(250, 253, 255, 0.9);
  backdrop-filter: blur(15px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 253, 255, 0.97);
  box-shadow: 0 12px 36px rgba(7, 20, 33, 0.09);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 2px solid var(--navy-950);
  border-radius: 14px;
  box-shadow: 3px 3px 0 rgba(7, 20, 33, 0.16);
}

.brand-word {
  letter-spacing: -0.04em;
  font-family: var(--pixel);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1;
}

.brand-word span {
  color: var(--orange-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}

.nav-links a {
  position: relative;
  min-height: 42px;
  padding: 0.62rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #314b5f;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  transform: translateY(-2px);
  color: var(--navy-950);
  border-color: rgba(10, 27, 46, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(223, 246, 255, 0.72));
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 14px rgba(7, 20, 33, 0.09);
}

.nav-links .nav-cta {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  margin-left: 0.45rem;
  padding-inline: 1.1rem;
  color: var(--navy-950);
  border: 2px solid var(--navy-950);
  border-radius: 10px;
  background: var(--orange-500);
  box-shadow: 4px 4px 0 var(--navy-950);
  font-family: var(--pixel);
  letter-spacing: 0.02em;
}

.nav-links .nav-cta:hover {
  transform: translate(2px, 2px);
  color: var(--navy-950);
  background: var(--orange-600);
  box-shadow: 2px 2px 0 var(--navy-950);
}

.menu-button {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  color: var(--navy-950);
  border: 2px solid var(--navy-950);
  border-radius: 10px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--navy-950);
  font-weight: 900;
}

.menu-icon {
  display: grid;
  width: 21px;
  gap: 4px;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button.is-open .menu-icon span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.is-open .menu-icon span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.page-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: var(--page-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange-500), var(--sky-300));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 8vw, 8.2rem) 0 clamp(4rem, 7vw, 7rem);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 3rem;
  right: max(2rem, calc((100vw - var(--max)) / 2));
  width: 13px;
  height: 13px;
  background: var(--orange-500);
  box-shadow:
    90px 78px 0 #fff,
    -38px 160px 0 var(--navy-900),
    160px 220px 0 var(--green);
  image-rendering: pixelated;
}

.hero::after {
  right: -7rem;
  bottom: -8rem;
  width: 25rem;
  height: 25rem;
  border: 42px solid rgba(255, 107, 26, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-600);
  font-family: var(--pixel);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 860px;
  margin: 0;
  letter-spacing: -0.055em;
  font-size: clamp(3.35rem, 7.4vw, 7rem);
  line-height: 0.93;
}

.hero h1 .pixel-line,
.page-hero h1 .pixel-line {
  display: block;
  color: var(--orange-500);
  font-family: var(--pixel);
  letter-spacing: -0.035em;
  font-size: 0.88em;
}

.lead {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.76rem 1.25rem;
  color: var(--navy-950);
  border: 2px solid var(--navy-950);
  border-radius: 10px;
  background: linear-gradient(180deg, #ff8442, var(--orange-500));
  box-shadow: var(--shadow-pixel);
  font-family: var(--pixel);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.brand img {
  object-fit: cover;
  background: var(--navy-950);
  image-rendering: pixelated;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    3px 3px 0 rgba(7, 20, 33, 0.18),
    0 8px 18px rgba(7, 20, 33, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.brand:hover img {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    2px 2px 0 rgba(7, 20, 33, 0.18),
    0 10px 22px rgba(7, 20, 33, 0.14);
  transform: translateY(-2px) rotate(-1deg);
}

.button::after,
.nav-links .nav-cta::after {
  position: absolute;
  inset: 1px 1px auto;
  height: 42%;
  pointer-events: none;
  content: "";
  border-radius: 7px 7px 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
}

.button:hover {
  transform: translate(3px, 3px);
  background: linear-gradient(180deg, #f56d26, var(--orange-600));
  box-shadow: 2px 2px 0 var(--navy-950);
}

.button.secondary {
  color: var(--navy-950);
  background: #fff;
}

.button.secondary:hover {
  background: var(--sky-100);
}

.button.dark {
  color: #fff;
  background: var(--navy-900);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--navy-800);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.45rem;
  color: #3d586b;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  box-shadow: 2px 2px 0 var(--navy-900);
}

.hero-art {
  position: relative;
  padding: 0.7rem;
  border: 2px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    11px 11px 0 var(--navy-950),
    var(--shadow-soft);
  transform: rotate(1deg);
  transition: transform 220ms ease;
}

.hero-art:hover {
  transform: rotate(0) translateY(-4px);
}

.hero-art picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
}

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

.pixel-tag {
  position: absolute;
  z-index: 3;
  top: -1.1rem;
  right: 1.3rem;
  padding: 0.48rem 0.72rem;
  color: var(--navy-950);
  border: 2px solid var(--navy-950);
  background: var(--sky-200);
  box-shadow: 4px 4px 0 var(--navy-950);
  font-family: var(--pixel);
  font-size: 0.78rem;
  font-weight: 800;
  transform: rotate(2deg);
}

.service-ribbon {
  position: relative;
  z-index: 4;
  border-block: 2px solid var(--navy-950);
  color: #fff;
  background: var(--navy-900);
}

.service-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.ribbon-item {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 0.3rem;
  padding: 1.3rem 0.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.ribbon-item:last-child {
  border-right: 0;
}

.ribbon-item:hover {
  z-index: 2;
  background: rgba(142, 216, 248, 0.09);
  transform: translateY(-4px);
}

.ribbon-icon,
.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(142, 216, 248, 0.12);
  box-shadow: 3px 3px 0 var(--orange-500);
  font-size: 1.45rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.ui-icon {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
  transition: transform 180ms ease;
}

.icon-search { --icon-url: url("/assets/icons/search.svg"); }
.icon-megaphone { --icon-url: url("/assets/icons/megaphone.svg"); }
.icon-page-edit { --icon-url: url("/assets/icons/page-edit.svg"); }
.icon-stats-report { --icon-url: url("/assets/icons/stats-report.svg"); }
.icon-community { --icon-url: url("/assets/icons/community.svg"); }
.icon-web-window { --icon-url: url("/assets/icons/web-window.svg"); }
.icon-network { --icon-url: url("/assets/icons/network.svg"); }
.icon-archery { --icon-url: url("/assets/icons/archery.svg"); }
.icon-graph-up { --icon-url: url("/assets/icons/graph-up.svg"); }
.icon-design-pencil { --icon-url: url("/assets/icons/design-pencil.svg"); }
.icon-dashboard { --icon-url: url("/assets/icons/dashboard.svg"); }
.icon-infinite { --icon-url: url("/assets/icons/infinite.svg"); }
.icon-book { --icon-url: url("/assets/icons/book.svg"); }
.icon-reports { --icon-url: url("/assets/icons/reports.svg"); }

.ribbon-item:hover .ui-icon,
.card:hover .ui-icon {
  transform: scale(1.12) rotate(-4deg);
}

.ribbon-item:hover .ribbon-icon {
  background: rgba(142, 216, 248, 0.2);
  box-shadow: 5px 5px 0 var(--orange-500);
  transform: translate(-2px, -2px);
}

.ribbon-item strong {
  font-family: var(--pixel);
  font-size: 0.9rem;
}

.ribbon-item span {
  color: #b9d1e4;
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  max-width: 830px;
  gap: 0.9rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.content h2 {
  margin: 0;
  letter-spacing: -0.04em;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.section-heading.center p {
  margin-inline: auto;
}

.kicker {
  color: var(--orange-600);
  font-family: var(--pixel);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 246, 255, 0.48));
  box-shadow:
    inset 0 1px 0 #fff,
    var(--shadow-card);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 0 36%,
    rgba(255, 255, 255, 0.62) 48%,
    transparent 60%
  );
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 220ms ease,
    transform 600ms ease;
}

.card::after {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  content: "";
  border: 18px solid rgba(255, 107, 26, 0.08);
  border-radius: 50%;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.35);
  box-shadow:
    inset 0 1px 0 #fff,
    0 24px 45px rgba(7, 20, 33, 0.13);
}

.card:hover::before {
  opacity: 0.7;
  transform: translateX(45%);
}

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

.card .service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.15rem;
  color: var(--navy-950);
  border-color: var(--navy-950);
  background: var(--orange-500);
  box-shadow: 4px 4px 0 var(--navy-950);
}

.card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
  font-size: 1.42rem;
  line-height: 1.12;
}

.card p {
  position: relative;
  z-index: 2;
  margin: 0 0 1rem;
  color: var(--muted);
}

.card ul,
.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.3rem;
  padding: 0;
  list-style: none;
}

.card li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #29475d;
  font-size: 0.9rem;
  font-weight: 700;
}

.card li::before,
.check-list li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  box-shadow: 2px 2px 0 var(--navy-900);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.signal-panel {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  color: #fff;
  border: 2px solid var(--navy-950);
  border-radius: 24px;
  background: var(--navy-900);
  box-shadow: 9px 9px 0 var(--orange-500);
}

.signal-panel h3 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
}

.signal-panel p {
  margin: 1rem 0 0;
  color: #c5d9e8;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.signal {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.signal:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 216, 248, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.signal strong {
  display: block;
  color: var(--sky-200);
  font-family: var(--pixel);
  font-size: 1rem;
}

.signal span {
  display: block;
  margin-top: 0.3rem;
  color: #a9c4d6;
  font-size: 0.78rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(7, 20, 33, 0.08);
  counter-increment: process;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: 0 20px 36px rgba(7, 20, 33, 0.12);
}

.process-step::before {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 1rem;
  content: counter(process, decimal-leading-zero);
  color: var(--navy-950);
  border: 2px solid var(--navy-950);
  background: var(--orange-500);
  box-shadow: 3px 3px 0 var(--navy-950);
  font-family: var(--pixel);
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 0.45rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.work-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.work-card,
.insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 20, 33, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.work-card:hover,
.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 26, 0.42);
  box-shadow: 0 25px 48px rgba(7, 20, 33, 0.14);
}

.work-visual {
  display: grid;
  min-height: 190px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(145deg, var(--sky-300), #5ea9db);
  background-size: 22px 22px, 22px 22px, auto;
}

.work-visual.orange {
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(145deg, #ff9256, var(--orange-500));
  background-size: 22px 22px, 22px 22px, auto;
}

.work-visual.dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--navy-900);
  background-size: 22px 22px;
}

.pixel-scene {
  position: relative;
  display: grid;
  width: 116px;
  height: 92px;
  place-items: center;
  color: var(--navy-950);
  border: 4px solid var(--navy-950);
  background: #fff;
  box-shadow: 8px 8px 0 rgba(7, 20, 33, 0.35);
  font-family: var(--pixel);
  font-size: 2rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.pixel-scene .ui-icon {
  position: relative;
  z-index: 2;
  width: 2.65rem;
  height: 2.65rem;
}

.work-card:hover .pixel-scene,
.insight-card:hover .pixel-scene {
  box-shadow: 11px 11px 0 rgba(7, 20, 33, 0.42);
  transform: translate(-2px, -3px) rotate(-1deg);
}

.work-card:hover .pixel-scene .ui-icon,
.insight-card:hover .pixel-scene .ui-icon {
  transform: scale(1.12) rotate(4deg);
}

.pixel-scene::before,
.pixel-scene::after {
  position: absolute;
  content: "";
  background: var(--green);
}

.pixel-scene::before {
  bottom: 10px;
  left: 15px;
  width: 12px;
  height: 24px;
  box-shadow:
    20px -10px 0 var(--orange-500),
    40px -28px 0 var(--sky-300),
    60px -46px 0 var(--green);
}

.pixel-scene::after {
  top: -12px;
  right: -12px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--navy-950);
  background: var(--orange-500);
}

.work-body,
.insight-body {
  padding: 1.35rem;
}

.work-body h3,
.insight-body h2,
.insight-body h3 {
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.work-body p,
.insight-body p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 0.8rem;
}

.tag {
  padding: 0.25rem 0.52rem;
  color: var(--navy-800);
  border: 1px solid rgba(10, 27, 46, 0.14);
  border-radius: 999px;
  background: var(--sky-100);
  font-size: 0.69rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  border: 2px solid var(--navy-950);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(142, 216, 248, 0.18), transparent 16rem),
    var(--navy-900);
  box-shadow: 10px 10px 0 var(--orange-500);
}

.cta-band::after {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  content: "";
  border: 28px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 700px;
  margin: 0;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
}

.cta-band p {
  max-width: 650px;
  margin: 0.9rem 0 0;
  color: #bdd4e5;
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(160deg, var(--sky-100), #f8fdff);
  background-size: 34px 34px, 34px 34px, auto;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.breadcrumbs {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.breadcrumbs a {
  text-underline-offset: 3px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.content {
  min-width: 0;
}

.content > * + * {
  margin-top: 1.2rem;
}

.content h2 {
  margin-top: 3.5rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.content h3 {
  margin-top: 2.2rem;
  letter-spacing: -0.025em;
  font-size: 1.45rem;
  line-height: 1.18;
}

.content p,
.content li {
  color: #345064;
  line-height: 1.76;
}

.content blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--orange-500);
  border-radius: 0 14px 14px 0;
  background: var(--sky-100);
  font-size: 1.05rem;
  font-weight: 750;
}

.service-aside {
  position: sticky;
  top: 7rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.service-aside h2,
.service-aside h3 {
  margin-top: 0;
}

.service-aside .button {
  width: 100%;
  margin-top: 1rem;
}

.definition {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(223, 246, 255, 0.62);
}

.definition strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange-600);
  font-family: var(--pixel);
}

.comparison {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.comparison th,
.comparison td {
  padding: 0.9rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: #fff;
  background: var(--navy-900);
}

.comparison th:last-child,
.comparison td:last-child {
  border-right: 0;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 20, 33, 0.06);
}

.faq summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.1rem;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "+";
  color: var(--navy-950);
  border: 1px solid var(--navy-950);
  background: var(--sky-200);
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
  background: var(--orange-500);
}

.faq details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.profile-card {
  position: sticky;
  top: 7rem;
  padding: 0.7rem;
  border: 2px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 9px 9px 0 var(--orange-500);
}

.profile-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 220ms ease;
}

.profile-card picture {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--sky-100);
}

.profile-card:hover img {
  transform: scale(1.015);
}

.profile-card figcaption {
  padding: 1rem 0.5rem 0.45rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-form {
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    inset 0 1px 0 #fff,
    var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-800);
  font-size: 0.83rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  color: var(--navy-950);
  border: 1px solid rgba(10, 27, 46, 0.22);
  border-radius: 10px;
  background: #fff;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-500);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.4em;
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-status:empty {
  min-height: 0;
  margin-top: 0;
}

.form-status[data-state="error"] {
  color: #a02d21;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.mini-panel {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(7, 20, 33, 0.07);
}

.mini-panel h2,
.mini-panel h3 {
  margin: 0 0 0.5rem;
}

.mini-panel p {
  margin: 0;
  color: var(--muted);
}

.mini-panel.dark {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 6px 6px 0 var(--orange-500);
}

.mini-panel.dark p {
  color: #bdd4e5;
}

.legal {
  color: var(--muted);
  font-size: 0.86rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: center;
  gap: 3rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.article-aside {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.share-row a {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  position: relative;
  color: #d7e7f2;
  border-top: 5px solid var(--orange-500);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 280px;
  margin: 1rem 0 0;
  color: #9fbbce;
}

.footer-column h2 {
  margin: 0 0 0.8rem;
  color: var(--orange-500);
  font-family: var(--pixel);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 0.45rem;
}

.footer-column a {
  color: #c5d9e8;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8eacbf;
  font-size: 0.76rem;
}

.footer-bottom a {
  color: #c7deec;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 550ms ease var(--reveal-delay, 0ms),
    transform 550ms ease var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.back-to-top {
  position: fixed;
  z-index: 70;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  border: 2px solid var(--navy-950);
  border-radius: 9px;
  background: var(--orange-500);
  box-shadow: 4px 4px 0 var(--navy-950);
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.back-to-top::before {
  content: "↑";
  font-family: var(--pixel);
  font-size: 1.25rem;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    max-height: calc(100vh - 7rem);
    overflow: auto;
    padding: 0.75rem;
    border: 2px solid var(--navy-950);
    border-radius: 16px;
    background: #fff;
    box-shadow: 7px 7px 0 var(--navy-950);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    padding: 0.78rem 0.9rem;
  }

  .nav-links .nav-cta {
    margin: 0.35rem 0 0;
  }

  .hero-grid,
  .split,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 760px;
  }

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

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

  .ribbon-item:nth-child(3) {
    border-right: 0;
  }

  .ribbon-item:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .work-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .service-aside,
  .profile-card,
  .article-aside {
    position: static;
  }

  .profile-card {
    max-width: 430px;
  }

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

@media (max-width: 640px) {
  .wrap,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .brand-word {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    padding: 0.38rem;
    border-radius: 17px;
    box-shadow: 7px 7px 0 var(--navy-950);
  }

  .hero-art picture {
    border-radius: 11px;
  }

  .pixel-tag {
    right: 0.7rem;
    font-size: 0.68rem;
  }

  .service-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ribbon-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .ribbon-item:nth-child(2n) {
    border-right: 0;
  }

  .ribbon-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cards,
  .process,
  .work-grid,
  .insight-grid,
  .signal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .section-heading h2,
  .content h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .cta-grid {
    display: grid;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .page-progress,
  .back-to-top,
  .button-row,
  .hero-actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 1.5rem 0;
  }
}

/* Component polish layer
   Keeps every card, pill, badge, and action on one visual hierarchy. */
:root {
  --line-soft: rgba(10, 27, 46, 0.11);
  --line-strong: rgba(10, 27, 46, 0.24);
  --surface-card: linear-gradient(145deg, #ffffff 0%, #fbfdff 58%, #edf9ff 100%);
  --surface-panel: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.88));
  --shadow-xs: 0 1px 2px rgba(7, 20, 33, 0.06), 0 6px 16px rgba(7, 20, 33, 0.05);
  --shadow-sm: 0 2px 4px rgba(7, 20, 33, 0.06), 0 12px 28px rgba(7, 20, 33, 0.08);
  --shadow-md: 0 3px 8px rgba(7, 20, 33, 0.07), 0 20px 44px rgba(7, 20, 33, 0.1);
  --shadow-lift: 0 6px 14px rgba(7, 20, 33, 0.08), 0 28px 56px rgba(7, 20, 33, 0.14);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
}

button,
.button,
.nav-links a,
.text-link,
.share-row a,
.faq summary {
  touch-action: manipulation;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

.button {
  min-height: 50px;
  padding-inline: 1.3rem;
  border-radius: var(--radius-xs);
  box-shadow:
    4px 4px 0 var(--navy-950),
    0 8px 18px rgba(7, 20, 33, 0.12);
  transform: translate(0, 0);
}

.button::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.32) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 160ms ease,
    transform 360ms ease;
}

.button > * {
  position: relative;
  z-index: 2;
}

.button:hover {
  box-shadow:
    2px 2px 0 var(--navy-950),
    0 6px 14px rgba(7, 20, 33, 0.12);
  transform: translate(2px, 2px);
}

.button:hover::before {
  opacity: 0.8;
  transform: translateX(45%);
}

.button:active {
  box-shadow: 1px 1px 0 var(--navy-950);
  transform: translate(3px, 3px);
}

.button.secondary {
  background: linear-gradient(180deg, #fff, #f2faff);
}

.button.dark {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
}

.eyebrow,
.kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.62rem 0.31rem;
  border: 1px solid rgba(232, 83, 11, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 237, 224, 0.84));
  box-shadow:
    inset 0 1px 0 #fff,
    0 5px 14px rgba(232, 83, 11, 0.07);
  line-height: 1.2;
}

.eyebrow::before,
.kicker::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  border: 1px solid var(--navy-950);
  background: var(--orange-500);
  box-shadow: 1px 1px 0 var(--navy-950);
}

.section-heading.center .kicker {
  justify-self: center;
}

.hero-proof {
  gap: 0.55rem;
}

.hero-proof span,
.article-meta span {
  min-height: 32px;
  padding: 0.34rem 0.62rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 #fff,
    0 5px 14px rgba(7, 20, 33, 0.05);
}

.pixel-tag {
  border-radius: 7px;
  background: linear-gradient(180deg, #dff6ff, var(--sky-200));
  box-shadow:
    4px 4px 0 var(--navy-950),
    0 10px 22px rgba(7, 20, 33, 0.14);
}

.card,
.process-step,
.work-card,
.insight-card,
.service-aside,
.mini-panel,
.contact-form,
.definition,
.faq details {
  border-color: var(--line-soft);
  background: var(--surface-card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    var(--shadow-sm);
}

.card,
.work-card,
.insight-card {
  min-width: 0;
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.card::after {
  top: -3.2rem;
  right: -3.2rem;
  border-color: rgba(255, 107, 26, 0.065);
}

.card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.card:hover,
.card:focus-within,
.process-step:hover,
.process-step:focus-within,
.work-card:hover,
.work-card:focus-within,
.insight-card:hover,
.insight-card:focus-within {
  border-color: rgba(255, 107, 26, 0.36);
  box-shadow:
    inset 0 1px 0 #fff,
    0 0 0 1px rgba(255, 107, 26, 0.08),
    var(--shadow-lift);
  transform: translateY(-5px);
}

.card .service-icon,
.ribbon-icon,
.service-icon {
  border-radius: var(--radius-xs);
  box-shadow:
    4px 4px 0 var(--navy-950),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.card .service-icon {
  position: relative;
  overflow: hidden;
}

.card .service-icon::after {
  position: absolute;
  inset: 1px 1px auto;
  height: 45%;
  content: "";
  border-radius: 8px 8px 55% 55%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent);
}

.card .service-icon .ui-icon {
  position: relative;
  z-index: 2;
}

.process-step {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.process-step::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95));
}

.process-step::before {
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8a4a, var(--orange-500));
  box-shadow:
    3px 3px 0 var(--navy-950),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.work-card,
.insight-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.work-visual {
  border-bottom-color: var(--line-soft);
}

.work-body,
.insight-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem;
}

.work-body .text-link,
.insight-body .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.tag-row {
  gap: 0.48rem;
}

.tag {
  position: relative;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 0.36rem;
  padding: 0.27rem 0.58rem;
  border-color: rgba(10, 27, 46, 0.13);
  background: linear-gradient(180deg, #f7fdff, var(--sky-100));
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 10px rgba(7, 20, 33, 0.05);
  line-height: 1;
}

.tag::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 1px 1px 0 rgba(7, 20, 33, 0.38);
}

.signal-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 0, rgba(142, 216, 248, 0.13), transparent 14rem),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow:
    8px 8px 0 var(--orange-500),
    var(--shadow-md);
}

.signal {
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.signal:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.service-aside,
.mini-panel,
.contact-form,
.definition {
  border-radius: var(--radius-md);
  background: var(--surface-panel);
}

.service-aside,
.article-aside .mini-panel {
  overflow: hidden;
  position: relative;
}

.service-aside::before,
.mini-panel:not(.dark)::before,
.contact-form::before {
  position: absolute;
  top: 0;
  right: 1rem;
  left: 1rem;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.service-aside {
  padding: 1.5rem;
}

.mini-panel {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mini-panel:hover,
.mini-panel:focus-within {
  border-color: rgba(255, 107, 26, 0.25);
  box-shadow:
    inset 0 1px 0 #fff,
    var(--shadow-md);
  transform: translateY(-2px);
}

.mini-panel.dark {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 100% 0, rgba(142, 216, 248, 0.13), transparent 10rem),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow:
    5px 5px 0 var(--orange-500),
    var(--shadow-sm);
}

.definition {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--sky-300);
}

.definition::after {
  position: absolute;
  top: -1.6rem;
  right: -1.4rem;
  width: 4.6rem;
  height: 4.6rem;
  content: "";
  border: 12px solid rgba(142, 216, 248, 0.18);
  border-radius: 50%;
}

.faq {
  gap: 0.85rem;
}

.faq details {
  border-radius: var(--radius-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq details:hover,
.faq details:focus-within,
.faq details[open] {
  border-color: rgba(255, 107, 26, 0.3);
  box-shadow:
    inset 0 1px 0 #fff,
    var(--shadow-md);
}

.faq details[open] {
  transform: translateY(-1px);
}

.faq summary {
  min-height: 54px;
  padding: 1rem 3.5rem 1rem 1.15rem;
}

.faq summary::after {
  width: 28px;
  height: 28px;
  right: 1.1rem;
  border: 2px solid var(--navy-950);
  border-radius: 8px;
  box-shadow: 2px 2px 0 rgba(7, 20, 33, 0.22);
  font-family: var(--pixel);
  font-size: 1rem;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(2deg);
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.field {
  min-width: 0;
}

.field label {
  transition: color 150ms ease;
}

.field:focus-within label {
  color: var(--orange-600);
}

.field input,
.field select,
.field textarea {
  border-color: var(--line-strong);
  border-radius: var(--radius-xs);
  box-shadow:
    inset 0 1px 2px rgba(7, 20, 33, 0.04),
    0 1px 0 #fff;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(10, 27, 46, 0.38);
}

.profile-card {
  overflow: hidden;
  background: var(--surface-card);
  box-shadow:
    8px 8px 0 var(--orange-500),
    var(--shadow-md);
}

.comparison {
  border-color: var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison th {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
}

.share-row a {
  position: relative;
  min-height: 36px;
  padding: 0.48rem 0.72rem;
  border-color: var(--line-soft);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #edf9ff);
  box-shadow:
    inset 0 1px 0 #fff,
    var(--shadow-xs);
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    transform 150ms ease;
}

.share-row a:hover {
  color: var(--navy-950);
  border-color: rgba(255, 107, 26, 0.38);
  background: linear-gradient(180deg, #fff, #fff1e7);
  transform: translateY(-2px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.breadcrumbs a {
  border-radius: 5px;
  transition:
    color 150ms ease,
    background 150ms ease;
}

.breadcrumbs a:hover {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.72);
}

@media (hover: none) {
  .card:hover,
  .process-step:hover,
  .work-card:hover,
  .insight-card:hover,
  .mini-panel:hover,
  .signal:hover,
  .share-row a:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .card,
  .work-card,
  .insight-card,
  .contact-form,
  .service-aside,
  .mini-panel {
    border-radius: var(--radius-md);
  }

  .card {
    padding: 1.3rem;
  }

  .work-body,
  .insight-body {
    padding: 1.2rem;
  }

  .eyebrow,
  .kicker {
    font-size: 0.7rem;
  }

  .hero-proof span {
    width: 100%;
  }

  .pixel-tag {
    max-width: calc(100% - 1.4rem);
  }

  .faq summary {
    padding-left: 1rem;
  }

  .profile-card,
  .signal-panel {
    box-shadow:
      6px 6px 0 var(--orange-500),
      var(--shadow-sm);
  }
}
