/*
 * VIS-SOL Product Design 5.0
 * Additive visual layer. The original production styles remain intact below it.
 * This file intentionally changes presentation only; SEO/GEO, schemas, content,
 * forms, APIs and VSA integrations stay in their existing source files.
 */

:root {
  --bg: #02070c;
  --bg-soft: #050c13;
  --surface: #061018;
  --surface-2: #08151f;
  --text: #f4fbff;
  --muted: #9cafba;
  --muted-2: #718794;
  --accent: #18e5e8;
  --accent-2: #2bd9c6;
  --accent-3: #8ff7ec;
  --success: #51e6a4;
  --warning: #ffc56d;
  --error: #ff7b7b;
  --border: rgba(108, 213, 220, .15);
  --border-bright: rgba(24, 229, 232, .42);
  --shadow: 0 22px 70px rgba(0, 0, 0, .48);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, .32);
  --radius: 9px;
  --radius-sm: 7px;
  --container: 1200px;
}

html {
  color-scheme: dark;
  background: #02070c;
}

body {
  color: var(--text);
  background: #02070c;
  font-size: 15px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 229, 232, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 229, 232, .022) 1px, transparent 1px);
  background-size: 52px 52px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  border: 1px solid rgba(24, 229, 232, .015);
  box-shadow: inset 0 0 180px rgba(0, 0, 0, .65);
}

.site-noise,
.grid-pattern {
  opacity: .35;
  background-size: 52px 52px;
}

.bg-glow {
  opacity: .42;
}

.container {
  width: min(calc(100% - 40px), var(--container));
}

h1,
h2,
h3,
h4,
.audit-hero h1,
.panel-title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.65rem, 5.1vw, 4.8rem);
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.4rem);
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

p {
  color: var(--muted);
}

.lead {
  color: #afc0ca;
  font-size: clamp(.98rem, 1.45vw, 1.14rem);
  line-height: 1.62;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .66rem;
  letter-spacing: .14em;
}

.eyebrow::before {
  width: 18px;
}

.section {
  padding: clamp(60px, 7vw, 94px) 0;
}

.section-tight {
  padding: clamp(42px, 5vw, 64px) 0;
}

.section-tint {
  background: #040b11;
  border-color: rgba(108, 213, 220, .11);
}

.section-tint::before,
.card::after {
  display: none;
}

/* Compact site navigation */
.nav {
  padding: 0;
  border-bottom: 1px solid rgba(108, 213, 220, .12);
  background: rgba(2, 7, 12, .88);
  backdrop-filter: blur(18px) saturate(125%);
}

.nav.scrolled {
  padding: 0;
  background: rgba(2, 7, 12, .97);
}

.nav-inner {
  min-height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav.scrolled .nav-inner {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  gap: 9px;
}

img.brand-mark {
  width: 31px;
  height: 31px;
  object-fit: contain;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.brand-copy strong {
  font-size: .88rem;
}

.brand-copy small {
  margin-top: 3px;
  font-size: .47rem;
}

.nav-links {
  gap: 1px;
}

.nav-links a {
  min-height: 40px;
  padding: 0 8px;
  border-radius: 7px;
}

.nav-link-copy strong {
  font-size: .69rem;
}

.nav-cta {
  min-height: 36px !important;
  margin-left: 7px;
  padding: 0 13px !important;
  border-radius: 7px;
  background: #38e1e2;
  box-shadow: 0 8px 24px rgba(24, 229, 232, .12);
}

.nav-cta:hover {
  background: #7cf0e8 !important;
}

.nav-submenu {
  border-radius: 8px;
  background: rgba(4, 12, 18, .98);
}

/* Buttons and reusable surfaces */
.actions {
  gap: 10px;
  margin-top: 24px;
}

.btn {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 6px;
  font-size: .76rem;
}

.btn-primary {
  color: #001012;
  background: #3fe1e1;
  box-shadow: 0 10px 28px rgba(24, 229, 232, .13);
}

.btn-primary:hover {
  background: #76eee7;
  box-shadow: 0 14px 32px rgba(24, 229, 232, .18);
}

.btn-secondary {
  background: #061018;
}

.card {
  padding: 22px;
  border-color: rgba(108, 213, 220, .15);
  border-radius: 8px;
  background: #061018;
  box-shadow: inset 0 1px rgba(255, 255, 255, .018);
}

.card::before {
  right: 17px;
  left: 17px;
  background: rgba(24, 229, 232, .26);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 229, 232, .32);
}

.card h3 {
  margin: 15px 0 8px;
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
}

.grid {
  gap: 13px;
}

.section-head {
  gap: 34px;
  margin-bottom: 36px;
}

.section-line {
  margin-top: 28px;
  padding-top: 22px;
}

.architecture,
.tool-output,
.entity-map,
.entity-link-panel,
.commercial-bar,
.platform-note,
.scan-summary {
  border-radius: 9px;
  background: #061018;
  box-shadow: var(--shadow-card);
}

.architecture {
  padding: 23px;
}

.arch-node,
.arch-modules span,
.journey-list span,
.module-row {
  border-radius: 7px;
  background: #040b11;
}

.module-list {
  border-radius: 9px;
}

.module-row {
  min-height: 94px;
  padding: 20px 23px;
}

.cta-panel {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 9px;
  background: #07131c;
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

/* Homepage: dense, image-led and faithful to the approved board */
.hero {
  min-height: 680px;
  padding: 116px 0 58px;
}

.hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: clamp(25px, 4vw, 55px);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 19px;
  font-size: clamp(2.55rem, 4.2vw, 4.15rem);
}

.hero-copy .lead {
  max-width: 620px;
}

.hero-problem {
  margin-top: 20px;
  font-size: .82rem;
}

.hero-footnote {
  gap: 16px;
  margin-top: 20px;
  font-size: .66rem;
}

.hero-system {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(24, 229, 232, .13);
  border-radius: 10px;
  background: #02070c;
  box-shadow: 0 26px 75px rgba(0, 0, 0, .55);
}

.hero-system > :not(.v5-hero-art) {
  display: none;
}

.v5-hero-art {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.v5-hero-art img {
  width: 100%;
  height: 100%;
  margin-left: 0;
  object-fit: contain;
  object-position: center;
}

.proof-grid {
  min-height: 64px;
}

.proof-grid > * {
  min-height: 34px;
}

.proof-grid strong,
.proof-grid span {
  font-size: .64rem;
}

.case-panel {
  border-radius: 9px;
  background: #061018;
}

.case-panel-v5 {
  grid-template-columns: .72fr 1.28fr;
}

.case-panel-v5 .case-meta {
  grid-column: 1;
  grid-row: 1;
}

.v5-case-art {
  grid-column: 2;
  grid-row: 1;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--border);
  background: #02070c;
}

.v5-case-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.v5-case-art > picture {
  display: block;
  height: 100%;
}

.case-panel-v5 .case-body {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
  border-top: 1px solid var(--border);
}

.case-panel-v5 .case-body .quote,
.case-panel-v5 .case-body > p {
  margin-bottom: 0;
}

.case-panel-v5 .case-stats,
.case-panel-v5 .actions {
  grid-column: 1 / -1;
}

.case-meta .case-number {
  margin-bottom: 48px;
}

.case-meta h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

/* Main subpages */
.breadcrumbs {
  padding-top: 74px;
  background: #02070c;
}

.page-hero {
  min-height: 470px;
  padding: 112px 0 54px;
  background: #02070c;
}

.breadcrumbs + .page-hero {
  padding-top: 48px;
}

.page-hero .container {
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .55fr);
  gap: 34px;
}

.page-hero h1 {
  font-size: clamp(2.45rem, 4.7vw, 4.6rem);
}

.stat-box {
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #050d14;
}

.stat-box .stat-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.stat-box .stat-row strong {
  font-size: 1.12rem;
}

.stat-box .stat-row span {
  text-align: right;
}

.stat-box-visual {
  padding: 0 18px 15px;
}

.stat-box-visual > .eyebrow {
  margin-top: 15px;
}

.v5-platform-art,
.v5-knowledge-art,
.v5-fox-art {
  display: block;
  height: 190px;
  margin: 0 -18px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #02070c;
}

.v5-platform-art img,
.v5-knowledge-art img,
.v5-fox-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v5-platform-art img {
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.v5-knowledge-art img {
  object-position: 55% 48%;
}

.v5-fox-art img {
  object-position: 57% 57%;
}

.v5-tool-art {
  display: block;
  height: 160px;
  margin: 13px -22px 18px;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #02070c;
}

.v5-tool-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  opacity: .9;
}

.tool-card {
  min-height: 100%;
}

.tool-meta {
  margin-top: 18px;
}

/* Forms, content pages and tools */
.field input,
.field select,
.field textarea,
.form-input,
.form-textarea,
.form-select,
.audit-url-input {
  border-radius: 6px !important;
  background: #030a10 !important;
}

.contact-grid,
.scan-layout {
  gap: 14px;
}

.contact-aside,
.form-card,
.scan-form-card,
.scan-info {
  border-radius: 8px;
}

.article-hero {
  padding-top: 135px;
  background: #02070c;
}

.article-section,
.article-aside-card,
.article-conclusion {
  border-radius: 8px;
  background: #061018;
}

.article-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.footer {
  background: #02070c;
}

.footer-top {
  gap: 35px;
  padding-block: 52px 34px;
}

.footer-column h2 {
  font-size: .8rem;
}

/* Standalone VSA AutoAudit */
.audit-hero {
  min-height: 600px;
  padding: 110px 20px 64px;
}

.audit-hero::before {
  opacity: .24;
}

.audit-hero-content {
  width: min(1200px, 100%);
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  text-align: left;
}

.autoaudit-v5-copy {
  min-width: 0;
}

.audit-hero .hero-eyebrow {
  justify-content: flex-start;
  margin-bottom: 16px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .68rem;
  letter-spacing: .15em;
}

.audit-hero .hero-eyebrow::before {
  display: none;
}

.audit-hero .hero-eyebrow::after {
  max-width: 46px;
}

.audit-hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: .98;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
  animation: none;
}

.audit-hero p {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.audit-form-wrapper {
  max-width: none;
  margin: 30px 0 0;
  padding: 16px;
  border: 1px solid rgba(24, 229, 232, .17);
  border-radius: 9px;
  background: #061018;
  box-shadow: var(--shadow-card);
}

.audit-form-label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: #c4d4dc;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.audit-form-label i {
  color: var(--accent);
}

.audit-input-row {
  gap: 8px;
}

.audit-url-input,
.btn-audit {
  min-height: 46px;
}

.btn-audit {
  color: #001012;
  border-radius: 6px;
  background: #3fe1e1;
  box-shadow: none;
}

.audit-trust {
  justify-content: flex-start;
  gap: 8px 18px;
  margin-top: 12px;
  font-size: .66rem;
}

.autoaudit-v5-preview {
  overflow: hidden;
  border: 1px solid rgba(24, 229, 232, .24);
  border-radius: 10px;
  background: #050e15;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .52), 0 0 52px rgba(24, 229, 232, .06);
}

.autoaudit-preview-head,
.autoaudit-score-row,
.autoaudit-preview-foot {
  display: flex;
  align-items: center;
}

.autoaudit-preview-head {
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: #07131b;
}

.autoaudit-preview-head div {
  display: grid;
  gap: 2px;
}

.autoaudit-preview-head span {
  color: var(--accent);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.autoaudit-preview-head strong {
  font-size: .92rem;
}

.autoaudit-preview-head > i {
  color: var(--accent);
  font-size: 1.2rem;
}

.autoaudit-score-row {
  gap: 22px;
  padding: 28px 24px 24px;
}

.autoaudit-score {
  width: 116px;
  height: 116px;
  flex: 0 0 116px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 7px solid #22dbb7;
  border-left-color: rgba(34, 219, 183, .22);
  border-radius: 50%;
  background: #030a10;
  box-shadow: inset 0 0 28px rgba(34, 219, 183, .08), 0 0 30px rgba(34, 219, 183, .08);
}

.autoaudit-score strong {
  color: #fff;
  font-size: 2.45rem;
  line-height: .9;
}

.autoaudit-score span {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: .64rem;
}

.autoaudit-score-copy {
  display: grid;
  gap: 7px;
}

.autoaudit-score-copy > strong {
  font-size: 1.18rem;
}

.autoaudit-score-copy small {
  color: var(--muted);
  line-height: 1.5;
}

.autoaudit-status {
  width: fit-content;
  padding: 5px 8px;
  color: #78efc1;
  border: 1px solid rgba(81, 230, 164, .24);
  border-radius: 5px;
  background: rgba(81, 230, 164, .07);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.autoaudit-metrics {
  display: grid;
  gap: 13px;
  padding: 0 24px 28px;
}

.autoaudit-metrics div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  color: #b7cad3;
  font-size: .72rem;
}

.autoaudit-metrics strong {
  color: #f5fbff;
  font-size: .7rem;
}

.autoaudit-metrics i {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(113, 135, 148, .16);
}

.autoaudit-metrics i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.autoaudit-preview-foot {
  gap: 18px;
  padding: 13px 20px;
  border-top: 1px solid var(--border);
  background: #07131b;
  color: var(--muted);
  font-size: .62rem;
}

.autoaudit-preview-foot i {
  margin-right: 5px;
  color: var(--accent);
}

.audit-report,
.audit-loading {
  max-width: 1200px;
  margin-inline: auto;
}

.report-header,
.report-section,
.opportunity-panel {
  border-radius: 8px !important;
}

/* Standalone VSA Concept */
.creator-nav {
  min-height: 64px;
  border-bottom: 1px solid rgba(108, 213, 220, .13);
  background: rgba(2, 7, 12, .94);
  backdrop-filter: blur(18px);
}

.creator-nav .nav-container {
  min-height: 64px;
  max-width: 1200px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.creator-nav .logo {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: .05em;
  color: #f4fbff;
  text-shadow: none;
}

.creator-nav .logo::before {
  display: none;
  content: none;
}

.creator-nav .logo img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.creator-nav .logo span {
  font-size: .88rem;
  font-weight: 800;
}

.creator-nav .nav-links a {
  font-size: .7rem;
}

.concept-breadcrumbs,
.tool-breadcrumbs {
  background: #02070c;
  border-color: var(--border);
}

.concept-breadcrumbs {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 0;
}

.concept-v5-intro {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 30px;
  display: flex;
  gap: 34px;
  align-items: flex-end;
  justify-content: space-between;
}

.concept-v5-intro > div:first-child {
  max-width: 760px;
}

.concept-v5-eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--accent);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.concept-v5-intro h1 {
  margin: 0;
  color: #f4fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.concept-v5-intro p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .98rem;
}

.concept-v5-status {
  min-width: 230px;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #061018;
}

.concept-v5-status span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #b7c9d2;
  font-size: .66rem;
  font-weight: 700;
}

.concept-v5-status i {
  width: 16px;
  color: var(--accent);
  text-align: center;
}

.kreator-layout {
  width: min(1200px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto 26px;
  grid-template-columns: minmax(350px, 410px) 1fr;
  overflow: hidden;
  border: 1px solid rgba(24, 229, 232, .18);
  border-radius: 9px;
  background: #02070c;
  box-shadow: var(--shadow);
}

.form-panel,
.preview-panel {
  border-color: var(--border) !important;
  background: #040b11 !important;
}

.panel-header,
.preview-header {
  border-color: var(--border) !important;
  background: #061018 !important;
}

.form-panel {
  max-height: 720px;
}

.panel-header {
  padding: 18px 20px 15px;
}

.panel-header .panel-title {
  margin: 2px 0 4px;
  color: #f4fbff !important;
  text-shadow: none;
}

.panel-header .panel-sub {
  color: var(--muted);
  opacity: 1;
}

.form-body {
  padding: 12px 18px 20px;
}

.fs-group,
.media-suggestions,
.concept-brief-strip {
  border-radius: 7px !important;
  background: #061018 !important;
}

.panel-title {
  font-size: clamp(1.05rem, 1.8vw, 1.36rem) !important;
}

.preview-panel {
  min-height: 720px;
}

.preview-empty {
  justify-content: flex-start;
  padding: 36px;
}

.concept-v5-browser {
  width: min(100%, 760px);
  min-height: 390px;
  margin: auto auto 26px;
  overflow: hidden;
  border: 1px solid rgba(24, 229, 232, .2);
  border-radius: 9px;
  background: #07131b;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .4);
}

.concept-browser-bar,
.concept-browser-nav,
.concept-browser-hero {
  display: flex;
  align-items: center;
}

.concept-browser-bar {
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  background: #0a1720;
}

.concept-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b5763;
}

.concept-browser-bar i {
  margin-left: 8px;
  color: #6f8994;
  font-size: .56rem;
  font-style: normal;
}

.concept-browser-nav {
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: #7f96a1;
  font-size: .55rem;
}

.concept-browser-nav b {
  margin-right: auto;
  color: var(--accent);
  letter-spacing: .08em;
}

.concept-browser-nav em {
  padding: 5px 8px;
  color: #001012;
  border-radius: 4px;
  background: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.concept-browser-hero {
  min-height: 235px;
  gap: 28px;
  padding: 34px;
}

.concept-browser-hero > div {
  flex: 1;
  display: grid;
  gap: 12px;
  text-align: left;
}

.concept-browser-hero small {
  color: var(--accent);
  font-size: .53rem;
  letter-spacing: .12em;
}

.concept-browser-hero strong {
  color: #f4fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.02;
}

.concept-browser-hero span {
  color: #7e96a1;
  font-size: .64rem;
}

.concept-browser-hero button {
  width: fit-content;
  padding: 8px 12px;
  color: #001012;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  font-size: .58rem;
  font-weight: 800;
}

.concept-browser-hero > i {
  flex: 0 0 34%;
  color: rgba(24, 229, 232, .75);
  font-size: clamp(4rem, 8vw, 7rem);
  text-align: center;
  filter: drop-shadow(0 0 22px rgba(24, 229, 232, .18));
}

.concept-browser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 0 18px 18px;
}

.concept-browser-cards span {
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #091721;
}

.preview-empty h3 {
  color: #dcebf1;
  opacity: 1;
}

.preview-empty p {
  max-width: 420px;
  color: var(--muted);
  opacity: 1;
}

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

@media (max-width: 1160px) {
  .nav-inner {
    min-height: 64px;
  }

  .menu-btn {
    display: inline-flex;
    height: 42px;
    border-radius: 7px;
  }

  .nav-links {
    border-radius: 0;
    background: #030a10;
  }

  .nav-links a {
    min-height: 52px;
  }

  .nav-link-copy strong {
    font-size: .8rem;
  }

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

  .hero-system {
    min-height: 430px;
  }

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

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

  .autoaudit-v5-copy {
    text-align: center;
  }

  .audit-hero .hero-eyebrow,
  .audit-trust {
    justify-content: center;
  }

  .audit-hero h1,
  .audit-hero p {
    margin-inline: auto;
  }

  .concept-v5-intro {
    display: grid;
  }

  .concept-v5-status {
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .kreator-layout {
    grid-template-columns: 1fr;
  }

  .form-panel {
    max-height: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-grid,
  .page-hero .container,
  .split,
  .split.reverse,
  .section-head,
  .contact-grid,
  .scan-layout {
    grid-template-columns: 1fr;
  }

  .hero-system {
    min-height: min(72vw, 560px);
  }

  .v5-hero-art img {
    width: 100%;
    margin-left: 0;
  }

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

  .page-hero .container {
    gap: 28px;
  }

  .stat-box {
    border-left: 1px solid var(--border);
  }

  .case-panel-v5 {
    grid-template-columns: 1fr;
  }

  .case-panel-v5 .case-meta,
  .v5-case-art,
  .case-panel-v5 .case-body {
    grid-column: 1;
  }

  .case-panel-v5 .case-meta {
    grid-row: auto;
  }

  .v5-case-art {
    grid-row: auto;
    min-height: min(62vw, 440px);
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .case-panel-v5 .case-body {
    grid-template-columns: 1fr;
  }

  .case-panel-v5 .case-stats,
  .case-panel-v5 .actions {
    grid-column: 1;
  }

  .cta-panel {
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .section {
    padding: 52px 0;
  }

  .section-tight {
    padding: 38px 0;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-system {
    min-height: 330px;
  }

  .v5-hero-art img {
    width: 100%;
    margin-left: 0;
    object-fit: contain;
    object-position: center;
  }

  .v5-platform-art,
  .v5-knowledge-art,
  .v5-fox-art,
  .v5-tool-art {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .v5-platform-art img,
  .v5-knowledge-art img,
  .v5-fox-art img,
  .v5-tool-art img,
  .v5-case-art img {
    object-fit: contain;
    object-position: center;
  }

  .hero-footnote,
  .proof-grid,
  .case-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-grid > * {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .proof-grid > *:first-child {
    border-top: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .product-grid,
  .case-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding: 36px 0 44px;
  }

  .breadcrumbs {
    padding-top: 68px;
  }

  .breadcrumbs + .page-hero {
    padding-top: 32px;
  }

  .stat-box-visual {
    padding-inline: 14px;
  }

  .v5-platform-art,
  .v5-knowledge-art,
  .v5-fox-art {
    height: 175px;
    margin-inline: -14px;
  }

  .case-meta,
  .case-body {
    padding: 25px;
  }

  .case-meta .case-number {
    margin-bottom: 30px;
  }

  .cta-panel {
    display: block;
    padding: 27px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .audit-hero {
    min-height: auto;
    padding: 95px 14px 42px;
  }

  .audit-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .autoaudit-score-row {
    align-items: flex-start;
  }

  .autoaudit-score {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .concept-breadcrumbs,
  .concept-v5-intro,
  .kreator-layout {
    width: min(calc(100% - 24px), 1200px);
  }

  .concept-v5-intro h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .concept-v5-status {
    grid-template-columns: 1fr;
  }

  .preview-empty {
    padding: 18px;
  }

  .concept-v5-browser {
    min-height: 320px;
  }

  .concept-browser-nav span {
    display: none;
  }

  .concept-browser-hero {
    min-height: 210px;
    padding: 22px;
  }

  .concept-browser-hero > i {
    display: none;
  }

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

  .audit-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
}
