:root {
  --navy: #120b2d;
  --navy-2: #21105a;
  --blue: #6c2fe2;
  --blue-2: #4f1cb5;
  --green: #8a5cf6;
  --green-soft: #f4efff;
  --gold: #d69a25;
  --gold-2: #f1c76a;
  --gold-soft: #fff7e7;
  --gray-25: #fbfcfe;
  --gray-50: #f7f5fb;
  --gray-100: #ece7f6;
  --gray-200: #dcd3ed;
  --text: #20173d;
  --muted: #635a78;
  --amber: #b7791f;
  --amber-bg: #fff7e6;
  --red: #b42318;
  --red-bg: #fff1f0;
  --shadow: 0 22px 65px rgba(18, 11, 45, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  min-height: 44px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(214, 154, 37, 0.32);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 10px 30px rgba(18, 11, 45, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(180px, 18vw, 224px);
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #3d315a;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: var(--radius);
  padding: 0.5rem 0.58rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.site-nav .bonzentech-nav-link {
  gap: 0.42rem;
  padding-left: 0.52rem;
  padding-right: 0.68rem;
}

.site-nav .nav-site-icon {
  width: 1.22rem;
  height: 1.22rem;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(18, 11, 45, 0.14),
    0 4px 10px rgba(18, 11, 45, 0.1);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(18, 11, 45, 0.08);
  transform: translateY(-1px);
}

.site-nav .login-link {
  border: 1px solid var(--gray-200);
}

.site-nav .build-link {
  border: 1px solid rgba(214, 154, 37, 0.45);
  background: var(--gold-soft);
  color: #5b3b00;
}

.site-nav .build-link:hover,
.site-nav .build-link[aria-current="page"] {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
}

.bonzentu-cursor {
  --cursor-x: -80px;
  --cursor-y: -80px;
  --dot-main-x: -80px;
  --dot-main-y: -80px;
  --dot-mid-x: -80px;
  --dot-mid-y: -80px;
  --dot-tail-x: -80px;
  --dot-tail-y: -80px;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

.bonzentu-cursor.is-visible {
  opacity: 1;
}

.bonzentu-cursor__ring,
.bonzentu-cursor__dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 999px;
  will-change: transform, opacity;
}

.bonzentu-cursor__ring {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 154, 37, 0.76);
  background: rgba(214, 154, 37, 0);
  box-shadow: 0 0 34px rgba(108, 47, 226, 0.18);
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.bonzentu-cursor__label {
  color: var(--navy);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 140ms ease, transform 140ms ease;
}

.bonzentu-cursor__dot {
  transform: translate3d(var(--dot-main-x), var(--dot-main-y), 0) translate(-50%, -50%);
}

.bonzentu-cursor__dot-main {
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(214, 154, 37, 0.48);
}

.bonzentu-cursor__dot-mid {
  width: 14px;
  height: 14px;
  background: rgba(138, 92, 246, 0.22);
  transform: translate3d(var(--dot-mid-x), var(--dot-mid-y), 0) translate(-50%, -50%);
}

.bonzentu-cursor__dot-tail {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(108, 47, 226, 0.18);
  background: rgba(108, 47, 226, 0.11);
  transform: translate3d(var(--dot-tail-x), var(--dot-tail-y), 0) translate(-50%, -50%);
}

.bonzentu-cursor.is-active .bonzentu-cursor__ring {
  width: 74px;
  height: 74px;
  border-color: rgba(214, 154, 37, 0.94);
  background: rgba(241, 199, 106, 0.2);
  box-shadow:
    0 18px 54px rgba(108, 47, 226, 0.16),
    0 0 0 1px rgba(214, 154, 37, 0.34) inset;
}

.bonzentu-cursor.is-active .bonzentu-cursor__label {
  opacity: 1;
  transform: scale(1);
}

.bonzentu-cursor.is-down .bonzentu-cursor__ring {
  width: 58px;
  height: 58px;
  background: rgba(214, 154, 37, 0.3);
}

.bonzentu-agent-shell {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 0.75rem;
  pointer-events: none;
}

.bonzentu-agent-shell > * {
  pointer-events: auto;
}

.bonzentu-agent-trigger {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid rgba(108, 47, 226, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 18%, rgba(108, 47, 226, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(18, 11, 45, 0.96), rgba(7, 5, 24, 0.98));
  color: #ffffff;
  padding: 0.58rem 0.92rem 0.58rem 0.68rem;
  box-shadow:
    0 20px 44px rgba(18, 11, 45, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-weight: 900;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.bonzentu-agent-trigger:hover,
.bonzentu-agent-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(108, 47, 226, 0.42);
  box-shadow:
    0 22px 52px rgba(18, 11, 45, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.bonzentu-agent-trigger img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(214, 154, 37, 0.32);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.bonzentu-agent-panel {
  width: min(390px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(108, 47, 226, 0.18);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 92% 10%, rgba(214, 154, 37, 0.18), transparent 12rem),
    #ffffff;
  box-shadow: 0 24px 80px rgba(18, 11, 45, 0.28);
}

.bonzentu-agent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-100);
  padding: 0.9rem;
}

.bonzentu-agent-id {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.bonzentu-agent-id img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-soft);
  object-fit: cover;
}

.bonzentu-agent-id h2 {
  font-size: 1.25rem;
}

.bonzentu-agent-id span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.bonzentu-agent-close {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.bonzentu-agent-log {
  display: grid;
  gap: 0.65rem;
  max-height: 340px;
  overflow: auto;
  padding: 0.9rem;
}

.bonzentu-agent-message {
  max-width: 92%;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: var(--green-soft);
  color: var(--text);
}

.bonzentu-agent-message p {
  margin: 0;
  color: inherit;
  font-weight: 750;
  line-height: 1.42;
}

.bonzentu-agent-message--user {
  justify-self: end;
  background: var(--navy);
  color: #ffffff;
}

.bonzentu-agent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.65rem;
}

.bonzentu-agent-links a {
  border: 1px solid rgba(214, 154, 37, 0.35);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  padding: 0.35rem 0.55rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.bonzentu-agent-starters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 0.9rem;
}

.bonzentu-agent-starters button {
  border: 1px solid rgba(108, 47, 226, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  padding: 0.42rem 0.6rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.bonzentu-agent-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  border-top: 1px solid var(--gray-100);
  padding: 0.85rem;
  background: rgba(247, 245, 251, 0.8);
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.55rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.section,
.section-tight {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 4rem;
}

.surface {
  background: var(--gray-50);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 154, 37, 0.2), transparent 25rem),
    radial-gradient(circle at 18% 18%, rgba(108, 47, 226, 0.14), transparent 24rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 255, 0.92)),
    repeating-linear-gradient(0deg, rgba(18, 11, 45, 0.045), rgba(18, 11, 45, 0.045) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(18, 11, 45, 0.045), rgba(18, 11, 45, 0.045) 1px, transparent 1px, transparent 42px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--navy));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: 2rem;
}

.hero-copy {
  padding-top: 2rem;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mascot-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  border: 1px solid rgba(214, 154, 37, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(18, 11, 45, 0.1);
}

.mascot-callout img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
}

.hero-text {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: #2a2149;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.hero-subtext,
.section-heading p,
.page-hero p,
.privacy-layout p,
.mission-panel p,
.contact-panel p,
.small-copy {
  color: var(--muted);
}

.hero-subtext {
  max-width: 680px;
  margin: 0.95rem 0 0;
  font-size: 1.03rem;
}

.brand-motion-reel {
  display: grid;
  gap: 0.62rem;
  max-width: 620px;
  margin-top: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(108, 47, 226, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 14%, rgba(214, 154, 37, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 255, 0.92));
  box-shadow: var(--shadow);
}

.hero-side-stack .brand-motion-reel {
  max-width: none;
  margin-top: 0;
}

.brand-motion-stage {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: inherit;
  background: var(--navy);
}

.brand-motion-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 11, 45, 0.76), transparent 58%),
    linear-gradient(180deg, transparent 44%, rgba(18, 11, 45, 0.76));
}

.brand-motion-track,
.brand-motion-frame {
  position: absolute;
  inset: 0;
}

.brand-motion-frame {
  opacity: 0;
  transform: scale(1.08) translateX(18px);
  animation: bonzentu-motion-frame 16s infinite;
}

.brand-motion-frame:nth-child(2) {
  animation-delay: 4s;
}

.brand-motion-frame:nth-child(3) {
  animation-delay: 8s;
}

.brand-motion-frame:nth-child(4) {
  animation-delay: 12s;
}

.brand-motion-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05) contrast(1.03);
}

.brand-motion-frame:first-child img {
  object-fit: contain;
  object-position: center;
  padding: 3.1rem;
  background:
    radial-gradient(circle at 48% 42%, rgba(214, 154, 37, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.brand-motion-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 18rem;
}

.brand-motion-copy p {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-motion-copy h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 0.94;
}

.brand-motion-copy a {
  width: fit-content;
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-motion-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0 0.7rem 0.7rem;
}

.brand-motion-bars span {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(108, 47, 226, 0.14);
}

.brand-motion-bars span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  animation: bonzentu-motion-bar 16s infinite;
}

.brand-motion-bars span:nth-child(2)::before {
  animation-delay: 4s;
}

.brand-motion-bars span:nth-child(3)::before {
  animation-delay: 8s;
}

.brand-motion-bars span:nth-child(4)::before {
  animation-delay: 12s;
}

@keyframes bonzentu-motion-frame {
  0%,
  22% {
    opacity: 0;
    transform: scale(1.08) translateX(18px);
  }
  4%,
  20% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  25%,
  100% {
    opacity: 0;
    transform: scale(1.02) translateX(-16px);
  }
}

@keyframes bonzentu-motion-bar {
  0%,
  25% {
    transform: scaleX(0);
  }
  4%,
  20% {
    transform: scaleX(1);
  }
  26%,
  100% {
    transform: scaleX(0);
  }
}

.hero-actions,
.checker-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.promise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.promise-strip li {
  border: 1px solid rgba(214, 154, 37, 0.25);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  padding: 0.35rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(214, 154, 37, 0.25);
}

.button-primary:hover {
  box-shadow: 0 14px 34px rgba(214, 154, 37, 0.33);
}

.button-secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--gray-200);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--gold);
}

.button-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.full-width {
  width: 100%;
}

.trust-panel,
.result-card,
.sample-report,
.price-card,
.example-card,
.mission-panel,
.contact-panel,
.login-card {
  border: 1px solid rgba(220, 211, 237, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.trust-panel,
.sample-report,
.build-card,
.build-summary-card,
.build-services-panel {
  position: relative;
  overflow: hidden;
}

.trust-panel::before,
.sample-report::before,
.build-card::before,
.build-summary-card::before,
.build-services-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--navy));
}

.trust-panel {
  padding: 1.1rem;
}

.hero-checker {
  align-self: stretch;
}

.panel-head,
.report-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-mascot {
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(7, 27, 51, 0.16);
}

.panel-head h2 {
  font-size: 1.25rem;
}

.status-pill,
.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill {
  background: var(--gold-soft);
  color: #6a4300;
}

.field-label {
  display: block;
  margin: 0.9rem 0 0.4rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.checker-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.upload-feedback {
  margin-top: 0.75rem;
}

.upload-feedback:empty {
  display: none;
}

.upload-feedback-head,
.upload-feedback li,
.receipt-card dl,
.receipt-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.upload-feedback-head {
  color: var(--navy);
  font-size: 0.9rem;
}

.upload-feedback-head span,
.upload-feedback small {
  color: var(--muted);
}

.upload-feedback ul {
  display: grid;
  gap: 0.4rem;
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
}

.upload-feedback li {
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: #ffffff;
  padding: 0.55rem 0.65rem;
}

.upload-feedback li span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.privacy-shredder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
  border: 1px solid rgba(24, 110, 154, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(237, 253, 247, 0.86), rgba(255, 251, 236, 0.86));
  padding: 0.75rem;
}

.privacy-shredder p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.shredder-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 6px);
  gap: 3px;
  width: 48px;
  height: 42px;
  align-items: end;
  justify-content: center;
  border: 1px solid rgba(18, 11, 45, 0.12);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.shredder-mark::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 5px;
  border-radius: 99px;
  background: var(--navy);
}

.shredder-mark span {
  width: 6px;
  height: 22px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  transform: translateY(-16px);
}

.privacy-shredder.is-active .shredder-mark span {
  animation: shred-drop 760ms ease-in-out infinite;
}

.privacy-shredder.is-active .shredder-mark span:nth-child(2) {
  animation-delay: 110ms;
}

.privacy-shredder.is-active .shredder-mark span:nth-child(3) {
  animation-delay: 220ms;
}

.privacy-shredder.is-active .shredder-mark span:nth-child(4) {
  animation-delay: 330ms;
}

.privacy-shredder.is-complete {
  border-color: rgba(24, 122, 91, 0.28);
  background: var(--green-soft);
}

.compact-shredder {
  margin-top: 0.6rem;
  padding: 0.65rem;
}

.compact-shredder .shredder-mark {
  width: 42px;
  height: 36px;
}

@keyframes shred-drop {
  0%,
  100% {
    transform: translateY(-17px);
    opacity: 0.95;
  }
  55% {
    transform: translateY(24px);
    opacity: 0.35;
  }
}

.compact-result {
  margin-top: 1rem;
  padding: 1rem;
  box-shadow: none;
}

.result-empty {
  color: var(--muted);
}

.result-card h3,
.result-card h4,
.result-card p {
  margin-top: 0.7rem;
}

.risk-badge.low {
  background: var(--green-soft);
  color: #11674d;
}

.risk-badge.medium {
  background: var(--amber-bg);
  color: var(--amber);
}

.risk-badge.high {
  background: #fff0db;
  color: #9a4f00;
}

.risk-badge.critical {
  background: var(--red-bg);
  color: var(--red);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading.light h2,
.section-heading.light p {
  color: #ffffff;
}

.card-grid,
.feature-grid,
.pricing-grid,
.article-grid,
.example-grid {
  display: grid;
  gap: 1rem;
}

.check-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mini-card,
.feature-grid article,
.article-grid a,
.resource-list article {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mini-card:hover,
.feature-grid article:hover,
.article-grid a:hover,
.resource-list article:hover {
  border-color: rgba(214, 154, 37, 0.45);
  box-shadow: 0 14px 34px rgba(18, 11, 45, 0.09);
  transform: translateY(-2px);
}

.mini-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-card h3,
.feature-grid h3 {
  margin-top: 0.85rem;
}

.mini-card p,
.feature-grid p,
.price-card p,
.example-card p,
.resource-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.steps article {
  border-top: 3px solid var(--gold);
  padding: 1.25rem 0 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
  font-weight: 900;
}

.navy-band {
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 154, 37, 0.2), transparent 22rem),
    linear-gradient(135deg, var(--navy), #070818);
}

.result-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.sample-report {
  padding: 1.25rem;
}

.report-topline p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.report-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.safe-step {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.check-list,
.stack-list,
.privacy-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.stack-list li,
.privacy-list li {
  position: relative;
  margin: 0.55rem 0;
  padding-left: 1.45rem;
}

.check-list li::before,
.stack-list li::before,
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
}

.check-list.warning li::before {
  background: var(--amber);
}

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

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.stack-list {
  columns: 2;
  column-gap: 2rem;
  color: var(--text);
  font-weight: 700;
}

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

.pricing-grid.large {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  box-shadow: none;
}

.price-card.featured {
  border-color: rgba(214, 154, 37, 0.65);
  box-shadow: var(--shadow);
}

.price {
  margin: 0.9rem 0 0;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card .button {
  margin-top: auto;
}

.stripe-powered-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 0.8rem;
}

.stripe-powered-badge img {
  width: 150px;
  height: 34px;
  display: block;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.article-grid a {
  min-height: 130px;
  text-decoration: none;
}

.article-grid span,
.resource-list span {
  display: block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-grid strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.privacy-band {
  background:
    radial-gradient(circle at 92% 0%, rgba(214, 154, 37, 0.18), transparent 22rem),
    var(--green-soft);
}

.automation-band {
  background:
    radial-gradient(circle at 12% 8%, rgba(99, 54, 214, 0.13), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(214, 154, 37, 0.18), transparent 22rem),
    #ffffff;
}

.automation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: start;
}

.automation-layout > div:first-child {
  position: sticky;
  top: 6rem;
}

.automation-layout p {
  color: var(--muted);
}

.automation-steps {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.automation-steps span {
  border: 1px solid rgba(99, 54, 214, 0.14);
  border-radius: var(--radius);
  background: var(--purple-soft);
  color: var(--indigo);
  font-weight: 900;
  padding: 0.78rem 0.9rem;
}

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

.automation-form,
.survey-form {
  padding: 1rem;
}

.pricing-automation {
  margin-top: 1.5rem;
}

.pricing-automation .automation-form {
  max-width: 820px;
  margin: 0 auto;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.8rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.consent-row input {
  width: auto;
  margin-top: 0.18rem;
  accent-color: var(--indigo);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: start;
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin: 0;
  font-weight: 800;
}

.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.trust-badge {
  display: grid;
  gap: 0.15rem;
  min-height: 5.5rem;
  border: 1px solid rgba(99, 54, 214, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.9rem;
  box-shadow: 0 12px 30px rgba(18, 11, 45, 0.07);
}

.trust-badge strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.trust-badge span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.trust-badge .support-link {
  color: var(--indigo);
}

.trust-layer-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.5rem;
  border: 1px solid rgba(99, 54, 214, 0.16);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 92% 14%, rgba(214, 154, 37, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 255, 0.9));
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.trust-layer-copy {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.trust-layer-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
}

.trust-layer-copy p {
  margin: 0;
  color: var(--muted);
}

.trust-badge-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.55rem;
}

.trust-badge-grid--compact .trust-badge {
  min-height: 4.8rem;
  box-shadow: none;
}

.trustmark-stack {
  display: grid;
}

.official-trustmarks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  border: 1px solid rgba(99, 54, 214, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
  box-shadow: 0 16px 38px rgba(18, 11, 45, 0.08);
}

.official-trustmarks p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.official-trustmark-card {
  display: grid;
  gap: 0.5rem;
  align-content: center;
  justify-items: start;
  flex: 1 1 190px;
  min-height: 98px;
  border: 1px solid rgba(99, 54, 214, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.8rem;
}

.official-trustmark-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.official-trustmarks--pricing {
  margin-top: 1rem;
}

.cloudflare-trustmark,
.trustmark-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #ffffff;
}

.cloudflare-trustmark img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.trustmark-stripe {
  min-height: 48px;
  padding: 0.35rem 0.5rem;
}

.trustmark-stripe img {
  width: 150px;
  height: 34px;
  object-fit: contain;
}

.badge-roadmap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  grid-column: 1 / -1;
  margin-top: 0.15rem;
}

.badge-roadmap strong,
.badge-roadmap a {
  border-radius: 999px;
  padding: 0.48rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.badge-roadmap strong {
  color: var(--navy);
}

.badge-roadmap a {
  border: 1px solid rgba(99, 54, 214, 0.18);
  background: #ffffff;
  color: var(--indigo);
  text-decoration: none;
}

.badge-roadmap a:hover {
  border-color: rgba(214, 154, 37, 0.5);
  background: var(--gold-soft);
  color: var(--navy);
}

.trust-center-list {
  margin-top: 1.2rem;
}

.build-band {
  background:
    radial-gradient(circle at 16% 10%, rgba(214, 154, 37, 0.18), transparent 22rem),
    linear-gradient(135deg, #120b2d, #261163 62%, #0a0718);
  color: #ffffff;
}

.build-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.build-layout h2,
.build-layout h3 {
  color: #ffffff;
}

.build-layout p {
  max-width: 760px;
  color: #ddd6f4;
  font-size: 1.06rem;
}

.build-card,
.build-summary-card,
.build-services-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.build-card h3,
.build-summary-card h2,
.build-services-panel h2 {
  color: var(--navy);
}

.build-card .button {
  margin-top: 1rem;
}

.build-hero {
  padding: 4.5rem 0;
}

.build-hero-layout,
.build-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 1.5rem;
  align-items: center;
}

.build-summary-card img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.build-summary-card p,
.build-services-panel p {
  color: var(--muted);
}

.build-request-layout {
  align-items: start;
}

.build-request-form {
  padding: 1.25rem;
}

.build-services-panel {
  position: sticky;
  top: 6rem;
}

.build-note {
  margin-top: 1rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--gold-soft);
  padding: 1rem;
  color: #4f3a12;
}

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

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

.template-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(220, 211, 237, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(18, 11, 45, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.template-card:hover {
  border-color: rgba(214, 154, 37, 0.55);
  box-shadow: 0 22px 58px rgba(18, 11, 45, 0.14);
  transform: translateY(-2px);
}

.template-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--gray-100);
}

.template-card div {
  padding: 1rem;
}

.template-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.template-card h3 {
  font-size: 1.08rem;
}

.template-card p {
  color: var(--muted);
  margin-bottom: 0.95rem;
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
}

.template-action {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 154, 37, 0.62);
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--gold), #f4cf6d);
  color: #10092a;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.72rem 0.95rem;
  text-decoration: none;
}

.template-action:hover {
  color: #10092a;
  transform: translateY(-1px);
}

.template-action-secondary {
  border-color: rgba(99, 54, 214, 0.22);
  background: #ffffff;
  color: var(--indigo);
}

.template-action-secondary:hover {
  color: var(--indigo);
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 154, 37, 0.15), transparent 22rem),
    linear-gradient(135deg, #070818, var(--navy));
  color: #dce9f7;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand,
.footer-brand h2,
.footer-brand strong,
.footer-brand small {
  color: #ffffff;
}

.footer-brand .brand-logo {
  width: min(100%, 235px);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.35rem;
}

.ceo-note {
  max-width: 420px;
  color: #b9cbe0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.footer-trust-badges span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.5rem 0.72rem;
}

.footer-support {
  margin-top: 0.8rem;
  color: #cfe0f3;
  font-size: 0.9rem;
}

.footer-support a,
.support-link {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-legal {
  margin-top: 1.5rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-brand-cohesion {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.bonzentech-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(10, 6, 26, 0.72);
  color: #ffffff;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.bonzentech-badge-link:hover {
  border-color: rgba(241, 199, 106, 0.58);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.bonzentech-badge-link span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bonzentech-badge-link img {
  display: block;
  width: min(42vw, 170px);
  height: auto;
  border-radius: 4px;
}

.disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9cbe0;
  font-size: 0.9rem;
}

.viral-loop-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(108, 47, 226, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff, #f8f5ff);
}

.viral-loop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.viral-loop-grid article,
.viral-share-kit {
  border: 1px solid rgba(108, 47, 226, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 8%, rgba(241, 199, 106, 0.16), transparent 36%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(18, 11, 45, 0.08);
}

.viral-loop-grid article {
  display: grid;
  align-content: start;
  gap: 0.52rem;
  min-height: 188px;
  padding: 0.92rem;
}

.viral-loop-grid article span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.viral-loop-grid h3,
.viral-share-kit h4 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.18;
}

.viral-loop-grid p,
.viral-share-kit p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.viral-loop-grid a {
  align-self: end;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.viral-share-kit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
}

.viral-share-card-preview {
  display: grid;
  justify-items: center;
  min-width: 132px;
  border: 1px solid rgba(108, 47, 226, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 16%, rgba(214, 154, 37, 0.2), transparent 42%),
    linear-gradient(145deg, var(--navy), var(--blue-2));
  color: #ffffff;
  padding: 0.85rem;
  box-shadow: 0 16px 34px rgba(18, 11, 45, 0.14);
}

.viral-share-card-preview span {
  color: var(--gold-2);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.viral-share-card-preview strong {
  color: #56e6b5;
  font-size: 2.4rem;
  line-height: 1;
}

.viral-share-card-preview em {
  border-radius: 6px;
  background: #56e6b5;
  color: var(--navy);
  padding: 0.18rem 0.38rem;
  font-style: normal;
  font-weight: 950;
}

.viral-share-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.viral-share-actions .button {
  width: 100%;
}

.site-protected img,
.site-protected svg,
.site-protected canvas,
.site-protected video {
  -webkit-user-drag: none;
  user-select: none;
}

.site-protection-toast,
.site-protection-badge {
  position: fixed;
  z-index: 2147483647;
  box-sizing: border-box;
  border: 1px solid rgba(231, 181, 77, 0.62);
  border-radius: var(--radius);
  background: rgba(19, 12, 48, 0.94);
  color: #fff8df;
  box-shadow: 0 18px 45px rgba(12, 8, 28, 0.24);
}

.site-protection-toast {
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100vw - 2rem));
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-protection-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-protection-badge {
  left: 1rem;
  bottom: 1rem;
  max-width: min(340px, calc(100vw - 2rem));
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  pointer-events: none;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 8%, rgba(214, 154, 37, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(18, 11, 45, 0.045), rgba(18, 11, 45, 0.045) 1px, transparent 1px, transparent 44px);
  padding: 5rem 0;
}

.page-hero.compact {
  padding: 3.8rem 0;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.75rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.12rem;
}

.trustcheck-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.auth-layout,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.dashboard-summary {
  grid-column: span 2;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.dashboard-stats article,
.report-row {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1rem;
}

.dashboard-stats span,
.report-row small,
.report-row time,
.result-meta,
.form-message {
  color: var(--muted);
  font-size: 0.88rem;
}

.dashboard-stats strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.report-list {
  display: grid;
  gap: 0.9rem;
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.report-row h3 {
  margin-top: 0.55rem;
  font-size: 1.1rem;
}

.section-actions.left {
  justify-content: flex-start;
}

.form-message {
  min-height: 1.2rem;
  margin: 0.8rem 0 0;
  font-weight: 800;
}

.form-message.is-error,
.warning-copy {
  color: var(--red);
}

.notice-banner {
  border: 1px solid rgba(214, 154, 37, 0.45);
  border-radius: var(--radius);
  background: rgba(214, 154, 37, 0.13);
  padding: 0.9rem 1rem;
  color: var(--navy);
  font-weight: 800;
}

.full-checker {
  padding: 1.25rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid legend {
  grid-column: 1 / -1;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
}

.choice-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.65rem;
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.choice-grid input:checked + span {
  border-color: var(--blue);
  background: var(--green-soft);
  color: var(--blue-2);
}

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

.full-result {
  position: sticky;
  top: 6rem;
  padding: 1.25rem;
  box-shadow: none;
}

.trust-score-card {
  margin-bottom: 1.1rem;
  border: 1px solid rgba(108, 47, 226, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 11, 45, 0.98), rgba(40, 20, 82, 0.96)),
    var(--navy);
  color: #ffffff;
  padding: 1rem;
  box-shadow: 0 18px 46px rgba(18, 11, 45, 0.16);
}

.trust-score-card.risk-low {
  border-color: rgba(138, 92, 246, 0.34);
}

.trust-score-card.risk-medium {
  border-color: rgba(214, 154, 37, 0.5);
}

.trust-score-card.risk-high,
.trust-score-card.risk-critical {
  border-color: rgba(180, 35, 24, 0.38);
}

.trust-score-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.trust-score-head .panel-kicker {
  color: var(--gold-2);
}

.trust-score-head h3 {
  margin: 0.15rem 0 0;
  color: #ffffff;
  font-size: 1.25rem;
}

.trust-score-head p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.trust-score-number {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0.35rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.38rem 0.45rem;
}

.trust-score-number strong {
  color: #56e6b5;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  line-height: 1;
}

.trust-score-number span {
  border-radius: 6px;
  background: #56e6b5;
  color: var(--navy);
  padding: 0.2rem 0.35rem;
  font-weight: 950;
  line-height: 1;
}

.trust-radar-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0.8rem 0 0.45rem;
}

.trust-radar-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(78%, 260px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 230, 181, 0.22), rgba(108, 47, 226, 0.12) 42%, transparent 68%);
  transform: translate(-50%, -50%);
  animation: trust-radar-halo-pulse 2800ms ease-in-out infinite;
  pointer-events: none;
}

.trust-radar {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  min-height: 245px;
  overflow: visible;
}

.trust-radar-ring {
  fill: rgba(138, 92, 246, 0.07);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  animation: trust-radar-ring-pulse 4200ms ease-in-out infinite;
}

.trust-radar-ring:nth-of-type(2) {
  animation-delay: 180ms;
}

.trust-radar-ring:nth-of-type(3) {
  animation-delay: 360ms;
}

.trust-radar-ring:nth-of-type(4) {
  animation-delay: 540ms;
}

.trust-radar-axis {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}

.trust-radar-area {
  fill: rgba(86, 230, 181, 0.45);
  stroke: rgba(86, 230, 181, 0.95);
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(86, 230, 181, 0.38));
  animation: trust-radar-area-pulse 2600ms ease-in-out infinite;
}

.trust-radar-line {
  fill: none;
  stroke: rgba(241, 199, 106, 0.9);
  stroke-width: 2;
  stroke-dasharray: 10 7;
  animation: trust-radar-line-pulse 2600ms linear infinite;
}

.trust-radar-label {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 850;
}

@keyframes trust-radar-halo-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.86);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes trust-radar-ring-pulse {
  0%,
  100% {
    fill: rgba(138, 92, 246, 0.06);
    stroke: rgba(255, 255, 255, 0.1);
  }
  50% {
    fill: rgba(86, 230, 181, 0.1);
    stroke: rgba(86, 230, 181, 0.34);
  }
}

@keyframes trust-radar-area-pulse {
  0%,
  100% {
    fill: rgba(86, 230, 181, 0.36);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(86, 230, 181, 0.3));
  }
  50% {
    fill: rgba(86, 230, 181, 0.62);
    stroke-width: 3.2;
    filter: drop-shadow(0 0 18px rgba(86, 230, 181, 0.72));
  }
}

@keyframes trust-radar-line-pulse {
  0% {
    opacity: 0.72;
    stroke-dashoffset: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.72;
    stroke-dashoffset: -34;
  }
}

.trust-score-counts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.trust-score-counts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 850;
}

.trust-score-counts .clear {
  background: rgba(86, 230, 181, 0.15);
  color: #aaf7dc;
}

.trust-score-counts .verify {
  background: rgba(108, 47, 226, 0.22);
  color: #d8c8ff;
}

.trust-score-counts .concern {
  background: rgba(214, 154, 37, 0.2);
  color: #ffe0a3;
}

.trust-score-counts .stop {
  background: rgba(180, 35, 24, 0.2);
  color: #ffc0ba;
}

.trust-action-call {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.75rem;
}

.trust-action-call strong {
  color: #ffffff;
  font-size: 1rem;
}

.trust-action-call span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.trust-seven-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.trust-point {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.65rem;
}

.trust-point div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.trust-point strong {
  color: #ffffff;
}

.trust-point span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-point p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
}

.trust-point-bar {
  height: 7px;
  margin-top: 0.5rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.trust-point-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), #56e6b5);
}

.trust-point.concern .trust-point-bar span,
.trust-point.stop .trust-point-bar span {
  background: linear-gradient(90deg, #ffb46b, #ff6f61);
}

.usage-meter {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
  border: 1px solid rgba(108, 47, 226, 0.18);
  border-radius: var(--radius);
  background: rgba(244, 239, 255, 0.75);
  padding: 0.8rem;
}

.usage-meter strong,
.usage-meter span,
.usage-meter a {
  display: block;
}

.usage-meter strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.usage-meter span {
  color: var(--muted);
  font-size: 0.86rem;
}

.usage-meter a {
  color: var(--blue-2);
  font-weight: 900;
}

.usage-meter.near-limit {
  border-color: rgba(214, 154, 37, 0.45);
  background: var(--gold-soft);
}

.usage-meter-bar {
  height: 8px;
  border-radius: 99px;
  background: #ffffff;
  overflow: hidden;
}

.usage-meter-bar span {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.follow-up-panel {
  margin-top: 1rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.follow-up-panel h4 {
  margin-top: 0.2rem;
}

.follow-up-panel > p {
  color: var(--muted);
}

.follow-up-question {
  display: grid;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.follow-up-question span {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.follow-up-question textarea {
  min-height: 74px;
  font-size: 0.92rem;
}

.limit-card {
  display: grid;
  gap: 0.65rem;
}

.limit-card .button {
  justify-self: start;
}

.result-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.receipt-card {
  margin-top: 0.9rem;
  border: 1px solid rgba(24, 110, 154, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.85rem;
}

.receipt-card h4 {
  margin: 0 0 0.55rem;
}

.receipt-card dl {
  margin: 0;
}

.receipt-card dl div {
  min-width: 0;
  flex: 1 1 0;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}

.receipt-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.receipt-card dd {
  margin: 0;
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.receipt-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.receipt-card a {
  color: var(--blue-2);
  font-weight: 900;
}

.result-section ul {
  margin-bottom: 0;
}

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

.example-card {
  padding: 1.25rem;
  box-shadow: none;
}

.example-message {
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  padding: 0.9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--green-soft);
  color: var(--navy);
  font-weight: 800;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-list article {
  padding: 1.25rem;
}

.about-hero,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 1.5rem;
  align-items: center;
}

.mission-panel,
.contact-panel {
  padding: 1.25rem;
  box-shadow: none;
}

.support-card {
  margin-top: 1rem;
  border: 1px solid rgba(99, 54, 214, 0.14);
  border-radius: var(--radius);
  background: var(--gray-25);
  padding: 1rem;
}

.support-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.support-card a {
  color: var(--indigo);
  font-weight: 900;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.brand-system p {
  color: var(--muted);
}

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

.asset-grid figure {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 185px;
  margin: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-25);
  padding: 1rem;
}

.asset-grid img {
  max-height: 112px;
  object-fit: contain;
}

.asset-grid figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.login-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 74px);
  padding: 2rem 1rem;
  background: var(--gray-50);
}

.login-card {
  width: min(100%, 460px);
  padding: 1.25rem;
}

.small-copy {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.conversion-strip {
  position: relative;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), var(--indigo), var(--navy)) 1;
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 199, 106, 0.17), transparent 21rem),
    radial-gradient(circle at 92% 18%, rgba(108, 47, 226, 0.12), transparent 20rem),
    #ffffff;
}

.conversion-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.conversion-layout > div:first-child {
  max-width: 680px;
}

.conversion-layout h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 0.96;
}

.conversion-layout p {
  color: var(--muted);
}

.conversion-steps {
  display: grid;
  gap: 0.85rem;
}

.conversion-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 0.85rem;
  align-items: start;
  border: 1px solid rgba(99, 54, 214, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(18, 11, 45, 0.07);
}

.conversion-steps span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: #ffffff;
  font-weight: 1000;
}

.conversion-steps strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.conversion-steps p {
  grid-column: 2;
  margin: 0;
  font-size: 0.93rem;
}

.micro-funnel-form {
  display: grid;
  gap: 0.78rem;
  padding: 1rem;
}

.micro-funnel-form .panel-head {
  margin-bottom: 0.1rem;
}

.micro-funnel-form h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.08;
}

.micro-funnel-form textarea {
  min-height: 94px;
}

.arcade-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(241, 199, 106, 0.2), transparent 23rem),
    radial-gradient(circle at 18% 12%, rgba(108, 47, 226, 0.25), transparent 25rem),
    linear-gradient(135deg, #070818, #21105a 58%, #120b2d);
  color: #ffffff;
}

.arcade-hero p,
.arcade-hero h1 {
  color: #ffffff;
}

.arcade-hero-layout,
.arcade-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 1.5rem;
  align-items: center;
}

.arcade-cabinet {
  position: relative;
  display: grid;
  gap: 0.85rem;
  align-content: center;
  min-height: 420px;
  border: 1px solid rgba(241, 199, 106, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 14%, rgba(241, 199, 106, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)),
    #120b2d;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.arcade-cabinet span {
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.arcade-cabinet strong {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.92;
}

.arcade-screen {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(49, 215, 255, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 8, 24, 0), rgba(7, 8, 24, 0.68)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 8px),
    linear-gradient(135deg, #070818, #21105a);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.arcade-screen img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: left center;
  display: block;
  opacity: 0.94;
}

.arcade-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 56%, rgba(7, 8, 24, 0.78)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 7px);
  pointer-events: none;
}

.arcade-screen-strip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.arcade-screen i {
  display: block;
  min-height: 58px;
  border: 1px solid rgba(241, 199, 106, 0.35);
  border-radius: calc(var(--radius) - 2px);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.arcade-screen i:nth-child(1) {
  background-image: url("arcade-scam-preview.png");
}

.arcade-screen i:nth-child(2) {
  background-image: url("arcade-zengem-preview.png");
}

.arcade-screen i:nth-child(3) {
  background-image: url("arcade-river-preview.png");
}

.arcade-panel,
.arcade-wallet {
  padding: 1.25rem;
}

.arcade-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

.arcade-game-grid legend {
  grid-column: 1 / -1;
}

.arcade-game-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 270px;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.75rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.arcade-game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 11, 45, 0.12);
}

.arcade-game-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  min-height: 0;
}

.arcade-game-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 154, 37, 0.18);
}

.arcade-game-card strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.1;
}

.arcade-game-card small {
  color: var(--muted);
  font-weight: 700;
}

.game-art {
  display: block;
  min-height: 126px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(49, 28, 100, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.game-art-scam {
  background:
    linear-gradient(180deg, rgba(7, 8, 24, 0), rgba(7, 8, 24, 0.28)),
    url("arcade-scam-preview.png");
  background-size: cover;
  background-position: center;
}

.game-art-monk {
  background:
    linear-gradient(180deg, rgba(7, 8, 24, 0), rgba(7, 8, 24, 0.18)),
    url("arcade-zengem-preview.png");
  background-size: cover;
  background-position: left center;
}

.game-art-river {
  background:
    linear-gradient(180deg, rgba(7, 8, 24, 0), rgba(7, 8, 24, 0.24)),
    url("arcade-river-preview.png");
  background-size: cover;
  background-position: center;
}

.game-chip {
  justify-self: start;
  border: 1px solid rgba(108, 47, 226, 0.2);
  border-radius: 999px;
  background: rgba(108, 47, 226, 0.08);
  color: var(--purple);
  padding: 0.28rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arcade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.arcade-wallet .check-list {
  margin-bottom: 0;
}

.arcade-pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leaderboard-grid {
  display: grid;
  gap: 0.8rem;
}

.leaderboard-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1rem;
}

.leaderboard-card h3 {
  margin-top: 0;
}

.leaderboard-card ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.leaderboard-card li {
  color: var(--muted);
}

.leaderboard-card li strong {
  float: right;
  color: var(--navy);
}

.arcade-home {
  background: #ffffff;
}

.arcade-mini-grid {
  grid-template-columns: 1fr;
}

@media (max-width: 1060px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

  .hero-inner,
  .result-preview-layout,
  .trustcheck-layout,
  .about-hero,
  .contact-layout,
  .brand-system,
  .build-layout,
  .build-hero-layout,
  .build-request-layout,
  .trust-layer-panel,
  .conversion-layout,
  .automation-layout,
  .arcade-hero-layout,
  .arcade-layout,
  .auth-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-summary {
    grid-column: auto;
  }

  .full-result {
    position: static;
  }

  .build-services-panel {
    position: static;
  }

  .automation-layout > div:first-child {
    position: static;
  }

  .check-grid,
  .feature-grid,
  .pricing-grid,
  .arcade-pricing,
  .arcade-game-grid,
  .template-grid,
  .template-grid--home,
  .trust-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section,
  .section-tight {
    padding: 3.25rem 0;
  }

  .hero-copy {
    padding-top: 0;
  }

  .brand-motion-stage {
    min-height: 230px;
  }

  .hero-actions,
  .checker-actions,
  .section-actions,
  .receipt-card dl,
  .footer-grid,
  .site-footer nav {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .steps,
  .split-section,
  .article-grid,
  .example-grid,
  .privacy-layout,
  .automation-forms,
  .form-grid,
  .arcade-pricing,
  .arcade-game-grid,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .report-row {
    flex-direction: column;
  }

  .check-grid,
  .feature-grid,
  .pricing-grid,
  .template-grid,
  .template-grid--home,
  .choice-grid,
  .viral-loop-grid,
  .privacy-list,
  .asset-grid,
  .trust-badge-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 178px;
  }

  .site-protection-toast {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .site-protection-badge {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    text-align: center;
  }

  .stack-list {
    columns: 1;
  }

  .panel-head,
  .report-topline {
    flex-direction: column;
  }

  .trust-score-head {
    grid-template-columns: 1fr;
  }

  .trust-score-number {
    justify-self: start;
  }

  .trust-score-counts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .viral-share-actions {
    grid-template-columns: 1fr;
  }

  .viral-share-kit {
    grid-template-columns: 1fr;
  }

  .viral-share-card-preview {
    justify-self: stretch;
  }

  .bonzentu-agent-shell {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .bonzentu-agent-panel {
    width: 100%;
  }

  .bonzentu-agent-trigger {
    justify-self: end;
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 999px;
  }

  .bonzentu-agent-trigger img {
    width: 38px;
    height: 38px;
  }

  .bonzentu-agent-trigger span {
    display: none;
  }

  .trust-radar {
    min-height: 220px;
  }

  .page-hero,
  .page-hero.compact {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-motion-frame,
  .brand-motion-bars span::before,
  .trust-radar-wrap::before,
  .trust-radar-ring,
  .trust-radar-area,
  .trust-radar-line {
    animation: none;
  }

  .brand-motion-frame:first-child {
    opacity: 1;
    transform: none;
  }
}
