/* VisionWeb Software Solution — Technical Blueprint design system */

:root {
  --purple: #37105a;
  --purple-deep: #24073c;
  --purple-soft: #6b4e8a;
  --gold: #ffc000;
  --gold-ink: #4a3200;
  --paper: #f6f4f7;
  --paper-raised: #ffffff;
  --line: #e4dcec;
  --line-strong: #c9b8da;
  --ink: #1c1030;
  --ink-soft: #5b4e6e;
  --max-width: 1180px;
  --side-padding: 28px;
  --section-padding: 76px;
  --header-height: 72px;
  --transition: 150ms ease;
  --transition-hover: 200ms ease;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration: 0.6s;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}

a:hover {
  color: var(--purple-soft);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

/* Typography */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

/* Heading emphasis — wrap key words in <em> */
h1 em,
h2 em,
h3 em {
  font-style: normal;
  font-weight: 800;
  color: var(--purple);
  background-image: linear-gradient(
    to top,
    rgba(255, 192, 0, 0.45) 0.42em,
    transparent 0.42em
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.06em;
  margin-inline: -0.06em;
}

.lede {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0;
}

blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-raised);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}

blockquote p {
  margin: 0;
}

.section {
  padding-block: var(--section-padding);
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
}

.section-header--center .lede {
  margin-inline: auto;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background-color var(--transition-hover),
    color var(--transition-hover),
    border-color var(--transition-hover),
    transform var(--transition-hover);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--purple);
  color: var(--paper-raised);
  border-color: var(--purple);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--purple-soft);
  color: var(--purple-deep);
  background-color: var(--paper-raised);
}

.btn-gold {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--paper-raised);
  color: var(--purple);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-group--center {
  justify-content: center;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition-hover), background-color var(--transition-hover);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(55, 16, 90, 0.06), 0 8px 24px rgba(28, 16, 48, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-height);
}

.logo {
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 2px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--purple);
}

.site-nav a.is-current {
  color: var(--purple);
  background: rgba(55, 16, 90, 0.08);
}

.header-cta {
  flex-shrink: 0;
}

/* Hero */

.hero {
  padding-block: calc(var(--section-padding) + 1rem) var(--section-padding);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-stage {
  position: relative;
}

.hero-terminal-wrap {
  position: relative;
  padding-top: 4.35rem;
  overflow: visible;
}

/* V-bot behind terminal — slides up once the terminal expands */
.monitor-bot {
  --bot-line: 0;
  --bot-progress: 0;
  position: absolute;
  top: 0;
  right: 0.15rem;
  z-index: 0;
  width: 7.25rem;
  color: var(--purple);
  pointer-events: none;
  opacity: 0;
  transform: translateY(52%);
  transition:
    opacity 0.55s var(--motion-ease),
    transform 0.75s cubic-bezier(0.22, 1.15, 0.36, 1);
}

.hero-terminal-wrap.is-bot-visible .monitor-bot {
  opacity: 1;
  transform: translateY(0);
  animation: bot-settle 0.85s cubic-bezier(0.22, 1.15, 0.36, 1) both;
}

@keyframes bot-settle {
  0% {
    opacity: 0;
    transform: translateY(58%);
  }

  55% {
    opacity: 1;
    transform: translateY(-4%);
  }

  78% {
    transform: translateY(2%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.monitor-bot__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9));
}

.monitor-bot__brand-v {
  stroke: var(--gold);
}

.monitor-bot__eyes {
  transform-origin: 48px 19.2px;
  transform: translateX(calc((var(--bot-progress) - 0.5) * 4px));
  transition: transform 0.12s ease-out;
}

.monitor-bot.is-typing .monitor-bot__arm--l,
.monitor-bot.is-typing .monitor-bot__arm--r {
  animation: bot-grip-pulse 0.55s ease-in-out infinite alternate;
}

.monitor-bot.is-typing .monitor-bot__grip--l {
  animation: bot-grip-l 0.55s ease-in-out infinite alternate;
}

.monitor-bot.is-typing .monitor-bot__grip--r {
  animation: bot-grip-r 0.55s ease-in-out infinite alternate;
}

.monitor-bot__eye-closed {
  display: none;
  stroke: var(--gold);
}

.monitor-bot.is-erasing .monitor-bot__eye {
  display: none;
}

.monitor-bot.is-erasing .monitor-bot__eye-closed {
  display: block;
}

.monitor-bot.is-erasing .monitor-bot__eyes {
  transform: none;
  transition: none;
}

.monitor-bot.is-erasing .monitor-bot__arm--l,
.monitor-bot.is-erasing .monitor-bot__arm--r,
.monitor-bot.is-erasing .monitor-bot__grip--l,
.monitor-bot.is-erasing .monitor-bot__grip--r {
  animation: none;
}

.monitor-bot__antenna {
  fill: var(--gold);
  stroke: var(--purple);
  animation: monitor-bot-blink 2.4s step-end infinite;
}

.monitor-bot__antenna:nth-of-type(2) {
  animation-delay: 0.35s;
}

.monitor-bot__eye {
  fill: var(--gold);
}

.monitor-bot.is-typing .monitor-bot__eye--l,
.monitor-bot.is-typing .monitor-bot__eye--r {
  animation: monitor-bot-blink 2.8s step-end infinite;
}

@keyframes bot-grip-pulse {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.82;
  }
}

@keyframes bot-grip-l {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-1px, 1px);
  }
}

@keyframes bot-grip-r {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(1px, 1px);
  }
}

@keyframes monitor-bot-blink {
  0%,
  92%,
  100% {
    opacity: 1;
  }

  94%,
  96% {
    opacity: 0.15;
  }
}

.hero-copy .lede {
  margin-top: 0.5rem;
}

/* Schematic panel */

.schematic-panel {
  position: relative;
  padding: 1.75rem;
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}

.schematic-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.schematic-panel__status {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}

.schematic-panel__cursor {
  animation: schematic-cursor-blink 1s step-end infinite;
}

/* Realtime black terminal */
.schematic-panel--terminal {
  --term-bg: #0a0a0c;
  --term-fg: #c8f5c0;
  --term-dim: #5a8f55;
  --term-accent: var(--gold);
  --term-border: #2a2a32;
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 0;
  background: var(--term-bg);
  border: 1px solid var(--term-border);
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(255, 192, 0, 0.08),
    0 18px 40px rgba(10, 10, 12, 0.35),
    inset 0 0 60px rgba(0, 0, 0, 0.45);
  color: var(--term-fg);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--motion-ease),
    transform 0.4s var(--motion-ease);
}

.schematic-panel--terminal .schematic-panel__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  background: #141418;
  border-bottom: 1px solid var(--term-border);
  border-radius: 6px 6px 0 0;
}

.schematic-panel--terminal .schematic-panel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.schematic-panel--terminal .schematic-panel__dot--r {
  background: #ff5f57;
}

.schematic-panel--terminal .schematic-panel__dot--y {
  background: #febc2e;
}

.schematic-panel--terminal .schematic-panel__dot--g {
  background: #28c840;
}

.schematic-panel--terminal .schematic-panel__chrome-title {
  margin-left: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: #8a8a96;
}

.schematic-panel--terminal .schematic-panel__header {
  margin: 0;
  padding: 0.85rem 1.15rem 0.65rem;
  border-bottom: 1px dashed rgba(90, 143, 85, 0.35);
  color: var(--term-dim);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.75rem;
}

.schematic-panel--terminal.is-booting .schematic-panel__header {
  margin-bottom: 0;
  padding-bottom: 0.85rem;
  border-bottom-color: transparent;
}

.schematic-panel--terminal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.schematic-panel--terminal .schematic-panel__prompt-line {
  color: var(--term-accent);
}

.schematic-panel--terminal .schematic-panel__status {
  color: var(--term-dim);
}

.schematic-panel--terminal .schematic-panel__status.is-loading .schematic-panel__status-text,
.schematic-panel--terminal .schematic-panel__status.is-boot .schematic-panel__status-text,
.schematic-panel--terminal .schematic-panel__status.is-erasing .schematic-panel__status-text {
  color: var(--term-dim);
}

.schematic-panel--terminal .schematic-panel__status.is-ready .schematic-panel__status-text {
  color: var(--term-accent);
}

.schematic-panel--terminal .schematic-panel__cursor {
  color: var(--term-accent);
}

.schematic-panel--terminal .schematic-panel__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.75s var(--motion-ease);
}

.schematic-panel--terminal.is-open .schematic-panel__body {
  grid-template-rows: 1fr;
}

.schematic-panel--terminal.is-open .schematic-panel__header {
  margin-bottom: 0;
  padding-bottom: 0.65rem;
  border-bottom-color: rgba(90, 143, 85, 0.35);
  transition:
    padding-bottom 0.5s var(--motion-ease),
    border-bottom-color 0.4s ease;
}

.schematic-panel--terminal .schematic-panel__body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0.35rem 1.15rem 1.1rem;
}

.schematic-panel--terminal .schematic-panel__boot-line {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--term-dim);
}

.schematic-panel--terminal .schematic-panel__coords {
  opacity: 0;
  transform: translateY(6px);
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(90, 143, 85, 0.35);
  color: var(--term-dim);
  transition:
    opacity 0.4s ease,
    transform 0.4s var(--motion-ease);
}

.schematic-panel--terminal.is-open.is-filled .schematic-panel__coords {
  opacity: 1;
  transform: translateY(0);
}

.schematic-panel--terminal .schematic-panel__list li {
  min-height: 1.85rem;
  gap: 0.55rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(90, 143, 85, 0.2);
  color: var(--term-fg);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.schematic-panel--terminal .schematic-panel__list li:last-child {
  border-bottom: none;
}

.schematic-panel--terminal .schematic-panel__prompt {
  flex-shrink: 0;
  color: var(--term-accent);
}

.schematic-panel--terminal .schematic-panel__num {
  color: var(--term-dim);
  width: 1.5rem;
}

.schematic-panel--terminal .schematic-panel__list li.is-waiting {
  opacity: 0.28;
}

.schematic-panel--terminal .schematic-panel__list li.is-active {
  opacity: 1;
}

.schematic-panel--terminal .schematic-panel__list li.is-active .schematic-panel__num,
.schematic-panel--terminal .schematic-panel__list li.is-active .schematic-panel__prompt {
  color: var(--term-accent);
}

.schematic-panel--terminal .schematic-panel__list li.is-active .schematic-panel__text {
  color: #eaffea;
  text-shadow: 0 0 10px rgba(200, 245, 192, 0.35);
}

.schematic-panel--terminal .schematic-panel__list li.is-done .schematic-panel__num {
  color: var(--term-fg);
}

.schematic-panel--terminal .schematic-panel__list li.is-erasing .schematic-panel__num {
  color: var(--term-dim);
}

.schematic-panel--terminal .schematic-panel__text::after {
  content: none;
}

.schematic-panel--terminal .schematic-panel__list li.is-active .schematic-panel__text::after,
.schematic-panel--terminal .schematic-panel__list li.is-erasing .schematic-panel__text::after {
  content: "▮";
  margin-left: 1px;
  color: var(--term-accent);
  animation: schematic-cursor-blink 1s step-end infinite;
}

.schematic-panel--terminal .schematic-panel__scanline {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 6px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.18) 2px,
      rgba(0, 0, 0, 0.18) 4px
    ),
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0.7;
}

.schematic-panel--terminal .schematic-panel__chrome,
.schematic-panel--terminal .schematic-panel__header,
.schematic-panel--terminal .schematic-panel__body {
  position: relative;
  z-index: 1;
}

@keyframes schematic-cursor-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.schematic-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schematic-panel__list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink);
}

.schematic-panel__list li:last-child {
  border-bottom: none;
}

.schematic-panel__num {
  flex-shrink: 0;
  width: 1.75rem;
  color: var(--purple-soft);
}

.schematic-panel__coords {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--purple-soft);
}

/* Grids */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Shared schematic panel cards */

.panel-card,
.culture-card,
.service-card,
.card,
.testimonial-card,
.bracket-card,
.office-card,
.form-panel {
  position: relative;
  background-color: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  transition:
    border-color var(--transition-hover),
    transform var(--transition-hover);
}

.panel-card:hover,
.culture-card:hover,
.service-card:hover,
.card:hover,
.testimonial-card:hover,
.bracket-card:hover,
.office-card:hover {
  border-color: var(--purple-soft);
  transform: translateY(-3px);
}

.panel-card__meta,
.culture-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-card__num,
.culture-card__num {
  color: var(--paper-raised);
  background: var(--line-strong);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
  transition:
    background-color var(--transition-hover),
    color var(--transition-hover);
}

.panel-card:hover .panel-card__num,
.culture-card:hover .culture-card__num {
  color: var(--gold-ink);
  background: var(--gold);
}

.panel-card__tag,
.culture-card__tag {
  color: var(--purple-soft);
}

.panel-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-soft);
  opacity: 0.55;
  transition: opacity var(--transition-hover);
}

.panel-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.panel-card:hover .panel-card__icon {
  opacity: 0.85;
}

.panel-card__action {
  align-self: flex-start;
  margin-top: auto;
}

/* Culture — expand-on-scroll schematic cards */

.culture {
  position: relative;
  overflow: visible;
}

.culture .section-header {
  margin-bottom: 2.75rem;
}

.culture .section-header .lede {
  margin-top: 0.85rem;
}

.culture-card {
  padding: 1.15rem 1.35rem;
  background-image: none;
  transition:
    border-color var(--transition-hover),
    transform var(--transition-hover),
    padding 0.55s var(--motion-ease);
}

.culture-card.is-open {
  padding: 1.5rem 1.5rem 1.6rem;
}

.culture-card__meta {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px dashed transparent;
  transition:
    margin-bottom 0.45s var(--motion-ease),
    padding-bottom 0.45s var(--motion-ease),
    border-bottom-color 0.45s ease;
}

.culture-card.is-open .culture-card__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom-color: var(--line);
}

.culture-card__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    grid-template-rows 0.65s var(--motion-ease),
    opacity 0.45s ease,
    transform 0.55s var(--motion-ease);
}

.culture-card.is-open .culture-card__body {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateX(0);
}

.culture-card__body-inner {
  overflow: hidden;
  min-height: 0;
}

.culture-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.culture-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

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

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

/* Services — dual-pane console */

.services .section-header {
  margin-bottom: 2.75rem;
}

.services .section-header .lede {
  margin-top: 0.85rem;
}

.services-console.panel-card {
  overflow: hidden;
  padding: 0;
}

.services-console.panel-card:hover {
  transform: none;
}

.services-console__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  background: rgba(55, 16, 90, 0.04);
  border-bottom: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
  transition: border-bottom-color 0.35s ease;
}

.services-console.is-open .services-console__chrome {
  border-bottom-color: var(--line-strong);
}

.services-console__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.services-console__dot--r { background: #ff5f57; }
.services-console__dot--y { background: #febc2e; }
.services-console__dot--g { background: #28c840; }

.services-console__chrome-title {
  margin-left: 0.45rem;
}

.services-console__expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.75s var(--motion-ease);
}

.services-console.is-open .services-console__expand {
  grid-template-rows: 1fr;
}

.services-console__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  filter: brightness(1.12);
  transform: translateY(-6px);
  transition:
    opacity 0.45s ease 0.12s,
    filter 0.55s var(--motion-ease) 0.12s,
    transform 0.55s var(--motion-ease) 0.12s;
}

.services-console.is-open .services-console__body {
  min-height: 22rem;
  opacity: 1;
  filter: brightness(1);
  transform: translateY(0);
}

.services-console__list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-strong);
  background: rgba(55, 16, 90, 0.02);
}

.services-console__row {
  border-bottom: 1px dashed var(--line);
}

.services-console__row:last-child {
  border-bottom: none;
}

.services-console__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    background-color var(--transition-hover),
    color var(--transition-hover),
    box-shadow var(--transition-hover),
    opacity 0.4s ease,
    transform 0.45s var(--motion-ease);
}

.services-console__row:nth-child(1) .services-console__item { transition-delay: 0ms; }
.services-console__row:nth-child(2) .services-console__item { transition-delay: 0ms; }
.services-console__row:nth-child(3) .services-console__item { transition-delay: 0ms; }
.services-console__row:nth-child(4) .services-console__item { transition-delay: 0ms; }
.services-console__row:nth-child(5) .services-console__item { transition-delay: 0ms; }
.services-console__row:nth-child(6) .services-console__item { transition-delay: 0ms; }

.services-console.is-open .services-console__row:nth-child(1) .services-console__item { transition-delay: 0.18s; }
.services-console.is-open .services-console__row:nth-child(2) .services-console__item { transition-delay: 0.26s; }
.services-console.is-open .services-console__row:nth-child(3) .services-console__item { transition-delay: 0.34s; }
.services-console.is-open .services-console__row:nth-child(4) .services-console__item { transition-delay: 0.42s; }
.services-console.is-open .services-console__row:nth-child(5) .services-console__item { transition-delay: 0.5s; }
.services-console.is-open .services-console__row:nth-child(6) .services-console__item { transition-delay: 0.58s; }

.services-console.is-open .services-console__item {
  opacity: 1;
  transform: translateX(0);
}

.services-console__item:hover {
  color: var(--ink);
  background: rgba(55, 16, 90, 0.05);
}

section.section.services-page {
    border: none;
}

.services-console__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.services-console__num {
  flex-shrink: 0;
  min-width: 1.85rem;
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
  background: rgba(55, 16, 90, 0.08);
  color: var(--purple-soft);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  transition:
    background-color var(--transition-hover),
    color var(--transition-hover);
}

.services-console__label {
  flex: 1;
  line-height: 1.35;
}

.services-console__chevron {
  display: none;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s var(--motion-ease);
  flex-shrink: 0;
}

.services-console__item.is-active {
  color: var(--ink);
  background: var(--paper-raised);
  box-shadow: inset 3px 0 0 var(--gold);
}

.services-console__item.is-active .services-console__num {
  background: var(--purple);
  color: var(--paper-raised);
}

.services-console__item.is-active .services-console__chevron {
  transform: rotate(225deg);
}

/* Accordion panels — mobile only (shown in max-width: 900px) */
.services-console__acc {
  display: none;
}

.services-console__acc-inner {
  overflow: hidden;
  min-height: 0;
}

.services-console__acc-meta {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
}

.services-console__acc-meta span:first-child {
  color: var(--gold-ink);
}

.services-console__acc-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.services-console__detail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.5rem 1.25rem;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(55, 16, 90, 0.015) 2px,
      rgba(55, 16, 90, 0.015) 3px
    ),
    var(--paper-raised);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.5s var(--motion-ease);
}

.services-console.is-loaded .services-console__detail {
  opacity: 1;
  transform: translateY(0);
}

.services-console__detail-meta {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.services-console__prompt {
  color: var(--gold-ink);
}

.services-console__file {
  color: var(--purple-soft);
}

.services-console__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  min-height: 1.35em;
}

.services-console__desc {
  margin: 0;
  flex-grow: 1;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  min-height: 6.8em;
}

.services-console__detail.is-switching .services-console__title,
.services-console__detail.is-switching .services-console__desc,
.services-console__detail.is-switching .services-console__file {
  animation: svc-detail-in 0.38s var(--motion-ease) both;
}

@keyframes svc-detail-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.services-console__footer {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
}

.services-console__progress-label {
  flex-shrink: 0;
  text-transform: lowercase;
}

.services-console__progress {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 0;
}

.services-console__progress-edge {
  flex-shrink: 0;
  color: var(--ink-soft);
}

.services-console__progress-track {
  position: relative;
  flex: 1;
  height: 0.85em;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(55, 16, 90, 0.14) 0,
    rgba(55, 16, 90, 0.14) 0.45em,
    transparent 0.45em,
    transparent 0.6em
  );
  background-size: 0.6em 100%;
}

.services-console__progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 0.45em,
    transparent 0.45em,
    transparent 0.6em
  );
  background-size: 0.6em 100%;
  background-color: transparent;
}

.services-console.is-playing .services-console__progress-bar,
.quote-feed.is-playing .services-console__progress-bar,
[data-principles].is-playing .services-console__progress-bar {
  animation: svc-progress linear forwards;
}

@keyframes svc-progress {
  from { width: 0%; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .services-console__expand {
    transition: none;
  }

  .services-console__body,
  .services-console__item,
  .services-console__detail {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .services-console.is-open .services-console__body {
    min-height: 22rem;
  }

  .services-console__detail.is-switching .services-console__title,
  .services-console__detail.is-switching .services-console__desc,
  .services-console__detail.is-switching .services-console__file,
  .services-console.is-playing .services-console__progress-bar,
  .quote-feed.is-playing .services-console__progress-bar,
  [data-principles].is-playing .services-console__progress-bar {
    animation: none;
  }
}

@media (max-width: 900px) {
  .services-console__body {
    grid-template-columns: 1fr;
  }

  .services-console.is-open .services-console__body {
    min-height: 0;
  }

  .services-console__list {
    border-right: none;
    border-bottom: none;
    max-height: none;
  }

  .services-console__item {
    padding: 0.95rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
    line-height: 1.35;
  }

  .services-console__label {
    font-weight: 500;
  }

  .services-console__num {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.6875rem;
  }

  .services-console__chevron {
    display: block;
  }

  .services-console__acc {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.45s var(--motion-ease);
  }

  .services-console__row.is-open .services-console__acc {
    grid-template-rows: 1fr;
  }

  .services-console__acc-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 1rem 0 3.5rem;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      padding 0.35s var(--motion-ease);
  }

  .services-console__row.is-open .services-console__acc-inner {
    padding: 0.15rem 1rem 1.05rem 3.5rem;
    opacity: 1;
    visibility: visible;
  }

  .services-console__acc-meta {
    display: none;
  }

  .services-console__detail {
    display: none;
  }

  .services-console__title {
    font-size: 1.2rem;
  }

  .services-console__desc {
    min-height: 0;
  }
}

/* Cards */

.card {
  padding: 1.5rem;
}

.card .panel-card__meta,
.service-block.card .panel-card__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line);
}

.card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: var(--ink-soft);
}

.stack-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.panel-card .prose {
  max-width: none;
}

.panel-card .prose h2:first-child {
  margin-top: 0;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card--link:hover h3 {
  color: var(--purple);
}

.card--link:hover {
  color: inherit;
}

/* Portfolio / bracket cards */

.bracket-card {
  padding: 1.15rem 1.35rem 1.5rem;
}

.bracket-card .panel-card__meta {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--line);
}

.bracket-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Testimonials */

.testimonial-card {
  padding: 1.15rem 1.35rem 1.5rem;
}

.testimonial-card .panel-card__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line);
}

.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
}

article.testimonial-card blockquote p {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.9rem;
}

article.testimonial-card blockquote p strong {
  font-weight: 500;
  font-style: normal;
  background-image: linear-gradient(
    to top,
    rgba(255, 192, 0, 0.45) 0.42em,
    transparent 0.42em
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.06em;
  margin-inline: -0.06em;
}

.testimonial-card__attribution {
  padding-top: 1rem;
  border-top: 1px dashed var(--line-strong);
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-card__role {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--purple-soft);
}

/* Homepage testimonials — quote log + cheer bot */

.testimonials-stage {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.quote-feed {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 1.15rem 1.35rem 1.1rem;
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}

.quote-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--purple-soft);
}

.quote-feed__path::before {
  content: "◆ ";
  color: var(--gold-ink);
}

.quote-feed__index {
  color: var(--ink);
  background: rgba(255, 192, 0, 0.28);
  padding: 0.12rem 0.4rem;
  border-radius: 2px;
}

.quote-feed__viewport {
  position: relative;
  flex: 1;
  min-height: 11rem;
}

.quote-feed__slide {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.quote-feed__slide.is-active {
  display: flex;
  animation: quote-slide-in 0.42s var(--motion-ease) both;
}

.quote-feed__slide blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  flex: 1;
}

.quote-feed__slide blockquote p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.65;
  color: var(--ink);
}

.quote-feed__by {
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line-strong);
}

.quote-feed__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
}

.quote-feed__role {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--purple-soft);
}

.quote-feed__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.quote-feed__btn {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--purple);
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--transition-hover),
    border-color var(--transition-hover),
    color var(--transition-hover);
}

.quote-feed__btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--paper-raised);
}

.quote-feed__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.quote-feed__loader {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
}

@keyframes quote-slide-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cheer-bay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cheer-bot {
  color: var(--purple);
  width: min(100%, 20rem);
  cursor: default;
}

.cheer-bot__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9));
}

.cheer-bot__brand-v {
  stroke: var(--gold);
}

.cheer-bot__eye {
  fill: var(--gold);
}

.cheer-bot__smile {
  stroke: var(--gold);
}

.cheer-bot__antenna {
  fill: var(--gold);
  stroke: var(--purple);
  animation: monitor-bot-blink 2.4s step-end infinite;
}

.cheer-bot__antenna:last-of-type {
  animation-delay: 0.35s;
}

.cheer-bot__shadow {
  transform-origin: 48px 66px;
  animation: cheer-shadow 3.8s ease-in-out infinite;
}

.cheer-bot__rig {
  transform-origin: 48px 45px;
  animation: cheer-float 3.8s ease-in-out infinite;
}

.cheer-bot__head-group {
  transform-origin: 48px 34px;
}

.cheer-bot__arm-group--l {
  transform-origin: 32px 42px;
  animation: cheer-wave-l 3.8s ease-in-out infinite;
}

.cheer-bot__arm-group--r {
  transform-origin: 64px 42px;
  animation: cheer-wave-r 3.8s ease-in-out infinite;
}

/* Hover — joyful dance + head tilt (slow) */
.cheer-bay:hover .cheer-bot__rig,
.cheer-bot:hover .cheer-bot__rig {
  animation: cheer-joy-bounce 1.45s ease-in-out infinite;
}

.cheer-bay:hover .cheer-bot__head-group,
.cheer-bot:hover .cheer-bot__head-group {
  animation: cheer-head-tilt 1.6s ease-in-out infinite;
  transform-origin: 48px 34px;
}

.cheer-bay:hover .cheer-bot__arm-group--l,
.cheer-bot:hover .cheer-bot__arm-group--l {
  animation: cheer-joy-arm-l 1.45s ease-in-out infinite;
}

.cheer-bay:hover .cheer-bot__arm-group--r,
.cheer-bot:hover .cheer-bot__arm-group--r {
  animation: cheer-joy-arm-r 1.45s ease-in-out infinite;
}

.cheer-bay:hover .cheer-bot__shadow,
.cheer-bot:hover .cheer-bot__shadow {
  animation: cheer-joy-shadow 1.45s ease-in-out infinite;
}

@keyframes cheer-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes cheer-shadow {
  0%,
  100% { transform: scaleX(1); opacity: 0.14; }
  50% { transform: scaleX(0.72); opacity: 0.07; }
}

@keyframes cheer-wave-l {
  0%,
  100% { transform: rotate(6deg); }
  50% { transform: rotate(-10deg); }
}

@keyframes cheer-wave-r {
  0%,
  100% { transform: rotate(-6deg); }
  50% { transform: rotate(10deg); }
}

@keyframes cheer-head-tilt {
  0%,
  100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

@keyframes cheer-joy-bounce {
  0%,
  100% { transform: translateY(0) rotate(-2deg); }
  25% { transform: translateY(-6px) rotate(1.5deg); }
  50% { transform: translateY(-1px) rotate(2deg); }
  75% { transform: translateY(-7px) rotate(-1.5deg); }
}

@keyframes cheer-joy-arm-l {
  0%,
  100% { transform: rotate(12deg); }
  50% { transform: rotate(-18deg); }
}

@keyframes cheer-joy-arm-r {
  0%,
  100% { transform: rotate(-12deg); }
  50% { transform: rotate(18deg); }
}

@keyframes cheer-joy-shadow {
  0%,
  100% { transform: scaleX(1); opacity: 0.14; }
  25%,
  75% { transform: scaleX(0.55); opacity: 0.05; }
  50% { transform: scaleX(0.85); opacity: 0.1; }
}

@media (max-width: 900px) {
  .testimonials-stage {
    grid-template-columns: 1fr;
  }

  .testimonials-stage .cheer-bay {
    display: none;
  }

  .quote-feed {
    min-height: 0;
  }

  .quote-feed__viewport {
    min-height: 10rem;
  }

  .quote-feed__slide blockquote p {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-feed__slide.is-active {
    animation: none;
  }

  .cheer-bot__rig,
  .cheer-bot__arm-group--l,
  .cheer-bot__arm-group--r,
  .cheer-bot__head-group,
  .cheer-bot__shadow,
  .cheer-bot__antenna,
  .cheer-bay:hover .cheer-bot__rig,
  .cheer-bot:hover .cheer-bot__rig,
  .cheer-bay:hover .cheer-bot__head-group,
  .cheer-bot:hover .cheer-bot__head-group,
  .cheer-bay:hover .cheer-bot__arm-group--l,
  .cheer-bot:hover .cheer-bot__arm-group--l,
  .cheer-bay:hover .cheer-bot__arm-group--r,
  .cheer-bot:hover .cheer-bot__arm-group--r,
  .cheer-bay:hover .cheer-bot__shadow,
  .cheer-bot:hover .cheer-bot__shadow {
    animation: none;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link .text-link__arrow {
  display: inline-block;
  transition: transform var(--transition-hover);
}

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

/* CTA strip */

.cta-strip {
  position: relative;
  padding-block: 3.75rem;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

section.services {
  border: none;
}

.cta-strip h2 {
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.cta-strip__lede {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  text-align: center;
}

.cta-strip .btn-gold {
  gap: 0.15rem;
}

.cta-strip .btn-gold:hover {
  background: var(--purple);
  color: var(--paper-raised);
  border-color: var(--purple);
}

.cta-strip .btn-gold:hover .btn-typing span {
  color: var(--gold);
}

.btn-typing {
  display: inline-flex;
  align-items: baseline;
  min-width: 1.1em;
  margin-left: 0.1em;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.btn-typing span {
  opacity: 0.2;
  animation: btn-typing-dot 1.25s ease-in-out infinite;
}

.btn-typing span:nth-child(1) { animation-delay: 0s; }
.btn-typing span:nth-child(2) { animation-delay: 0.2s; }
.btn-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes btn-typing-dot {
  0%,
  100% { opacity: 0.2; }
  40%,
  60% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-typing span {
    animation: none;
    opacity: 1;
  }
}

/* Content sections */

.prose {
  max-width: 48rem;
}

.prose p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose .note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--purple-soft);
  background: rgba(55, 16, 90, 0.05);
  border-left: 2px solid var(--gold);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tech-tags li {
  padding: 0.35rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.service-block {
  margin-bottom: 3rem;
}

.service-block:last-child {
  margin-bottom: 0;
}

/* Contact */

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

.office-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.office-card .panel-card__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line);
}

.office-card h3 {
  margin: 0;
  font-size: 1.125rem;
}

.office-card dl {
  margin: 0;
}

.office-card dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-top: 1rem;
}

.office-card dt:first-child {
  margin-top: 0;
}

.office-card dd {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.office-card a:not(.btn) {
  color: var(--purple);
}

.contact-dir__actions .btn-primary {
  color: var(--paper-raised);
}

.contact-dir__actions .btn-primary:hover {
  color: var(--gold-ink);
}

.contact-dir__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(55, 16, 90, 0.03);
}

.contact-dir__path {
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-dir__path::before {
  content: "▸ ";
  color: var(--gold);
}

.contact-dir__badge {
  flex-shrink: 0;
  padding: 0.15rem 0.45rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: rgba(255, 192, 0, 0.18);
}

.contact-dir__intro {
  padding: 1.1rem 1.15rem 0.85rem;
}

.contact-dir__role {
  margin: 0 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.contact-dir__intro h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.contact-dir__city {
  margin: 0.4rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.contact-dir__list {
  list-style: none;
  margin: 0;
  padding: 0 0.35rem;
  border-top: 1px dashed var(--line);
}

.contact-dir__row {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.8rem;
  border-bottom: 1px dashed var(--line);
}

.contact-dir__row:last-child {
  border-bottom: none;
}

.contact-dir__key {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-soft);
  padding-top: 0.15rem;
}

.contact-dir__val {
  margin: 0;
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-dir__val--stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-dir__val a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color var(--transition-hover),
    border-color var(--transition-hover);
  width: fit-content;
}

.contact-dir__val a:hover {
  color: var(--gold-ink);
  border-bottom-color: var(--gold);
}

.contact-dir__closed {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--purple-soft);
}

.contact-support {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.55rem 1rem 0.25rem;
  border-top: 1px dashed var(--line);
  color: var(--purple);
}

.contact-support-bot {
  width: min(100%, 12.5rem);
  color: var(--purple);
}

.cheer-bot.contact-support-bot {
  margin-top: 35px;
}

.contact-support-bot .cheer-bot__rig {
  animation: cheer-float 3.6s ease-in-out infinite;
  transform-origin: 48px 58px;
}

.contact-support-bot .cheer-bot__shadow {
  animation: cheer-shadow 3.6s ease-in-out infinite;
  transform-origin: 48px 82px;
}

.contact-support-bot .cheer-bot__arm-group--l,
.contact-support:hover .contact-support-bot .cheer-bot__arm-group--l,
.contact-support-bot:hover .cheer-bot__arm-group--l {
  transform-origin: 32px 44px;
  animation: contact-support-talk-l 2.4s ease-in-out infinite;
}

.contact-support-bot .cheer-bot__arm-group--r,
.contact-support:hover .contact-support-bot .cheer-bot__arm-group--r,
.contact-support-bot:hover .cheer-bot__arm-group--r {
  transform-origin: 64px 44px;
  animation: contact-support-talk-r 1.6s ease-in-out infinite;
}

.contact-support-bot:hover .cheer-bot__rig,
.contact-support:hover .contact-support-bot .cheer-bot__rig {
  animation: cheer-float 3.6s ease-in-out infinite;
}

.contact-support-bot:hover .cheer-bot__head-group,
.contact-support:hover .contact-support-bot .cheer-bot__head-group {
  animation: none;
  transform: none;
}

.contact-support__eyes-open,
.contact-support__eyes-closed {
  transition: opacity 0.2s ease;
}

.contact-support:hover .contact-support__eyes-open {
  opacity: 0;
}

.contact-support:hover .contact-support__eyes-closed {
  opacity: 1;
}

.contact-support:hover .contact-support__smile {
  opacity: 0;
}

.contact-support:hover .contact-support__smile-wide {
  opacity: 1;
}

.contact-support:hover .contact-support-bot .cheer-bot__arm-group--l,
.contact-support-bot:hover .cheer-bot__arm-group--l {
  animation-duration: 1.35s;
}

.contact-support:hover .contact-support-bot .cheer-bot__arm-group--r,
.contact-support-bot:hover .cheer-bot__arm-group--r {
  animation-duration: 0.85s;
}

@keyframes contact-support-talk-l {
  0%,
  100% { transform: rotate(0deg); }
  50% { transform: rotate(-10deg) translateY(-1px); }
}

@keyframes contact-support-talk-r {
  0%,
  100% { transform: rotate(0deg); }
  35% { transform: rotate(14deg) translate(1px, -2px); }
  70% { transform: rotate(4deg) translate(0, -1px); }
}

.contact-dir__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid var(--line-strong);
  background: rgba(55, 16, 90, 0.02);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 0.35rem;
}

.contact-stage .office-card {
  height: 100%;
}

.contact-stage .office-card:hover {
  transform: none;
}

.contact-call {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 22rem);
  padding-top: 2.5rem;
  overflow: visible;
}

.contact-call-bay {
  position: sticky;
  top: 6.5rem;
  align-self: start;
  overflow: visible;
}

.contact-call__bubble {
  position: absolute;
  top: 0.15rem;
  right: 0.35rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  animation: contact-call-bubble 2.6s ease-in-out infinite;
  pointer-events: none;
}

.contact-call__bubble::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: var(--paper-raised);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transform: rotate(45deg);
}

.contact-call__phone {
  transform-origin: 88px 21px;
  animation: contact-call-phone-idle 3.2s ease-in-out infinite;
}

.contact-call-bot .cheer-bot__arm-group--l,
.contact-call-bay:hover .contact-call-bot .cheer-bot__arm-group--l,
.contact-call-bot:hover .cheer-bot__arm-group--l,
.contact-stage:hover .contact-call-bot .cheer-bot__arm-group--l {
  animation: none;
  transform: rotate(4deg);
  transform-origin: 32px 42px;
}

.contact-call-bot .cheer-bot__arm-group--r,
.contact-call-bay:hover .contact-call-bot .cheer-bot__arm-group--r,
.contact-call-bot:hover .cheer-bot__arm-group--r,
.contact-stage:hover .contact-call-bot .cheer-bot__arm-group--r {
  transform-origin: 64px 42px;
  animation: contact-call-arm 2.8s ease-in-out infinite;
}

.contact-call-bay:hover .contact-call-bot .cheer-bot__rig,
.contact-call-bot:hover .cheer-bot__rig,
.contact-stage:hover .contact-call-bot .cheer-bot__rig,
.contact-call-bay:hover .contact-call-bot .cheer-bot__head-group,
.contact-call-bot:hover .cheer-bot__head-group,
.contact-stage:hover .contact-call-bot .cheer-bot__head-group,
.contact-call-bay:hover .contact-call-bot .cheer-bot__shadow,
.contact-call-bot:hover .cheer-bot__shadow,
.contact-stage:hover .contact-call-bot .cheer-bot__shadow {
  animation: cheer-float 3.8s ease-in-out infinite;
}

.contact-call-bay:hover .contact-call-bot .cheer-bot__shadow,
.contact-call-bot:hover .cheer-bot__shadow,
.contact-stage:hover .contact-call-bot .cheer-bot__shadow {
  animation: cheer-shadow 3.8s ease-in-out infinite;
}

.contact-call-bay:hover .contact-call-bot .cheer-bot__head-group,
.contact-call-bot:hover .cheer-bot__head-group,
.contact-stage:hover .contact-call-bot .cheer-bot__head-group {
  animation: none;
}

.contact-stage:hover .contact-call__phone,
.contact-call-bay:hover .contact-call__phone,
.contact-call-bot:hover .contact-call__phone {
  animation: contact-call-phone-ring 0.45s ease-in-out infinite;
}

.contact-stage:hover .contact-call__eyes-open,
.contact-call-bay:hover .contact-call__eyes-open,
.contact-call-bot:hover .contact-call__eyes-open {
  opacity: 0;
}

.contact-stage:hover .contact-call__eyes-closed,
.contact-call-bay:hover .contact-call__eyes-closed,
.contact-call-bot:hover .contact-call__eyes-closed {
  opacity: 1;
}

.contact-stage:hover .contact-call__ring::after {
  content: "...";
}

@keyframes contact-call-bubble {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(2px, -4px); }
}

@keyframes contact-call-phone-idle {
  0%,
  100% { transform: rotate(-4deg); }
  50% { transform: rotate(3deg); }
}

@keyframes contact-call-phone-ring {
  0%,
  100% { transform: rotate(-8deg); }
  50% { transform: rotate(10deg); }
}

@keyframes contact-call-arm {
  0%,
  100% { transform: rotate(-4deg); }
  50% { transform: rotate(6deg); }
}

.form-panel {
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.form-panel:hover {
  transform: none;
}

.form-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(55, 16, 90, 0.04);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
}

.form-panel__path::before {
  content: "◆ ";
  color: var(--gold-ink);
}

.form-panel__badge {
  flex-shrink: 0;
  color: var(--ink);
  background: rgba(255, 192, 0, 0.28);
  padding: 0.12rem 0.4rem;
  border-radius: 2px;
}

.form-panel form {
  padding: 1.35rem 1.4rem 1.5rem;
}

.form-status {
  margin: 0.85rem 0 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.45;
}

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

.form-status.is-success {
  color: var(--ink);
  background: rgba(255, 192, 0, 0.18);
  border-color: var(--gold);
}

.form-status.is-error {
  color: var(--purple);
  background: rgba(55, 16, 90, 0.06);
  border-color: var(--purple-soft);
}

.form-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-captcha__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, auto) minmax(0, 6.5rem) 2.35rem;
  gap: 0.55rem;
  align-items: center;
}

.form-captcha__prompt {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.45rem 0.7rem;
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  background: rgba(55, 16, 90, 0.03);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--purple);
  white-space: nowrap;
}

.form-captcha.is-loading .form-captcha__prompt {
  color: var(--purple-soft);
}

.form-captcha__refresh {
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--purple);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--transition-hover),
    border-color var(--transition-hover),
    color var(--transition-hover);
}

.form-captcha__refresh:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.form-captcha__hint {
  margin: 0.4rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-soft);
}

@media (max-width: 520px) {
  .form-captcha__row {
    grid-template-columns: minmax(0, 1fr) 2.35rem;
  }

  .form-captcha__prompt {
    grid-column: 1 / -1;
  }
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(55, 16, 90, 0.12);
}

.form-field__error {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--purple);
}

.form-field__error[hidden] {
  display: none;
}

.contact-form [data-form-submit] .btn-typing {
  display: none;
}

.contact-form.is-sending [data-form-submit] {
  opacity: 0.7;
  pointer-events: none;
}

.contact-form.is-sending [data-form-submit] .btn-typing {
  display: inline-flex;
}

.form-note a {
  color: var(--purple);
}

.testimonials-page .testimonials-stage {
  margin-top: 0.25rem;
}

/* Products — Visionweb Suss */

.products-page {
  border-bottom: none;
}

.products-industries {
  padding-top: 0;
}

.products-features {
  border-bottom: none;
}

.product-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(12rem, 1fr);
  gap: 1.25rem 2.25rem;
  align-items: stretch;
  margin-top: 0.35rem;
}

.product-hero {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 0;
  min-height: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.product-hero:hover {
  transform: none;
}

.product-hero__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-hero__mark {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.product-hero__eyebrow {
  margin: 0 0 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.product-hero__name {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.product-hero__tag {
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--gold-ink);
}

.product-hero__lede {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 42rem;
}

.product-album {
  position: relative;
  z-index: 0;
  min-width: 0;
  width: 100%;
  min-height: 14.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Gutter + right-biased fan keeps shots off the hero card */
  padding: 1.1rem 0.35rem 0.35rem 1.5rem;
  box-sizing: border-box;
  overflow: visible;
}

.product-album__bay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: min(100%, 13.75rem);
  margin-right: 0.35rem;
  cursor: pointer;
  outline: none;
}

.product-album__bay:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.product-album__stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.product-album__hint {
  margin: 24px;
  max-width: 100%;
  padding: 0 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--purple-soft);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.product-album__hint-prompt {
  color: var(--gold);
  flex-shrink: 0;
}

.product-album__hint-cursor {
  display: inline-block;
  width: 0.45em;
  height: 1em;
  margin-left: 0.05rem;
  background: var(--gold);
  vertical-align: -0.1em;
  animation: product-album-cursor 1s steps(1) infinite;
}

@keyframes product-album-cursor {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-album__hint-cursor {
    animation: none;
    opacity: 1;
  }
}

.product-album__shot {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0.28rem 0.28rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transform-origin: 50% 70%;
  transition:
    transform 0.55s var(--motion-ease),
    opacity 0.45s ease,
    z-index 0s linear 0.2s;
  pointer-events: none;
}

.product-album__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: #f3f0f5;
  content-visibility: auto;
}

.product-album__shot[data-depth="0"] {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: rotate(-1deg) translate(0, 0) scale(1);
  transition-delay: 0s;
}

/* Fan mostly right / down so cards stay clear of the white hero box */
.product-album__shot[data-depth="1"] {
  z-index: 4;
  opacity: 1;
  transform: rotate(5.5deg) translate(8%, 4%) scale(0.96);
}

.product-album__shot[data-depth="2"] {
  z-index: 3;
  opacity: 0.98;
  transform: rotate(-4deg) translate(-3%, 8%) scale(0.94);
}

.product-album__shot[data-depth="3"] {
  z-index: 2;
  opacity: 0.9;
  transform: rotate(7deg) translate(11%, 12%) scale(0.9);
}

.product-album__shot[data-depth="4"] {
  z-index: 1;
  opacity: 0.72;
  transform: rotate(-2.5deg) translate(3%, 16%) scale(0.86);
}

.product-album__shot[data-depth="5"],
.product-album__shot[data-depth="6"],
.product-album__shot[data-depth="7"] {
  z-index: 0;
  opacity: 0;
  transform: rotate(0deg) translate(0, 10%) scale(0.82);
  pointer-events: none;
}

.product-album__shot.is-exit {
  z-index: 6;
  opacity: 0;
  transform: rotate(3deg) translate(6%, -10%) scale(0.92);
  transition:
    transform 0.5s var(--motion-ease),
    opacity 0.4s ease;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 4.25rem;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(28, 8, 46, 0.82);
  cursor: pointer;
}

.product-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 68rem);
  max-height: calc(100vh - 2.5rem);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
}

.product-lightbox__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(55, 16, 90, 0.03);
}

.product-lightbox__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-lightbox__index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.product-lightbox__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--transition-hover),
    border-color var(--transition-hover),
    color var(--transition-hover);
}

.product-lightbox__close:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.product-lightbox__stage {
  padding: 0.75rem;
  min-height: 0;
}

.product-lightbox__frame {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-lightbox__frame img {
  display: block;
  width: 100%;
  max-height: min(72vh, 44rem);
  object-fit: contain;
  object-position: center;
  background: #1c082e;
  border: 1px solid var(--line-strong);
  border-radius: 1px;
}

.product-lightbox__cap {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
}

.product-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  background: var(--paper);
  color: var(--purple);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color var(--transition-hover),
    border-color var(--transition-hover),
    color var(--transition-hover);
}

.product-lightbox__nav--prev {
  left: 1rem;
}

.product-lightbox__nav--next {
  right: 1rem;
}

.product-lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--purple);
}

.product-lightbox__nav:focus-visible,
.product-lightbox__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .product-lightbox {
    padding: 0.65rem 0.65rem 4.25rem;
  }

  .product-lightbox__nav {
    top: auto;
    bottom: 0.85rem;
    transform: none;
    width: 2.75rem;
    height: 2.75rem;
  }

  .product-lightbox__nav--prev {
    left: 0.85rem;
  }

  .product-lightbox__nav--next {
    right: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-album__shot {
    transition: none;
  }

  .product-album__shot.is-exit {
    transition: none;
  }
}

.industries-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: 1.5rem;
  align-items: start;
}

.industries-stage .product-suss-bay {
  order: -1;
  justify-self: start;
}

.industry-feed.quote-feed {
  min-height: 0;
  padding: 1rem 1.2rem 0.95rem;
}

.industry-feed__viewport {
  position: relative;
  min-height: 0;
  flex: 0 0 auto;
}

.industry-feed .quote-feed__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
}

.industry-feed .quote-feed__controls {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
}

.industry-feed .quote-feed__loader {
  margin-top: 0.55rem;
}

.industry-feed__page {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: quote-slide-in 0.42s var(--motion-ease) both;
}

.industry-feed__page.is-active {
  display: grid;
}

.industry-feed__page li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.industry-feed__page li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--gold);
}

.product-shot {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  background: transparent;
  border: none;
}

.product-shot:hover {
  transform: none;
}

.product-suss-bay {
  width: min(100%, 18rem);
  display: flex;
}

.product-suss-bot {
  width: 100%;
}

.product-suss__receipt {
  transform-origin: 92px 26px;
  animation: product-suss-receipt 3.4s ease-in-out infinite;
}

.product-suss__scan {
  animation: product-suss-scanline 2.4s ease-in-out infinite;
}

.product-suss__stat--1 {
  animation: product-suss-stat 2.8s ease-in-out infinite;
}

.product-suss__scanner {
  transform-origin: 12px 57px;
  animation: product-suss-scanner 2.6s ease-in-out infinite;
}

.product-suss-bot .cheer-bot__arm-group--l,
.product-suss-bay:hover .product-suss-bot .cheer-bot__arm-group--l,
.product-suss-bot:hover .cheer-bot__arm-group--l,
.industries-stage:hover .product-suss-bot .cheer-bot__arm-group--l {
  transform-origin: 32px 42px;
  animation: product-suss-scan-arm 2.6s ease-in-out infinite;
}

.product-suss-bot .cheer-bot__arm-group--r,
.product-suss-bay:hover .product-suss-bot .cheer-bot__arm-group--r,
.product-suss-bot:hover .cheer-bot__arm-group--r,
.industries-stage:hover .product-suss-bot .cheer-bot__arm-group--r {
  transform-origin: 64px 42px;
  animation: product-suss-tap-arm 1.6s ease-in-out infinite;
}

.product-suss-bay:hover .product-suss-bot .cheer-bot__rig,
.product-suss-bot:hover .cheer-bot__rig,
.industries-stage:hover .product-suss-bot .cheer-bot__rig {
  animation: cheer-float 3.8s ease-in-out infinite;
}

.product-suss-bay:hover .product-suss-bot .cheer-bot__shadow,
.product-suss-bot:hover .cheer-bot__shadow,
.industries-stage:hover .product-suss-bot .cheer-bot__shadow {
  animation: cheer-shadow 3.8s ease-in-out infinite;
}

.product-suss-bay:hover .product-suss-bot .cheer-bot__head-group,
.product-suss-bot:hover .cheer-bot__head-group,
.industries-stage:hover .product-suss-bot .cheer-bot__head-group {
  animation: none;
}

.industries-stage:hover .product-suss__receipt,
.product-suss-bay:hover .product-suss__receipt,
.product-suss-bot:hover .product-suss__receipt {
  animation: product-suss-receipt-fast 1.35s ease-in-out infinite;
}

.industries-stage:hover .product-suss__scan,
.product-suss-bay:hover .product-suss__scan,
.product-suss-bot:hover .product-suss__scan {
  animation: product-suss-scanline 0.85s linear infinite;
  opacity: 0.7;
}

.industries-stage:hover .product-suss__eyes-open,
.product-suss-bay:hover .product-suss__eyes-open,
.product-suss-bot:hover .product-suss__eyes-open {
  opacity: 0;
}

.industries-stage:hover .product-suss__eyes-closed,
.product-suss-bay:hover .product-suss__eyes-closed,
.product-suss-bot:hover .product-suss__eyes-closed {
  opacity: 1;
}

@keyframes product-suss-receipt {
  0%,
  100% { transform: translateY(4px); opacity: 0.85; }
  50% { transform: translateY(-2px); opacity: 1; }
}

@keyframes product-suss-receipt-fast {
  0%,
  100% { transform: translateY(6px); }
  50% { transform: translateY(-6px); }
}

@keyframes product-suss-scanline {
  0%,
  100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(10px); opacity: 0.65; }
}

@keyframes product-suss-stat {
  0%,
  100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes product-suss-scanner {
  0%,
  100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

@keyframes product-suss-scan-arm {
  0%,
  100% { transform: rotate(4deg); }
  50% { transform: rotate(-8deg); }
}

@keyframes product-suss-tap-arm {
  0%,
  100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .product-suss__receipt,
  .product-suss__scan,
  .product-suss__stat--1,
  .product-suss__scanner,
  .product-suss-bot .cheer-bot__arm-group--l,
  .product-suss-bot .cheer-bot__arm-group--r,
  .industries-stage:hover .product-suss__receipt,
  .industries-stage:hover .product-suss__scan,
  .industry-feed__page {
    animation: none;
  }

  .industries-stage:hover .product-suss__eyes-open,
  .product-suss-bay:hover .product-suss__eyes-open,
  .product-suss-bot:hover .product-suss__eyes-open {
    opacity: 1;
  }

  .industries-stage:hover .product-suss__eyes-closed,
  .product-suss-bay:hover .product-suss__eyes-closed,
  .product-suss-bot:hover .product-suss__eyes-closed {
    opacity: 0;
  }
}

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

.product-feature {
  padding: 1.15rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.product-feature .panel-card__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line);
}

.product-feature h3 {
  margin: 0 0 0.55rem;
  font-size: 1.0625rem;
}

.product-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.product-all {
  padding: 1.15rem 1.35rem 1.5rem;
}

.product-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-chip-list li {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

@media (max-width: 900px) {
  .product-hero-stage {
    grid-template-columns: 1fr;
  }

  .product-album {
    min-height: 13rem;
    justify-content: center;
    overflow: visible;
    padding: 0.75rem 0.5rem 1rem;
  }

  .product-album__bay {
    width: min(100%, 15rem);
    margin-right: 0;
  }

  .industries-stage {
    grid-template-columns: 1fr;
  }

  .industries-stage .product-suss-bay {
    display: none;
  }

  .industry-feed__page {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 701px) and (max-width: 900px) {
  .industry-feed__page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-feature-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-soft);
}

.form-field label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple-soft);
  box-shadow: 0 0 0 2px rgba(255, 192, 0, 0.35);
}

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

.form-note {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-soft);
}

/* Closing CTA */

.closing-cta {
  text-align: center;
}

.closing-cta .lede {
  margin-inline: auto;
  margin-top: 0.75rem;
}

/* Footer */

.site-footer {
  background: var(--purple);
  color: rgba(255, 255, 255, 0.85);
}

.footer-main {
  padding-block: 3.5rem;
}

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

.footer-grid h3 {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-grid p,
.footer-grid li {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 0.35rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1.25rem;
  background: var(--purple-deep);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-tagline {
  color: var(--gold);
  font-style: italic;
}

/* Terminal page hero (inner pages) */

.term-hero {
  --term-bg: #1a0f28;
  --term-fg: #e4d8f0;
  --term-dim: var(--purple-soft);
  --term-accent: var(--gold);
  --term-border: #3d2a52;
  position: relative;
  width: 100%;
  padding-block: 2.75rem 2.5rem;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(107, 78, 138, 0.06) 2px,
      rgba(107, 78, 138, 0.06) 3px
    ),
    var(--term-bg);
  border-bottom: 1px solid var(--term-border);
  color: var(--term-fg);
  overflow: hidden;
}

.term-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(26, 15, 40, 0.75) 100%);
}

.term-hero__inner {
  position: relative;
  z-index: 1;
}

.term-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--term-dim);
}

.term-hero__crumb a {
  color: var(--term-accent);
  text-decoration: none;
}

.term-hero__crumb a:hover {
  color: var(--term-fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.term-hero__sep {
  color: var(--line);
  opacity: 0.75;
}

.term-hero__crumb [aria-current="page"] {
  color: var(--term-fg);
}

.term-hero__title {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--term-fg);
  text-shadow: 0 0 20px rgba(107, 78, 138, 0.35);
  min-height: 1.25em;
}

.term-hero__typed {
  white-space: pre-wrap;
}

.term-hero__cursor {
  display: inline-block;
  width: 0.35em;
  height: 1em;
  margin-left: 0.12em;
  background: var(--term-accent);
  color: transparent;
  font-size: 0.85em;
  line-height: 1;
  vertical-align: -0.08em;
  animation: term-hero-cursor 1.05s steps(1) infinite;
}

.term-hero__cursor.is-typing {
  animation: none;
  opacity: 1;
}

@keyframes term-hero-cursor {
  0%,
  49% { opacity: 1; }
  50%,
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .term-hero__cursor {
    animation: none;
    opacity: 1;
  }
}

/* Page hero (inner pages) */

.page-hero {
  padding-block: calc(var(--section-padding) - 1rem) 2rem;
}

.page-hero .lede {
  margin-top: 0.75rem;
}

/* About page */

.about-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: 1.5rem;
  align-items: center;
}

/* Services catalog — detailed blocks + mascot robots */

.services-catalog .container {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

section.section.services-catalog {
    padding-top: 0;
}

.svc-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.35fr);
  gap: 1.75rem;
  align-items: center;
}

.svc-detail--flip {
  grid-template-columns: minmax(0, 2.35fr) minmax(0, 1fr);
}

.svc-detail--flip .svc-detail__mascot {
  order: 2;
}

.svc-detail__mascot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-mascot {
  width: min(100%, 17rem);
  color: var(--purple);
}

.svc-mascot__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.svc-detail__panel {
  padding: 1.25rem 1.4rem 1.45rem;
}

.svc-detail__panel:hover {
  transform: translateY(-2px);
}

.svc-detail__panel .panel-card__meta {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--line);
}

.svc-detail__panel h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--ink);
}

.svc-detail__copy p {
  margin: 0 0 0.85rem;
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.svc-detail__copy p:last-child {
  margin-bottom: 0;
}

.svc-detail__panel .tech-tags {
  margin-top: 1.15rem;
}

/* Mascot idle motions — no cheer joy-dance on hover */
.svc-mascot .cheer-bot__arm-group--l,
.svc-mascot .cheer-bot__arm-group--r,
.svc-mascot:hover .cheer-bot__arm-group--l,
.svc-mascot:hover .cheer-bot__arm-group--r,
.svc-detail:hover .cheer-bot__arm-group--l,
.svc-detail:hover .cheer-bot__arm-group--r,
.svc-detail:hover .cheer-bot__arm-group--l,
.svc-detail:hover .cheer-bot__arm-group--r {
  animation: none;
}

.svc-mascot .cheer-bot__rig,
.svc-detail:hover .cheer-bot__rig,
.svc-detail:hover .svc-mascot .cheer-bot__rig {
  animation: cheer-float 3.8s ease-in-out infinite;
}

.svc-detail:hover .cheer-bot__head-group,
.svc-detail:hover .cheer-bot__head-group {
  animation: none;
  transform: none;
}

.svc-mascot .cheer-bot__shadow,
.svc-detail:hover .cheer-bot__shadow {
  animation: cheer-shadow 3.8s ease-in-out infinite;
  transform-origin: 48px 78px;
}

.svc-mascot--cart .cheer-bot__shadow,
.svc-detail:hover .svc-mascot--cart .cheer-bot__shadow,
.svc-detail:hover .svc-mascot--cart .cheer-bot__shadow {
  animation: none;
  transform-origin: 68px 78px;
}

.svc-mascot--code .svc-mascot__type-l {
  transform-origin: 32px 42px;
  animation: svc-type-l 0.55s ease-in-out infinite;
}

.svc-mascot--code .svc-mascot__type-r {
  transform-origin: 64px 42px;
  animation: svc-type-r 0.55s ease-in-out infinite 0.12s;
}

.svc-mascot--code .svc-mascot__screen-cursor {
  animation: svc-cursor-blink 1s steps(1) infinite;
}

.svc-mascot--code .svc-mascot__code-line--1 { animation: svc-code-pulse 2.4s ease-in-out infinite; }
.svc-mascot--code .svc-mascot__code-line--2 { animation: svc-code-pulse 2.4s ease-in-out infinite 0.2s; }
.svc-mascot--code .svc-mascot__code-line--3 { animation: svc-code-pulse 2.4s ease-in-out infinite 0.4s; }

/* Hover = type faster (not dance) */
.svc-detail:hover .svc-mascot--code .svc-mascot__type-l,
.svc-detail:hover .svc-mascot--code .svc-mascot__type-l {
  animation: svc-type-l 0.18s ease-in-out infinite;
}

.svc-detail:hover .svc-mascot--code .svc-mascot__type-r,
.svc-detail:hover .svc-mascot--code .svc-mascot__type-r {
  animation: svc-type-r 0.18s ease-in-out infinite 0.05s;
}

.svc-detail:hover .svc-mascot--code .svc-mascot__screen-cursor,
.svc-detail:hover .svc-mascot--code .svc-mascot__screen-cursor {
  animation: svc-cursor-blink 0.28s steps(1) infinite;
}

.svc-detail:hover .svc-mascot--code .svc-mascot__code-line--1,
.svc-detail:hover .svc-mascot--code .svc-mascot__code-line--1,
.svc-detail:hover .svc-mascot--code .svc-mascot__code-line--2,
.svc-detail:hover .svc-mascot--code .svc-mascot__code-line--2,
.svc-detail:hover .svc-mascot--code .svc-mascot__code-line--3,
.svc-detail:hover .svc-mascot--code .svc-mascot__code-line--3 {
  animation-duration: 0.7s;
}

/* Cart: whole robot + cart move together so the hand stays attached */
.svc-mascot--cart .cheer-bot__rig,
.svc-detail:hover .svc-mascot--cart .cheer-bot__rig,
.svc-detail:hover .svc-mascot--cart .cheer-bot__rig {
  animation: svc-cart-idle 3.2s ease-in-out infinite;
}

.svc-detail:hover .svc-mascot--cart .cheer-bot__rig,
.svc-detail:hover .svc-mascot--cart .cheer-bot__rig {
  animation: svc-cart-push 0.95s ease-in-out infinite;
}

.svc-mascot--charts {
  transform-origin: 50% 85%;
  transition: transform 0.35s var(--motion-ease);
}

.svc-detail:hover .svc-mascot--charts,
.svc-detail:hover .svc-mascot--charts {
  transform: scale(1.14);
}

.svc-detail:hover .svc-mascot--charts .cheer-bot__rig,
.svc-detail:hover .svc-mascot--charts .cheer-bot__rig {
  animation: cheer-float 3.8s ease-in-out infinite;
}

.svc-mascot--charts .svc-mascot__bar--1 {
  transform-origin: bottom;
  animation: svc-bar 2.2s ease-in-out infinite;
}

.svc-mascot--charts .svc-mascot__bar--2 {
  transform-origin: bottom;
  animation: svc-bar 2.2s ease-in-out infinite 0.2s;
}

.svc-mascot--charts .svc-mascot__bar--3 {
  transform-origin: bottom;
  animation: svc-bar 2.2s ease-in-out infinite 0.4s;
}

.svc-mascot--computer .svc-mascot__scan {
  animation: svc-scan 2.4s ease-in-out infinite;
}

.svc-mascot--computer .svc-mascot__screen-hand {
  transform-origin: 64px 42px;
  animation: svc-screen-hand 1.35s ease-in-out infinite;
}

.svc-mascot--computer .svc-mascot__eyes-closed {
  opacity: 0;
}

.svc-mascot--computer .svc-mascot__eyes-closed .cheer-bot__eye--closed {
  fill: none;
  stroke: var(--gold);
}

.svc-mascot--computer .svc-mascot__eyes-open {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.svc-detail:hover .svc-mascot--computer .svc-mascot__eyes-open,
.svc-detail:hover .svc-mascot--computer .svc-mascot__eyes-open {
  opacity: 0;
}

.svc-detail:hover .svc-mascot--computer .svc-mascot__eyes-closed,
.svc-detail:hover .svc-mascot--computer .svc-mascot__eyes-closed {
  opacity: 1;
}

.svc-detail:hover .svc-mascot--computer .svc-mascot__screen-hand,
.svc-detail:hover .svc-mascot--computer .svc-mascot__screen-hand {
  animation: svc-screen-hand 0.55s ease-in-out infinite;
}

.svc-mascot--phone .svc-mascot__phone-arm {
  transform-origin: 64px 42px;
  animation: svc-phone-wave 1.6s ease-in-out infinite;
}

.svc-detail:hover .svc-mascot--phone .svc-mascot__phone-arm,
.svc-detail:hover .svc-mascot--phone .svc-mascot__phone-arm {
  animation: svc-phone-wave 0.7s ease-in-out infinite;
}

.svc-mascot--phone .svc-mascot__phone-screen {
  fill: #0a0a0c;
  transition: fill 0.15s ease;
}

.svc-detail:hover .svc-mascot--phone .svc-mascot__phone-screen,
.svc-detail:hover .svc-mascot--phone .svc-mascot__phone-screen {
  animation: svc-phone-blink 0.55s steps(1) infinite;
}

.svc-mascot--design .svc-mascot__ui-board-arm {
  transform-origin: 32px 42px;
  animation: svc-ui-board-idle 2.4s ease-in-out infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__ui-board-arm {
  animation: svc-ui-board-idle 1s ease-in-out infinite;
}

.svc-mascot--design .svc-mascot__ui-block--2 {
  animation: svc-ui-pulse 2s ease-in-out infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__ui-block--2 {
  animation: svc-ui-pulse 0.6s ease-in-out infinite;
}

.svc-mascot--design .svc-mascot__eyes-closed {
  opacity: 0;
}

.svc-mascot--design .svc-mascot__eyes-closed .cheer-bot__eye--closed {
  fill: none;
  stroke: var(--gold);
}

.svc-mascot--design .svc-mascot__eyes-open {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__eyes-open {
  opacity: 0;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__eyes-closed {
  opacity: 1;
}

.svc-detail:hover .svc-mascot--design .cheer-bot__rig {
  animation: cheer-float 3.8s ease-in-out infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__swatch-arm {
  animation: svc-swatch-arm 0.9s ease-in-out infinite;
  transform-origin: 64px 42px;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__swatch--1 {
  animation: svc-swatch-shuffle-a 0.85s steps(1) infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__swatch--2 {
  animation: svc-swatch-shuffle-b 0.85s steps(1) infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__swatch--3 {
  animation: svc-swatch-shuffle-c 0.85s steps(1) infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__swatch--4 {
  animation: svc-swatch-shuffle-d 0.85s steps(1) infinite;
}

.svc-detail:hover .svc-mascot--design .svc-mascot__swatch--5 {
  animation: svc-swatch-shuffle-e 0.85s steps(1) infinite;
}

@keyframes svc-type-l {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(1.5px); }
}

@keyframes svc-type-r {
  0%,
  100% { transform: translateY(1.5px); }
  50% { transform: translateY(0); }
}

@keyframes svc-cursor-blink {
  0%,
  49% { opacity: 1; }
  50%,
  100% { opacity: 0; }
}

@keyframes svc-code-pulse {
  0%,
  100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes svc-cart-idle {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(2px, -3px); }
}

@keyframes svc-cart-push {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -2px); }
}

@keyframes svc-bar {
  0%,
  100% { transform: scaleY(1); }
  50% { transform: scaleY(1.18); }
}

@keyframes svc-scan {
  0%,
  100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes svc-screen-hand {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes svc-phone-tilt {
  0%,
  100% { transform: rotate(-4deg); }
  50% { transform: rotate(6deg); }
}

@keyframes svc-phone-wave {
  0%,
  100% { transform: rotate(-14deg); }
  50% { transform: rotate(18deg); }
}

@keyframes svc-phone-blink {
  0%,
  49% { fill: #0a0a0c; }
  50%,
  100% { fill: #FFC000; }
}

@keyframes svc-brush {
  0%,
  100% { transform: rotate(-8deg); }
  50% { transform: rotate(10deg); }
}

@keyframes svc-cursor-nudge {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(2px, -6px); }
}

@keyframes svc-ui-pulse {
  0%,
  100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes svc-ui-board-idle {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes svc-swatch-arm {
  0%,
  100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

@keyframes svc-swatch-shuffle-a {
  0%,
  100% { fill: #FFC000; }
  25% { fill: #37105A; }
  50% { fill: #2a6f97; }
  75% { fill: #c45c26; }
}

@keyframes svc-swatch-shuffle-b {
  0%,
  100% { fill: #37105A; }
  25% { fill: #2a6f97; }
  50% { fill: #c45c26; }
  75% { fill: #5a8f55; }
}

@keyframes svc-swatch-shuffle-c {
  0%,
  100% { fill: #2a6f97; }
  25% { fill: #c45c26; }
  50% { fill: #FFC000; }
  75% { fill: #37105A; }
}

@keyframes svc-swatch-shuffle-d {
  0%,
  100% { fill: #c45c26; }
  25% { fill: #5a8f55; }
  50% { fill: #37105A; }
  75% { fill: #FFC000; }
}

@keyframes svc-swatch-shuffle-e {
  0%,
  100% { fill: #5a8f55; }
  25% { fill: #FFC000; }
  50% { fill: #c45c26; }
  75% { fill: #2a6f97; }
}

@media (max-width: 900px) {
  .svc-detail,
  .svc-detail--flip {
    grid-template-columns: 1fr;
  }

  .svc-detail--flip .svc-detail__mascot {
    order: 0;
  }

  .svc-mascot {
    width: min(100%, 14rem);
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-mascot .cheer-bot__rig,
  .svc-mascot .cheer-bot__shadow,
  .svc-mascot--code .svc-mascot__type-l,
  .svc-mascot--code .svc-mascot__type-r,
  .svc-mascot--code .svc-mascot__screen-cursor,
  .svc-mascot--code .svc-mascot__code-line--1,
  .svc-mascot--code .svc-mascot__code-line--2,
  .svc-mascot--code .svc-mascot__code-line--3,
  .svc-mascot--cart .cheer-bot__rig,
  .svc-detail:hover .svc-mascot--cart .cheer-bot__rig,
  .svc-mascot--charts .svc-mascot__bar--1,
  .svc-mascot--charts .svc-mascot__bar--2,
  .svc-mascot--charts .svc-mascot__bar--3,
  .svc-mascot--computer .svc-mascot__scan,
  .svc-mascot--computer .svc-mascot__screen-hand,
  .svc-detail:hover .svc-mascot--computer .svc-mascot__eyes-open,
  .svc-detail:hover .svc-mascot--computer .svc-mascot__eyes-closed,
  .svc-mascot--phone .svc-mascot__phone-arm,
  .svc-detail:hover .svc-mascot--phone .svc-mascot__phone-screen,
  .svc-mascot--design .svc-mascot__ui-board-arm,
  .svc-mascot--design .svc-mascot__ui-block--2,
  .svc-detail:hover .svc-mascot--design .svc-mascot__swatch-arm,
  .svc-detail:hover .svc-mascot--design .svc-mascot__swatch--1,
  .svc-detail:hover .svc-mascot--design .svc-mascot__swatch--2,
  .svc-detail:hover .svc-mascot--design .svc-mascot__swatch--3,
  .svc-detail:hover .svc-mascot--design .svc-mascot__swatch--4,
  .svc-detail:hover .svc-mascot--design .svc-mascot__swatch--5,
  .svc-detail:hover .svc-mascot--design .svc-mascot__eyes-open,
  .svc-detail:hover .svc-mascot--design .svc-mascot__eyes-closed {
    animation: none;
  }

  .svc-mascot--charts {
    transition: none;
  }

  .svc-detail:hover .svc-mascot--charts,
  .svc-detail:hover .svc-mascot--charts {
    transform: none;
  }
}

.about-story-card {
  width: 100%;
  margin-bottom: 1.35rem;
}

.about-story-card .culture-card__body-inner p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.about-story-card .culture-card__body-inner p:last-child {
  margin-bottom: 0;
}

.about-story-card .culture-card__body-inner strong {
  color: var(--ink);
  font-weight: 600;
}

.about-hi {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 20rem);
  padding-top: 2.75rem;
  overflow: visible;
}

.about-hi-bay {
  position: sticky;
  top: 6.5rem;
  align-self: center;
  padding-top: 0;
  overflow: visible;
}

.about-hi__bubble {
  position: absolute;
  top: 0;
  right: -0.15rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--gold);
  animation: about-hi-bubble 2.8s ease-in-out infinite;
  pointer-events: none;
}

.about-hi__bubble::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: var(--paper-raised);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transform: rotate(45deg);
}

.about-hi__heart {
  position: relative;
  z-index: 1;
  display: block;
  fill: currentColor;
  animation: about-hi-heart 1.4s ease-in-out infinite;
}

.about-hi-bot .cheer-bot__eye--closed {
  fill: none;
  stroke: var(--gold);
}

/* Left hand stays on hip; right hand waves hello */
.about-hi-bot .cheer-bot__arm-group--l,
.about-hi-bay:hover .about-hi-bot .cheer-bot__arm-group--l,
.about-hi-bot:hover .cheer-bot__arm-group--l {
  animation: none;
  transform: rotate(4deg);
  transform-origin: 32px 42px;
}

.about-hi-bot .cheer-bot__arm-group--r,
.about-hi-bay:hover .about-hi-bot .cheer-bot__arm-group--r,
.about-hi-bot:hover .cheer-bot__arm-group--r {
  transform-origin: 64px 42px;
  animation: about-hi-wave 1.05s ease-in-out infinite;
}

@keyframes about-hi-bubble {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(2px, -5px); }
}

@keyframes about-hi-heart {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes about-hi-wave {
  0%,
  100% { transform: rotate(-12deg); }
  50% { transform: rotate(28deg); }
}

.about-log {
  padding: 0;
  overflow: hidden;
}

.about-log:hover {
  transform: none;
}

.about-log__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(55, 16, 90, 0.04);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
}

.about-log__path::before {
  content: "◆ ";
  color: var(--gold-ink);
}

.about-log__badge {
  flex-shrink: 0;
  color: var(--ink);
  background: rgba(255, 192, 0, 0.28);
  padding: 0.12rem 0.4rem;
  border-radius: 2px;
}

.about-log__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.about-log__body h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.about-log__body.prose > *:last-child {
  margin-bottom: 0;
}

.about-checklist {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-soft);
  opacity: 0.48;
  transform: translateX(0);
  transition:
    opacity 0.35s ease,
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s var(--motion-ease),
    box-shadow 0.35s ease;
}

.about-checklist li + li {
  margin-top: 0.35rem;
}

.about-checklist li.is-active {
  opacity: 1;
  color: var(--ink);
  background: rgba(255, 192, 0, 0.12);
  border-color: rgba(255, 192, 0, 0.55);
  transform: translateX(4px);
  box-shadow: inset 3px 0 0 var(--gold);
  animation: principle-flash 0.55s var(--motion-ease) both;
}

.about-checklist__num {
  flex-shrink: 0;
  min-width: 1.65rem;
  padding: 0.12rem 0.3rem;
  background: var(--line-strong);
  color: var(--paper-raised);
  border-radius: 2px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

.about-checklist li.is-active .about-checklist__num {
  background: var(--gold);
  color: var(--gold-ink);
}

.about-checklist__text {
  flex: 1;
  min-width: 0;
}

.about-principles__loader {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
}

@keyframes principle-flash {
  from {
    filter: brightness(1.18);
  }
  to {
    filter: brightness(1);
  }
}

@media (max-width: 900px) {
  .about-stage {
    grid-template-columns: 1fr;
  }

  .about-hi-bay {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-call__bubble,
  .contact-call__phone,
  .contact-call-bot .cheer-bot__arm-group--r,
  .contact-stage:hover .contact-call__phone,
  .contact-call-bay:hover .contact-call__phone,
  .contact-call-bot:hover .contact-call__phone {
    animation: none;
  }

  .contact-support-bot .cheer-bot__rig,
  .contact-support-bot .cheer-bot__shadow,
  .contact-support-bot .cheer-bot__arm-group--l,
  .contact-support-bot .cheer-bot__arm-group--r {
    animation: none;
  }

  .contact-support:hover .contact-support__eyes-open {
    opacity: 1;
  }

  .contact-support:hover .contact-support__eyes-closed,
  .contact-support:hover .contact-support__smile-wide {
    opacity: 0;
  }

  .contact-support:hover .contact-support__smile {
    opacity: 1;
  }

  .contact-stage:hover .contact-call__eyes-open,
  .contact-call-bay:hover .contact-call__eyes-open,
  .contact-call-bot:hover .contact-call__eyes-open {
    opacity: 1;
  }

  .contact-stage:hover .contact-call__eyes-closed,
  .contact-call-bay:hover .contact-call__eyes-closed,
  .contact-call-bot:hover .contact-call__eyes-closed {
    opacity: 0;
  }

  .about-hi__bubble,
  .about-hi__heart,
  .about-hi-bot .cheer-bot__arm-group--r {
    animation: none;
  }

  .about-checklist li.is-active {
    animation: none;
  }
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about-aside--row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.about-aside--row .about-stats {
  align-self: stretch;
  grid-template-columns: 1fr;
  height: 100%;
}

.about-aside--row .about-stat {
  flex: 1;
  justify-content: center;
}

.about-quote {
  padding: 1.15rem 1.35rem 1.4rem;
}

.about-quote .panel-card__meta {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line);
}

.about-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.about-quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: var(--ink);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.75rem;
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  text-align: center;
}

.about-stat__key {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--purple-soft);
}

.about-stat__val {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

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

@media (max-width: 900px) {
  .about-process__grid,
  .about-aside--row {
    grid-template-columns: 1fr;
  }

  .about-aside--row .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-quote blockquote p {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1rem var(--side-padding) 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.15rem;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .hero-grid,
  .pillar-grid,
  .card-grid,
  .card-grid--2,
  .card-grid--4,
  .contact-grid,
  .contact-stage,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    margin-top: 0.5rem;
  }

  .hero-terminal-wrap {
    padding-top: 5.25rem;
    max-width: 36rem;
    margin-inline: auto;
  }

  .monitor-bot {
    width: 9.5rem;
    right: 0.35rem;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 56px;
    --side-padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-terminal-wrap {
    padding-top: 5.75rem;
  }

  .monitor-bot {
    width: 10.5rem;
    right: 0.1rem;
  }
}

/* Motion — keyframes & utilities (frontend-ui-animator) */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim-fade-in {
  animation: fade-in 0.5s var(--motion-ease) both;
}

.anim-fade-slide-in {
  animation: fade-slide-in var(--motion-duration) var(--motion-ease) both;
}

.anim-fade-slide-up {
  animation: fade-slide-up 0.7s var(--motion-ease) both;
}

.anim-scale-in {
  animation: scale-in 0.45s var(--motion-ease) both;
}

/* Scroll reveal — terminal / CRT boot (assets/js/script.js; skip homepage .hero .culture .services)
   Hidden state uses opacity only so IntersectionObserver still sees the layout box. */
.reveal-boot {
  opacity: 0;
}

.reveal-boot.is-visible {
  opacity: 1;
  animation: panel-boot 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes panel-boot {
  from {
    opacity: 0;
    filter: brightness(1.14);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    filter: brightness(1);
    clip-path: inset(0 0 0 0);
  }
}

/* Soft boot for headers / prose / CTA — signal settle, not panel open */
.reveal-boot--signal.is-visible {
  animation: signal-boot 0.5s var(--motion-ease) both;
}

@keyframes signal-boot {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legacy class kept for reduced-motion / safety */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
}

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

  .reveal,
  .reveal.is-visible,
  .reveal-boot,
  .reveal-boot.is-visible,
  .reveal-boot--signal,
  .reveal-boot--signal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
  }

  .culture-card,
  .culture-card.is-open {
    padding: 1.5rem 1.5rem 1.6rem;
  }

  .culture-card__body {
    grid-template-rows: 1fr !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .culture-card__meta {
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom-color: var(--line);
  }

  .btn:hover,
  .card:hover,
  .culture-card:hover,
  .service-card:hover,
  .bracket-card:hover,
  .testimonial-card:hover,
  .office-card:hover {
    transform: none;
  }

  .schematic-panel__cursor,
  .schematic-panel--terminal .schematic-panel__list li.is-active .schematic-panel__text::after,
  .schematic-panel--terminal .schematic-panel__list li.is-erasing .schematic-panel__text::after {
    animation: none;
    opacity: 1;
  }

  .schematic-panel--terminal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .schematic-panel--terminal .schematic-panel__body {
    grid-template-rows: 1fr;
    transition: none;
  }

  .schematic-panel--terminal .schematic-panel__coords {
    opacity: 1;
    transform: none;
  }

  .monitor-bot {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .monitor-bot__eyes,
  .monitor-bot__arm,
  .monitor-bot__grip,
  .monitor-bot__antenna,
  .monitor-bot__eye {
    animation: none !important;
    transition: none !important;
  }

  .monitor-bot.is-erasing .monitor-bot__eye {
    display: none !important;
  }

  .monitor-bot.is-erasing .monitor-bot__eye-closed {
    display: block !important;
  }
}
