:root {
  --background: #fafafa;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #0052ff;
  --accent-secondary: #4d7cff;
  --accent-foreground: #ffffff;
  --border: #e2e8f0;
  --card: #ffffff;
  --ring: #0052ff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 18px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.1);
  --shadow-accent: 0 8px 24px rgba(0, 82, 255, 0.24);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 82, 255, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 2%, rgba(77, 124, 255, 0.08), transparent 26rem),
    var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--container));
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 18px;
  background: rgba(250, 250, 250, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, var(--accent), var(--accent-secondary));
  box-shadow: var(--shadow-accent);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted-foreground);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 600;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(0, 82, 255, 0.08);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--foreground);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

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

.hero {
  min-height: calc(100dvh - 86px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 54px;
  padding: 92px 0 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid rgba(0, 82, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 82, 255, 0.06);
  padding: 9px 16px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label.inverted {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  animation: pulseDot 2s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero h1,
.detail-hero h1 {
  margin-bottom: 24px;
  font-family: "Calistoga", Georgia, serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Calistoga", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted-foreground);
  font-size: 17px;
  line-height: 1.78;
}

.hero-copy p,
.detail-copy p {
  max-width: 680px;
  font-size: 19px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: var(--accent-foreground);
  box-shadow: var(--shadow-sm);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--foreground);
}

.button-secondary:hover {
  border-color: rgba(0, 82, 255, 0.28);
  background: var(--card);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0;
}

.hero-metrics div {
  border-left: 1px solid var(--border);
  padding-left: 18px;
}

.hero-metrics dt {
  color: var(--foreground);
  font-family: "JetBrains Mono", monospace;
  font-size: 26px;
  font-weight: 500;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.orbital-ring {
  position: absolute;
  inset: 16px 4px auto auto;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(0, 82, 255, 0.28);
  border-radius: 50%;
  animation: slowSpin 60s linear infinite;
}

.plot-board {
  position: absolute;
  inset: 60px 0 auto auto;
  width: min(100%, 520px);
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 82, 255, 0.09), transparent 20rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.plot-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  color: var(--muted-foreground);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.plot-header strong {
  color: var(--accent);
  font-weight: 500;
}

.mechanism-svg {
  width: 100%;
  height: auto;
}

.floating-note {
  position: absolute;
  width: 230px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  padding: 18px;
  backdrop-filter: blur(14px);
  animation: floatY 5s ease-in-out infinite;
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-foreground);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 16px;
}

.note-one {
  top: 12px;
  left: 0;
}

.note-two {
  right: 18px;
  bottom: 26px;
  animation-duration: 4.4s;
}

.trusted-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.54);
}

.strip-inner {
  width: min(calc(100% - 40px), var(--container));
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  overflow: auto;
  white-space: nowrap;
}

.strip-inner span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.strip-inner strong {
  color: var(--foreground);
  font-size: 15px;
}

.services,
.process,
.showcase,
.detail-layout,
.case-section,
.faq-section {
  padding: 132px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading .section-label,
.showcase-copy .section-label,
.content-panel .section-label {
  margin-bottom: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 255, 0.22);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-wide {
  grid-row: span 2;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 75% 18%, rgba(0, 82, 255, 0.14), transparent 18rem),
    var(--card);
}

.icon-tile {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.icon-tile svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.service-card-dark {
  background:
    radial-gradient(circle at 90% 10%, rgba(77, 124, 255, 0.22), transparent 12rem),
    var(--foreground);
  color: #fff;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-secondary);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 82, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 80%, rgba(77, 124, 255, 0.14), transparent 24rem),
    var(--foreground);
  color: #fff;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.03;
  pointer-events: none;
}

.stats-section,
.article-band {
  position: relative;
  padding: 120px 0;
}

.dark-section h2,
.dark-section p {
  color: #fff;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.74);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.stats-grid div {
  min-height: 190px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.56);
}

.stats-grid span {
  display: block;
  margin-bottom: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 36px;
  color: #fff;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.55), transparent);
}

.process-step {
  position: relative;
  padding-top: 82px;
}

.process-step span {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #fff;
  box-shadow: var(--shadow-accent);
  font-family: "JetBrains Mono", monospace;
}

.showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.showcase-board {
  border-top: 1px solid var(--border);
}

.discipline-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.discipline-row span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.discipline-row strong {
  font-size: 22px;
}

.cta-section {
  padding: 96px 0;
  background: var(--foreground);
  color: #fff;
}

.cta-inner {
  width: min(calc(100% - 40px), var(--container));
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  margin: 0 auto;
}

.cta-inner h2 {
  max-width: 720px;
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label span {
  font-weight: 700;
}

.contact-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  padding: 0 14px;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form small {
  color: rgba(255, 255, 255, 0.54);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  min-height: 28px;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.form-message.is-error {
  color: #fecaca;
}

.form-message.is-success {
  color: #bfdbfe;
}

.site-footer {
  width: min(calc(100% - 40px), var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 30px 0;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.site-footer a {
  color: var(--accent);
  font-weight: 700;
}

.detail-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 82px 0 70px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 700;
}

.detail-summary,
.content-panel,
.spec-panel,
.case-visual,
.case-notes article,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.detail-summary {
  padding: 34px;
  background:
    radial-gradient(circle at 86% 0%, rgba(0, 82, 255, 0.13), transparent 18rem),
    var(--card);
}

.clean-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--muted-foreground);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
}

.content-panel {
  padding: 40px;
}

.deliverable-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--border);
}

.deliverable-list div {
  display: grid;
  grid-template-columns: 70px 180px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  padding: 24px;
}

.deliverable-list span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
}

.deliverable-list h3,
.deliverable-list p {
  margin: 0;
}

.spec-panel {
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 112px;
}

.spec-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-panel dl div {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.spec-panel dt {
  color: var(--foreground);
  font-weight: 800;
}

.spec-panel dd {
  margin: 6px 0 0;
  color: var(--muted-foreground);
}

.article-band {
  max-width: 850px;
  margin: 0 auto;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.case-visual {
  padding: 16px;
  overflow: hidden;
}

.case-visual svg {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.case-notes {
  display: grid;
  gap: 16px;
}

.case-notes article {
  padding: 28px;
}

.case-notes span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.case-notes p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 110ms;
}

.delay-2 {
  animation-delay: 220ms;
}

.delay-3 {
  animation-delay: 330ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.66;
    transform: scale(1.35);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 980px) {
  .hero,
  .detail-hero,
  .showcase,
  .detail-layout,
  .case-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .plot-board {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

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

  .service-card-wide {
    min-height: 360px;
  }

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

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

  .spec-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .section-shell,
  .cta-inner,
  .site-footer {
    width: calc(100% - 28px);
  }

  h1,
  .hero h1,
  .detail-hero h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  p,
  .hero-copy p,
  .detail-copy p {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 64px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics,
  .stats-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 14px 0 0;
  }

  .hero-visual {
    display: none;
  }

  .services,
  .process,
  .showcase,
  .detail-layout,
  .case-section,
  .faq-section {
    padding: 86px 0;
  }

  .service-card,
  .content-panel,
  .detail-summary,
  .spec-panel,
  .case-notes article {
    padding: 24px;
  }

  .discipline-row,
  .deliverable-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-section,
  .stats-section,
  .article-band {
    padding: 76px 0;
  }

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