:root {
  --paper: #f5efe3;
  --paper-soft: #fffaf0;
  --paper-strong: #eadfcb;
  --ink: #171410;
  --ink-soft: rgba(23, 20, 16, .72);
  --ink-dim: rgba(23, 20, 16, .52);
  --line: rgba(23, 20, 16, .16);
  --line-strong: rgba(23, 20, 16, .28);
  --panel: rgba(255, 250, 240, .78);
  --panel-strong: rgba(255, 250, 240, .94);
  --oxblood: #8f2118;
  --gold: #b8892f;
  --teal: #0b6f73;
  --green: #187a4b;
  --red: #ad2a1e;
  --charcoal: #211f19;
  --shadow: 0 24px 80px rgba(39, 31, 19, .16);
  --shadow-soft: 0 12px 34px rgba(39, 31, 19, .12);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) rgba(23, 20, 16, .12);
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(23, 20, 16, .045) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 16, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font-family: var(--sans);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 240, .82), rgba(245, 239, 227, .72) 44%, rgba(235, 224, 204, .9));
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
code {
  border: 1px solid rgba(184, 137, 47, .28);
  border-radius: 6px;
  padding: 2px 5px;
  background: rgba(184, 137, 47, .1);
  color: #5f3f0f;
  font-family: var(--mono);
  font-size: .92em;
}

::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track {
  background: rgba(23, 20, 16, .1);
  border-left: 1px solid rgba(23, 20, 16, .1);
}
::-webkit-scrollbar-thumb {
  min-height: 72px;
  border: 3px solid rgba(245, 239, 227, .92);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--teal), var(--oxblood));
  box-shadow: 0 0 18px rgba(11, 111, 115, .28), inset 0 0 12px rgba(255, 255, 255, .24);
}

#sky {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .24;
  pointer-events: none;
}
.grain,
.motion-scanline {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.grain {
  opacity: .18;
  background-image: repeating-linear-gradient(0deg, rgba(23, 20, 16, .08) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}
.motion-scanline {
  opacity: .22;
  background:
    linear-gradient(90deg, transparent, rgba(184, 137, 47, .24), transparent),
    repeating-linear-gradient(180deg, rgba(11, 111, 115, .06) 0 1px, transparent 1px 9px);
  background-size: 38vw 100%, 100% 9px;
  animation: scanShift 11s linear infinite;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--oxblood), var(--gold), var(--teal));
  box-shadow: 0 0 18px rgba(11, 111, 115, .28);
}
.cursor-glow {
  position: fixed;
  left: -150px;
  top: -150px;
  z-index: 90;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(184, 137, 47, .16), rgba(11, 111, 115, .1) 42%, rgba(143, 33, 24, .08) 62%, transparent 74%);
  filter: blur(8px);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .2s ease;
}
body.motion-ready .cursor-glow { opacity: .9; }
.skyesol-living-background,
.living-background {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}
.neon-gradient-text,
.text-highlighter {
  background: linear-gradient(92deg, var(--ink) 0%, var(--oxblood) 28%, var(--gold) 56%, var(--teal) 82%, var(--ink) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: neonTitleShimmer 8s linear infinite;
}
.text-highlighter {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 80;
  width: min(1240px, calc(100% - 32px));
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(23, 20, 16, .16);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 250, 240, .86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-logo,
.logo-orb {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 1px solid rgba(184, 137, 47, .32);
  border-radius: 8px;
  background: #0b0a0d url("/assets/valley-verified-logo.png") center / cover no-repeat;
  box-shadow: 0 0 18px rgba(184, 137, 47, .26), 0 0 22px rgba(11, 111, 115, .12);
  object-fit: cover;
  object-position: center;
}
.brand.mini .brand-logo {
  width: 54px;
  height: 54px;
  min-width: 54px;
}
.brand-wordmark,
.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  color: var(--ink);
}
.brand strong,
.wordmark strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: .92;
  font-weight: 700;
  letter-spacing: 0;
}
.brand small,
.wordmark small {
  display: block;
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
}
.brand-mark,
.mark,
.logo-mark {
  width: 8px;
  height: 38px;
  min-width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--oxblood), var(--gold), var(--teal));
  box-shadow: 0 0 18px rgba(184, 137, 47, .24);
}
.mark span,
.logo-mark { color: transparent; overflow: hidden; }
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}
.nav-actions a,
.nav-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(23, 20, 16, .14);
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(255, 250, 240, .72);
  color: rgba(23, 20, 16, .78);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}
.nav-actions a:hover,
.nav-actions button:hover {
  border-color: rgba(143, 33, 24, .34);
  color: var(--ink);
  background: rgba(184, 137, 47, .12);
}

.site-main,
.page {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 78px;
}
.glass {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.hero,
.profile-hero,
.operator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .72fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 16px;
  padding: 58px;
  overflow: hidden;
}
.website-hero,
.hero-platform {
  min-height: 650px;
  align-items: center;
}
.subhero { align-items: center; }
.hero h1,
.profile-hero h1,
.operator-hero h1,
.editorial-title {
  margin: 10px 0 18px;
  max-width: 1080px;
  font-family: var(--display);
  font-size: 76px;
  line-height: .94;
  letter-spacing: 0;
  font-weight: 700;
}
.profile-hero h1 { font-size: 66px; }
.hero-text {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 520;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--oxblood);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ink-dim);
  font-size: 13px;
  font-weight: 850;
}
.hero-actions,
.button-row,
.action-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}
.btn {
  appearance: none;
  min-height: 44px;
  border: 1px solid rgba(23, 20, 16, .18);
  border-radius: 8px;
  padding: 11px 14px;
  background: rgba(255, 250, 240, .82);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s cubic-bezier(.16, 1, .3, 1), border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 111, 115, .42);
  box-shadow: 0 16px 30px rgba(11, 111, 115, .12);
}
.btn.primary {
  border-color: rgba(23, 20, 16, .86);
  background: var(--charcoal);
  color: var(--paper-soft);
}
.btn.ghost { background: transparent; }
.btn.small {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 12px;
}
.btn:disabled {
  opacity: .48;
  cursor: not-allowed;
  transform: none;
}

.hero-card,
.website-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.metric {
  min-height: 136px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 250, 240, .86);
}
.metric span {
  color: var(--ink);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.metric small {
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.platform-strip,
.split-grid,
.profile-grid,
.directory-layout,
.business-webpage-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
.platform-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split-grid,
.profile-grid,
.business-webpage-grid { grid-template-columns: 1fr 1fr; }
.directory-layout {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
}
.section,
.proof-card,
.filters,
.results,
.operator-panel {
  padding: 24px;
}
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section h2,
.proof-card h2,
.filters h2,
.results h2,
.operator-panel h2 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.section p,
.proof-card p,
.operator-panel p,
.muted {
  color: var(--ink-soft);
  line-height: 1.62;
  font-weight: 520;
}
.proof-card {
  min-height: 216px;
  display: grid;
  align-content: space-between;
}
.proof-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(143, 33, 24, .28);
  border-radius: 8px;
  background: rgba(143, 33, 24, .08);
  color: var(--oxblood);
  font-weight: 950;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(143, 33, 24, .28);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(143, 33, 24, .08);
  color: var(--oxblood);
  font-size: 12px;
  font-weight: 900;
}

.editorial-atlas,
.business-landing-hero {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 20, 16, .06) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 16, .045) 1px, transparent 1px),
    rgba(255, 250, 240, .84);
  background-size: 64px 64px, 64px 64px, auto;
}
.atlas-panel,
.landing-panel {
  min-height: 420px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  border: 1px solid rgba(23, 20, 16, .14);
  border-radius: 8px;
  padding: 24px;
  background: var(--charcoal);
  color: var(--paper-soft);
  box-shadow: 0 30px 80px rgba(23, 20, 16, .22);
}
.atlas-panel .metric,
.landing-panel .metric { background: rgba(255, 250, 240, .08); color: var(--paper-soft); }
.atlas-panel .metric span,
.landing-panel .metric span { color: var(--paper-soft); }
.atlas-panel .metric small,
.landing-panel .metric small { color: rgba(255, 250, 240, .64); }
.atlas-list,
.landing-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 250, 240, .14);
  background: rgba(255, 250, 240, .14);
}
.atlas-list div,
.landing-list div {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: rgba(255, 250, 240, .08);
}
.atlas-list strong,
.landing-list strong {
  color: #f3c66b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.atlas-list span,
.landing-list span { color: rgba(255, 250, 240, .74); font-size: 13px; line-height: 1.45; }

label {
  display: block;
  margin: 12px 0 7px;
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 16, .18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 250, 240, .82);
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(11, 111, 115, .48);
  box-shadow: 0 0 0 4px rgba(11, 111, 115, .12);
}
textarea { min-height: 180px; resize: vertical; line-height: 1.5; }
.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.filters { position: sticky; top: 100px; }
.toggle-list { display: grid; gap: 8px; margin: 13px 0; }
.checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(23, 20, 16, .14);
  border-radius: 8px;
  padding: 10px 11px;
  background: rgba(255, 250, 240, .56);
  cursor: pointer;
}
.checkline input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--teal);
}
.checkline span { color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.tag-cloud,
.tag-list,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}
.chip,
.tag-list span,
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23, 20, 16, .14);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 250, 240, .62);
  color: rgba(23, 20, 16, .76);
  font-size: 12px;
  font-weight: 850;
}
.chip { cursor: pointer; }
.chip:hover,
.chip.on,
.badge.gold {
  border-color: rgba(184, 137, 47, .42);
  background: rgba(184, 137, 47, .12);
  color: var(--ink);
}
.badge.good {
  border-color: rgba(24, 122, 75, .32);
  background: rgba(24, 122, 75, .1);
  color: #135b3a;
}
.badge.teal {
  border-color: rgba(11, 111, 115, .32);
  background: rgba(11, 111, 115, .1);
  color: var(--teal);
}
.tight { margin-top: 12px; font-size: 12px; }

.cards,
.tile-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.business-card,
.platform-tile,
.shortlist-item,
.compare-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, .72);
  box-shadow: 0 14px 36px rgba(39, 31, 19, .1);
  transition: transform .18s cubic-bezier(.16, 1, .3, 1), border-color .18s ease, box-shadow .18s ease;
}
.business-card:hover,
.platform-tile:hover,
.compare-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 111, 115, .32);
  box-shadow: 0 22px 46px rgba(39, 31, 19, .16);
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.card-top h3,
.platform-tile h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0;
}
.card-desc {
  min-height: 58px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 520;
}
.score {
  width: 58px;
  min-width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 122, 75, .26);
  border-radius: 8px;
  padding: 8px 6px;
  background: rgba(24, 122, 75, .08);
  color: #135b3a;
}
.score strong {
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}
.score small {
  color: rgba(19, 91, 58, .7);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
}
.score.huge {
  width: 100%;
  min-height: 154px;
}
.score.huge strong {
  font-family: var(--display);
  font-size: 78px;
  font-weight: 700;
}
.mini-grid,
.profile-mini,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.mini-grid span,
.profile-mini span,
.detail-grid div,
.compare-list div,
.policy-list div,
.hours div,
.contact-list a {
  border: 1px solid rgba(23, 20, 16, .12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 250, 240, .58);
}
.mini-grid span,
.profile-mini span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}
.detail-grid div { display: grid; gap: 6px; }
.detail-grid strong,
.compare-list strong,
.policy-list strong,
.hours strong,
.contact-list strong {
  color: var(--oxblood);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
}
.detail-grid span,
.compare-list span,
.policy-list span,
.hours span,
.contact-list span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.contact-list,
.policy-list,
.hours,
.file-list,
.compare-list,
.shortlist-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.map-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 14px 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 16, .06) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 16, .06) 1px, transparent 1px),
    rgba(255, 250, 240, .62);
  background-size: 28px 28px, 28px 28px, auto;
  color: var(--teal);
  font-family: var(--mono);
}
.platform-tile span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
.platform-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.52;
}

.business-landing-page .site-main,
.v21-static-profile .page { width: min(1180px, calc(100% - 32px)); }
.business-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: stretch;
  padding: 58px;
  margin-bottom: 16px;
}
.business-landing-hero h1 {
  margin: 12px 0 18px;
  font-family: var(--display);
  font-size: 72px;
  line-height: .94;
  font-weight: 700;
  letter-spacing: 0;
}
.business-landing-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.58;
}
.landing-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  margin: 16px 0;
}
.landing-proof-strip div {
  min-height: 118px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  background: rgba(255, 250, 240, .76);
}
.landing-proof-strip strong {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}
.landing-proof-strip span {
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.business-story {
  font-size: 18px;
  line-height: 1.7;
}
.upgrade-panel {
  border-color: rgba(143, 33, 24, .3);
  background: linear-gradient(180deg, rgba(143, 33, 24, .08), rgba(255, 250, 240, .7));
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, .62);
}
table { width: 100%; min-width: 560px; border-collapse: collapse; }
th, td {
  border-bottom: 1px solid rgba(23, 20, 16, .1);
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: left;
}
th {
  color: var(--oxblood);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 900;
}
tr:last-child th,
tr:last-child td { border-bottom: 0; }
.code-output {
  min-height: 260px;
  max-height: 560px;
  overflow: auto;
  margin: 0;
  border: 1px solid rgba(23, 20, 16, .18);
  border-radius: 8px;
  padding: 14px;
  background: var(--charcoal);
  color: #e7f8e8;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.small-code { min-height: 150px; max-height: 320px; }
.hidden { display: none !important; }
.empty { padding: 42px 16px; text-align: center; }
.empty h3,
.error-shell h1 { margin: 8px 0; font-family: var(--display); font-size: 34px; }
.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 130;
  max-width: min(480px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 250, 240, .92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast strong { font-size: 13px; }
.toast span { color: var(--ink-soft); font-size: 12px; line-height: 1.4; }

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
  align-items: start;
  margin: 16px 0 0;
}
.pipeline-grid > div,
.pipeline-column,
.pipeline-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 250, 240, .6);
}
.pipeline-column { display: grid; gap: 10px; }
.pipeline-card { display: grid; gap: 6px; }
.pipeline-card span,
.pipeline-card small { color: var(--ink-dim); }
.map-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 20, 16, .08) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 16, .08) 1px, transparent 1px),
    rgba(255, 250, 240, .68);
  background-size: 38px 38px, 38px 38px, auto;
}
.map-pin {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 33, 24, .42);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--oxblood);
  box-shadow: 0 14px 26px rgba(39, 31, 19, .18);
  transform: translate(-50%, -50%);
}
.map-pin span { font-size: 12px; font-weight: 950; }
.shortlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.compare-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.compare-list div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
.data-page .tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 36px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, .78);
  box-shadow: var(--shadow-soft);
}
.site-footer p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.site-footer nav a {
  border: 1px solid rgba(23, 20, 16, .14);
  border-radius: 8px;
  padding: 9px 11px;
  color: rgba(23, 20, 16, .76);
  font-size: 12px;
  font-weight: 850;
}

/* Skye Design Lab components: AppFirstCommandCenter + ScrollProofFunnel */
.command-center {
  width: min(1240px, 100%);
  margin: 32px auto;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  color: var(--paper-soft);
  border: 1px solid rgba(244, 199, 91, .2);
  border-radius: 8px;
  background:
    linear-gradient(rgba(244, 199, 91, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 199, 91, .05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(33, 31, 25, .98), rgba(18, 17, 14, .96));
  background-size: 56px 56px, 56px 56px, auto;
  box-shadow: 0 30px 90px rgba(23, 20, 16, .26);
}
.command-center__copy p,
.proof-funnel__intro p {
  margin: 0 0 12px;
  color: #f3c66b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.command-center__copy h1,
.proof-funnel__intro h2 {
  max-width: 1120px;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 62px;
  line-height: .96;
  letter-spacing: 0;
}
.command-center__copy span,
.proof-funnel__intro span {
  color: rgba(255, 250, 240, .7);
  font-size: 18px;
  line-height: 1.5;
}
.command-center__surface {
  overflow: hidden;
  border: 1px solid rgba(244, 199, 91, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33, 31, 25, .96), rgba(18, 17, 14, .93));
  box-shadow: 0 34px 90px rgba(23, 20, 16, .28);
}
.command-center__surface header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(244, 199, 91, .14);
}
.command-center__surface header strong,
.command-center__surface header span {
  display: block;
}
.command-center__surface header span {
  color: rgba(255, 250, 240, .58);
  font-size: 13px;
}
.command-center__surface header .btn {
  border-color: rgba(244, 199, 91, .42);
  background: linear-gradient(135deg, #f8df96, #f3c66b);
  color: #171410;
}
.command-center__grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 520px;
}
.command-center__grid aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid rgba(244, 199, 91, .12);
}
.command-center__grid aside a,
.command-rail a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 12px;
  color: rgba(255, 250, 240, .64);
  font-weight: 850;
}
.command-center__grid aside a.active,
.command-center__grid aside a:hover,
.command-rail a.active {
  color: var(--paper-soft);
  background: rgba(11, 111, 115, .18);
}
.command-center__grid main {
  padding: 18px;
}
.command-center .status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.command-center .status-grid article,
.console-card {
  border: 1px solid rgba(244, 199, 91, .15);
  border-radius: 8px;
  background: rgba(255, 250, 240, .06);
}
.command-center .status-grid article {
  min-height: 126px;
  display: grid;
  align-content: space-between;
  padding: 14px;
}
.status-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3c66b, #0b6f73);
  box-shadow: 0 0 18px rgba(11, 111, 115, .32);
}
.command-center .status-grid span,
.console-card p {
  display: block;
  color: rgba(255, 250, 240, .58);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
}
.command-center .status-grid strong {
  display: block;
  color: var(--paper-soft);
  line-height: 1.2;
}
.console-card {
  margin-top: 14px;
  padding: 22px;
}
.console-card h2 {
  margin: 12px 0 22px;
  color: #f3c66b;
  font-family: var(--mono);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;
}
.check-list,
.quick-actions,
.status-strip {
  display: grid;
  gap: 10px;
}
.check-list span,
.quick-actions a,
.status-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-soft);
}
.check-list span::before,
.quick-actions a::before,
.status-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f3c66b;
  box-shadow: 0 0 14px rgba(244, 199, 91, .34);
}
.business-page-command {
  margin-top: 16px;
}
.business-page-command .command-center__copy {
  display: none;
}
.business-page-command .command-center__grid {
  min-height: 360px;
}
.business-page-command .console-card h2 {
  font-size: 26px;
}

.proof-funnel {
  width: min(1180px, 100%);
  margin: 32px auto;
  padding: clamp(44px, 7vw, 82px);
  color: var(--paper-soft);
  border: 1px solid rgba(11, 111, 115, .22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(11, 111, 115, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 199, 91, .04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(26, 31, 29, .98), rgba(18, 17, 14, .95));
  background-size: 60px 60px, 60px 60px, auto;
  box-shadow: 0 30px 90px rgba(23, 20, 16, .2);
}
.proof-funnel__intro {
  max-width: 860px;
  margin-bottom: 40px;
}
.proof-funnel__steps {
  display: grid;
  gap: 18px;
}
.proof-step {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid rgba(244, 199, 91, .16);
  border-radius: 8px;
  padding: 28px 28px 28px 88px;
  background: linear-gradient(135deg, rgba(33, 31, 25, .94), rgba(18, 17, 14, .88));
  box-shadow: 0 24px 60px rgba(23, 20, 16, .22);
  opacity: .72;
  transform: translateY(18px);
  transition: opacity .52s cubic-bezier(.16, 1, .3, 1), transform .52s cubic-bezier(.16, 1, .3, 1);
}
.proof-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.proof-step > span {
  display: block;
  margin-top: 42px;
  color: #f3c66b;
  font-family: var(--mono);
  font-weight: 900;
}
.proof-step h3 {
  margin: 14px 0 10px;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}
.proof-step p {
  max-width: 650px;
  color: rgba(255, 250, 240, .68);
  font-size: 18px;
  line-height: 1.6;
}
.proof-rail {
  position: absolute;
  left: 34px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(255, 255, 255, .1);
}
.proof-rail__fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(#f3c66b, #0b6f73);
}

@keyframes scanShift {
  from { background-position: -38vw 0, 0 0; }
  to { background-position: 38vw 0, 0 0; }
}
@keyframes neonTitleShimmer {
  from { background-position: 0% center; }
  to { background-position: 220% center; }
}

@media (max-width: 1050px) {
  .hero,
  .profile-hero,
  .business-landing-hero,
  .directory-layout,
  .split-grid,
  .profile-grid,
  .business-webpage-grid {
    grid-template-columns: 1fr;
  }
  .platform-strip,
  .pipeline-grid,
  .landing-proof-strip {
    grid-template-columns: 1fr 1fr;
  }
  .filters { position: relative; top: auto; }
  .hero h1,
  .profile-hero h1,
  .operator-hero h1,
  .business-landing-hero h1 { font-size: 54px; }
}

@media (max-width: 720px) {
  .site-main,
  .page,
  .business-landing-page .site-main,
  .v21-static-profile .page {
    width: min(100% - 20px, 1240px);
    margin-top: 10px;
  }
  .topbar {
    top: 8px;
    width: calc(100% - 20px);
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .brand { min-width: 0; }
  .nav-actions {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .nav-actions a {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 12px;
  }
  .hero,
  .profile-hero,
  .operator-hero,
  .business-landing-hero {
    padding: 22px 18px;
  }
  .website-hero,
  .hero-platform { min-height: auto; }
  .hero h1,
  .profile-hero h1,
  .operator-hero h1,
  .business-landing-hero h1 { font-size: 36px; }
  .hero-text,
  .business-landing-copy {
    font-size: 15px;
    line-height: 1.48;
  }
  .website-hero .atlas-panel,
  .hero-actions .btn.ghost {
    display: none;
  }
  .hero-card,
  .website-metrics,
  .platform-strip,
  .pipeline-grid,
  .landing-proof-strip,
  .filter-grid,
  .cards,
  .tile-grid,
  .compare-grid,
  .mini-grid,
  .profile-mini,
  .detail-grid,
  .data-page .tile-grid {
    grid-template-columns: 1fr;
  }
  .section,
  .proof-card,
  .filters,
  .results,
  .operator-panel { padding: 18px; }
  .section-head { flex-direction: column; }
  .hero-actions .btn,
  .button-row .btn,
  .action-row .btn { flex: 1 1 150px; }
  .contact-list a,
  .shortlist-item { flex-direction: column; align-items: flex-start; }
  .compare-controls { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .cursor-glow { display: none; }
  .command-center {
    margin: 24px auto;
    padding: 24px 18px;
  }
  .command-center__copy h1,
  .proof-funnel__intro h2 { font-size: 34px; }
  .command-center__surface header,
  .command-center__grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .command-center__grid {
    min-height: auto;
  }
  .command-center__grid aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(244, 199, 91, .12);
  }
  .command-center .status-grid {
    grid-template-columns: 1fr;
  }
  .console-card h2 {
    font-size: 24px;
  }
  .proof-funnel {
    padding: 32px 18px;
  }
  .proof-step {
    min-height: 220px;
    padding: 22px 20px 22px 58px;
  }
  .proof-rail {
    left: 24px;
  }
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .cursor-glow,
  .motion-scanline { display: none; }
}

/* v23 public website layer */
.public-topbar{background:rgba(255,250,240,.9);border-color:rgba(23,20,16,.16)}.public-nav a{font-size:12px}.public-nav .nav-operator{border-color:rgba(11,111,115,.34);color:#0b6f73}.public-site-main{padding-bottom:28px}.website-hero{position:relative;overflow:hidden}.website-hero h1{max-width:1040px}.website-positioning .proof-card,.website-money-path .section{min-height:270px}.website-feature{min-height:245px}.website-proof .detail-grid,.website-page .detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.website-proof .detail-grid div,.website-page .detail-grid div{border:1px solid var(--line);border-radius:8px;background:rgba(255,250,240,.64);padding:14px;display:grid;gap:6px}.website-proof .detail-grid strong,.website-page .detail-grid strong{color:var(--oxblood);text-transform:uppercase;letter-spacing:0;font-size:12px}.website-proof .detail-grid span,.website-page .detail-grid span{color:var(--ink-soft);line-height:1.55}.brand.mini{display:flex}@media(max-width:800px){.website-metrics,.website-proof .detail-grid,.website-page .detail-grid{grid-template-columns:1fr}.website-hero{min-height:auto}.public-nav .nav-operator{display:none}}
