:root {
  --pixel-bg: #0b0f0d;
  --pixel-card: #111814;
  --pixel-accent: #28d86a;
  --pixel-accent-dark: #10a050;
  --pixel-accent-warm: #ea580c;
  --pixel-accent-warm-soft: #fdba74;
  --pixel-ink: #e6f3ea;
  --pixel-muted: #9ad3b5;
  --pixel-border: #1e2a22;
  --pixel-shadow: 0 16px 40px rgba(4, 12, 8, 0.6);
  --pixel-radius: 6px;
  --pixel-size: 32px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  background: var(--pixel-bg);
  color: var(--pixel-ink);
  min-height: 100vh;
  position: relative;
}

.pixel-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at top right, rgba(57, 255, 122, 0.18), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(24, 60, 44, 0.8), transparent 60%);
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.router-page::before {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 30, 0.28) 0%, rgba(16, 45, 30, 0.28) 50%, rgba(73, 34, 19, 0.24) 50%, rgba(73, 34, 19, 0.24) 100%),
    radial-gradient(circle at 24% 18%, rgba(57, 255, 122, 0.18), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(234, 88, 12, 0.18), transparent 34%);
}

.audit-page::before {
  background-image:
    radial-gradient(circle at top right, rgba(253, 186, 116, 0.12), transparent 40%),
    radial-gradient(circle at 18% 18%, rgba(255, 237, 213, 0.18), transparent 50%);
}

.audit-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 52, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 52, 18, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

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

.pixel-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pixel-hover-grid {
  position: fixed;
  inset: 0;
  display: grid;
  z-index: 0;
  pointer-events: none;
}

.audit-page .pixel-hover-grid,
.audit-page .pixel-loader {
  display: none;
}

.pixel-hover-cell {
  width: var(--pixel-size);
  height: var(--pixel-size);
  border: 1px solid rgba(57, 255, 122, 0.06);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pixel-hover-cell.active {
  background: rgba(40, 216, 106, 0.28);
  border-color: rgba(40, 216, 106, 0.5);
}

.router-page .pixel-hover-cell.router-left {
  border-color: rgba(57, 255, 122, 0.08);
}

.router-page .pixel-hover-cell.router-right {
  border-color: rgba(234, 88, 12, 0.08);
}

.router-page .pixel-hover-cell.router-left.active {
  background: rgba(40, 216, 106, 0.24);
  border-color: rgba(40, 216, 106, 0.5);
}

.router-page .pixel-hover-cell.router-right.active {
  background: rgba(234, 88, 12, 0.22);
  border-color: rgba(234, 88, 12, 0.46);
}

.router-page .pixel-hover-cell.active-left {
  background: rgba(40, 216, 106, 0.24);
  border-color: rgba(40, 216, 106, 0.5);
}

.router-page .pixel-hover-cell.active-right {
  background: rgba(234, 88, 12, 0.22);
  border-color: rgba(234, 88, 12, 0.46);
}

.pixel-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(11, 15, 13, 0.9);
  border-bottom: 1px solid var(--pixel-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: #fff;
  font-family: "Press Start 2P", "Space Grotesk", sans-serif;
  text-shadow:
    3px 3px 0 rgba(7, 10, 8, 0.55),
    0 0 14px rgba(230, 243, 234, 0.12);
}

.brand span {
  display: block;
}

.brand__title {
  color: #fff;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__subtitle {
  color: var(--pixel-accent);
  font-size: clamp(0.45rem, 0.65vw, 0.58rem);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--pixel-muted);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--pixel-border);
  border-radius: 999px;
  background: rgba(12, 18, 14, 0.78);
  box-shadow: var(--pixel-shadow);
}

.lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pixel-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switch__link:hover {
  color: var(--pixel-ink);
  transform: translateY(-1px);
}

.lang-switch__link.is-active {
  background: var(--pixel-accent);
  color: var(--pixel-bg);
}

.router-lang-switch {
  position: absolute;
  top: 20px;
  left: clamp(16px, 4vw, 40px);
  z-index: 2;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--pixel-border);
  border-radius: var(--pixel-radius);
  padding: 10px;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--pixel-accent);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--pixel-accent);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border-top: 1px solid var(--pixel-border);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.mobile-nav a {
  color: var(--pixel-muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav.open {
  max-height: 320px;
  opacity: 1;
  padding: 16px 0 24px;
  transform: translateY(0);
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pixel-accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.pixel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--pixel-accent);
  color: var(--pixel-bg);
  background: var(--pixel-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--pixel-radius);
  box-shadow: var(--pixel-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pixel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(4, 12, 8, 0.7);
}

.pixel-button.ghost {
  background: transparent;
  color: var(--pixel-accent);
  box-shadow: none;
}

.pixel-main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 96px 0 72px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Press Start 2P", "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  line-height: 1.5;
  margin: 16px 0 20px;
}

.hero-copy h1 span {
  color: var(--pixel-ink);
}

.hero-copy h1 .hero-accent {
  color: var(--pixel-accent);
}

.store-setup-page .hero-copy h1 span,
.agency-page .hero-copy h1 span {
  color: var(--pixel-ink);
}

.store-setup-page .hero-copy h1 .hero-accent,
.agency-page .hero-copy h1 .hero-accent {
  color: var(--pixel-accent-warm);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--pixel-muted);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--pixel-muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid var(--pixel-border);
  background: rgba(17, 24, 20, 0.8);
  border-radius: var(--pixel-radius);
}

.stat-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pixel-accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--pixel-muted);
}

.hero-card {
  background: linear-gradient(140deg, rgba(17, 24, 20, 0.95), rgba(9, 14, 11, 0.95));
  border: 1px solid var(--pixel-border);
  border-radius: var(--pixel-radius);
  box-shadow: var(--pixel-shadow);
  padding: 24px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--pixel-muted);
  font-size: 0.85rem;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--pixel-accent);
  box-shadow: 0 0 16px rgba(57, 255, 122, 0.8);
}

.card-body h2 {
  font-size: 1.2rem;
  margin: 16px 0 12px;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--pixel-muted);
}

.card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--pixel-border);
  color: var(--pixel-muted);
  font-size: 0.85rem;
}

.hero-glow {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(57, 255, 122, 0.2), transparent 70%);
  filter: blur(4px);
  z-index: 0;
}

.router-paths {
  padding-top: 56px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.router-page .pixel-container {
  position: relative;
}

.router-brand-stack {
  position: absolute;
  left: 50%;
  top: -44px;
  transform: translateX(-50%);
  width: min(1120px, 96%);
  padding: 10px 18px 18px;
  pointer-events: auto;
  user-select: none;
  z-index: 0;
}

.router-brand-bg,
.router-brand-sub {
  display: block;
  text-align: center;
  font-family: "Press Start 2P", "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(230, 243, 234, 0.84);
  text-shadow:
    6px 6px 0 rgba(7, 10, 8, 0.55),
    0 0 14px rgba(230, 243, 234, 0.08),
    -18px 0 28px rgba(40, 216, 106, 0.12),
    18px 0 28px rgba(234, 88, 12, 0.1);
  white-space: nowrap;
}

.router-brand-bg {
  font-size: clamp(2.8rem, 10vw, 8.4rem);
  letter-spacing: 0.04em;
}

.router-brand-sub {
  margin-top: 18px;
  font-size: clamp(0.7rem, 2.4vw, 1.3rem);
  letter-spacing: 0.16em;
  color: var(--pixel-accent);
  text-shadow:
    4px 4px 0 rgba(7, 10, 8, 0.45),
    0 0 14px rgba(40, 216, 106, 0.3),
    0 0 28px rgba(40, 216, 106, 0.22),
    -14px 0 44px rgba(40, 216, 106, 0.2),
    14px 0 44px rgba(234, 88, 12, 0.18);
  animation: routerSubtitleFlicker 5.8s linear infinite;
}

.router-brand-stack:hover .router-brand-bg,
.router-brand-stack:hover .router-brand-sub {
  text-shadow:
    6px 6px 0 rgba(7, 10, 8, 0.48),
    0 0 20px rgba(230, 243, 234, 0.14),
    -20px 0 44px rgba(40, 216, 106, 0.2),
    20px 0 44px rgba(234, 88, 12, 0.18);
}

.router-brand-stack:hover .router-brand-sub {
  text-shadow:
    4px 4px 0 rgba(7, 10, 8, 0.45),
    0 0 18px rgba(40, 216, 106, 0.38),
    0 0 32px rgba(40, 216, 106, 0.28),
    -16px 0 52px rgba(40, 216, 106, 0.24),
    16px 0 52px rgba(234, 88, 12, 0.22);
}

@keyframes routerSubtitleFlicker {
  0%,
  18%,
  20%,
  24%,
  55%,
  57%,
  100% {
    opacity: 1;
    text-shadow:
      4px 4px 0 rgba(7, 10, 8, 0.45),
      0 0 14px rgba(40, 216, 106, 0.3),
      0 0 28px rgba(40, 216, 106, 0.22),
      -14px 0 44px rgba(40, 216, 106, 0.2),
      14px 0 44px rgba(234, 88, 12, 0.18);
  }

  19%,
  56% {
    opacity: 0.82;
    text-shadow:
      4px 4px 0 rgba(7, 10, 8, 0.45),
      0 0 10px rgba(40, 216, 106, 0.16),
      -10px 0 28px rgba(40, 216, 106, 0.12),
      10px 0 28px rgba(234, 88, 12, 0.1);
  }

  22% {
    opacity: 0.7;
    text-shadow:
      4px 4px 0 rgba(7, 10, 8, 0.45),
      0 0 8px rgba(40, 216, 106, 0.1),
      -8px 0 22px rgba(40, 216, 106, 0.08),
      8px 0 22px rgba(234, 88, 12, 0.08);
  }
}

.router-badge {
  position: absolute;
  bottom: 20px;
  right: clamp(16px, 4vw, 40px);
  top: auto;
  z-index: 2;
  display: inline-flex;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid var(--pixel-border);
  border-radius: 999px;
  background: rgba(12, 18, 14, 0.72);
  color: var(--pixel-ink);
  box-shadow: var(--pixel-shadow);
}

.partner-badge img {
  height: 22px;
  width: auto;
  display: block;
}

.partner-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.router-page .path-grid {
  position: relative;
  z-index: 1;
  margin-top: 200px;
}

.profile-video-shell {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}

.profile-video-frame {
  position: relative;
  display: inline-flex;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(18, 24, 20, 0.96), rgba(9, 13, 11, 0.96));
  border: 2px solid var(--pixel-accent);
  border-radius: 10px;
  box-shadow:
    0 0 0 6px rgba(9, 14, 11, 0.9),
    0 0 0 8px rgba(40, 216, 106, 0.16),
    var(--pixel-shadow);
  outline: none;
}

.profile-video-frame::before,
.profile-video-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--pixel-accent);
  box-shadow: 0 0 12px rgba(40, 216, 106, 0.45);
}

.profile-video-frame::before {
  top: -6px;
  left: -6px;
}

.profile-video-frame::after {
  right: -6px;
  bottom: -6px;
}

.profile-video-frame:focus-visible {
  box-shadow:
    0 0 0 6px rgba(9, 14, 11, 0.9),
    0 0 0 8px rgba(40, 216, 106, 0.24),
    0 0 0 12px rgba(40, 216, 106, 0.18),
    var(--pixel-shadow);
}

.profile-video {
  display: block;
  width: clamp(148px, 18vw, 208px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid rgba(17, 24, 20, 0.9);
  image-rendering: crisp-edges;
  background: #0a0f0c;
}

.profile-video-shell--contact {
  margin: 0;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
}

.profile-video-frame--contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-width: 3px;
  border-radius: 0;
  min-width: 124px;
  min-height: 124px;
  box-shadow:
    0 0 0 4px rgba(9, 14, 11, 0.94),
    0 0 0 8px rgba(40, 216, 106, 0.14),
    var(--pixel-shadow);
}

.profile-video-frame--contact::before,
.profile-video-frame--contact::after {
  width: 12px;
  height: 12px;
}

.profile-video--contact {
  width: clamp(124px, 16vw, 160px);
  aspect-ratio: 1;
  border-radius: 0;
  border-width: 3px;
}

.router-page .path-card {
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.router-page .path-card:not(.local-path) {
  border-color: rgba(40, 216, 106, 0.45);
}

section {
  padding: 72px 0;
}

.section-title h2 {
  margin: 12px 0 32px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.apps-card,
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: var(--pixel-radius);
  border: 1px solid var(--pixel-border);
  background: rgba(17, 24, 20, 0.9);
  box-shadow: var(--pixel-shadow);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.path-card {
  padding: 28px;
  border-radius: var(--pixel-radius);
  border: 1px solid var(--pixel-border);
  background:
    linear-gradient(180deg, rgba(17, 24, 20, 0.96), rgba(10, 15, 12, 0.94));
  box-shadow: var(--pixel-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.local-path {
  border-color: rgba(234, 88, 12, 0.45);
  background:
    linear-gradient(180deg, rgba(42, 24, 15, 0.96), rgba(23, 14, 10, 0.94));
}

.path-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid var(--pixel-border);
  border-radius: var(--pixel-radius);
  color: var(--pixel-accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.path-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.path-card p {
  margin: 0;
  color: var(--pixel-muted);
}

.path-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.path-list li {
  padding-left: 18px;
  position: relative;
  color: var(--pixel-ink);
}

.path-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--pixel-accent);
  box-shadow: 0 0 10px rgba(57, 255, 122, 0.5);
}

.path-actions {
  margin-top: 26px;
}

.router-page .local-path .path-kicker {
  color: var(--pixel-accent-warm-soft);
}

.router-page .local-path .path-list li::before {
  background: var(--pixel-accent-warm);
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.45);
}

.router-page .local-path .pixel-button.ghost {
  border-color: var(--pixel-accent-warm);
  color: var(--pixel-accent-warm-soft);
}

.router-page .path-card:not(.local-path):has(.path-actions .pixel-button:hover),
.router-page .path-card:not(.local-path):has(.path-actions .pixel-button:focus-visible) {
  border-color: rgba(40, 216, 106, 0.85);
  box-shadow:
    0 0 0 1px rgba(40, 216, 106, 0.26),
    0 0 26px rgba(40, 216, 106, 0.22),
    0 22px 52px rgba(4, 12, 8, 0.74);
  transform: translateY(-2px);
}

.router-page .local-path:has(.path-actions .pixel-button:hover),
.router-page .local-path:has(.path-actions .pixel-button:focus-visible) {
  border-color: rgba(234, 88, 12, 0.82);
  box-shadow:
    0 0 0 1px rgba(234, 88, 12, 0.26),
    0 0 28px rgba(234, 88, 12, 0.24),
    0 22px 52px rgba(16, 8, 4, 0.74);
  transform: translateY(-2px);
}

.apps-card h3 {
  margin: 0 0 8px;
}

.apps-card p {
  margin: 0;
  color: var(--pixel-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 22px;
  border-radius: var(--pixel-radius);
  border: 1px solid var(--pixel-border);
  background: rgba(14, 19, 16, 0.9);
  display: grid;
  gap: 12px;
}

.service-card h3 {
  margin: 0;
}

.service-card p {
  margin: 0;
  color: var(--pixel-muted);
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid var(--pixel-border);
  border-radius: var(--pixel-radius);
  font-size: 0.75rem;
  color: var(--pixel-accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-step {
  padding: 20px;
  border-radius: var(--pixel-radius);
  border: 1px solid var(--pixel-border);
  background: rgba(17, 24, 20, 0.85);
}

.step-number {
  font-family: "Press Start 2P", "Space Grotesk", sans-serif;
  color: var(--pixel-accent);
  font-size: 0.85rem;
}

.process-step h3 {
  margin: 12px 0 8px;
}

.process-step p {
  margin: 0;
  color: var(--pixel-muted);
}

.contact-card {
  flex-wrap: wrap;
}

.contact-copy {
  color: var(--pixel-muted);
  max-width: 520px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.audit-page::before {
  background-image:
    radial-gradient(circle at 18% 14%, rgba(234, 88, 12, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(253, 186, 116, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(11, 15, 13, 0.92), rgba(8, 11, 10, 0.98));
}

.audit-page .hero-glow {
  background: radial-gradient(circle, rgba(234, 88, 12, 0.22), transparent 70%);
}

.audit-page .pulse {
  background: var(--pixel-accent-warm);
  box-shadow: 0 0 16px rgba(234, 88, 12, 0.7);
}

.audit-page .pixel-button {
  border-color: var(--pixel-accent-warm);
  background: var(--pixel-accent-warm);
}

.audit-page .pixel-button.ghost {
  color: var(--pixel-accent-warm-soft);
  background: transparent;
}

.audit-page .stat-title,
.audit-page .audit-label {
  color: var(--pixel-accent-warm-soft);
}

.audit-page .audit-option:hover {
  border-color: rgba(234, 88, 12, 0.48);
}

.audit-page .audit-option input {
  accent-color: var(--pixel-accent-warm);
}

.audit-page .audit-chip {
  border-color: rgba(234, 88, 12, 0.32);
  background: rgba(234, 88, 12, 0.12);
}

.audit-page .audit-result-card {
  background:
    radial-gradient(circle at top center, rgba(234, 88, 12, 0.08), transparent 28%),
    rgba(17, 24, 20, 0.92);
}

.audit-page .audit-result-card.is-filled {
  border-color: rgba(234, 88, 12, 0.34);
}

.audit-intro {
  margin: -12px 0 0;
  max-width: 760px;
  color: var(--pixel-muted);
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.audit-grid--result-mode {
  grid-template-columns: minmax(0, 1fr);
}

.audit-form,
.audit-result-card {
  padding: 28px;
  border: 1px solid var(--pixel-border);
  border-radius: var(--pixel-radius);
  background: rgba(17, 24, 20, 0.92);
  box-shadow: var(--pixel-shadow);
}

.audit-form[hidden],
.audit-step[hidden],
.audit-result-card[hidden],
.audit-result-content[hidden],
.audit-actions-bar .pixel-button[hidden] {
  display: none !important;
}

.audit-form {
  display: grid;
  gap: 22px;
}

.audit-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 4px;
}

.audit-progress__eyebrow,
.audit-progress__count {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pixel-muted);
}

.audit-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audit-hero-frame {
  position: relative;
  width: min(100%, 620px);
  padding: 18px;
  border: 1px solid rgba(234, 88, 12, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(253, 186, 116, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(41, 24, 16, 0.95), rgba(15, 11, 9, 0.98));
  box-shadow:
    0 0 0 1px rgba(253, 186, 116, 0.08),
    0 24px 50px rgba(9, 7, 5, 0.45);
}

.audit-hero-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(253, 186, 116, 0.14);
  border-radius: 12px;
  pointer-events: none;
}

.audit-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.audit-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.audit-step {
  min-height: 320px;
}

.audit-fieldset legend {
  margin-bottom: 10px;
  font-size: 1.02rem;
  font-weight: 700;
}

.audit-step--email {
  align-content: start;
}

.audit-email-label {
  font-size: 0.9rem;
  font-weight: 700;
}

.audit-email-input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--pixel-border);
  border-radius: 10px;
  background: rgba(11, 16, 13, 0.78);
  color: var(--pixel-ink);
  font: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.audit-email-input:focus {
  outline: 2px solid rgba(234, 88, 12, 0.4);
  outline-offset: 2px;
  border-color: rgba(234, 88, 12, 0.45);
}

.audit-email-copy {
  margin: 0;
  color: var(--pixel-muted);
}

.audit-email-error {
  margin: 0;
  color: #fca5a5;
  font-weight: 600;
}

.admin-shell {
  padding-top: 5rem;
}

.admin-title {
  margin-bottom: 1.5rem;
}

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

.admin-stat-value {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #9a3412;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.admin-table th,
.admin-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(154, 52, 18, 0.16);
  vertical-align: top;
}

.admin-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(67, 20, 7, 0.8);
}

.admin-table td {
  color: #431407;
  font-size: 0.95rem;
}

.audit-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--pixel-border);
  border-radius: var(--pixel-radius);
  background: rgba(11, 16, 13, 0.72);
  color: var(--pixel-ink);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.audit-option:hover {
  border-color: rgba(40, 216, 106, 0.48);
  transform: translateY(-1px);
}

.audit-option input {
  accent-color: var(--pixel-accent);
  margin-top: 2px;
  flex: 0 0 auto;
}

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

.audit-submit {
  width: auto;
  justify-self: flex-start;
}

.audit-actions-bar {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.audit-nav-button,
.audit-submit {
  min-width: 160px;
}

.audit-result-card {
  max-width: 860px;
  margin: 0 auto;
}

.audit-grid--result-mode .audit-result-card {
  max-width: none;
  width: 100%;
  margin: 0;
}

.audit-result-copy,
.audit-summary p {
  color: var(--pixel-muted);
}

.audit-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.audit-result-header__copy {
  min-width: 0;
}

.audit-result-header__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.audit-download-button {
  min-width: 180px;
}

.audit-pdf-error {
  margin: 0;
  font-size: 0.85rem;
  color: #b91c1c;
}

.audit-result-content {
  display: grid;
  gap: 24px;
}

.audit-stage-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(234, 88, 12, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(234, 88, 12, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(43, 24, 15, 0.92), rgba(19, 13, 10, 0.96));
  box-shadow: 0 18px 40px rgba(10, 7, 4, 0.45);
}

.audit-stage-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audit-stage-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(253, 186, 116, 0.3);
  background: rgba(253, 186, 116, 0.12);
  color: var(--pixel-accent-warm-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-summary h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.audit-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pixel-muted);
}

.audit-why-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.audit-block + .audit-block {
  padding-top: 4px;
}

.audit-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audit-panel {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(234, 88, 12, 0.16);
  background: rgba(18, 14, 11, 0.82);
}

.audit-panel--actions {
  background: linear-gradient(180deg, rgba(27, 17, 12, 0.92), rgba(18, 14, 11, 0.92));
}

.audit-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(40, 216, 106, 0.28);
  border-radius: 999px;
  background: rgba(40, 216, 106, 0.1);
  color: var(--pixel-ink);
  font-size: 0.9rem;
}

.audit-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(253, 186, 116, 0.25);
}

.audit-actions-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: audit-steps;
  display: grid;
  gap: 12px;
  color: var(--pixel-ink);
}

.audit-actions-list li {
  position: relative;
  padding: 16px 16px 16px 60px;
  border: 1px solid rgba(234, 88, 12, 0.16);
  border-radius: 12px;
  background: rgba(30, 19, 13, 0.72);
}

.audit-actions-list li::before {
  counter-increment: audit-steps;
  content: counter(audit-steps);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--pixel-accent-warm);
  color: #120d09;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 14px rgba(234, 88, 12, 0.28);
}

.audit-action-copy {
  margin: 0;
  line-height: 1.6;
}

.audit-action-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.audit-action-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.audit-action-tag--effort {
  background: rgba(255, 237, 213, 0.9);
  border-color: rgba(234, 88, 12, 0.14);
  color: #9a3412;
}

.audit-action-tag--impact {
  background: rgba(254, 215, 170, 0.84);
  border-color: rgba(194, 65, 12, 0.14);
  color: #7c2d12;
}

.audit-score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audit-score-card {
  padding: 16px;
  border: 1px solid rgba(234, 88, 12, 0.16);
  border-radius: 12px;
  background: rgba(255, 249, 241, 0.82);
}

.audit-score-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.audit-score-card__title {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 700;
}

.audit-score-card__badge {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
}

.audit-score-card__badge--high {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(202, 138, 4, 0.18);
  color: #92400e;
}

.audit-score-card__badge--mid {
  background: rgba(251, 146, 60, 0.16);
  border-color: rgba(234, 88, 12, 0.16);
  color: #9a3412;
}

.audit-score-card__badge--low {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.audit-score-card__meter {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(154, 52, 18, 0.08);
}

.audit-score-card__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.audit-score-card__fill--high {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.78), rgba(234, 88, 12, 0.94));
}

.audit-score-card__fill--mid {
  background: linear-gradient(90deg, rgba(251, 146, 60, 0.72), rgba(234, 88, 12, 0.82));
}

.audit-score-card__fill--low {
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.7), rgba(220, 38, 38, 0.78));
}

.audit-score-card__value {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.92rem;
}

.audit-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audit-roadmap-column {
  padding: 18px;
  border: 1px solid rgba(234, 88, 12, 0.14);
  border-radius: 12px;
  background: rgba(255, 249, 241, 0.82);
}

.audit-roadmap-title {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #7c2d12;
}

.audit-roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.audit-roadmap-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.audit-roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(234, 88, 12, 0.72);
}

.audit-cta {
  padding: 20px;
  margin-top: 4px;
  border-color: rgba(234, 88, 12, 0.2);
  background: linear-gradient(180deg, rgba(37, 22, 15, 0.92), rgba(20, 14, 11, 0.94));
}

.audit-cta__content {
  flex: 1 1 420px;
  min-width: 0;
}

.audit-cta__media {
  flex: 0 0 auto;
  justify-content: center;
  align-self: center;
}

.audit-cta__frame {
  padding: 8px;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(234, 88, 12, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(255, 247, 237, 0.96));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.14);
}

.audit-cta__frame::before,
.audit-cta__frame::after {
  display: none;
}

.audit-cta__video {
  width: clamp(140px, 18vw, 184px);
  border: 1px solid rgba(234, 88, 12, 0.12);
  border-radius: 14px;
  background: #fff7ed;
}

.audit-result-card.is-filled {
  border-color: rgba(40, 216, 106, 0.36);
}

.audit-page .audit-form,
.audit-page .audit-result-card {
  background: rgba(255, 252, 248, 0.94);
  border-color: rgba(234, 88, 12, 0.12);
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.08);
}

.audit-page {
  background: #fff9f2;
  color: #431407;
}

.audit-page::before {
  background-image:
    radial-gradient(circle at 18% 14%, rgba(253, 186, 116, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 237, 213, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(255, 252, 248, 0.98));
}

.audit-page::after {
  background-image:
    linear-gradient(rgba(154, 52, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 52, 18, 0.045) 1px, transparent 1px);
  opacity: 0.22;
}

.audit-page .pixel-main {
  position: relative;
  z-index: 1;
}

.audit-page .hero-copy,
.audit-page .section-title,
.audit-page .audit-form,
.audit-page .audit-result-card,
.audit-page .audit-panel,
.audit-page .audit-option,
.audit-page .audit-actions-list li,
.audit-page .audit-email-input,
.audit-page .audit-cta,
.audit-page .pixel-footer {
  color: #431407;
}

.audit-page .hero-sub,
.audit-page .stat-label,
.audit-page .audit-progress__eyebrow,
.audit-page .audit-progress__count,
.audit-page .audit-result-copy,
.audit-page .audit-summary p,
.audit-page .audit-email-copy,
.audit-page .pixel-footer,
.audit-page .pixel-footer a {
  color: rgba(120, 53, 15, 0.82);
}

.audit-page .hero-stats div {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(234, 88, 12, 0.12);
}

.audit-page .eyebrow,
.audit-page .stat-title,
.audit-page .audit-label {
  color: #9a3412;
}

.audit-page .hero h1,
.audit-page .section-title h2,
.audit-page .audit-result-card h2,
.audit-page .audit-summary h3,
.audit-page .audit-fieldset legend,
.audit-page .audit-email-label,
.audit-page .audit-option span,
.audit-page .audit-option,
.audit-page .audit-option input,
.audit-page .audit-actions-list li,
.audit-page .audit-panel,
.audit-page .audit-chip,
.audit-page .audit-stage-badge {
  color: #431407;
}

.audit-page .audit-result-card {
  background:
    radial-gradient(circle at top center, rgba(253, 186, 116, 0.14), transparent 28%),
    rgba(255, 252, 248, 0.96);
}

.audit-page .audit-option {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(234, 88, 12, 0.12);
}

.audit-page .audit-option:hover {
  background: rgba(255, 249, 241, 0.98);
  border-color: rgba(234, 88, 12, 0.28);
}

.audit-page .audit-stage-card {
  border-color: rgba(234, 88, 12, 0.16);
  background:
    radial-gradient(circle at top right, rgba(253, 186, 116, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.98), rgba(255, 252, 248, 0.98));
  box-shadow: 0 20px 44px rgba(217, 119, 6, 0.08);
}

.audit-page .audit-stage-badge,
.audit-page .audit-chip {
  background: rgba(255, 237, 213, 0.78);
  color: #9a3412;
  border-color: rgba(234, 88, 12, 0.18);
}

.audit-page .audit-panel,
.audit-page .audit-panel--actions,
.audit-page .audit-cta {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(234, 88, 12, 0.14);
}

.audit-page .audit-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.audit-page #audit-cta-copy {
  max-width: 620px;
}

.audit-page .audit-cta-copy {
  margin: 0;
  color: rgba(120, 53, 15, 0.82);
}

.audit-page .audit-cta .eyebrow {
  color: #9a3412;
}

.audit-page .audit-actions-list li {
  background: rgba(255, 249, 241, 0.92);
  border-color: rgba(234, 88, 12, 0.14);
}

.audit-page .audit-email-input {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(234, 88, 12, 0.14);
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.06);
}

.audit-page .audit-email-error {
  color: #b91c1c;
}

.audit-page .pixel-button {
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.18);
}

.audit-page .pixel-button.ghost {
  background: rgba(255, 247, 237, 0.88);
}

.audit-page .audit-hero-frame {
  width: min(100%, 620px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.audit-page .audit-hero-frame::before {
  display: none;
}

.audit-page .audit-hero-image {
  border-radius: 0;
  box-shadow: none;
}

.pixel-footer {
  border-top: 1px solid var(--pixel-border);
  padding: 32px 0;
  color: var(--pixel-muted);
}

.pixel-footer .pixel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  margin-top: 0;
}

.pixel-loader {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: all;
}

.pixel-loader__grid {
  position: absolute;
  inset: 0;
  display: grid;
}

.pixel-loader__marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.pixel-loader__track {
  display: inline-flex;
  gap: 3rem;
  padding-left: 100%;
  font-family: "Press Start 2P", "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  letter-spacing: 0.22em;
  color: rgba(230, 243, 234, 0.18);
  text-shadow:
    6px 6px 0 rgba(7, 10, 8, 0.5),
    0 0 20px rgba(40, 216, 106, 0.22),
    0 0 42px rgba(40, 216, 106, 0.14);
  animation: loaderMarquee 2.6s linear forwards;
}

.pixel-loader__track span {
  flex: 0 0 auto;
}

.pixel-loader__label {
  display: none;
}

.pixel-loader--done {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pixel-loader {
  background:
    linear-gradient(to right, rgba(40, 216, 106, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(40, 216, 106, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 12, 10, 0.98), rgba(9, 14, 11, 0.98));
  background-size: 32px 32px, 32px 32px, auto;
}

.pixel-loader__grid {
  display: none;
}

@keyframes loaderMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-72%);
  }
}

@media (max-width: 900px) {
  .router-page::before {
    background-image:
      linear-gradient(180deg, rgba(16, 45, 30, 0.28) 0%, rgba(16, 45, 30, 0.28) 50%, rgba(73, 34, 19, 0.24) 50%, rgba(73, 34, 19, 0.24) 100%),
      radial-gradient(circle at 50% 18%, rgba(57, 255, 122, 0.18), transparent 34%),
      radial-gradient(circle at 50% 82%, rgba(234, 88, 12, 0.18), transparent 34%);
  }

  .nav-links {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .lang-switch--mobile {
    display: inline-flex;
    width: fit-content;
  }

  .pixel-nav .pixel-button {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 64px;
  }

  .router-paths {
    padding-top: 36px;
    padding-bottom: 132px;
    min-height: auto;
    display: block;
  }

  .router-brand-bg {
    width: 100%;
    font-size: clamp(2.2rem, 14vw, 4.8rem);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .router-brand-stack {
    top: -56px;
    width: 100%;
  }

  .router-brand-bg {
    font-size: clamp(1.4rem, 9vw, 2.6rem);
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .router-brand-sub {
    margin-top: 8px;
    font-size: clamp(0.55rem, 3vw, 0.85rem);
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .router-badge {
    position: absolute;
    top: auto;
    right: 16px;
    bottom: 18px;
    transform: none;
    margin: 0;
    display: inline-flex;
  }

  .router-lang-switch {
    top: 18px;
    left: 16px;
  }

  .router-page .path-grid {
    margin-top: 120px;
  }

  .partner-badge {
    margin-top: 16px;
  }

  .apps-card,
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .audit-result-header {
    flex-direction: column;
  }

  .audit-result-header__actions {
    width: 100%;
    justify-items: flex-start;
  }

  .audit-insight-grid {
    grid-template-columns: 1fr;
  }

  .audit-score-grid,
  .audit-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .audit-page .audit-cta {
    grid-template-columns: 1fr;
  }

  .audit-page .audit-cta__media {
    width: 100%;
    justify-content: flex-start;
  }

  .audit-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-card > * {
    width: 100%;
  }

  .profile-video-shell--contact {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
  }

  .profile-video-frame--contact {
    margin: 0 auto;
    min-width: 140px;
    min-height: 140px;
  }

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

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pixel-button {
    width: 100%;
  }

  .profile-video-frame--contact {
    min-width: 108px;
    min-height: 108px;
    padding: 8px;
  }

  .profile-video--contact {
    width: 92px;
  }

  .pixel-loader__label {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pixel-loader__track {
    animation-duration: 0.01s;
  }
}
