:root {
  --anthracite-950: #111111;
  --anthracite-900: #1a1a1a;
  --anthracite-800: #252525;
  --anthracite-700: #343434;
  --stone-warm: #4a4033;
  --vicinum-orange: #f2a51f;
  --vicinum-orange-bright: #ffbd3f;
  --candle: #ffe2a3;
  --ivory: #f8edd6;
  --lead: rgba(12, 12, 12, 0.66);
  --glass-orange: rgba(242, 165, 31, 0.24);
  --glass-smoke: rgba(31, 31, 31, 0.64);
  --panel: rgba(242, 165, 31, 0.12);
  --panel-strong: rgba(18, 18, 18, 0.76);
  --panel-soft: rgba(255, 189, 63, 0.12);
  --line: rgba(255, 226, 163, 0.2);
  --lead-line: rgba(255, 226, 163, 0.14);
  --stone-vein: rgba(248, 237, 214, 0.055);
  --shadow: rgba(0, 0, 0, 0.42);
  --vicinum-brand-font: "Cinzel", "Trajan Pro", "Palatino Linotype", "Times New Roman", serif;
  --camera-duration: 1250ms;
  --camera-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --parallax-x: 0;
  --parallax-y: 0;
  --overview-perspective: 1500px;
  --overview-center-y: 46%;
  --overview-rotate-x: 42deg;
  --overview-rotate-z: -10deg;
  --overview-scale: 0.56;
  --wallpaper-plane-width: 2760px;
  --wallpaper-plane-height: 2200px;
  --burgundy-cross-mark: url("assets/burgundy-cross-watermark.svg?v=20260528-cross-strong");
  --burgundy-cross-window-layer: none;
  --burgundy-cross-frame-layer: none;
  --burgundy-cross-panel-layer: none;
  --burgundy-cross-field-layer: none;
  --burgundy-cross-plane-layer: none;
  --burgundy-cross-divider-layer: var(--burgundy-cross-mark) center / 360px 16px no-repeat;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  background: var(--anthracite-950);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--anthracite-950);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

html:not(.js-enhanced) body {
  overflow: auto;
}

.ambient-wallpaper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 183, 49, 0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(89, 67, 39, 0.38), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(5, 5, 5, 0.72), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 226, 163, 0.012) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, rgba(255, 189, 63, 0.012) 0 1px, transparent 1px 128px),
    linear-gradient(135deg, #121212 0%, #292929 48%, #171411 100%);
  isolation: isolate;
}

.ambient-wallpaper::before {
  position: absolute;
  inset: -18%;
  z-index: 4;
  content: "";
  background:
    repeating-linear-gradient(135deg, transparent 0 118px, rgba(255, 226, 163, 0.026) 120px 122px, transparent 124px 238px),
    repeating-linear-gradient(45deg, transparent 0 158px, rgba(255, 189, 63, 0.026) 160px 162px, transparent 164px 318px);
  opacity: 0.42;
  mix-blend-mode: soft-light;
  animation: aurora-drift 22s ease-in-out infinite alternate;
}

.ambient-wallpaper::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(255, 226, 163, 0.05), transparent 24%, rgba(0, 0, 0, 0.24)),
    repeating-linear-gradient(0deg, rgba(255, 189, 63, 0.018) 0 1px, transparent 1px 5px);
  pointer-events: none;
}

.aura {
  position: absolute;
  width: 42vmax;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.56;
  transform: translate3d(0, 0, 0);
}

.aura-a {
  top: -14vmax;
  left: 4vmax;
  background: rgba(255, 174, 39, 0.34);
  animation: float-aura-a 18s ease-in-out infinite alternate;
}

.aura-b {
  right: -10vmax;
  bottom: -18vmax;
  background: rgba(5, 5, 5, 0.72);
  animation: float-aura-b 21s ease-in-out infinite alternate;
}

html.js-enhanced .static-fallback {
  display: none;
}

.static-fallback {
  position: relative;
  z-index: 20;
  display: grid;
  gap: 34px;
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0 54px;
  color: var(--ivory);
}

.static-hero,
.static-section {
  border: 1px solid rgba(255, 189, 63, 0.18);
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(135deg, rgba(242, 165, 31, 0.14), transparent 48%),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 226, 163, 0.028) 35px 36px, transparent 37px 72px),
    rgba(14, 14, 14, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.05),
    0 22px 42px rgba(0, 0, 0, 0.3);
}

.static-hero {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 6vw, 72px);
}

.static-kicker {
  margin: 0;
  color: rgba(255, 189, 63, 0.78);
  font-family: Monaco, "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.static-hero h1,
.static-section h2 {
  margin: 0;
  color: var(--ivory);
  letter-spacing: 0;
  line-height: 1;
}

.static-hero h1 {
  font-family: var(--vicinum-brand-font);
  font-size: clamp(44px, 10vw, 112px);
  font-weight: 900;
  text-transform: uppercase;
}

.static-lead,
.static-section p,
.static-service-list,
.static-step-list,
.static-legal-list {
  margin: 0;
  color: rgba(248, 237, 214, 0.74);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.55;
}

.static-lead {
  max-width: 760px;
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.36;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.static-button,
.static-link,
.static-service-list a,
.static-contact a {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.static-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 189, 63, 0.38);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
    rgba(242, 165, 31, 0.64);
}

.static-link,
.static-service-list a,
.static-contact a {
  color: rgba(255, 226, 163, 0.9);
  overflow-wrap: anywhere;
}

.static-rate {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 189, 63, 0.16);
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(255, 189, 63, 0.13), transparent 72%),
    rgba(12, 12, 12, 0.28);
}

.static-rate strong {
  color: rgba(255, 226, 163, 0.92);
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.static-button:focus-visible,
.static-link:focus-visible,
.static-service-list a:focus-visible,
.static-contact a:focus-visible {
  outline: 3px solid rgba(255, 189, 63, 0.4);
  outline-offset: 4px;
}

.static-section {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
}

.static-section h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
}

.static-service-list,
.static-step-list,
.static-legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.static-service-list li,
.static-step-list li,
.static-legal-list li {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  background: rgba(12, 12, 12, 0.28);
}

.static-service-list strong,
.static-step-list strong,
.static-legal-list strong {
  color: rgba(255, 226, 163, 0.88);
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.static-legal-list {
  grid-template-columns: 1fr;
}

.plane-focus {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform:
    translate3d(var(--plan-pan-x, 0px), var(--plan-pan-y, 0px), 0)
    scale(var(--plan-zoom, 1));
  transform-origin: center;
  transition: transform var(--camera-duration) var(--camera-ease);
  will-change: transform;
}

.wallpaper-plane {
  position: absolute;
  top: var(--overview-center-y);
  left: 50%;
  width: var(--wallpaper-plane-width);
  height: var(--wallpaper-plane-height);
  transform:
    translate3d(-50%, -50%, 0)
    perspective(var(--plane-perspective, var(--overview-perspective)))
    rotateX(var(--plane-rotate-x, var(--overview-rotate-x)))
    rotateZ(var(--plane-rotate-z, var(--overview-rotate-z)))
    translate3d(calc(var(--parallax-x) * 1px), calc(var(--parallax-y) * 1px), 0)
    scale(var(--overview-scale));
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform var(--camera-duration) var(--camera-ease);
  will-change: transform;
}

.system-layer {
  position: absolute;
  inset: 0;
  contain: layout paint;
  font-family: Monaco, "Courier New", monospace;
  letter-spacing: 0.02em;
  animation: os-drift 108s ease-in-out infinite;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.42));
  will-change: transform;
}

.system-layer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    var(--burgundy-cross-plane-layer),
    repeating-linear-gradient(0deg, transparent 0 118px, rgba(255, 226, 163, 0.035) 120px 122px, transparent 124px 238px),
    repeating-linear-gradient(90deg, transparent 0 158px, rgba(255, 189, 63, 0.04) 160px 162px, transparent 164px 318px),
    linear-gradient(116deg, transparent 0 48%, rgba(255, 226, 163, 0.045) 48.2% 48.4%, transparent 48.8%),
    linear-gradient(64deg, transparent 0 50%, rgba(255, 226, 163, 0.035) 50.2% 50.4%, transparent 50.8%);
  opacity: 0.46;
  pointer-events: none;
}

.system-layer > * {
  user-select: none;
}

.bitmap-field,
.menu-bar,
.classic-window,
.startup-dialog,
.floating-icon,
.brand-seal,
.system-caption,
.ambient-pixel {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(var(--x), var(--y), 0);
}

.bitmap-field {
  width: var(--w);
  height: var(--h);
  border: 1px solid rgba(255, 189, 63, 0.2);
  border-radius: 8px;
  opacity: 0.56;
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.045),
    0 28px 36px var(--shadow);
}

.bitmap-field.map-axis,
.bitmap-field.map-rail,
.bitmap-field.territory-spine,
.bitmap-field.compass-sector {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.bitmap-field.map-axis {
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent, rgba(255, 226, 163, 0.14), transparent),
    repeating-linear-gradient(90deg, rgba(255, 189, 63, 0.12) 0 7px, transparent 7px 44px);
}

.bitmap-field.map-axis.vertical {
  background:
    linear-gradient(180deg, transparent, rgba(255, 226, 163, 0.12), transparent),
    repeating-linear-gradient(0deg, rgba(255, 189, 63, 0.11) 0 7px, transparent 7px 44px);
}

.bitmap-field.map-rail {
  opacity: 0.45;
  background:
    repeating-linear-gradient(90deg, rgba(7, 7, 7, 0.66) 0 16px, rgba(255, 189, 63, 0.14) 16px 24px, transparent 24px 34px),
    linear-gradient(180deg, transparent, rgba(255, 226, 163, 0.08), transparent);
}

.bitmap-field.map-rail.upper {
  transform: translate3d(var(--x), var(--y), 0) rotate(-8deg);
  transform-origin: center;
}

.bitmap-field.map-rail.lower {
  transform: translate3d(var(--x), var(--y), 0) rotate(-7deg);
  transform-origin: center;
}

.bitmap-field.territory-zone {
  border: 1px solid rgba(255, 189, 63, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 189, 63, 0.035), transparent 52%),
    repeating-linear-gradient(135deg, rgba(255, 226, 163, 0.03) 0 2px, transparent 2px 44px),
    rgba(14, 14, 14, 0.2);
  opacity: 0.5;
}

.bitmap-field.territory-spine {
  background:
    linear-gradient(90deg, rgba(255, 226, 163, 0.06), transparent 72%),
    repeating-linear-gradient(0deg, rgba(255, 189, 63, 0.06) 0 3px, transparent 3px 68px),
    rgba(12, 12, 12, 0.34);
  opacity: 0.42;
}

.bitmap-field.compass-sector {
  background:
    var(--burgundy-cross-field-layer),
    repeating-linear-gradient(135deg, transparent 0 32px, rgba(255, 226, 163, 0.045) 33px 34px, transparent 35px 66px),
    repeating-linear-gradient(45deg, transparent 0 48px, rgba(255, 189, 63, 0.04) 49px 50px, transparent 51px 96px),
    rgba(30, 30, 30, 0.16);
  opacity: 0.38;
}

.bitmap-field.checker,
.bitmap-field.stained-grid {
  background:
    linear-gradient(135deg, rgba(255, 226, 163, 0.07), transparent 42%),
    repeating-conic-gradient(
      from 45deg,
      rgba(18, 18, 18, 0.58) 0 25%,
      rgba(242, 165, 31, 0.18) 0 50%
    )
    0 0 / 42px 42px,
    rgba(37, 37, 37, 0.24);
}

.bitmap-field.dither,
.bitmap-field.rose-window {
  background:
    var(--burgundy-cross-field-layer),
    repeating-linear-gradient(135deg, rgba(255, 226, 163, 0.045) 0 2px, transparent 2px 44px),
    repeating-linear-gradient(45deg, rgba(255, 189, 63, 0.035) 0 2px, transparent 2px 52px),
    rgba(30, 30, 30, 0.36);
}

.bitmap-field.menu-stripe {
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(11, 11, 11, 0.78) 0 20px,
      rgba(255, 189, 63, 0.18) 20px 27px
    ),
    rgba(61, 48, 30, 0.2);
}

.bitmap-field.desktop-ruler,
.bitmap-field.nave-arches {
  background:
    var(--burgundy-cross-field-layer),
    repeating-linear-gradient(90deg, rgba(255, 226, 163, 0.08) 0 2px, transparent 2px 32px),
    repeating-linear-gradient(0deg, rgba(10, 10, 10, 0.42) 0 18px, transparent 18px 84px),
    rgba(37, 37, 37, 0.24);
}

.menu-bar {
  z-index: 5;
  display: flex;
  align-items: center;
  width: var(--w);
  height: var(--h);
  padding: 0 34px 0 92px;
  border: 1px solid rgba(255, 189, 63, 0.3);
  border-radius: 6px;
  color: rgba(248, 237, 214, 0.88);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.86) 0 10px,
      rgba(255, 189, 63, 0.18) 10px 16px
    ),
    linear-gradient(180deg, rgba(255, 189, 63, 0.16), rgba(31, 31, 31, 0.28));
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.08),
    0 26px 32px var(--shadow);
  opacity: 0.46;
  pointer-events: none;
}

.menu-bar::before {
  position: absolute;
  left: 24px;
  top: 12px;
  width: 52px;
  height: 52px;
  content: "";
  background: url("assets/logo-vicinum.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 0 8px rgba(255, 189, 63, 0.32))
    drop-shadow(0 10px 10px rgba(0, 0, 0, 0.34));
}

.menu-item,
.menu-clock {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
}

.navigation-shortcut {
  cursor: pointer;
  outline: none;
}

.navigation-shortcut:hover,
.navigation-shortcut:focus-visible,
.navigation-shortcut.is-shortcut-active {
  color: var(--candle);
  text-shadow:
    0 0 10px rgba(255, 189, 63, 0.2),
    0 2px 0 rgba(0, 0, 0, 0.36);
}

.navigation-shortcut:focus-visible {
  box-shadow:
    inset 0 0 0 2px rgba(255, 189, 63, 0.42),
    0 0 0 6px rgba(255, 189, 63, 0.1);
}

.menu-clock {
  margin-left: auto;
  border-left: 1px solid rgba(255, 226, 163, 0.22);
  color: rgba(255, 226, 163, 0.72);
}

.desktop-site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1160px, calc(100vw - 28px));
  min-height: 62px;
  border: 1px solid rgba(255, 189, 63, 0.22);
  border-radius: 8px;
  padding: 8px 10px 8px 12px;
  color: rgba(248, 237, 214, 0.86);
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.1), transparent 46%),
    rgba(15, 15, 15, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.34);
  font-family: Monaco, "Courier New", monospace;
  transform: translateX(-50%);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 240ms ease;
  backdrop-filter: blur(14px);
}

.desktop-brand,
.desktop-nav-button {
  min-height: 44px;
  border: 1px solid transparent;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.desktop-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  max-width: 240px;
  padding: 3px 8px 3px 4px;
  text-align: left;
}

.desktop-brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  aspect-ratio: 1;
  background: url("assets/logo-vicinum.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 0 9px rgba(255, 189, 63, 0.28))
    drop-shadow(0 8px 10px rgba(0, 0, 0, 0.32));
}

.desktop-brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.desktop-brand-name {
  color: var(--ivory);
  font-family: var(--vicinum-brand-font);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-brand-line {
  color: rgba(255, 226, 163, 0.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.desktop-nav-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 189, 63, 0.12);
  border-radius: 6px;
  padding: 0 12px;
  color: rgba(248, 237, 214, 0.74);
  background: rgba(12, 12, 12, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.desktop-brand:hover,
.desktop-brand:focus-visible,
.desktop-nav-button:hover,
.desktop-nav-button:focus-visible,
.desktop-nav-button.is-shortcut-active {
  color: var(--ivory);
  outline: none;
  border-color: rgba(255, 189, 63, 0.3);
  background: rgba(255, 189, 63, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.06),
    0 0 0 4px rgba(255, 189, 63, 0.08);
  text-shadow: none;
}

.desktop-nav-button.is-shortcut-active {
  position: relative;
}

.desktop-nav-button.is-shortcut-active::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 226, 163, 0.72);
  box-shadow: 0 0 10px rgba(255, 189, 63, 0.22);
}

.desktop-nav-primary,
.desktop-nav-primary.is-shortcut-active {
  color: rgba(24, 18, 9, 0.94);
  border-color: rgba(255, 226, 163, 0.58);
  padding-inline: 15px;
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.95), rgba(255, 189, 63, 0.76)),
    rgba(242, 165, 31, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 4px rgba(255, 189, 63, 0.08),
    0 12px 22px rgba(0, 0, 0, 0.24);
}

.desktop-nav-primary:hover,
.desktop-nav-primary:focus-visible {
  color: rgba(24, 18, 9, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.94), rgba(255, 189, 63, 0.76)),
    rgba(242, 165, 31, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 0 6px rgba(255, 189, 63, 0.14),
    0 14px 26px rgba(0, 0, 0, 0.26);
}

.classic-window {
  z-index: 4;
  display: block;
  width: var(--w);
  height: var(--h);
  overflow: hidden;
  border: 1px solid rgba(255, 189, 63, 0.28);
  border-radius: 8px;
  background:
    var(--burgundy-cross-window-layer),
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(255, 226, 163, 0.08) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(116deg, transparent 0 34px, rgba(255, 226, 163, 0.035) 35px 36px, transparent 37px 70px),
    linear-gradient(135deg, rgba(255, 189, 63, 0.12), transparent 36%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(255, 189, 63, 0.08) 27px 30px),
    rgba(31, 31, 31, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.08),
    inset 0 -22px 42px rgba(0, 0, 0, 0.18),
    0 36px 48px var(--shadow);
  animation: window-breathe var(--duration, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.classic-window::before {
  position: absolute;
  inset: 11px;
  content: "";
  border: 1px solid rgba(255, 226, 163, 0.08);
  border-radius: 6px;
  background:
    var(--burgundy-cross-frame-layer),
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(242, 165, 31, 0.08) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
  opacity: 0.58;
  pointer-events: none;
}

.route-item {
  transition:
    opacity 320ms ease,
    filter 320ms ease,
    visibility 320ms ease;
}

.route-item.is-route-hidden,
.route-item.is-appointment-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(2px);
}

.route-item.is-route-hidden.focus-target::after,
.route-item.is-appointment-hidden.focus-target::after {
  pointer-events: none;
}

body[data-route="quote"] .system-layer > .classic-window[data-appointment-step],
body[data-route="quote"] .system-layer > .startup-dialog[data-appointment-step] {
  transform: translate3d(
    calc((var(--wallpaper-plane-width) - var(--w)) / 2),
    calc((var(--wallpaper-plane-height) - var(--h)) / 2),
    0
  );
}

.focus-target {
  cursor: pointer;
  touch-action: manipulation;
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    box-shadow 240ms ease;
}

.focus-target::after {
  position: absolute;
  inset: 0;
  z-index: 20;
  content: "";
}

.focus-target:hover,
.focus-target.is-hotspot-hovered,
.focus-target:focus-visible {
  filter:
    drop-shadow(0 0 12px rgba(255, 189, 63, 0.18))
    drop-shadow(0 24px 22px rgba(0, 0, 0, 0.24));
  outline: none;
}

.focus-target:focus-visible {
  box-shadow:
    inset 0 0 0 2px rgba(255, 189, 63, 0.48),
    0 0 0 8px rgba(255, 189, 63, 0.12),
    0 36px 48px var(--shadow);
}

.is-source-focused {
  z-index: 19;
  opacity: 1;
  box-shadow:
    inset 0 0 0 2px rgba(255, 189, 63, 0.36),
    0 0 54px rgba(255, 174, 39, 0.2),
    0 42px 58px rgba(0, 0, 0, 0.4);
}

.classic-window.is-source-focused {
  background:
    var(--burgundy-cross-window-layer),
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(255, 226, 163, 0.13) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(116deg, transparent 0 34px, rgba(255, 226, 163, 0.05) 35px 36px, transparent 37px 70px),
    linear-gradient(135deg, rgba(255, 189, 63, 0.22), transparent 38%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(255, 189, 63, 0.12) 27px 30px),
    rgba(37, 32, 22, 0.97);
  box-shadow:
    inset 0 0 0 2px rgba(255, 226, 163, 0.3),
    inset 0 0 90px rgba(255, 226, 163, 0.08),
    0 0 68px rgba(255, 189, 63, 0.18),
    0 42px 58px rgba(0, 0, 0, 0.34);
}

.classic-window.is-source-focused::before {
  opacity: 0.3;
}

.classic-window.is-source-focused .window-content {
  background:
    repeating-linear-gradient(135deg, transparent 0 46px, rgba(255, 226, 163, 0.02) 47px 48px, transparent 49px 94px),
    radial-gradient(circle at 85% 12%, rgba(255, 226, 163, 0.07), transparent 28%),
    rgba(255, 226, 163, 0.035);
}

.classic-window.is-source-focused .role-copy,
.classic-window.is-source-focused .icon-note,
.classic-window.is-source-focused .icon-problem,
.classic-window.is-source-focused .icon-result,
.classic-window.is-source-focused .icon-deliverable,
.classic-window.is-source-focused .about-purpose,
.classic-window.is-source-focused .about-rate-detail,
.classic-window.is-source-focused .about-principle,
.classic-window.is-source-focused .memory-detail,
.classic-window.is-source-focused .list-detail,
.classic-window.is-source-focused .list-value,
.classic-window.is-source-focused .list-impact,
.classic-window.is-source-focused .dialog-route,
.classic-window.is-source-focused .route-detail,
.classic-window.is-source-focused .quote-summary,
.classic-window.is-source-focused .project-summary,
.classic-window.is-source-focused .project-detail-copy,
.classic-window.is-source-focused .before-after-summary,
.classic-window.is-source-focused .before-after-stage-text,
.classic-window.is-source-focused .before-after-signal,
.classic-window.is-source-focused .before-after-takeaway,
.classic-window.is-source-focused .contact-copy,
.classic-window.is-source-focused .contact-detail-value,
.classic-window.is-source-focused .contact-note,
.classic-window.is-source-focused .ethics-lead,
.classic-window.is-source-focused .ethics-text,
.classic-window.is-source-focused .ethics-note,
.classic-window.is-source-focused .legal-copy,
.classic-window.is-source-focused .legal-value,
.classic-window.is-source-focused .legal-note,
.classic-window.is-source-focused .faq-answer {
  color: rgba(248, 237, 214, 0.86);
}

.classic-window.is-source-focused .role-kicker,
.classic-window.is-source-focused .project-detail-label,
.classic-window.is-source-focused .project-meta-item,
.classic-window.is-source-focused .project-chip,
.classic-window.is-source-focused .before-after-stage-label,
.classic-window.is-source-focused .before-after-metric-label,
.classic-window.is-source-focused .contact-detail-label,
.classic-window.is-source-focused .about-rate-label,
.classic-window.is-source-focused .ethics-kicker,
.classic-window.is-source-focused .ethics-index,
.classic-window.is-source-focused .legal-updated,
.classic-window.is-source-focused .legal-label {
  color: rgba(255, 226, 163, 0.9);
}

.startup-dialog.is-source-focused {
  background:
    linear-gradient(145deg, rgba(255, 189, 63, 0.22), rgba(18, 18, 18, 0.74)),
    rgba(18, 18, 18, 0.82);
}

.is-source-focused.focus-target {
  cursor: default;
}

.is-source-focused.focus-target::after {
  z-index: 0;
  pointer-events: none;
}

.is-source-focused > * {
  position: relative;
  z-index: 21;
}

.classic-window.main-window {
  --delay: -8s;
  --duration: 15s;
}

.classic-window.about-window {
  --delay: -3s;
  --duration: 13s;
}

.about-window .window-content {
  padding: 28px 34px;
}

.classic-window.ethics-window {
  --delay: -2s;
  --duration: 16s;
}

.classic-window.list-window {
  --delay: -11s;
  --duration: 17s;
}

.classic-window.regula-window {
  --delay: -4s;
  --duration: 14s;
}

.classic-window.maintenance-window {
  --delay: -7s;
  --duration: 16s;
}

.classic-window.resources-window {
  --delay: -5s;
  --duration: 18s;
}

.classic-window.offer-window {
  --delay: -13s;
  --duration: 17s;
}

.classic-window.before-after-window {
  --delay: -10s;
  --duration: 18s;
}

.classic-window.contact-window {
  --delay: -9s;
  --duration: 15s;
}

.classic-window.faq-window {
  --delay: -12s;
  --duration: 17s;
}

.classic-window.legal-window {
  --delay: -14s;
  --duration: 19s;
}

.title-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  color: rgba(248, 237, 214, 0.82);
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 226, 163, 0.18) 0 3px,
      rgba(12, 12, 12, 0.5) 3px 7px
    ),
    linear-gradient(90deg, rgba(242, 165, 31, 0.08), rgba(31, 31, 31, 0.34), rgba(242, 165, 31, 0.08));
  border-bottom: 1px solid rgba(255, 189, 63, 0.2);
}

.title-bar::after {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: -5px;
  height: 10px;
  content: "";
  background:
    var(--burgundy-cross-divider-layer),
    linear-gradient(90deg, transparent, rgba(255, 226, 163, 0.22), rgba(242, 165, 31, 0.28), rgba(255, 226, 163, 0.22), transparent);
  opacity: 0.76;
  filter: drop-shadow(0 0 8px rgba(255, 189, 63, 0.16));
  pointer-events: none;
}

.window-box {
  position: absolute;
  left: 18px;
  top: 17px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 226, 163, 0.34);
  background: rgba(12, 12, 12, 0.48);
}

.window-content {
  display: block;
  height: calc(100% - 58px);
  padding: 34px 40px;
  background:
    repeating-linear-gradient(135deg, transparent 0 46px, rgba(255, 226, 163, 0.026) 47px 48px, transparent 49px 94px),
    radial-gradient(circle at 85% 12%, rgba(255, 189, 63, 0.055), transparent 26%);
}

.maintenance-interventions,
.maintenance-cadence,
.ethics-list,
.projects-page-list,
.legal-grid {
  scrollbar-color: rgba(255, 189, 63, 0.58) rgba(12, 12, 12, 0.36);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.maintenance-interventions::-webkit-scrollbar,
.maintenance-cadence::-webkit-scrollbar,
.ethics-list::-webkit-scrollbar,
.projects-page-list::-webkit-scrollbar,
.legal-grid::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

.maintenance-interventions::-webkit-scrollbar-track,
.maintenance-cadence::-webkit-scrollbar-track,
.ethics-list::-webkit-scrollbar-track,
.projects-page-list::-webkit-scrollbar-track,
.legal-grid::-webkit-scrollbar-track {
  border: 1px solid rgba(255, 189, 63, 0.18);
  border-radius: 999px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 226, 163, 0.08) 0 2px, transparent 2px 8px),
    rgba(12, 12, 12, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 163, 0.04);
}

.maintenance-interventions::-webkit-scrollbar-thumb,
.maintenance-cadence::-webkit-scrollbar-thumb,
.ethics-list::-webkit-scrollbar-thumb,
.projects-page-list::-webkit-scrollbar-thumb,
.legal-grid::-webkit-scrollbar-thumb {
  border: 2px solid rgba(13, 10, 6, 0.9);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.86), rgba(242, 165, 31, 0.5)),
    rgba(242, 165, 31, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 10px rgba(255, 189, 63, 0.12);
}

.maintenance-interventions::-webkit-scrollbar-thumb:hover,
.maintenance-cadence::-webkit-scrollbar-thumb:hover,
.ethics-list::-webkit-scrollbar-thumb:hover,
.projects-page-list::-webkit-scrollbar-thumb:hover,
.legal-grid::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 236, 194, 0.96), rgba(255, 189, 63, 0.66)),
    rgba(242, 165, 31, 0.72);
}

.maintenance-interventions::-webkit-scrollbar-corner,
.maintenance-cadence::-webkit-scrollbar-corner,
.ethics-list::-webkit-scrollbar-corner,
.projects-page-list::-webkit-scrollbar-corner,
.legal-grid::-webkit-scrollbar-corner {
  background: transparent;
}

.services-panel,
.options-panel,
.ethics-panel,
.projects-page-panel,
.maintenance-guide-panel,
.resources-page-panel,
.offer-guide-panel,
.regula-panel,
.before-after-panel,
.faq-panel,
.contact-panel,
.legal-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
  height: 100%;
}

.services-panel,
.options-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.regula-panel {
  grid-template-rows: auto auto auto auto auto auto;
  gap: 16px;
}

.projects-page-panel {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
}

.maintenance-guide-panel {
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  gap: 14px;
}

.resources-page-panel {
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 15px;
}

.offer-guide-panel {
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 12px;
}

.before-after-panel {
  grid-template-rows: auto auto auto auto auto auto;
  gap: 16px;
}

.faq-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
}

.legal-panel {
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  gap: 14px;
}

.panel-role {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 63, 0.18);
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(90deg, rgba(242, 165, 31, 0.12), transparent 52%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 226, 163, 0.032) 25px 26px, transparent 27px 52px),
    rgba(12, 12, 12, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.045),
    inset 5px 0 0 rgba(242, 165, 31, 0.16);
}

.panel-role::before {
  position: absolute;
  inset: 8px 10px;
  content: "";
  border: 1px solid rgba(255, 226, 163, 0.065);
  pointer-events: none;
}

.role-kicker {
  color: rgba(255, 226, 163, 0.88);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.role-copy {
  color: rgba(248, 237, 214, 0.64);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.panel-role-action {
  justify-self: start;
  min-height: 34px;
  margin-top: 4px;
  border: 1px solid rgba(255, 189, 63, 0.28);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 226, 163, 0.86);
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.2), transparent 72%),
    rgba(12, 12, 12, 0.34);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-role-action:hover,
.panel-role-action:focus-visible {
  outline: none;
  color: var(--ivory);
  border-color: rgba(255, 189, 63, 0.48);
  box-shadow:
    0 0 0 4px rgba(255, 189, 63, 0.08),
    0 10px 18px rgba(0, 0, 0, 0.2);
}

.maintenance-guide-header {
  display: grid;
  gap: 7px;
}

.maintenance-guide-title {
  display: block;
  color: rgba(255, 226, 163, 0.9);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.06;
  text-transform: uppercase;
  text-wrap: balance;
}

.maintenance-guide-intro,
.maintenance-pillar-detail,
.maintenance-pillar-outcome,
.maintenance-list-item,
.maintenance-cadence-detail,
.maintenance-note {
  color: rgba(248, 237, 214, 0.64);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.38;
}

.maintenance-guide-intro {
  color: rgba(255, 226, 163, 0.62);
  font-size: 14px;
  font-weight: 780;
}

.maintenance-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.maintenance-pillar,
.maintenance-interventions,
.maintenance-cadence {
  border: 1px solid rgba(255, 189, 63, 0.14);
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(135deg, rgba(242, 165, 31, 0.1), transparent 50%),
    rgba(12, 12, 12, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 163, 0.04);
}

.maintenance-pillar {
  display: grid;
  gap: 5px;
  min-height: 134px;
  padding: 12px;
}

.maintenance-pillar-label,
.maintenance-list-title,
.maintenance-cadence-label {
  color: rgba(255, 226, 163, 0.86);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.18;
  text-transform: uppercase;
}

.maintenance-pillar-outcome,
.maintenance-cadence-detail {
  color: rgba(255, 226, 163, 0.62);
  font-weight: 800;
}

.maintenance-guide-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
  min-height: 0;
}

.maintenance-interventions,
.maintenance-cadence {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  overflow: auto;
  padding: 13px;
}

.maintenance-list-item,
.maintenance-cadence-item {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(255, 189, 63, 0.1);
  padding-top: 8px;
}

.maintenance-list-title {
  color: rgba(255, 189, 63, 0.76);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
}

.maintenance-note {
  display: block;
  border: 1px solid rgba(255, 189, 63, 0.12);
  padding: 10px 12px;
  color: rgba(248, 237, 214, 0.66);
  background: rgba(12, 12, 12, 0.22);
}

.maintenance-action {
  position: relative;
  justify-self: start;
  min-height: 38px;
  border: 1px solid rgba(255, 189, 63, 0.38);
  border-radius: 999px;
  padding: 0 96px 0 16px;
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.22), transparent 70%),
    rgba(12, 12, 12, 0.36);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.maintenance-action:hover,
.maintenance-action:focus-visible,
.maintenance-action.is-selected {
  outline: none;
  border-color: rgba(255, 226, 163, 0.58);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.28), transparent 72%),
    rgba(18, 18, 18, 0.54);
  box-shadow:
    0 0 0 5px rgba(255, 189, 63, 0.1),
    0 12px 20px rgba(0, 0, 0, 0.22);
}

.resources-header {
  display: grid;
  gap: 7px;
}

.resources-status,
.resources-block-title,
.resources-type-format,
.resources-topic-meta-item,
.resources-topic-tag,
.resources-structure-label {
  color: rgba(255, 189, 63, 0.76);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.resources-title {
  color: rgba(255, 226, 163, 0.9);
  font-size: 34px;
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
}

.resources-intro,
.resources-type-detail,
.resources-type-value,
.resources-structure-detail,
.resources-topic-question,
.resources-topic-outcome,
.resources-note {
  color: rgba(248, 237, 214, 0.64);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.38;
}

.resources-intro {
  max-width: 980px;
  color: rgba(255, 226, 163, 0.64);
  font-size: 15px;
  font-weight: 780;
}

.resources-body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 14px;
}

.resources-type-list,
.resources-topic-list {
  display: grid;
  gap: 12px;
}

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

.resources-type-card,
.resources-structure,
.resources-topic-card,
.resources-note {
  border: 1px solid rgba(255, 189, 63, 0.14);
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(135deg, rgba(242, 165, 31, 0.1), transparent 50%),
    rgba(12, 12, 12, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 163, 0.04);
}

.resources-type-card,
.resources-structure,
.resources-topic-card {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 13px;
}

.resources-type-label,
.resources-topic-title {
  color: rgba(255, 226, 163, 0.88);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: balance;
}

.resources-type-value,
.resources-topic-outcome {
  color: rgba(255, 226, 163, 0.62);
  font-weight: 800;
}

.resources-structure {
  gap: 8px;
}

.resources-structure-item {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(255, 189, 63, 0.1);
  padding-top: 8px;
}

.resources-topic-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.resources-topic-meta,
.resources-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.resources-topic-meta-item,
.resources-topic-tag {
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 4px 7px;
  background: rgba(12, 12, 12, 0.22);
  font-size: 10px;
}

.resources-topic-tag {
  color: rgba(255, 226, 163, 0.68);
}

.resources-note {
  display: block;
  padding: 11px 13px;
}

.offer-guide-header {
  display: grid;
  gap: 6px;
}

.offer-status,
.offer-card-label,
.offer-condition {
  color: rgba(255, 189, 63, 0.76);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.offer-title {
  color: rgba(255, 226, 163, 0.9);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
}

.offer-intro,
.offer-card-line,
.offer-card-limit,
.offer-note {
  color: rgba(248, 237, 214, 0.64);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.34;
}

.offer-intro {
  color: rgba(255, 226, 163, 0.64);
  font-size: 13px;
  font-weight: 780;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  min-height: 0;
}

.offer-card,
.offer-conditions,
.offer-note {
  border: 1px solid rgba(255, 189, 63, 0.14);
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(135deg, rgba(242, 165, 31, 0.1), transparent 50%),
    rgba(12, 12, 12, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 163, 0.04);
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 126px;
  padding: 10px;
}

.offer-card-range {
  color: rgba(255, 226, 163, 0.88);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.12;
}

.offer-card-limit {
  color: rgba(255, 226, 163, 0.58);
  font-weight: 800;
}

.offer-conditions {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
}

.offer-condition {
  color: rgba(248, 237, 214, 0.66);
  font-size: 10px;
  text-transform: none;
}

.offer-note {
  display: block;
  padding: 9px 12px;
  color: rgba(255, 226, 163, 0.62);
}

.role-copy,
.icon-note,
.icon-problem,
.icon-result,
.icon-deliverable,
.about-purpose,
.memory-detail,
.list-detail,
.list-value,
.list-impact,
.dialog-route,
.route-detail,
.quote-summary,
.quote-form {
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.role-copy,
.icon-note,
.about-purpose,
.memory-detail,
.list-detail,
.list-value,
.dialog-route,
.route-detail,
.quote-summary {
  opacity: 0.72;
  transform: translateY(0);
}

.is-source-focused .role-copy,
.is-source-focused .icon-note,
.is-source-focused .icon-problem,
.is-source-focused .icon-result,
.is-source-focused .icon-deliverable,
.is-source-focused .about-purpose,
.is-source-focused .memory-detail,
.is-source-focused .list-detail,
.is-source-focused .list-value,
.is-source-focused .list-impact,
.is-source-focused .dialog-route,
.is-source-focused .route-detail,
.is-source-focused .quote-summary,
.is-source-focused .quote-form {
  opacity: 1;
  transform: translateY(0);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 34px;
  min-height: 0;
}

.desktop-icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 130px;
  color: rgba(248, 237, 214, 0.82);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.service-card,
.option-item,
.maintenance-action,
.about-action,
.panel-role-action,
.appointment-step-action,
.faq-action,
.contact-action,
.legal-action,
.dialog-button {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.service-card,
.option-item,
.maintenance-action,
.about-action,
.panel-role-action,
.appointment-step-action,
.faq-action,
.contact-action,
.legal-action {
  color: inherit;
}

.appointment-step-action[hidden] {
  display: none !important;
}

.appointment-step-action {
  justify-self: start;
  align-self: end;
  min-height: 42px;
  max-width: 100%;
  border: 1px solid rgba(255, 189, 63, 0.46);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.86), rgba(242, 165, 31, 0.7)),
    rgba(242, 165, 31, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 13px 22px rgba(0, 0, 0, 0.22);
  font-family: Monaco, "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: normal;
}

.appointment-step-action:hover,
.appointment-step-action:focus-visible {
  outline: none;
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.96), rgba(255, 189, 63, 0.76)),
    rgba(242, 165, 31, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 5px rgba(255, 189, 63, 0.12),
    0 14px 24px rgba(0, 0, 0, 0.24);
}

.service-card {
  position: relative;
  min-height: 178px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background:
    linear-gradient(180deg, transparent 0 68%, rgba(255, 226, 163, 0.026) 68.5% 69%, transparent 69.5%),
    transparent;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-selected {
  outline: none;
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(145deg, rgba(242, 165, 31, 0.1), transparent 58%),
    rgba(242, 165, 31, 0.06);
  border-color: rgba(255, 189, 63, 0.26);
}

.service-card.is-selected {
  background:
    linear-gradient(145deg, rgba(255, 189, 63, 0.16), transparent 56%),
    rgba(242, 165, 31, 0.08);
  border-color: rgba(255, 226, 163, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.14),
    0 14px 24px rgba(0, 0, 0, 0.2);
}

.service-card.is-selected .icon-art,
.option-item.is-selected .mini-icon {
  box-shadow:
    inset 0 0 0 2px rgba(255, 226, 163, 0.34),
    0 0 24px rgba(255, 189, 63, 0.18),
    0 14px 22px rgba(0, 0, 0, 0.24);
}

.selection-marker {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  max-width: calc(100% - 16px);
  border: 1px solid rgba(255, 226, 163, 0.5);
  border-radius: 4px;
  padding: 0 7px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 237, 192, 0.94), rgba(242, 165, 31, 0.84)),
    rgba(242, 165, 31, 0.84);
  box-shadow:
    0 0 0 3px rgba(255, 189, 63, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.is-selected > .selection-marker {
  opacity: 1;
  transform: translateY(0);
}

.is-selected:hover > .selection-marker,
.is-selected:focus-visible > .selection-marker {
  color: rgba(255, 226, 163, 0.94);
  background:
    linear-gradient(180deg, rgba(32, 22, 10, 0.96), rgba(22, 17, 12, 0.94)),
    rgba(18, 18, 18, 0.9);
  font-size: 0;
}

.is-selected:hover > .selection-marker::after,
.is-selected:focus-visible > .selection-marker::after {
  content: "Retirer";
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
}

.floating-icon {
  width: var(--w);
  height: var(--h);
  animation: icon-hover 12s ease-in-out infinite;
}

.floating-icon.navigation-shortcut:hover .icon-art,
.floating-icon.navigation-shortcut:focus-visible .icon-art,
.floating-icon.navigation-shortcut.is-shortcut-active .icon-art {
  box-shadow:
    inset 0 0 0 2px rgba(255, 189, 63, 0.34),
    0 0 28px rgba(255, 189, 63, 0.18),
    0 16px 24px rgba(0, 0, 0, 0.28);
}

.floating-icon:nth-of-type(2n) {
  animation-delay: -5s;
}

.icon-art,
.mini-icon,
.about-face,
.dialog-face {
  display: block;
  background: rgba(18, 18, 18, 0.76);
  box-shadow:
    inset 0 0 0 2px rgba(255, 189, 63, 0.18),
    0 16px 24px rgba(0, 0, 0, 0.28);
}

.icon-art {
  position: relative;
  width: 82px;
  height: 70px;
  border-radius: 4px;
}

.folder .icon-art,
.drive .icon-art,
.disk .icon-art,
.network .icon-art,
.trash .icon-art {
  background:
    linear-gradient(rgba(255, 226, 163, 0.18), transparent 42%),
    rgba(22, 22, 22, 0.8);
}

.folder .icon-art::before,
.drive .icon-art::before {
  position: absolute;
  left: 10px;
  top: -10px;
  width: 36px;
  height: 18px;
  content: "";
  border-radius: 4px 4px 0 0;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: inset 0 0 0 2px rgba(255, 189, 63, 0.16);
}

.face .icon-art,
.mac .icon-art {
  width: 76px;
  height: 76px;
  border-radius: 38px 38px 12px 12px;
  background:
    radial-gradient(circle at 30% 34%, rgba(255, 226, 163, 0.54) 0 5px, transparent 6px),
    radial-gradient(circle at 69% 34%, rgba(255, 226, 163, 0.54) 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 43%, rgba(242, 165, 31, 0.42) 44% 56%, transparent 57%),
    linear-gradient(0deg, transparent 51%, rgba(255, 226, 163, 0.28) 52% 58%, transparent 59%),
    rgba(18, 18, 18, 0.78);
}

.document .icon-art {
  width: 66px;
  height: 78px;
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(255, 226, 163, 0.2) 79%),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 189, 63, 0.16) 10px 13px),
    rgba(18, 18, 18, 0.78);
}

.trash .icon-art {
  width: 76px;
  height: 76px;
  border-radius: 0 0 10px 10px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 226, 163, 0.14) 0 4px, transparent 4px 14px),
    rgba(18, 18, 18, 0.78);
}

.service-card .icon-art {
  width: 88px;
  height: 78px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 226, 163, 0.1), transparent 48%),
    rgba(18, 18, 18, 0.82);
}

.service-card .icon-art::before,
.service-card .icon-art::after {
  position: absolute;
  content: "";
  box-sizing: border-box;
}

.service-showcase .icon-art {
  background:
    linear-gradient(0deg, rgba(255, 189, 63, 0.18) 0 12px, transparent 12px),
    linear-gradient(90deg, transparent 0 12px, rgba(255, 226, 163, 0.2) 12px 15px, transparent 15px),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 189, 63, 0.12) 12px 14px),
    rgba(18, 18, 18, 0.82);
}

.service-showcase .icon-art::before {
  inset: 10px 12px auto;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8px 50%, rgba(255, 226, 163, 0.64) 0 2px, transparent 3px),
    radial-gradient(circle at 18px 50%, rgba(255, 189, 63, 0.5) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255, 226, 163, 0.28), rgba(242, 165, 31, 0.12));
}

.service-showcase .icon-art::after {
  right: 13px;
  bottom: 13px;
  width: 30px;
  height: 12px;
  border: 2px solid rgba(255, 226, 163, 0.34);
  border-radius: 999px;
  background: rgba(242, 165, 31, 0.18);
}

.service-redesign .icon-art {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 226, 163, 0.08) 0 48%, rgba(242, 165, 31, 0.22) 48% 52%, rgba(255, 189, 63, 0.13) 52%),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 189, 63, 0.12) 10px 12px),
    rgba(18, 18, 18, 0.84);
}

.service-redesign .icon-art::before {
  left: 17px;
  top: 18px;
  width: 54px;
  height: 36px;
  border: 2px solid rgba(255, 226, 163, 0.32);
  border-left-color: rgba(255, 226, 163, 0.12);
  border-radius: 999px;
}

.service-redesign .icon-art::after {
  right: 13px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-top: 8px solid rgba(255, 189, 63, 0.58);
  border-left: 8px solid transparent;
  transform: rotate(34deg);
}

.service-webapp .icon-art {
  background:
    linear-gradient(90deg, rgba(255, 189, 63, 0.18) 0 24px, transparent 24px),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(255, 226, 163, 0.12) 14px 16px),
    rgba(18, 18, 18, 0.84);
}

.service-webapp .icon-art::before {
  left: 31px;
  top: 14px;
  width: 42px;
  height: 38px;
  background:
    linear-gradient(rgba(255, 226, 163, 0.18), rgba(255, 226, 163, 0.18)) 0 0 / 16px 14px no-repeat,
    linear-gradient(rgba(255, 189, 63, 0.22), rgba(255, 189, 63, 0.22)) 24px 0 / 18px 14px no-repeat,
    linear-gradient(rgba(255, 226, 163, 0.12), rgba(255, 226, 163, 0.12)) 0 24px / 42px 14px no-repeat;
  border: 1px solid rgba(255, 226, 163, 0.18);
}

.service-webapp .icon-art::after {
  left: 10px;
  top: 14px;
  width: 14px;
  height: 46px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 12px, rgba(255, 226, 163, 0.58) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 24px, rgba(255, 226, 163, 0.38) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 36px, rgba(255, 226, 163, 0.48) 0 3px, transparent 4px),
    rgba(242, 165, 31, 0.16);
}

.service-care .icon-art {
  background:
    radial-gradient(circle at 63% 33%, rgba(255, 226, 163, 0.14) 0 16px, transparent 17px),
    repeating-linear-gradient(135deg, rgba(255, 189, 63, 0.08) 0 5px, transparent 5px 12px),
    rgba(18, 18, 18, 0.84);
}

.service-care .icon-art::before {
  left: 26px;
  top: 14px;
  width: 14px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 226, 163, 0.48);
  transform: rotate(42deg);
  transform-origin: center;
}

.service-care .icon-art::after {
  right: 20px;
  top: 14px;
  width: 24px;
  height: 24px;
  border: 6px solid rgba(255, 189, 63, 0.5);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.service-speed .icon-art {
  border-radius: 44px 44px 14px 14px;
  background:
    conic-gradient(from 230deg at 50% 64%, rgba(255, 189, 63, 0.16) 0 86deg, rgba(255, 226, 163, 0.46) 86deg 150deg, transparent 150deg 260deg),
    radial-gradient(circle at 50% 65%, rgba(18, 18, 18, 0.86) 0 22px, transparent 23px),
    rgba(18, 18, 18, 0.84);
}

.service-speed .icon-art::before {
  left: 42px;
  top: 23px;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 226, 163, 0.7);
  transform: rotate(56deg);
  transform-origin: 50% 100%;
}

.service-speed .icon-art::after {
  left: 37px;
  top: 53px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(242, 165, 31, 0.68);
  box-shadow: 0 0 0 6px rgba(255, 189, 63, 0.08);
}

.service-strategy .icon-art {
  width: 72px;
  height: 84px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(255, 226, 163, 0.2) 79%),
    linear-gradient(90deg, transparent 0 17px, rgba(255, 189, 63, 0.16) 17px 20px, transparent 20px),
    rgba(18, 18, 18, 0.84);
}

.service-strategy .icon-art::before {
  left: 13px;
  top: 18px;
  width: 44px;
  height: 46px;
  background:
    radial-gradient(circle at 4px 4px, rgba(255, 226, 163, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 30px 20px, rgba(255, 189, 63, 0.54) 0 4px, transparent 5px),
    radial-gradient(circle at 13px 42px, rgba(255, 226, 163, 0.48) 0 4px, transparent 5px);
}

.service-strategy .icon-art::after {
  left: 18px;
  top: 25px;
  width: 34px;
  height: 30px;
  border-top: 2px solid rgba(255, 226, 163, 0.34);
  border-right: 2px solid rgba(255, 226, 163, 0.34);
  transform: skewY(-22deg);
}

.service-card .service-icon-art {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card .service-icon-art::before,
.service-card .service-icon-art::after {
  display: none;
}

.service-icon-img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 7px 6px rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.service-card:hover .service-icon-art,
.service-card:focus-visible .service-icon-art,
.service-card.is-selected .service-icon-art {
  background: transparent;
  box-shadow: none;
}

.icon-label,
.list-label {
  display: block;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.34);
}

.icon-note {
  display: block;
  max-width: 170px;
  color: rgba(255, 226, 163, 0.52);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.icon-problem,
.icon-result,
.icon-deliverable {
  display: block;
  max-width: 210px;
  max-height: 0;
  overflow: hidden;
  color: rgba(248, 237, 214, 0.56);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.28;
}

.icon-problem {
  color: rgba(255, 226, 163, 0.58);
}

.icon-deliverable {
  color: rgba(255, 226, 163, 0.64);
}

.is-source-focused .icon-problem,
.is-source-focused .icon-result,
.is-source-focused .icon-deliverable {
  max-height: 80px;
}

.service-card:hover .icon-problem,
.service-card:focus-visible .icon-problem,
.service-card.is-selected .icon-problem {
  max-height: 80px;
  opacity: 0.86;
  transform: translateY(0);
}

.service-card:hover .icon-result,
.service-card:focus-visible .icon-result,
.service-card.is-selected .icon-result {
  max-height: 80px;
  opacity: 0.78;
  transform: translateY(0);
}

.about-panel {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px 22px;
  align-content: start;
  align-items: start;
}

.about-face {
  grid-row: 1 / span 3;
  width: 112px;
  height: 112px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 226, 163, 0.16), transparent 56%),
    url("assets/logo-vicinum.svg") center / 86% no-repeat,
    rgba(18, 18, 18, 0.78);
}

.about-title,
.about-copy,
.about-purpose,
.about-principles {
  grid-column: 2;
}

.brand-seal {
  z-index: 2;
  width: var(--w);
  height: var(--h);
  border-radius: 50%;
  background:
    url("assets/logo-vicinum.svg") center / contain no-repeat,
    radial-gradient(circle at 50% 50%, rgba(255, 226, 163, 0.16) 0 3%, transparent 4% 18%, rgba(255, 189, 63, 0.12) 19% 21%, transparent 22%),
    repeating-conic-gradient(from 8deg at 50% 50%, rgba(255, 189, 63, 0.1) 0 4deg, transparent 4deg 16deg),
    radial-gradient(circle at 50% 50%, rgba(255, 189, 63, 0.18), transparent 62%);
  opacity: 0.2;
  mix-blend-mode: screen;
  filter:
    saturate(0.96)
    drop-shadow(0 0 42px rgba(255, 189, 63, 0.16));
  pointer-events: none;
  animation: seal-breathe 16s ease-in-out infinite;
}

.about-title,
.dialog-title {
  display: block;
  color: rgba(255, 226, 163, 0.9);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-title {
  font-family: var(--vicinum-brand-font);
}

.startup-dialog .dialog-title {
  font-size: 28px;
  line-height: 1.05;
}

.about-copy,
.dialog-text,
.memory-label {
  color: rgba(248, 237, 214, 0.66);
  font-size: 18px;
  font-weight: 700;
}

.startup-dialog .dialog-text {
  font-size: 15px;
  line-height: 1.3;
}

.about-purpose {
  color: rgba(255, 226, 163, 0.56);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.about-rate {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: baseline;
  border: 1px solid rgba(255, 189, 63, 0.16);
  padding: 9px 12px;
  background:
    linear-gradient(90deg, rgba(255, 189, 63, 0.14), transparent 72%),
    rgba(12, 12, 12, 0.26);
}

.about-rate-label {
  color: rgba(255, 189, 63, 0.78);
  font-family: Monaco, "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-rate-value {
  color: rgba(255, 226, 163, 0.94);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-rate-detail {
  grid-column: 1 / -1;
  color: rgba(248, 237, 214, 0.62);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.32;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.about-principle {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 189, 63, 0.16);
  color: rgba(255, 226, 163, 0.82);
  background: rgba(12, 12, 12, 0.24);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.memory-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 5px 18px;
}

.memory-detail {
  grid-column: 1 / -1;
  color: rgba(248, 237, 214, 0.52);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
}

.method-list {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.method-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 7px 9px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  background: rgba(12, 12, 12, 0.22);
}

.method-step-index {
  display: grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 189, 63, 0.18);
  color: rgba(255, 189, 63, 0.74);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
}

.method-step-body {
  display: grid;
  gap: 2px;
}

.method-step-title {
  color: rgba(255, 226, 163, 0.84);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.method-step-detail,
.method-step-result {
  color: rgba(248, 237, 214, 0.58);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.25;
}

.method-step-result {
  color: rgba(255, 226, 163, 0.62);
}

.about-action {
  justify-self: start;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 189, 63, 0.28);
  border-radius: 999px;
  color: rgba(255, 226, 163, 0.84);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(12, 12, 12, 0.34);
}

.about-action:hover,
.about-action:focus-visible {
  outline: none;
  background: rgba(242, 165, 31, 0.16);
}

.ethics-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
}

.ethics-header {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 14px 16px;
  background:
    linear-gradient(115deg, rgba(242, 165, 31, 0.14), transparent 54%),
    rgba(12, 12, 12, 0.22);
}

.ethics-kicker {
  color: rgba(255, 189, 63, 0.78);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ethics-title {
  color: rgba(255, 226, 163, 0.92);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.ethics-lead {
  max-width: 780px;
  color: rgba(248, 237, 214, 0.72);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.38;
}

.ethics-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 0;
  overflow: auto;
  padding-right: 10px;
}

.ethics-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(255, 189, 63, 0.13);
  padding: 9px 10px;
  background:
    linear-gradient(135deg, rgba(242, 165, 31, 0.08), transparent 48%),
    rgba(12, 12, 12, 0.24);
}

.ethics-index {
  display: grid;
  place-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 189, 63, 0.18);
  color: rgba(255, 189, 63, 0.76);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
}

.ethics-text {
  color: rgba(248, 237, 214, 0.66);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.34;
}

.ethics-note {
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 10px 13px;
  color: rgba(255, 226, 163, 0.68);
  background: rgba(12, 12, 12, 0.24);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.34;
}

.ethics-window.is-source-focused .ethics-list {
  gap: 10px;
}

.ethics-window.is-source-focused .ethics-title {
  font-size: 38px;
}

.ethics-window.is-source-focused .ethics-lead {
  font-size: 18px;
}

.ethics-window.is-source-focused .ethics-text {
  font-size: 14px;
  line-height: 1.4;
}

.memory-meter,
.progress-track {
  position: relative;
  display: block;
  height: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 189, 63, 0.24);
  background: rgba(10, 10, 10, 0.44);
}

.memory-meter::before,
.progress-track::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 70%);
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 226, 163, 0.42) 0 8px, transparent 8px 14px),
    linear-gradient(90deg, rgba(242, 165, 31, 0.42), rgba(255, 189, 63, 0.2));
}

.extension-list {
  display: grid;
  gap: 12px;
}

.projects-page-list {
  display: grid;
  gap: 18px;
  min-height: 0;
  overflow: auto;
  padding: 0 8px 22px 0;
}

.project-sheet {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 22px;
  min-height: 430px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 18px;
  background:
    var(--burgundy-cross-panel-layer),
    linear-gradient(145deg, rgba(242, 165, 31, 0.1), transparent 54%),
    rgba(12, 12, 12, 0.3);
}

.project-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 392px;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 63, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 226, 163, 0.09), transparent 42%),
    rgba(18, 18, 18, 0.42);
}

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

.project-visual::before {
  inset: 18px;
  border: 1px solid rgba(255, 226, 163, 0.12);
}

.project-visual::after {
  inset: auto 20px 20px;
  height: 44px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 226, 163, 0.24) 0 8px, transparent 8px 13px),
    linear-gradient(90deg, rgba(242, 165, 31, 0.28), transparent);
  opacity: 0.78;
}

.project-visual-regula {
  background: transparent;
}

.project-visual-showcase {
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.14) 0 22%, transparent 22%),
    linear-gradient(90deg, transparent 0 46%, rgba(242, 165, 31, 0.2) 46% 54%, transparent 54%),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 189, 63, 0.12) 24px 27px),
    rgba(18, 18, 18, 0.5);
}

.project-visual-parish {
  background: transparent;
}

.project-visual-regula::before,
.project-visual-regula::after,
.project-visual-parish::before,
.project-visual-parish::after {
  display: none;
}

.project-visual-workflow {
  background:
    radial-gradient(circle at 35% 34%, rgba(255, 226, 163, 0.24) 0 18px, transparent 19px),
    radial-gradient(circle at 68% 54%, rgba(242, 165, 31, 0.22) 0 22px, transparent 23px),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 226, 163, 0.13) 43% 45%, transparent 46%),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 189, 63, 0.1) 32px 34px),
    rgba(18, 18, 18, 0.5);
}

.project-visual-img {
  position: relative;
  z-index: 1;
  width: 176px;
  max-height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.28));
}

.project-visual-parish .project-visual-img {
  width: 202px;
  max-height: 202px;
}

.project-sheet-body {
  display: grid;
  gap: 12px;
  align-content: stretch;
  min-width: 0;
}

.project-meta,
.project-chip-list,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.project-meta-item,
.project-chip {
  border: 1px solid rgba(255, 189, 63, 0.16);
  padding: 4px 7px;
  color: rgba(255, 189, 63, 0.76);
  background: rgba(12, 12, 12, 0.22);
  font-family: Monaco, "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-chip {
  color: rgba(255, 226, 163, 0.68);
  letter-spacing: 0.02em;
}

.project-title {
  color: rgba(255, 226, 163, 0.9);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.06;
  text-transform: uppercase;
}

.project-summary {
  color: rgba(248, 237, 214, 0.66);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.42;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.project-detail {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(255, 189, 63, 0.11);
  padding: 10px 12px;
  background: rgba(12, 12, 12, 0.24);
}

.project-detail-label {
  color: rgba(255, 189, 63, 0.74);
  font-family: Monaco, "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-detail-copy {
  color: rgba(248, 237, 214, 0.56);
  font-size: 12px;
  font-weight: 730;
  line-height: 1.42;
}

.project-actions {
  margin-top: auto;
}

.project-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(255, 189, 63, 0.32);
  border-radius: 8px;
  padding: 0 13px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.projects-window.is-source-focused .projects-page-list {
  gap: 22px;
  padding-bottom: 120px;
}

.projects-window.is-source-focused .project-sheet {
  min-height: 500px;
  padding: 20px;
}

.projects-window.is-source-focused .project-visual {
  min-height: 458px;
}

.projects-window.is-source-focused .project-title {
  font-size: 34px;
}

.projects-window.is-source-focused .project-summary {
  font-size: 17px;
}

.projects-window.is-source-focused .project-detail-label,
.projects-window.is-source-focused .project-meta-item,
.projects-window.is-source-focused .project-chip {
  font-size: 11px;
}

.projects-window.is-source-focused .project-detail-copy {
  font-size: 14px;
}

.projects-window.is-source-focused .project-link {
  min-height: 42px;
  font-size: 12px;
}

.project-link {
  color: rgba(255, 226, 163, 0.84);
  background: rgba(12, 12, 12, 0.3);
}

.project-link:hover,
.project-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 189, 63, 0.12);
}

.regula-header {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.regula-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 226, 163, 0.18), transparent 58%),
    linear-gradient(145deg, rgba(248, 237, 214, 0.9), rgba(214, 198, 160, 0.76));
  box-shadow: inset 0 0 0 1px rgba(44, 32, 16, 0.14);
}

.regula-logo {
  width: min(240px, 78%);
  max-height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(30, 24, 12, 0.16));
}

.regula-intro {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  background:
    linear-gradient(120deg, rgba(242, 165, 31, 0.14), transparent 50%),
    rgba(12, 12, 12, 0.28);
}

.regula-kicker,
.regula-fact-label {
  color: rgba(255, 189, 63, 0.76);
  font-family: Monaco, "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.regula-title {
  color: rgba(255, 226, 163, 0.92);
  font-size: 40px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.regula-subtitle {
  color: rgba(248, 237, 214, 0.78);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

.regula-copy,
.regula-proof,
.regula-stack {
  color: rgba(248, 237, 214, 0.66);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.42;
}

.regula-proof,
.regula-stack {
  padding: 13px 16px;
  border: 1px solid rgba(255, 189, 63, 0.12);
  background: rgba(12, 12, 12, 0.24);
}

.regula-proof {
  color: rgba(255, 226, 163, 0.7);
  font-weight: 780;
}

.regula-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.regula-highlight,
.regula-fact {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid rgba(255, 189, 63, 0.12);
  background:
    linear-gradient(145deg, rgba(242, 165, 31, 0.08), transparent 48%),
    rgba(12, 12, 12, 0.26);
}

.regula-highlight {
  padding: 12px 13px;
}

.regula-highlight-title {
  color: rgba(255, 226, 163, 0.82);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.regula-highlight-copy,
.regula-fact-value {
  color: rgba(248, 237, 214, 0.58);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.32;
}

.regula-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.regula-fact {
  padding: 11px 12px;
}

.regula-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.regula-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 189, 63, 0.32);
  border-radius: 8px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.regula-link {
  color: rgba(255, 226, 163, 0.86);
  background: rgba(12, 12, 12, 0.3);
}

.regula-link:hover,
.regula-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 189, 63, 0.12);
}

.before-after-case {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  background:
    linear-gradient(120deg, rgba(242, 165, 31, 0.12), transparent 54%),
    rgba(12, 12, 12, 0.26);
}

.before-after-status,
.before-after-stage-label,
.before-after-metric-label {
  color: rgba(255, 189, 63, 0.76);
  font-family: Monaco, "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.before-after-title {
  color: rgba(255, 226, 163, 0.88);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.before-after-summary {
  color: rgba(248, 237, 214, 0.62);
  font-size: 14px;
  font-weight: 740;
  line-height: 1.36;
}

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

.before-after-stage {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  min-height: 210px;
  padding: 13px;
  border: 1px solid rgba(255, 189, 63, 0.13);
  background:
    linear-gradient(145deg, rgba(242, 165, 31, 0.08), transparent 48%),
    rgba(12, 12, 12, 0.3);
}

.before-after-stage:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 226, 163, 0.12), transparent 50%),
    rgba(16, 14, 11, 0.34);
}

.before-after-stage-title {
  color: rgba(255, 226, 163, 0.82);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.before-after-stage-text,
.before-after-signal,
.before-after-takeaway {
  color: rgba(248, 237, 214, 0.58);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.34;
}

.before-after-signal {
  margin-top: auto;
  border-top: 1px solid rgba(255, 189, 63, 0.12);
  padding-top: 8px;
  color: rgba(255, 226, 163, 0.62);
  font-weight: 800;
}

.before-after-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.before-after-metric {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
  border: 1px solid rgba(255, 189, 63, 0.12);
  padding: 10px;
  background: rgba(12, 12, 12, 0.24);
}

.before-after-metric-label {
  grid-column: 1 / -1;
}

.before-after-metric-before,
.before-after-metric-after,
.before-after-metric-arrow {
  color: rgba(248, 237, 214, 0.58);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.before-after-metric-after {
  color: rgba(255, 226, 163, 0.76);
}

.before-after-takeaway {
  border: 1px solid rgba(255, 189, 63, 0.12);
  padding: 12px 14px;
  background: rgba(12, 12, 12, 0.26);
  color: rgba(255, 226, 163, 0.64);
  font-weight: 780;
}

.before-after-action {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 189, 63, 0.32);
  border-radius: 8px;
  padding: 0 15px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
    rgba(242, 165, 31, 0.64);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.before-after-action:hover,
.before-after-action:focus-visible,
.faq-action:hover,
.faq-action:focus-visible,
.legal-action:hover,
.legal-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 189, 63, 0.12);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.faq-item {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 12px 13px;
  border: 1px solid rgba(255, 189, 63, 0.13);
  background:
    linear-gradient(145deg, rgba(242, 165, 31, 0.09), transparent 48%),
    rgba(12, 12, 12, 0.28);
}

.faq-question {
  color: rgba(255, 226, 163, 0.84);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.faq-answer {
  color: rgba(248, 237, 214, 0.6);
  font-size: 12px;
  font-weight: 730;
  line-height: 1.34;
}

.faq-action {
  justify-self: start;
  display: inline-flex;
  min-height: 38px;
  margin-top: 8px;
  transform: translateY(8px);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 189, 63, 0.32);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
    rgba(242, 165, 31, 0.64);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-title {
  color: var(--ivory);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 1180px;
  color: rgba(248, 237, 214, 0.66);
  font-size: 18px;
  font-weight: 740;
  line-height: 1.42;
}

.legal-updated {
  justify-self: start;
  border: 1px solid rgba(255, 189, 63, 0.16);
  padding: 8px 12px;
  color: rgba(255, 226, 163, 0.7);
  background: rgba(12, 12, 12, 0.24);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
  overflow: auto;
  padding-right: 6px;
}

.legal-group {
  display: grid;
  gap: 9px;
  align-content: start;
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(242, 165, 31, 0.1), transparent 48%),
    rgba(12, 12, 12, 0.28);
}

.legal-group-title {
  color: rgba(255, 226, 163, 0.86);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 189, 63, 0.1);
  padding-top: 8px;
}

.legal-label {
  color: rgba(255, 189, 63, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-value {
  color: rgba(248, 237, 214, 0.64);
  font-size: 13px;
  font-weight: 730;
  line-height: 1.34;
}

.legal-note {
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 11px 13px;
  color: rgba(255, 226, 163, 0.66);
  background: rgba(12, 12, 12, 0.24);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.legal-action {
  justify-self: start;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 189, 63, 0.32);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
    rgba(242, 165, 31, 0.64);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.list-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 8px 78px 8px 14px;
  border: 1px solid rgba(255, 189, 63, 0.12);
  background: rgba(18, 18, 18, 0.34);
  text-align: left;
}

.option-item:hover,
.option-item:focus-visible,
.option-item.is-selected {
  outline: none;
  border-color: rgba(255, 189, 63, 0.28);
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.1), transparent 70%),
    rgba(18, 18, 18, 0.38);
}

.option-item.is-selected {
  border-color: rgba(255, 226, 163, 0.52);
  background:
    linear-gradient(90deg, rgba(255, 189, 63, 0.18), transparent 74%),
    rgba(21, 18, 12, 0.52);
}

.list-text {
  display: grid;
  gap: 2px;
}

.list-detail {
  color: rgba(248, 237, 214, 0.48);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.list-value {
  color: rgba(255, 226, 163, 0.58);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.list-impact {
  color: rgba(255, 226, 163, 0.54);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.25;
}

.option-item:hover .list-impact,
.option-item:focus-visible .list-impact,
.option-item.is-selected .list-impact {
  opacity: 0.82;
  transform: translateY(0);
}

.mini-icon {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 189, 63, 0.22) 0 3px, transparent 3px 7px),
    rgba(18, 18, 18, 0.78);
}

.contact-panel {
  grid-template-rows: none;
  gap: 14px;
  align-content: start;
}

.contact-title {
  color: var(--ivory);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy {
  max-width: 650px;
  color: rgba(248, 237, 214, 0.68);
  font-size: 18px;
  font-weight: 740;
  line-height: 1.42;
}

.contact-email {
  justify-self: start;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 189, 63, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(24, 18, 9, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
    rgba(242, 165, 31, 0.64);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
  font-family: Monaco, "Courier New", monospace;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible,
.contact-action:hover,
.contact-action:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 5px rgba(255, 189, 63, 0.12),
    0 14px 24px rgba(0, 0, 0, 0.24);
}

.contact-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-detail {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(255, 189, 63, 0.16);
  background:
    linear-gradient(145deg, rgba(242, 165, 31, 0.12), transparent 48%),
    rgba(12, 12, 12, 0.3);
}

.contact-detail-label {
  color: rgba(255, 226, 163, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-value {
  color: rgba(248, 237, 214, 0.66);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.contact-note {
  padding: 12px 14px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  color: rgba(255, 226, 163, 0.64);
  background: rgba(12, 12, 12, 0.24);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-action {
  justify-self: start;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 189, 63, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 226, 163, 0.86);
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.2), transparent 72%),
    rgba(12, 12, 12, 0.34);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-mail-action {
  color: rgba(24, 18, 9, 0.94);
  border-color: rgba(255, 189, 63, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
    rgba(242, 165, 31, 0.64);
}

.startup-dialog {
  z-index: 6;
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-rows: auto auto auto auto auto auto auto;
  gap: 10px 24px;
  align-items: start;
  align-content: start;
  width: var(--w);
  height: var(--h);
  padding: 30px 34px;
  border: 2px solid rgba(255, 189, 63, 0.28);
  border-radius: 10px;
  background:
    var(--burgundy-cross-panel-layer),
    repeating-linear-gradient(116deg, transparent 0 38px, rgba(255, 226, 163, 0.036) 39px 40px, transparent 41px 78px),
    linear-gradient(145deg, rgba(255, 189, 63, 0.2), rgba(18, 18, 18, 0.62)),
    rgba(31, 31, 31, 0.54);
  box-shadow:
    inset 0 0 0 2px rgba(255, 226, 163, 0.08),
    0 0 42px rgba(242, 165, 31, 0.08),
    0 38px 48px var(--shadow);
  animation: dialog-pulse 9s ease-in-out infinite;
}

.dialog-face {
  grid-row: 1 / -1;
  align-self: start;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 226, 163, 0.12), transparent 54%),
    radial-gradient(circle at 48% 42%, rgba(242, 165, 31, 0.16), transparent 68%),
    rgba(18, 18, 18, 0.78);
  overflow: hidden;
}

.dialog-icon-img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.startup-dialog > :not(.dialog-face) {
  grid-column: 2;
}

.dialog-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.route-step {
  display: grid;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 189, 63, 0.2);
  color: rgba(255, 226, 163, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(12, 12, 12, 0.24);
  text-align: center;
}

.route-detail {
  display: block;
  margin-top: 4px;
  color: rgba(248, 237, 214, 0.48);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.25;
  text-transform: none;
}

.quote-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 189, 63, 0.16);
  background: rgba(12, 12, 12, 0.24);
}

.summary-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: baseline;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 4px 5px;
  background: rgba(255, 226, 163, 0.03);
}

.summary-row.is-filled {
  border-color: rgba(255, 189, 63, 0.16);
  background: rgba(255, 189, 63, 0.07);
}

.summary-label {
  color: rgba(255, 226, 163, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-value {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
  color: rgba(248, 237, 214, 0.62);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
}

.summary-row.is-filled .summary-value {
  color: rgba(248, 237, 214, 0.84);
}

.summary-row.is-empty .summary-value {
  color: rgba(248, 237, 214, 0.46);
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  max-width: 100%;
  border: 1px solid rgba(255, 189, 63, 0.18);
  border-radius: 4px;
  padding: 2px 6px;
  color: rgba(255, 226, 163, 0.82);
  background: rgba(12, 12, 12, 0.28);
  overflow-wrap: anywhere;
}

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

.quote-field-wrap {
  display: grid;
  gap: 4px;
}

.quote-field-wrap.is-wide {
  grid-column: 1 / -1;
}

.quote-label {
  color: rgba(255, 226, 163, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-field {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(255, 189, 63, 0.22);
  border-radius: 4px;
  padding: 7px 9px;
  color: rgba(248, 237, 214, 0.86);
  background: rgba(10, 10, 10, 0.5);
  font-family: Monaco, "Courier New", monospace;
  font-size: 12px;
  font-weight: 750;
  outline: none;
}

.quote-field::placeholder {
  color: rgba(248, 237, 214, 0.34);
}

.quote-field:focus {
  border-color: rgba(255, 189, 63, 0.48);
  box-shadow:
    0 0 0 3px rgba(255, 189, 63, 0.08),
    inset 0 0 0 1px rgba(255, 226, 163, 0.1);
}

.quote-field.is-invalid {
  border-color: rgba(255, 117, 79, 0.76);
  box-shadow:
    0 0 0 3px rgba(255, 117, 79, 0.1),
    inset 0 0 0 1px rgba(255, 226, 163, 0.08);
}

.quote-help,
.quote-status {
  color: rgba(255, 226, 163, 0.56);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.3;
}

.quote-status {
  min-height: 18px;
  border: 1px solid rgba(255, 189, 63, 0.14);
  padding: 7px 10px;
  background: rgba(12, 12, 12, 0.2);
}

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

.quote-status.is-error {
  color: rgba(255, 202, 174, 0.92);
  border-color: rgba(255, 117, 79, 0.32);
  background: rgba(120, 42, 22, 0.18);
}

.quote-status.is-success {
  color: rgba(255, 226, 163, 0.9);
  border-color: rgba(255, 189, 63, 0.3);
  background: rgba(242, 165, 31, 0.12);
}

.quote-textarea {
  min-height: 58px;
  resize: none;
}

.progress-track {
  --fill: 76%;
  grid-column: 2;
  width: 100%;
}

.dialog-button {
  grid-column: 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 46px;
  border: 2px solid rgba(255, 189, 63, 0.42);
  border-radius: 24px;
  color: rgba(24, 18, 9, 0.92);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.9), rgba(255, 189, 63, 0.72)),
    rgba(242, 165, 31, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 0 4px rgba(255, 189, 63, 0.08),
    0 14px 26px rgba(0, 0, 0, 0.26);
}

.dialog-button:hover,
.dialog-button:focus-visible {
  outline: none;
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.84), rgba(255, 189, 63, 0.72)),
    rgba(242, 165, 31, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 7px rgba(255, 189, 63, 0.16),
    0 16px 30px rgba(0, 0, 0, 0.28);
}

.system-caption {
  z-index: 3;
  color: rgba(255, 189, 63, 0.28);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.is-window-focused .system-caption {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(2px);
}

.ambient-pixel {
  width: 19px;
  height: 19px;
  border-radius: 2px;
  opacity: var(--opacity);
  background: rgba(12, 12, 12, 0.72);
  animation: pixel-breathe 10s ease-in-out infinite;
  animation-delay: var(--delay);
}

.ambient-pixel.bright {
  background: rgba(255, 189, 63, 0.36);
  box-shadow: 0 0 18px rgba(255, 189, 63, 0.18);
}

.scanline {
  position: absolute;
  inset: -20%;
  z-index: 6;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 226, 163, 0.04) 42%,
    transparent 56%
  );
  transform: translateX(-24%);
  animation: scan 16s ease-in-out infinite;
  pointer-events: none;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 7;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.65) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.use-guide {
  position: fixed;
  left: 50%;
  top: clamp(10px, 2vw, 18px);
  bottom: auto;
  z-index: 11;
  max-width: min(520px, calc(100vw - 32px));
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 189, 63, 0.18);
  border-radius: 999px;
  color: rgba(248, 237, 214, 0.72);
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.12), transparent 50%),
    rgba(15, 15, 15, 0.64);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  font-family: Monaco, "Courier New", monospace;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateX(-50%);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

body.is-window-focused .use-guide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.mobile-site {
  display: none;
}

.route-brief {
  position: fixed;
  left: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 4vw, 42px);
  z-index: 14;
  display: grid;
  gap: 7px;
  width: min(390px, calc(100vw - 32px));
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 189, 63, 0.22);
  border-radius: 8px;
  color: rgba(248, 237, 214, 0.82);
  background:
    linear-gradient(135deg, rgba(242, 165, 31, 0.18), transparent 52%),
    rgba(14, 14, 14, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.06),
    0 22px 40px rgba(0, 0, 0, 0.32);
  font-family: Monaco, "Courier New", monospace;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.route-brief-title {
  color: var(--ivory);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.route-brief-copy {
  color: rgba(248, 237, 214, 0.68);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.route-brief-cta {
  justify-self: start;
  min-height: 36px;
  margin-top: 3px;
  border: 1px solid rgba(255, 189, 63, 0.38);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(24, 18, 9, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 226, 163, 0.76), rgba(242, 165, 31, 0.66)),
    rgba(242, 165, 31, 0.62);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-brief-cta.is-primary-cta {
  min-height: 42px;
  border-color: rgba(255, 226, 163, 0.56);
  padding-inline: 18px;
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.92), rgba(255, 189, 63, 0.74)),
    rgba(242, 165, 31, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 4px rgba(255, 189, 63, 0.08),
    0 14px 24px rgba(0, 0, 0, 0.24);
}

.route-brief-cta:hover,
.route-brief-cta:focus-visible {
  outline: none;
  background:
    linear-gradient(180deg, rgba(255, 232, 184, 0.9), rgba(255, 189, 63, 0.76)),
    rgba(242, 165, 31, 0.72);
  box-shadow:
    0 0 0 5px rgba(255, 189, 63, 0.12),
    0 12px 22px rgba(0, 0, 0, 0.24);
}

.route-brief-cta.is-primary-cta:hover,
.route-brief-cta.is-primary-cta:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 7px rgba(255, 189, 63, 0.14),
    0 16px 28px rgba(0, 0, 0, 0.28);
}

.title-bar,
.about-title,
.dialog-title,
.regula-title,
.maintenance-guide-title,
.resources-title,
.offer-title,
.before-after-title,
.contact-title,
.ethics-title,
.legal-title {
  letter-spacing: 0;
  line-height: 1.06;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.title-bar {
  padding: 0 58px;
  font-size: 24px;
  font-weight: 900;
}

.role-kicker,
.regula-kicker,
.before-after-status,
.before-after-stage-label,
.before-after-metric-label,
.proof-status,
.contact-detail-label,
.about-rate-label,
.ethics-kicker,
.legal-updated,
.legal-label,
.quote-label,
.summary-label {
  letter-spacing: 0;
  line-height: 1.22;
}

.role-kicker {
  color: rgba(255, 189, 63, 0.82);
  font-family: Monaco, "Courier New", monospace;
  font-size: 13px;
}

.role-copy,
.about-copy,
.dialog-text,
.about-purpose,
.about-rate-detail,
.regula-copy,
.regula-proof,
.regula-stack,
.maintenance-guide-intro,
.maintenance-note,
.resources-intro,
.resources-note,
.offer-intro,
.offer-note,
.before-after-summary,
.before-after-stage-text,
.before-after-signal,
.before-after-takeaway,
.contact-copy,
.ethics-lead,
.ethics-text,
.ethics-note,
.legal-copy,
.legal-note,
.faq-answer {
  line-height: 1.46;
}

.icon-label,
.list-label,
.proof-title,
.faq-question,
.legal-group-title,
.regula-highlight-title,
.maintenance-pillar-label,
.maintenance-list-title,
.maintenance-cadence-label,
.resources-status,
.resources-block-title,
.resources-type-format,
.resources-type-label,
.resources-topic-title,
.resources-topic-meta-item,
.resources-topic-tag,
.resources-structure-label,
.offer-status,
.offer-card-label,
.offer-card-range,
.offer-condition,
.before-after-stage-title,
.method-step-title {
  letter-spacing: 0;
  line-height: 1.18;
  text-wrap: balance;
}

.icon-label {
  max-width: 180px;
  font-size: 21px;
}

.list-label {
  color: rgba(255, 226, 163, 0.86);
  font-size: 16px;
  font-weight: 950;
}

.icon-note,
.icon-problem,
.icon-result,
.icon-deliverable,
.list-detail,
.list-value,
.list-impact,
.proof-detail,
.proof-problem,
.proof-solution,
.proof-evidence,
.regula-highlight-copy,
.regula-fact-value,
.maintenance-pillar-detail,
.maintenance-pillar-outcome,
.maintenance-list-item,
.maintenance-cadence-detail,
.resources-type-detail,
.resources-type-value,
.resources-structure-detail,
.resources-topic-question,
.resources-topic-outcome,
.offer-card-line,
.offer-card-limit,
.method-step-detail,
.method-step-result,
.contact-detail-value,
.legal-value,
.quote-help,
.quote-status,
.route-detail,
.route-brief-copy {
  line-height: 1.38;
}

.list-detail {
  font-size: 14px;
}

.list-value,
.list-impact {
  font-size: 12px;
}

.panel-role-action,
.about-action,
.regula-link,
.maintenance-action,
.before-after-action,
.faq-action,
.legal-action,
.contact-action,
.dialog-button,
.route-brief-cta {
  letter-spacing: 0;
  line-height: 1.15;
}

.dialog-button {
  min-width: 210px;
}

body.is-window-focused .route-brief {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

body.is-window-focused .desktop-site-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -10px);
}

.hotspot-layer {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.focus-hotspot {
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  padding: 0;
  opacity: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.navigation-hotspot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 13;
  border: 0;
  padding: 0;
  opacity: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.is-window-focused .hotspot-layer {
  pointer-events: none;
}

.is-window-focused .focus-hotspot {
  pointer-events: none;
}

.is-window-focused .navigation-hotspot {
  pointer-events: none;
}

.is-window-focused .plane-focus {
  z-index: 10;
  transition-duration: var(--camera-duration);
}

.is-window-focused .wallpaper-plane {
  transition-duration: var(--camera-duration);
}

.is-window-focused .system-layer,
.plane-focus.is-camera-measuring .system-layer {
  animation: none;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.is-window-focused .classic-window.is-source-focused {
  animation: none;
  filter: none;
  opacity: 1;
}

.plane-focus.is-camera-measuring,
.plane-focus.is-camera-measuring .wallpaper-plane {
  transition: none !important;
}

.focus-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 420ms ease;
}

.focus-overlay.is-visible {
  pointer-events: none;
  opacity: 1;
}

.focus-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 226, 163, 0.08), transparent 32%),
    rgba(0, 0, 0, 0.1);
  cursor: default;
  pointer-events: none;
}

.focus-context {
  position: fixed;
  left: clamp(18px, 4vw, 52px);
  top: clamp(88px, 9vw, 108px);
  z-index: 3;
  display: grid;
  gap: 5px;
  max-width: min(340px, calc(100vw - 36px));
  border: 1px solid rgba(255, 189, 63, 0.24);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(248, 237, 214, 0.8);
  background:
    linear-gradient(135deg, rgba(242, 165, 31, 0.14), transparent 54%),
    rgba(15, 15, 15, 0.8);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  font-family: Monaco, "Courier New", monospace;
  pointer-events: none;
}

body.is-window-focused .focus-context,
body.is-window-focused .focus-hint {
  display: none;
}

.focus-overlay .focus-context,
.focus-overlay .focus-hint {
  display: none;
}

.focus-route {
  color: rgba(255, 189, 63, 0.76);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.focus-title {
  color: var(--ivory);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.focus-close {
  position: fixed;
  right: clamp(18px, 4vw, 52px);
  top: clamp(88px, 9vw, 108px);
  z-index: 3;
  height: 42px;
  min-width: 156px;
  border: 1px solid rgba(255, 189, 63, 0.34);
  border-radius: 999px;
  color: rgba(255, 226, 163, 0.86);
  background: rgba(15, 15, 15, 0.78);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  pointer-events: auto;
  font-family: Monaco, "Courier New", monospace;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-close:hover,
.focus-close:focus-visible {
  color: var(--ivory);
  outline: none;
  box-shadow:
    0 0 0 6px rgba(255, 189, 63, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.3);
}

.focus-hint {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 5vw, 46px);
  z-index: 3;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(255, 189, 63, 0.18);
  border-radius: 999px;
  color: rgba(248, 237, 214, 0.66);
  background: rgba(15, 15, 15, 0.58);
  font-family: Monaco, "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transform: translateX(-50%);
}

@keyframes os-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-96px, 72px, 0);
  }
}

@keyframes pixel-breathe {
  0%,
  100% {
    opacity: calc(var(--opacity, 0.42) * 0.74);
  }

  48% {
    opacity: var(--opacity, 0.42);
  }
}

@keyframes window-breathe {
  0%,
  100% {
    opacity: 0.88;
  }

  50% {
    opacity: 1;
  }
}

@keyframes icon-hover {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 0.92;
  }
}

@keyframes seal-breathe {
  0%,
  100% {
    opacity: 0.14;
  }

  50% {
    opacity: 0.22;
  }
}

@keyframes dialog-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 2px rgba(255, 226, 163, 0.08),
      0 0 42px rgba(242, 165, 31, 0.08),
      0 38px 48px var(--shadow);
  }

  50% {
    box-shadow:
      inset 0 0 0 2px rgba(255, 189, 63, 0.22),
      0 0 54px rgba(242, 165, 31, 0.16),
      0 44px 58px rgba(0, 0, 0, 0.42);
  }
}

@keyframes aurora-drift {
  from {
    transform: translate3d(-4%, -2%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(5%, 4%, 0) rotate(16deg);
  }
}

@keyframes float-aura-a {
  to {
    transform: translate3d(10vw, 8vh, 0) scale(1.08);
  }
}

@keyframes float-aura-b {
  to {
    transform: translate3d(-9vw, -5vh, 0) scale(1.14);
  }
}

@keyframes scan {
  0%,
  36% {
    transform: translateX(-32%);
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  76%,
  100% {
    transform: translateX(32%);
    opacity: 0;
  }
}

@media (max-width: 1400px) {
  :root {
    --overview-center-y: 46%;
    --overview-scale: 0.4;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    overflow: auto;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 24% 0%, rgba(255, 189, 63, 0.18), transparent 34%),
      repeating-linear-gradient(116deg, transparent 0 42px, rgba(255, 226, 163, 0.035) 43px 44px, transparent 45px 86px),
      repeating-linear-gradient(24deg, transparent 0 66px, rgba(0, 0, 0, 0.16) 67px 68px, transparent 69px 132px),
      linear-gradient(180deg, #171717 0%, #252019 44%, #101010 100%);
  }

  .ambient-wallpaper {
    position: fixed;
    pointer-events: none;
  }

  .plane-focus,
  .desktop-site-nav,
  .use-guide,
  .route-brief,
  .hotspot-layer,
  .navigation-hotspot,
  .focus-overlay {
    display: none !important;
  }

  .focus-hint {
    display: none;
  }

  .mobile-site {
    position: relative;
    z-index: 12;
    display: block;
    width: min(100%, 560px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 18px 16px 42px;
    overflow-x: hidden;
    font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  }

  body:not([data-route="home"]) .mobile-site {
    padding-top: 0;
  }

  .static-fallback {
    gap: 20px;
    width: min(100%, calc(100% - 32px));
    padding: 42px 0 34px;
  }

  .static-hero,
  .static-section {
    padding: 24px 18px;
  }

  .static-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .static-button,
  .static-link {
    width: 100%;
  }

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

  .static-step-list,
  .static-legal-list {
    grid-template-columns: 1fr;
  }

  .mobile-section {
    position: relative;
    display: grid;
    gap: 12px;
    margin: 0 -16px;
    padding: 28px 16px;
    border-top: 1px solid rgba(255, 189, 63, 0.16);
    background:
      var(--burgundy-cross-panel-layer),
      linear-gradient(135deg, rgba(242, 165, 31, 0.12), transparent 48%),
      repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 226, 163, 0.024) 35px 36px, transparent 37px 72px),
      rgba(12, 12, 12, 0.18);
    scroll-margin-top: 86px;
  }

  .mobile-section[hidden] {
    display: none !important;
  }

  .mobile-section:first-child {
    border-top: 0;
  }

  .mobile-hero {
    min-height: 78vh;
    align-content: center;
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .mobile-hero .mobile-section-title,
  .mobile-hero .mobile-section-copy {
    width: min(100%, 310px);
  }

  .mobile-hero .mobile-section-kicker {
    font-family: var(--vicinum-brand-font);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .mobile-seal {
    width: 92px;
    aspect-ratio: 1;
    margin-bottom: 8px;
    border-radius: 50%;
    background:
      url("assets/logo-vicinum.svg") center / contain no-repeat,
      radial-gradient(circle at 50% 50%, rgba(255, 226, 163, 0.16) 0 4%, transparent 5% 20%, rgba(255, 189, 63, 0.12) 21% 23%, transparent 24%),
      repeating-conic-gradient(from 8deg at 50% 50%, rgba(255, 189, 63, 0.12) 0 4deg, transparent 4deg 16deg),
      radial-gradient(circle at 50% 50%, rgba(255, 189, 63, 0.18), transparent 62%);
    filter: drop-shadow(0 0 24px rgba(255, 189, 63, 0.18));
  }

  .mobile-section-kicker {
    color: rgba(255, 189, 63, 0.72);
    font-family: Monaco, "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .mobile-section-title {
    max-width: 100%;
    margin: 0;
    color: var(--ivory);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .mobile-section-copy,
  .mobile-contact-copy {
    width: min(100%, calc(100vw - 32px));
    margin: 0;
    color: rgba(248, 237, 214, 0.72);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.48;
    overflow-wrap: break-word;
  }

  .mobile-subheading {
    margin: 10px 0 0;
    color: rgba(255, 226, 163, 0.86);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    gap: 8px;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 10px 16px;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 189, 63, 0.16);
    background: rgba(14, 14, 14, 0.88);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
  }

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

  .mobile-pagination {
    position: sticky;
    top: 65px;
    z-index: 39;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw) 14px;
    padding: 0 16px 10px;
    border-bottom: 1px solid rgba(255, 189, 63, 0.14);
    background: rgba(14, 14, 14, 0.88);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
  }

  .mobile-page-button {
    grid-row: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    border: 1px solid rgba(255, 189, 63, 0.18);
    border-radius: 999px;
    padding: 0 12px;
    color: rgba(255, 226, 163, 0.78);
    background: rgba(12, 12, 12, 0.36);
    cursor: pointer;
    font: inherit;
    font-family: Monaco, "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.15;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-page-arrow {
    display: inline-block;
    flex: 0 0 auto;
    color: rgba(255, 189, 63, 0.92);
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
    transform-origin: 50% 50%;
  }

  .mobile-page-arrow-previous {
    transform: rotate(180deg);
  }

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

  .mobile-page-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-page-button:disabled {
    opacity: 0.38;
    cursor: default;
  }

  .mobile-page-button:not(:disabled):focus-visible {
    color: rgba(24, 18, 9, 0.94);
    outline: none;
    background:
      linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
      rgba(242, 165, 31, 0.64);
  }

  .mobile-page-status {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    place-items: center;
    min-height: 38px;
    border: 1px solid rgba(255, 189, 63, 0.16);
    border-radius: 999px;
    padding: 0 11px;
    color: rgba(255, 189, 63, 0.78);
    background: rgba(12, 12, 12, 0.26);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.15;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-nav-button,
  .mobile-action,
  .mobile-card,
  .mobile-contact-link {
    min-height: 44px;
  }

  .mobile-nav-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 189, 63, 0.2);
    border-radius: 999px;
    padding: 0 13px;
    color: rgba(248, 237, 214, 0.78);
    background: rgba(12, 12, 12, 0.42);
    font-family: Monaco, "Courier New", monospace;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav-button.is-mobile-active,
  .mobile-nav-button:focus-visible {
    color: rgba(24, 18, 9, 0.94);
    outline: none;
    background:
      linear-gradient(180deg, rgba(255, 226, 163, 0.82), rgba(242, 165, 31, 0.68)),
      rgba(242, 165, 31, 0.64);
  }

  .mobile-action,
  .mobile-contact-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border: 1px solid rgba(255, 189, 63, 0.42);
    border-radius: 999px;
    padding: 0 17px;
    color: rgba(24, 18, 9, 0.94);
    background:
      linear-gradient(180deg, rgba(255, 226, 163, 0.8), rgba(242, 165, 31, 0.68)),
      rgba(242, 165, 31, 0.64);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
  }

  .mobile-primary-action {
    min-height: 48px;
    border-color: rgba(255, 226, 163, 0.58);
    background:
      linear-gradient(180deg, rgba(255, 232, 184, 0.92), rgba(255, 189, 63, 0.74)),
      rgba(242, 165, 31, 0.7);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.16),
      0 0 0 4px rgba(255, 189, 63, 0.08),
      0 14px 24px rgba(0, 0, 0, 0.26);
  }

  .mobile-action:focus-visible,
  .mobile-contact-link:focus-visible,
  .mobile-card:focus-visible {
    outline: none;
    box-shadow:
      0 0 0 5px rgba(255, 189, 63, 0.12),
      0 12px 22px rgba(0, 0, 0, 0.24);
  }

  .mobile-card-list,
  .mobile-appointment-step,
  .mobile-contact-details,
  .mobile-about-rate,
  .mobile-ethics-list,
  .mobile-faq-list,
  .mobile-legal-groups,
  .mobile-maintenance-pillars,
  .mobile-maintenance-interventions,
  .mobile-resource-type-list,
  .mobile-resource-topic-list,
  .mobile-offer-grid,
  .mobile-offer-conditions,
  .mobile-method-steps,
  .mobile-strengths {
    display: grid;
    gap: 10px;
  }

  .mobile-appointment-step[hidden] {
    display: none !important;
  }

  .mobile-site .mobile-appointment-action {
    justify-self: stretch;
    width: 100%;
  }

  .mobile-card,
  .mobile-contact-detail,
  .mobile-about-rate,
  .mobile-ethics-item,
  .mobile-faq-item,
  .mobile-legal-group,
  .mobile-maintenance-guide,
  .mobile-maintenance-pillar,
  .mobile-maintenance-interventions,
  .mobile-resource-card,
  .mobile-resource-topic,
  .mobile-offer-guide,
  .mobile-offer-card,
  .mobile-offer-conditions,
  .mobile-method-step,
  .mobile-strength,
  .mobile-quote-summary {
    border: 1px solid rgba(255, 189, 63, 0.18);
    border-radius: 8px;
    background:
      var(--burgundy-cross-panel-layer),
      linear-gradient(135deg, rgba(242, 165, 31, 0.1), transparent 48%),
      repeating-linear-gradient(135deg, transparent 0 26px, rgba(255, 226, 163, 0.025) 27px 28px, transparent 29px 56px),
      rgba(17, 17, 17, 0.58);
    box-shadow:
      inset 0 0 0 1px rgba(255, 226, 163, 0.05),
      inset 4px 0 0 rgba(242, 165, 31, 0.1);
  }

  .mobile-card {
    position: relative;
    display: grid;
    gap: 7px;
    width: 100%;
    padding: 14px;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
  }

  .mobile-ethics-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: mobile-ethics;
  }

  .mobile-ethics-pagination {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .mobile-about-rate {
    display: grid;
    gap: 5px;
    padding: 12px;
  }

  .mobile-about-rate-label {
    color: rgba(255, 189, 63, 0.76);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-about-rate-value {
    color: rgba(255, 226, 163, 0.94);
    font-size: 20px;
    font-weight: 950;
    line-height: 1;
  }

  .mobile-about-rate-detail {
    color: rgba(248, 237, 214, 0.72);
    font-size: 13px;
    font-weight: 740;
    line-height: 1.42;
  }

  .mobile-ethics-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    counter-increment: mobile-ethics;
  }

  .mobile-ethics-item[hidden] {
    display: none !important;
  }

  .mobile-ethics-item::before {
    display: grid;
    place-items: center;
    min-height: 30px;
    border: 1px solid rgba(255, 189, 63, 0.18);
    color: rgba(255, 189, 63, 0.78);
    content: counter(mobile-ethics, decimal-leading-zero);
    font-family: Monaco, "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-ethics-item[data-principle-index]::before {
    content: attr(data-principle-index);
  }

  .mobile-ethics-text,
  .mobile-ethics-note {
    color: rgba(248, 237, 214, 0.74);
    font-size: 14px;
    font-weight: 740;
    line-height: 1.45;
  }

  .mobile-ethics-note {
    margin: 0;
    border: 1px solid rgba(255, 189, 63, 0.14);
    border-radius: 8px;
    padding: 12px;
    color: rgba(255, 226, 163, 0.72);
    background: rgba(12, 12, 12, 0.24);
    font-weight: 800;
  }

  .mobile-maintenance-guide {
    display: grid;
    gap: 11px;
    padding: 14px;
  }

  .mobile-maintenance-pillar,
  .mobile-maintenance-interventions {
    display: grid;
    gap: 6px;
    padding: 11px;
  }

  .mobile-maintenance-label {
    color: rgba(255, 189, 63, 0.76);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-maintenance-action {
    position: relative;
    justify-self: stretch;
    padding-right: 92px;
    text-align: center;
  }

  .mobile-maintenance-action.is-selected {
    border-color: rgba(255, 226, 163, 0.68);
    background:
      linear-gradient(180deg, rgba(248, 237, 214, 0.92), rgba(255, 189, 63, 0.76)),
      rgba(255, 189, 63, 0.72);
  }

  .mobile-resource-card,
  .mobile-resource-topic {
    display: grid;
    gap: 7px;
    padding: 14px;
  }

  .mobile-resource-label {
    color: rgba(255, 189, 63, 0.76);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-offer-guide {
    display: grid;
    gap: 11px;
    padding: 14px;
  }

  .mobile-offer-card,
  .mobile-offer-conditions {
    display: grid;
    gap: 7px;
    padding: 12px;
  }

  .mobile-offer-label {
    color: rgba(255, 189, 63, 0.76);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-offer-range {
    color: rgba(255, 226, 163, 0.88);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.16;
  }

  .mobile-project-list {
    display: grid;
    gap: 16px;
  }

  .mobile-project-card {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(255, 189, 63, 0.2);
    border-radius: 8px;
    padding: 14px;
    background:
      var(--burgundy-cross-panel-layer),
      linear-gradient(135deg, rgba(242, 165, 31, 0.11), transparent 48%),
      rgba(14, 14, 12, 0.66);
    box-shadow:
      inset 0 0 0 1px rgba(255, 226, 163, 0.05),
      inset 4px 0 0 rgba(242, 165, 31, 0.1);
  }

  .mobile-project-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 156px;
    overflow: hidden;
    border: 1px solid rgba(255, 189, 63, 0.15);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 226, 163, 0.08), transparent 42%),
      rgba(18, 18, 18, 0.46);
  }

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

  .mobile-project-visual::before {
    inset: 14px;
    border: 1px solid rgba(255, 226, 163, 0.12);
    border-radius: 6px;
  }

  .mobile-project-visual::after {
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 28px;
    background:
      repeating-linear-gradient(90deg, rgba(255, 226, 163, 0.24) 0 8px, transparent 8px 13px),
      linear-gradient(90deg, rgba(242, 165, 31, 0.28), transparent);
  }

  .mobile-project-visual-regula {
    background: transparent;
  }

  .mobile-project-visual-showcase {
    background:
      linear-gradient(180deg, rgba(255, 226, 163, 0.14) 0 24%, transparent 24%),
      linear-gradient(90deg, transparent 0 46%, rgba(242, 165, 31, 0.2) 46% 54%, transparent 54%),
      repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 189, 63, 0.12) 22px 25px),
      rgba(18, 18, 18, 0.5);
  }

  .mobile-project-visual-parish {
    background: transparent;
  }

  .mobile-project-visual-regula::before,
  .mobile-project-visual-regula::after,
  .mobile-project-visual-parish::before,
  .mobile-project-visual-parish::after {
    display: none;
  }

  .mobile-project-visual-workflow {
    background:
      radial-gradient(circle at 34% 34%, rgba(255, 226, 163, 0.24) 0 16px, transparent 17px),
      radial-gradient(circle at 68% 56%, rgba(242, 165, 31, 0.22) 0 20px, transparent 21px),
      linear-gradient(135deg, transparent 0 42%, rgba(255, 226, 163, 0.13) 43% 45%, transparent 46%),
      rgba(18, 18, 18, 0.5);
  }

  .mobile-project-visual-img {
    position: relative;
    z-index: 1;
    width: 96px;
    max-height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
  }

  .mobile-project-visual-parish .mobile-project-visual-img {
    width: 116px;
    max-height: 116px;
  }

  .mobile-project-body,
  .mobile-project-detail {
    display: grid;
    gap: 7px;
  }

  .mobile-project-meta,
  .mobile-project-chips,
  .mobile-project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
  }

  .mobile-project-meta-item,
  .mobile-project-chip {
    border: 1px solid rgba(255, 189, 63, 0.16);
    border-radius: 4px;
    padding: 4px 7px;
    color: rgba(255, 189, 63, 0.76);
    background: rgba(12, 12, 12, 0.22);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-project-chip {
    color: rgba(255, 226, 163, 0.68);
    letter-spacing: 0.02em;
  }

  .mobile-project-detail {
    border: 1px solid rgba(255, 189, 63, 0.11);
    border-radius: 8px;
    padding: 10px;
    background: rgba(12, 12, 12, 0.22);
  }

  .mobile-project-detail-label {
    color: rgba(255, 189, 63, 0.74);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-project-actions .mobile-contact-link {
    flex: 1 1 136px;
    justify-self: auto;
    text-align: center;
  }

  .mobile-regula-feature {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(255, 189, 63, 0.2);
    border-radius: 8px;
    padding: 15px;
    background:
      linear-gradient(135deg, rgba(248, 237, 214, 0.08), transparent 46%),
      linear-gradient(145deg, rgba(242, 165, 31, 0.12), transparent 62%),
      rgba(15, 14, 12, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 226, 163, 0.05);
  }

  .mobile-regula-top {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .mobile-regula-mark {
    width: 58px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(248, 237, 214, 0.88);
    object-fit: contain;
    padding: 6px;
  }

  .mobile-regula-heading {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-regula-title {
    color: rgba(255, 226, 163, 0.9);
    font-size: 20px;
    font-weight: 950;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .mobile-regula-subtitle {
    color: rgba(248, 237, 214, 0.72);
    font-size: 14px;
    font-weight: 820;
    line-height: 1.3;
  }

  .mobile-regula-highlights {
    display: grid;
    gap: 8px;
  }

  .mobile-regula-highlight {
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 189, 63, 0.12);
    border-radius: 8px;
    padding: 10px;
    background: rgba(12, 12, 12, 0.26);
  }

  .mobile-regula-highlight-title {
    color: rgba(255, 226, 163, 0.8);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-regula-highlight-copy {
    color: rgba(248, 237, 214, 0.62);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.34;
  }

  .mobile-regula-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
  }

  .mobile-regula-actions .mobile-contact-link {
    flex: 1 1 150px;
    justify-self: auto;
    text-align: center;
  }

  .mobile-before-after {
    display: grid;
    gap: 11px;
    border: 1px solid rgba(255, 189, 63, 0.18);
    border-radius: 8px;
    padding: 14px;
    background:
      linear-gradient(135deg, rgba(242, 165, 31, 0.11), transparent 48%),
      rgba(13, 13, 12, 0.64);
  }

  .mobile-before-after-stages,
  .mobile-before-after-metrics {
    display: grid;
    gap: 8px;
  }

  .mobile-before-after-stage,
  .mobile-before-after-metric {
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 189, 63, 0.12);
    border-radius: 8px;
    padding: 10px;
    background: rgba(12, 12, 12, 0.28);
  }

  .mobile-before-after-label,
  .mobile-before-after-metric-label {
    color: rgba(255, 189, 63, 0.76);
    font-family: Monaco, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-before-after-title {
    color: rgba(255, 226, 163, 0.82);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.22;
    text-transform: uppercase;
  }

  .mobile-before-after-text,
  .mobile-before-after-signal,
  .mobile-before-after-metric-value {
    color: rgba(248, 237, 214, 0.64);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.34;
  }

  .mobile-before-after-signal,
  .mobile-before-after-metric-value {
    color: rgba(255, 226, 163, 0.64);
    font-weight: 800;
  }

  .mobile-faq-item {
    display: grid;
    gap: 7px;
    padding: 14px;
  }

  .mobile-legal-updated {
    margin: 0;
    color: rgba(255, 226, 163, 0.66);
    font-family: Monaco, "Courier New", monospace;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .mobile-legal-group {
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .mobile-legal-item {
    display: grid;
    gap: 5px;
    border-top: 1px solid rgba(255, 189, 63, 0.1);
    padding-top: 8px;
  }

  .mobile-contact-detail {
    display: grid;
    gap: 6px;
    padding: 14px;
  }

  .mobile-contact-label {
    color: rgba(255, 226, 163, 0.72);
    font-family: Monaco, "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-contact-value {
    color: rgba(248, 237, 214, 0.72);
    font-size: 15px;
    font-weight: 740;
    line-height: 1.4;
  }

  .mobile-method-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 7px 12px;
    align-items: start;
    padding: 14px;
  }

  .mobile-method-step .mobile-card-title,
  .mobile-method-step .mobile-card-copy,
  .mobile-method-step .mobile-card-meta {
    grid-column: 2;
  }

  .mobile-method-index {
    grid-row: 1 / span 3;
    display: grid;
    place-items: center;
    min-height: 38px;
    border: 1px solid rgba(255, 189, 63, 0.18);
    color: rgba(255, 189, 63, 0.74);
    font-family: Monaco, "Courier New", monospace;
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-service-card {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: start;
  }

  .mobile-service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    aspect-ratio: 1;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-service-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
  }

  .mobile-card-text {
    display: grid;
    gap: 5px;
  }

  .mobile-card-title,
  .mobile-strength-title {
    color: rgba(255, 226, 163, 0.88);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
  }

  .mobile-card-note,
  .mobile-card-problem,
  .mobile-card-copy,
  .mobile-card-value,
  .mobile-card-meta {
    color: rgba(248, 237, 214, 0.68);
    font-size: 14px;
    font-weight: 720;
    line-height: 1.38;
  }

  .mobile-card-problem {
    color: rgba(255, 226, 163, 0.68);
  }

  .mobile-card-value {
    color: rgba(255, 226, 163, 0.68);
  }

  .mobile-card-meta {
    color: rgba(255, 226, 163, 0.62);
  }

  .mobile-card.is-selected {
    border-color: rgba(255, 189, 63, 0.52);
    background:
      linear-gradient(135deg, rgba(255, 189, 63, 0.26), transparent 48%),
      rgba(26, 20, 12, 0.78);
    box-shadow:
      inset 0 0 0 1px rgba(255, 226, 163, 0.12),
      0 0 0 4px rgba(255, 189, 63, 0.08),
      0 16px 26px rgba(0, 0, 0, 0.2);
  }

  .mobile-card > .selection-marker {
    position: static;
    order: -1;
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 0;
    max-height: 0;
    padding-block: 0;
    opacity: 0;
    transform: none;
  }

  .mobile-card.is-selected > .selection-marker {
    min-height: 21px;
    max-height: 24px;
    padding-block: 0;
    opacity: 1;
  }

  .mobile-strength {
    display: grid;
    gap: 8px;
    padding: 14px;
  }

  .mobile-strength-meter {
    position: relative;
    display: block;
    height: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 189, 63, 0.24);
    background: rgba(10, 10, 10, 0.44);
  }

  .mobile-strength-meter::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--fill, 70%);
    content: "";
    background:
      repeating-linear-gradient(90deg, rgba(255, 226, 163, 0.44) 0 8px, transparent 8px 14px),
      linear-gradient(90deg, rgba(242, 165, 31, 0.44), rgba(255, 189, 63, 0.22));
  }

  .mobile-site .quote-summary,
  .mobile-site .quote-form {
    opacity: 1;
    transform: none;
  }

  .mobile-quote-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .mobile-quote-summary .summary-row {
    grid-template-columns: 82px 1fr;
  }

  .mobile-site .quote-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-site .quote-field-wrap,
  .mobile-site .quote-field-wrap.is-wide {
    grid-column: auto;
  }

  .mobile-site .quote-label {
    font-size: 12px;
  }

  .mobile-site .quote-help,
  .mobile-site .quote-status {
    font-size: 13px;
  }

  .mobile-site .quote-field {
    min-height: 46px;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 16px;
  }

  .mobile-site .quote-textarea {
    min-height: 104px;
  }

  .mobile-progress-track {
    grid-column: auto;
    height: 20px;
  }

  .mobile-dialog-button {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    height: 48px;
    border-radius: 999px;
    font-size: 14px;
  }

  .mobile-section-title,
  .mobile-regula-title,
  .mobile-card-title,
  .mobile-strength-title,
  .mobile-before-after-title {
    letter-spacing: 0;
    text-wrap: balance;
  }

  .mobile-section-title {
    line-height: 1.08;
  }

  .mobile-section-kicker,
  .mobile-subheading,
  .mobile-nav-button,
  .mobile-page-button,
  .mobile-page-status,
  .mobile-action,
  .mobile-contact-link,
  .mobile-card-note,
  .mobile-card-value,
  .mobile-card-meta,
  .mobile-contact-label,
  .mobile-legal-updated,
  .mobile-before-after-label,
  .mobile-before-after-metric-label {
    letter-spacing: 0;
  }

  .mobile-section-copy,
  .mobile-contact-copy,
  .mobile-card-copy,
  .mobile-card-note,
  .mobile-card-problem,
  .mobile-card-value,
  .mobile-card-meta,
  .mobile-contact-value,
  .mobile-regula-subtitle,
  .mobile-regula-highlight-copy,
  .mobile-before-after-text,
  .mobile-before-after-signal,
  .mobile-before-after-metric-value {
    line-height: 1.44;
  }

  .mobile-card-title,
  .mobile-strength-title {
    line-height: 1.24;
  }

  .mobile-action,
  .mobile-contact-link,
  .mobile-dialog-button {
    line-height: 1.16;
  }

  .mobile-contact-link {
    overflow-wrap: anywhere;
    text-transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --camera-duration: 160ms;
    --camera-ease: ease-out;
    --parallax-x: 0;
    --parallax-y: 0;
  }

  html,
  * {
    scroll-behavior: auto !important;
  }

  .ambient-wallpaper::before,
  .aura,
  .system-layer,
  .classic-window,
  .floating-icon,
  .brand-seal,
  .startup-dialog,
  .ambient-pixel,
  .scanline {
    animation: none !important;
  }

  .ambient-wallpaper::before {
    opacity: 0.24;
  }

  .aura {
    opacity: 0.38;
    filter: blur(36px);
  }

  .system-layer {
    transform: translate3d(0, 0, 0);
  }

  .plane-focus,
  .wallpaper-plane {
    transition-duration: var(--camera-duration);
    will-change: auto;
  }

  .wallpaper-plane {
    transform:
      translate3d(-50%, -50%, 0)
      perspective(var(--overview-perspective))
      rotateX(var(--overview-rotate-x))
      rotateZ(var(--overview-rotate-z))
      scale(var(--overview-scale));
  }

  .route-item {
    transition-duration: 120ms;
  }

  .route-item.is-route-hidden {
    filter: none;
  }

  .focus-target,
  .desktop-nav-button,
  .route-brief,
  .focus-overlay,
  .selection-marker,
  .role-copy,
  .icon-note,
  .icon-problem,
  .icon-result,
  .icon-deliverable,
  .about-purpose,
  .memory-detail,
  .list-detail,
  .list-value,
  .list-impact,
  .dialog-route,
  .route-detail,
  .quote-summary,
  .quote-form {
    transition-duration: 120ms;
  }

  .focus-backdrop {
    background: rgba(0, 0, 0, 0.1);
  }

  .scanline {
    opacity: 0.1;
    transform: none;
  }
}
