: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;
}

html {
  overflow-x: hidden;
}

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;
  overflow-x: hidden;
}

.pixel-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: min(820px, 100vh);
  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: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: min(820px, 100vh);
  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: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: min(820px, 100vh);
  display: grid;
  overflow: hidden;
  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;
  overflow: hidden;
}

.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;
}

.hero-person-card {
  display: grid;
  gap: 20px;
}

.hero-person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.hero-person__copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.hero-person__copy p:last-child {
  margin: 0;
  color: var(--pixel-muted);
}

.hero-person-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pixel-border), transparent);
}

.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;
}

.profile-video-shell--hero {
  margin: 0;
  justify-content: flex-start;
}

.profile-video-frame--hero {
  padding: 8px;
  border-radius: 0;
  box-shadow:
    0 0 0 4px rgba(9, 14, 11, 0.88),
    0 0 0 7px rgba(40, 216, 106, 0.12),
    var(--pixel-shadow);
}

.profile-video--hero {
  width: clamp(104px, 11vw, 142px);
  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%);
  }
}

.landing-page {
  --landing-bg: #f7f9f4;
  --landing-bg-strong: #ffffff;
  --landing-panel: rgba(255, 255, 255, 0.88);
  --landing-panel-solid: #ffffff;
  --landing-ink: #153428;
  --landing-muted: #5b7068;
  --landing-soft: #dfe9e1;
  --landing-grid: rgba(39, 96, 72, 0.04);
  --landing-accent: #2f9f73;
  --landing-accent-dark: #237a58;
  --landing-warm: #d9773f;
  --landing-shadow: 0 18px 46px rgba(31, 66, 52, 0.12);
  background: var(--landing-bg);
  color: var(--landing-ink);
}

.landing-page::before {
  inset: 0;
  bottom: 0;
  height: auto;
  background-image:
    linear-gradient(var(--landing-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--landing-grid) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 246, 239, 0.82));
  background-size: 88px 88px, 88px 88px, auto;
  opacity: 1;
}

.landing-page .pixel-container {
  width: min(1160px, 92%);
  max-width: 100%;
}

.landing-page .pixel-hover-grid {
  position: fixed;
  height: 100vh;
}

.landing-page .pixel-hover-cell {
  border-color: transparent;
}

.landing-page .pixel-hover-cell.active {
  background: rgba(47, 159, 115, 0.08);
  border-color: rgba(47, 159, 115, 0.16);
}

.landing-page .pixel-nav {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(35, 122, 88, 0.12);
  box-shadow: 0 10px 30px rgba(31, 66, 52, 0.08);
}

.landing-page .brand {
  color: var(--landing-ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  text-shadow: none;
}

.landing-page .brand__title {
  color: var(--landing-ink);
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 800;
}

.landing-page .brand__subtitle {
  color: var(--landing-accent-dark);
  font-size: 0.78rem;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: none;
}

.landing-page .nav-links {
  color: var(--landing-muted);
}

.landing-page .nav-links a::after {
  background: var(--landing-accent);
}

.landing-page .lang-switch {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(35, 122, 88, 0.14);
  box-shadow: none;
}

.landing-page .lang-switch__link {
  color: var(--landing-muted);
  letter-spacing: 0;
}

.landing-page .lang-switch__link:hover {
  color: var(--landing-ink);
}

.landing-page .lang-switch__link.is-active {
  background: var(--landing-accent);
  color: #ffffff;
}

.landing-page .nav-toggle {
  border-color: rgba(35, 122, 88, 0.18);
  color: var(--landing-accent-dark);
}

.landing-page .nav-toggle span {
  background: var(--landing-accent-dark);
}

.landing-page .mobile-nav {
  border-top-color: rgba(35, 122, 88, 0.12);
}

.landing-page .mobile-nav a {
  color: var(--landing-muted);
}

.landing-page .mobile-nav.open {
  background: rgba(255, 255, 255, 0.86);
}

.landing-page .pixel-button {
  border: 1px solid var(--landing-accent);
  background: var(--landing-accent);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(35, 122, 88, 0.18);
  letter-spacing: 0;
  text-transform: none;
}

.landing-page .pixel-button:hover {
  box-shadow: 0 16px 32px rgba(35, 122, 88, 0.2);
}

.landing-page .pixel-button.ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--landing-accent-dark);
  box-shadow: none;
}

.landing-page .eyebrow {
  color: var(--landing-accent-dark);
  letter-spacing: 0;
  font-weight: 800;
  text-transform: none;
}

.landing-page .hero {
  padding: 112px 0 84px;
}

.landing-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  gap: 56px;
}

.landing-page .hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  color: var(--landing-ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.15rem;
  line-height: 1.04;
}

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

.landing-page .hero-copy h1 .hero-accent {
  color: var(--landing-accent-dark);
}

.landing-page .hero-sub {
  color: var(--landing-muted);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 650px;
}

.landing-trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-page .hero-stats div {
  padding: 16px;
  border: 1px solid rgba(35, 122, 88, 0.12);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 66, 52, 0.06);
}

.landing-page .stat-title {
  color: var(--landing-accent-dark);
  font-size: 1.25rem;
}

.landing-page .stat-label {
  color: var(--landing-muted);
}

.landing-portrait {
  position: relative;
  display: grid;
  gap: 20px;
  align-self: stretch;
  min-height: 540px;
  padding: 22px;
  border: 1px solid rgba(35, 122, 88, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 244, 0.96));
  box-shadow: var(--landing-shadow);
  overflow: hidden;
}

.landing-portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(47, 159, 115, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.landing-portrait__media {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: grid;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(47, 159, 115, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 159, 115, 0.07) 1px, transparent 1px),
    #edf5ee;
  background-size: 22px 22px, 22px 22px, auto;
}

.landing-portrait__video,
.landing-portrait__image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.landing-portrait__content {
  position: relative;
  z-index: 1;
}

.landing-portrait__content h2 {
  margin: 8px 0 8px;
  font-size: 2rem;
  color: var(--landing-ink);
}

.landing-portrait__content p:last-child {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.6;
}

.landing-credential-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-credential-stack span,
.landing-card__kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(217, 119, 63, 0.16);
  border-radius: 999px;
  background: rgba(255, 247, 241, 0.8);
  color: #9b4f27;
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-section {
  padding: 82px 0;
}

.landing-section--alt {
  background:
    linear-gradient(rgba(47, 159, 115, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 159, 115, 0.026) 1px, transparent 1px),
    rgba(255, 255, 255, 0.42);
  background-size: 96px 96px, 96px 96px, auto;
}

.landing-page .section-title {
  max-width: 820px;
}

.landing-page .section-title h2 {
  margin: 12px 0 30px;
  color: var(--landing-ink);
  font-size: 2.1rem;
  line-height: 1.18;
}

.landing-section-copy {
  max-width: 620px;
  margin: -12px 0 0;
  color: var(--landing-muted);
  line-height: 1.7;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.landing-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(35, 122, 88, 0.12);
  border-radius: 8px;
  background: var(--landing-panel);
  box-shadow: 0 12px 32px rgba(31, 66, 52, 0.07);
}

.landing-card h3 {
  margin: 0;
  color: var(--landing-ink);
  font-size: 1.18rem;
}

.landing-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.6;
}

.landing-page .tag {
  align-self: end;
  border-color: rgba(35, 122, 88, 0.14);
  background: rgba(237, 247, 239, 0.86);
  color: var(--landing-accent-dark);
  border-radius: 999px;
}

.landing-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: start;
}

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

.landing-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(35, 122, 88, 0.14);
  border-radius: 8px;
  background: var(--landing-panel-solid);
  color: var(--landing-ink);
  box-shadow: 0 12px 32px rgba(31, 66, 52, 0.07);
}

.landing-action strong,
.landing-action small {
  display: block;
}

.landing-action strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.landing-action small {
  color: var(--landing-muted);
  line-height: 1.5;
}

.landing-page .process-step {
  min-height: 190px;
  border-color: rgba(35, 122, 88, 0.12);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 66, 52, 0.06);
}

.landing-page .step-number {
  color: var(--landing-warm);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

.landing-page .process-step h3 {
  color: var(--landing-ink);
}

.landing-page .process-step p {
  color: var(--landing-muted);
  line-height: 1.6;
}

.landing-contact-section {
  padding-bottom: 92px;
}

.landing-contact-card {
  border-color: rgba(35, 122, 88, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 241, 0.96));
  box-shadow: var(--landing-shadow);
}

.landing-contact-card h2 {
  margin: 10px 0 12px;
  color: var(--landing-ink);
  font-size: 2rem;
}

.landing-page .contact-copy {
  color: var(--landing-muted);
  line-height: 1.7;
}

.landing-contact-note {
  display: grid;
  gap: 10px;
  min-width: 280px;
}

.landing-contact-note span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(35, 122, 88, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--landing-muted);
  font-weight: 700;
}

.landing-page .pixel-footer {
  border-top-color: rgba(35, 122, 88, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--landing-muted);
}

.landing-page .pixel-footer a {
  color: var(--landing-muted);
}

.landing-page .brand {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: none;
}

.landing-page .brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 40px;
  border-radius: 9px 9px 12px 12px;
  background: linear-gradient(160deg, #73c83b, #2f9f73);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-7deg);
  box-shadow: 0 10px 18px rgba(47, 159, 115, 0.24);
}

.landing-page .brand__copy {
  display: grid;
  gap: 2px;
}

.landing-page .brand__title {
  font-size: 1.18rem;
}

.landing-page .pixel-nav {
  background: rgba(248, 251, 246, 0.78);
  backdrop-filter: blur(22px);
}

.landing-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
}

.landing-page .hero {
  padding: 86px 0 28px;
}

.landing-hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.94fr);
  grid-template-areas:
    "copy portrait"
    "stats stats";
  min-height: 650px;
  align-items: center;
  gap: 22px 56px;
}

.landing-hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
}

.landing-page .hero-copy > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--landing-ink);
  font-size: 1rem;
  font-weight: 600;
}

.landing-page .hero-copy > .eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #73c83b;
  box-shadow: 0 0 0 8px rgba(115, 200, 59, 0.12);
}

.landing-page .hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-size: clamp(3.6rem, 6.1vw, 5.7rem);
  line-height: 1.03;
}

.landing-page .hero-copy h1 .hero-accent {
  color: #63b82f;
}

.landing-page .hero-sub {
  max-width: 620px;
  color: #31443d;
  font-size: 1.12rem;
}

.landing-portrait {
  grid-area: portrait;
  align-self: stretch;
  min-height: 620px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #e9f1eb;
  box-shadow: 0 22px 54px rgba(31, 66, 52, 0.14);
  overflow: hidden;
}

.landing-portrait::before {
  display: none;
}

.landing-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 249, 244, 0.86) 0%, rgba(247, 249, 244, 0.28) 34%, rgba(247, 249, 244, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 52, 40, 0.12));
  pointer-events: none;
}

.landing-portrait__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border-radius: 0;
  background: #e9f1eb;
}

.landing-portrait__video,
.landing-portrait__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.landing-portrait__content {
  position: absolute;
  right: 24px;
  bottom: 76px;
  z-index: 2;
  width: min(330px, calc(100% - 48px));
  padding: 18px 18px 14px;
  border: 1px solid rgba(35, 122, 88, 0.16);
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(31, 66, 52, 0.16);
  backdrop-filter: blur(16px);
}

.landing-portrait__content .eyebrow {
  margin: 0;
  font-size: 0.78rem;
}

.landing-portrait__content h2 {
  margin: 4px 0 6px;
  font-size: 1.18rem;
}

.landing-portrait__content p:last-child {
  font-size: 0.9rem;
  line-height: 1.45;
}

.landing-credential-stack {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(330px, calc(100% - 48px));
  padding: 0 18px 14px;
  border: 1px solid rgba(35, 122, 88, 0.16);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(31, 66, 52, 0.16);
  backdrop-filter: blur(16px);
}

.landing-credential-stack span {
  padding: 6px 9px;
  border-color: rgba(35, 122, 88, 0.1);
  background: rgba(237, 247, 239, 0.92);
  color: var(--landing-accent-dark);
  font-size: 0.72rem;
}

.landing-trust-strip {
  grid-area: stats;
  position: relative;
  z-index: 3;
  width: min(780px, 74%);
  margin: -56px 0 0;
  padding: 0;
  gap: 0;
  border: 1px solid rgba(35, 122, 88, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(31, 66, 52, 0.13);
  backdrop-filter: blur(18px);
}

.landing-page .hero-stats.landing-trust-strip div {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon label";
  gap: 2px 14px;
  min-height: 92px;
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-page .hero-stats.landing-trust-strip div + div {
  border-left: 1px solid rgba(35, 122, 88, 0.12);
}

.landing-page .hero-stats.landing-trust-strip div::before {
  content: attr(data-stat-icon);
  grid-area: icon;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 2px solid #63b82f;
  border-radius: 12px;
  color: #63b82f;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.landing-page .hero-stats.landing-trust-strip .stat-title {
  grid-area: title;
  align-self: end;
  color: var(--landing-ink);
  font-size: 1.18rem;
}

.landing-page .hero-stats.landing-trust-strip .stat-label {
  grid-area: label;
  color: var(--landing-muted);
}

.landing-section#proof {
  padding-top: 58px;
}

.landing-page #proof .section-title {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.landing-page #proof .section-title h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

.landing-card-grid--proof {
  margin-top: 26px;
  gap: 0;
}

.landing-card-grid--proof .landing-card {
  position: relative;
  min-height: 200px;
  padding: 58px 28px 12px;
  border: 0;
  border-left: 1px solid rgba(35, 122, 88, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-card-grid--proof .landing-card:first-child {
  border-left: 0;
}

.landing-card-grid--proof .landing-card::before {
  content: attr(data-proof-icon);
  position: absolute;
  left: 28px;
  top: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid #63b82f;
  border-radius: 10px;
  color: #63b82f;
  font-size: 0.7rem;
  font-weight: 900;
}

.landing-card-grid--proof .landing-card__kicker {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--landing-ink);
  font-size: 1rem;
}

.landing-page .landing-nav {
  position: fixed;
  left: 0;
  right: 0;
  color: var(--landing-ink);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease;
}

.landing-page .landing-nav.is-scrolled {
  background: rgba(247, 250, 245, 0.96);
  border-bottom-color: rgba(35, 122, 88, 0.14);
  backdrop-filter: blur(18px);
}

.landing-page .landing-nav.is-menu-open {
  background: rgba(247, 250, 245, 0.98);
  border-bottom-color: rgba(35, 122, 88, 0.14);
  box-shadow: 0 24px 48px rgba(31, 66, 52, 0.12);
  backdrop-filter: blur(18px);
}

.landing-page .landing-nav.is-menu-open .mobile-nav.open {
  border-top-color: rgba(35, 122, 88, 0.12);
  background: rgba(247, 250, 245, 0.98);
}

.landing-page .landing-nav.is-menu-open .nav-toggle {
  border-color: rgba(35, 122, 88, 0.2);
  background: rgba(47, 159, 115, 0.08);
}

.landing-page .landing-nav .brand,
.landing-page .landing-nav .brand__title,
.landing-page .landing-nav .nav-links,
.landing-page .landing-nav .mobile-nav a {
  color: var(--landing-ink);
}

.landing-page .landing-nav .brand__subtitle,
.landing-page .landing-nav .lang-switch__link.is-active {
  color: var(--landing-accent-dark);
}

.landing-page .landing-nav .lang-switch {
  background: transparent;
  border-color: transparent;
}

.landing-page .landing-nav .lang-switch__link {
  color: var(--landing-muted);
}

.landing-page .landing-nav .lang-switch__link.is-active {
  background: transparent;
  border-bottom: 2px solid var(--landing-accent);
  border-radius: 0;
}

.landing-page .landing-nav .pixel-button {
  background: #63b82f;
  border-color: #63b82f;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(43, 101, 24, 0.28);
}

.legal-page {
  background: var(--landing-bg);
  color: var(--landing-ink);
}

.legal-page.pixel-body::before {
  background-image:
    radial-gradient(circle at 82% 4%, rgba(115, 200, 59, 0.14), transparent 34%),
    linear-gradient(rgba(30, 42, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 42, 34, 0.035) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
}

.legal-page .landing-nav,
.legal-page .landing-nav.is-scrolled,
.legal-page .landing-nav.is-menu-open {
  background: rgba(247, 250, 245, 0.94);
  border-bottom-color: rgba(30, 42, 34, 0.1);
  box-shadow: 0 18px 36px rgba(30, 42, 34, 0.08);
  backdrop-filter: blur(18px);
  color: var(--landing-ink);
}

.legal-page .landing-nav.is-menu-open .mobile-nav.open {
  border-top-color: rgba(30, 42, 34, 0.1);
  background: rgba(247, 250, 245, 0.98);
}

.legal-page .landing-nav .brand,
.legal-page .landing-nav .brand__title,
.legal-page .landing-nav .nav-links,
.legal-page .landing-nav .mobile-nav a {
  color: var(--landing-ink);
}

.legal-page .landing-nav .brand__subtitle,
.legal-page .landing-nav .lang-switch__link.is-active {
  color: #4d9d24;
}

.legal-page .landing-nav .lang-switch__link {
  color: rgba(21, 31, 25, 0.74);
}

.legal-page .landing-nav .nav-toggle {
  border-color: rgba(30, 42, 34, 0.16);
  background: rgba(255, 255, 255, 0.64);
}

.legal-page .landing-nav.is-menu-open .nav-toggle {
  border-color: rgba(115, 200, 59, 0.34);
  background: rgba(115, 200, 59, 0.1);
}

.legal-page .pixel-main {
  padding-top: 94px;
}

.legal-page .contact {
  padding-top: 48px;
}

.legal-page .contact-card {
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(30, 42, 34, 0.1);
  box-shadow: 0 24px 60px rgba(30, 42, 34, 0.08);
}

.legal-page .contact-card p,
.legal-page .legal-copy {
  color: rgba(21, 31, 25, 0.78);
}

.legal-page .contact-card a {
  color: #4d9d24;
  font-weight: 700;
}

.landing-hero {
  min-height: 760px;
  overflow: hidden;
  background: var(--landing-bg);
  color: var(--landing-ink);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(115, 200, 59, 0.12), transparent 30%),
    linear-gradient(rgba(39, 96, 72, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 96, 72, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 246, 239, 0.84));
  background-size: auto, 82px 82px, 82px 82px, auto;
  z-index: 0;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 245, 1) 0%, rgba(247, 250, 245, 0.98) 34%, rgba(247, 250, 245, 0.82) 52%, rgba(247, 250, 245, 0.42) 70%, rgba(247, 250, 245, 0.08) 88%, rgba(247, 250, 245, 0) 100%),
    linear-gradient(180deg, rgba(247, 250, 245, 0.18), rgba(247, 250, 245, 0.08) 58%, rgba(247, 250, 245, 0.34));
  pointer-events: none;
  z-index: 1;
}

.landing-page .hero {
  padding: 96px 0 0;
}

.landing-page .landing-hero-grid.pixel-container {
  position: static;
  z-index: auto;
}

.landing-hero-grid {
  display: block;
  min-height: 664px;
}

.landing-hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 62vw);
  min-width: 0;
  padding-top: 54px;
}

.landing-page .hero-copy > .eyebrow {
  color: var(--landing-accent-dark);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.landing-page .hero-copy h1 {
  max-width: min(820px, 65vw);
  color: var(--landing-ink);
  font-size: clamp(3.7rem, 6.2vw, 5.6rem);
  line-height: 1.02;
  text-shadow: none;
  overflow-wrap: anywhere;
}

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

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

.landing-page .hero-sub {
  max-width: 620px;
  color: var(--landing-muted);
}

.landing-page .hero-actions {
  position: relative;
  z-index: 3;
}

.landing-page .hero-actions .ghost {
  border-color: rgba(35, 122, 88, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--landing-accent-dark);
  backdrop-filter: blur(12px);
}

.landing-portrait {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(66vw, 1240px);
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  background: #dfe8e3;
  z-index: 0;
}

.landing-portrait::after {
  background:
    linear-gradient(90deg, rgba(247, 250, 245, 0.58), rgba(247, 250, 245, 0.18) 36%, rgba(247, 250, 245, 0) 62%),
    linear-gradient(180deg, rgba(247, 250, 245, 0.08), rgba(21, 52, 40, 0.06));
}

.landing-portrait__image {
  object-position: center center;
}

.landing-portrait__content {
  right: clamp(24px, 5vw, 70px);
  bottom: 72px;
  width: min(360px, calc(100% - 48px));
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(10, 22, 19, 0.78);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.landing-portrait__content h2,
.landing-portrait__content p:last-child,
.landing-portrait__content .eyebrow {
  color: #ffffff;
}

.landing-portrait__content p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.landing-credential-stack {
  right: clamp(24px, 5vw, 70px);
  bottom: 22px;
  width: min(360px, calc(100% - 48px));
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(10, 22, 19, 0.78);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.landing-credential-stack span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.landing-trust-strip {
  z-index: 4;
  width: min(820px, 68vw);
  margin: 42px 0 0;
  border-color: rgba(35, 122, 88, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 46px rgba(31, 66, 52, 0.12);
  backdrop-filter: blur(16px);
}

.landing-page .hero-stats.landing-trust-strip div + div {
  border-left-color: rgba(35, 122, 88, 0.12);
}

.landing-page .hero-stats.landing-trust-strip div::before {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
}

.landing-page .hero-stats.landing-trust-strip .stat-title {
  color: var(--landing-ink);
}

.landing-page .hero-stats.landing-trust-strip .stat-label {
  color: var(--landing-muted);
}

.landing-section#proof {
  margin-top: 0;
  padding-top: 62px;
  background: #07120f;
  color: #ffffff;
}

.landing-page #proof .section-title .eyebrow {
  color: #73c83b;
}

.landing-page #proof .section-title h2,
.landing-card-grid--proof .landing-card__kicker,
.landing-card-grid--proof .landing-card h3 {
  color: #ffffff;
}

.landing-card-grid--proof .landing-card {
  border-left-color: rgba(255, 255, 255, 0.12);
}

.landing-card-grid--proof .landing-card p {
  color: rgba(255, 255, 255, 0.74);
}

@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;
  }

  .landing-page .hero {
    padding: 72px 0 56px;
  }

  .landing-page .pixel-container {
    width: min(100% - 32px, 1160px);
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero::before {
    inset: 0;
    background-size: auto, 96px 96px, 96px 96px, auto;
  }

  .landing-hero::after {
    background:
      linear-gradient(180deg, rgba(247, 250, 245, 0.98) 0%, rgba(247, 250, 245, 0.9) 44%, rgba(247, 250, 245, 0.72) 72%, rgba(247, 250, 245, 0.62) 100%);
  }

  .landing-hero-grid,
  .landing-split,
  .landing-card-grid,
  .landing-card-grid--proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-hero-grid {
    grid-template-areas:
      "copy"
      "portrait"
      "stats";
    min-height: 0;
    gap: 34px;
  }

  .landing-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 0;
  }

  .landing-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10vw, 3rem);
  }

  .landing-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
  }

  .landing-portrait {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 560px;
    border-radius: 14px;
    overflow: hidden;
    z-index: 2;
  }

  .landing-portrait__media,
  .landing-portrait__video,
  .landing-portrait__image {
    min-height: 0;
  }

  .landing-page .hero-stats.landing-trust-strip div + div {
    border-left: 0;
  }

  .landing-page .hero-stats.landing-trust-strip div:nth-child(even) {
    border-left: 1px solid rgba(35, 122, 88, 0.12);
  }

  .landing-page .hero-stats.landing-trust-strip div:nth-child(n + 3) {
    border-top: 1px solid rgba(35, 122, 88, 0.12);
  }

  .landing-card-grid--proof .landing-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .landing-card-grid--proof .landing-card:first-child {
    border-top: 0;
  }

  .landing-section {
    padding: 64px 0;
  }

  .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;
  }

  .hero-person {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .profile-video-shell--hero {
    width: 100%;
  }

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

@media (max-width: 600px) {
  .landing-page .hero-copy h1 {
    font-size: clamp(2rem, 10.2vw, 2.32rem);
    line-height: 1.08;
  }

  .landing-page .hero-copy > .eyebrow {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .landing-page .section-title h2,
  .landing-contact-card h2 {
    font-size: 1.72rem;
  }

  .landing-trust-strip {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-stats.landing-trust-strip div:nth-child(even) {
    border-left: 0;
  }

  .landing-page .hero-stats.landing-trust-strip div:nth-child(n + 2) {
    border-top: 1px solid rgba(35, 122, 88, 0.12);
  }

  .landing-portrait {
    min-height: 500px;
    border-radius: 14px;
  }

  .landing-portrait__content,
  .landing-credential-stack {
    right: 16px;
    width: calc(100% - 32px);
  }

  .landing-portrait__content {
    bottom: 78px;
  }

  .landing-credential-stack {
    bottom: 16px;
  }

  .landing-card,
  .landing-action,
  .landing-page .process-step {
    min-height: auto;
  }

  .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;
  }
}
