/* Shiberius blueprint — tokens, layout, components (loads after shiberius.webflow.css) */

:root {
  /* Core palette — vibrant orange / near-black / warm highlight */
  --sh-bg-primary: #0f0f0f;
  --sh-bg-secondary: #1a1a1a;
  --sh-bg-tertiary: #222222;
  --sh-border: #2d2d2d;
  --sh-text: #f5f5f5;
  --sh-text-muted: #9ca3af;
  --sh-accent: #ff6b35;
  --sh-accent-hover: #e85a2a;
  --sh-accent-highlight: #ffb84d;
  --sh-accent-soft: rgba(255, 107, 53, 0.12);
  --sh-accent-soft-hover: rgba(255, 107, 53, 0.18);
  --sh-accent-tertiary: #ffb84d;
  --sh-on-accent: #0f0f0f;
  --sh-overlay: rgba(15, 15, 15, 0.78);
  --sh-font-head: "Outfit", "Space Grotesk", system-ui, sans-serif;
  --sh-font-body: "Inter", system-ui, sans-serif;
  --sh-font-mono: ui-monospace, "JetBrains Mono", "Fira Code", monospace;
  /* Semantic (data / status) */
  --sh-success: #10b981;
  --sh-warning: #f59e0b;
  --sh-error: #ef4444;
  --sh-info: #3b82f6;
  /* Spacing scale */
  --sh-space-xs: 4px;
  --sh-space-sm: 8px;
  --sh-space-md: 16px;
  --sh-space-lg: 24px;
  --sh-space-xl: 32px;
  --sh-space-2xl: 48px;
  --sh-space-3xl: 64px;
  --sh-space-4xl: 96px;
  --sh-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sh-duration-hover: 0.22s;
  --sh-focus-ring: 2px solid var(--sh-accent);
  --sh-focus-offset: 2px;
  --sh-container: 1280px;
  --sh-container-wide: 1440px;
  --sh-reading: 720px;
  --sh-pad-global: clamp(1.25rem, 4vw, 3rem);
  --sh-section-y-lg: clamp(3rem, 8vw, 6rem);
  --sh-section-y-md: clamp(2.5rem, 5vw, 4rem);
  --sh-radius-card: 12px;
  --sh-radius-btn: 8px;
  /* Map legacy Webflow variables where helpful */
  --_colors---core-accent-color--accent-primary: var(--sh-accent);
  --_colors---core-accent-color--accent-primary-hover: var(--sh-accent-hover);
  --_colors---text-color--text-accent-on-primary: var(--sh-accent);
  --_colors---core-neutral-color--neutral-primary: var(--sh-bg-primary);
  --_colors---core-neutral-color--neutral-inverse: var(--sh-text);
  /* Plan E — Webflow variable mirrors (Designer naming) */
  --color-bg-primary: var(--sh-bg-primary);
  --color-bg-secondary: var(--sh-bg-secondary);
  --color-bg-tertiary: var(--sh-bg-tertiary);
  --color-border: var(--sh-border);
  --color-text-primary: var(--sh-text);
  --color-text-muted: var(--sh-text-muted);
  --color-accent: var(--sh-accent);
  --color-accent-hover: var(--sh-accent-hover);
  --color-accent-soft: var(--sh-accent-soft);
  --color-on-accent: var(--sh-on-accent);
  --color-accent-tertiary: var(--sh-accent-tertiary);
  --color-overlay: var(--sh-overlay);
  --space-global: var(--sh-pad-global);
  --space-section-lg: var(--sh-section-y-lg);
  --space-section-md: var(--sh-section-y-md);
  --font-heading: var(--sh-font-head);
  --font-body: var(--sh-font-body);
  --container-lg: var(--sh-container);
  --container-reading: var(--sh-reading);
  --container-wide: var(--sh-container-wide);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

#loop,
#modules,
#proof-practice,
#onboarding-pricing,
#outbound-hub,
#call-analysis,
#rep-coaching {
  scroll-margin-top: calc(4.5rem + env(safe-area-inset-top, 0px));
}

body.sh-blueprint {
  background-color: var(--sh-bg-primary);
  color: var(--sh-text);
  font-family: var(--sh-font-body);
}

.sh-blueprint h1,
.sh-blueprint h2,
.sh-blueprint h3,
.sh-blueprint h4,
.sh-blueprint .sh-heading-display,
.sh-blueprint .sh-heading-section,
.sh-blueprint .heading-display,
.sh-blueprint .heading-section {
  font-family: var(--sh-font-head);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.sh-blueprint h1,
.sh-blueprint .sh-heading-display {
  font-weight: 700;
}

.sh-page-wrapper,
.page-wrapper,
.layout-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Announcement */
.sh-announcement-bar,
.comp-announcement-bar {
  background: var(--sh-bg-secondary);
  border-bottom: 1px solid var(--sh-border);
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  text-align: center;
  padding: 0.65rem var(--sh-pad-global);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
}

.sh-announcement-bar a,
.comp-announcement-bar a {
  color: var(--sh-accent-tertiary);
  margin-left: 0.5rem;
  text-decoration: none;
}

.sh-announcement-bar a:hover,
.comp-announcement-bar a:hover {
  color: var(--sh-accent);
}

.sh-announcement-bar.is-dismissed,
.comp-announcement-bar.is-dismissed {
  display: none;
}

/* Nav */
.sh-nav-wrap,
.comp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.sh-nav-wrap.is-scrolled,
.comp-nav.is-scrolled {
  background: color-mix(in srgb, var(--sh-bg-primary) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sh-border);
}

.sh-nav-inner {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 1rem var(--sh-pad-global);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sh-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--sh-text);
  font-family: var(--sh-font-head);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
}

.sh-nav-logo:focus-visible {
  outline: var(--sh-focus-ring);
  outline-offset: var(--sh-focus-offset);
  border-radius: 4px;
}

.sh-nav-logo img {
  width: 32px;
  height: auto;
}

.sh-nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sh-nav-links {
    display: flex;
  }
}

.sh-nav-links a {
  position: relative;
  color: var(--sh-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.sh-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 2px;
  background: var(--sh-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--sh-ease-out);
}

.sh-nav-links a:hover::after,
.sh-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.sh-nav-links a:hover,
.sh-nav-links a[aria-current="page"] {
  color: var(--sh-accent);
}

.sh-nav-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-btn);
  color: var(--sh-text);
  cursor: pointer;
}

@media (min-width: 992px) {
  .sh-nav-toggle {
    display: none;
  }
}

.sh-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem var(--sh-pad-global) 1.25rem;
  border-bottom: 1px solid var(--sh-border);
  background: var(--sh-bg-secondary);
}

.sh-nav-mobile.is-open {
  display: flex;
}

.sh-nav-mobile a {
  color: var(--sh-text);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .sh-nav-mobile {
    display: none !important;
  }
}

/* Buttons */
.sh-btn,
a.button-primary,
a.button-secondary,
a.button-ghost,
button.button-primary,
button.button-secondary,
button.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--sh-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--sh-radius-btn);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transform-origin: center center;
  transition: background var(--sh-duration-hover) var(--sh-ease-out),
    color var(--sh-duration-hover) var(--sh-ease-out),
    border-color var(--sh-duration-hover) var(--sh-ease-out),
    box-shadow var(--sh-duration-hover) var(--sh-ease-out);
}

.sh-btn:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  outline: var(--sh-focus-ring);
  outline-offset: var(--sh-focus-offset);
}

.sh-nav-links a:focus-visible,
.sh-nav-mobile a:focus-visible,
.sh-footer-col a:focus-visible,
.sh-footer-brand:focus-visible {
  outline: var(--sh-focus-ring);
  outline-offset: var(--sh-focus-offset);
  border-radius: 2px;
}

.sh-btn--primary,
.button-primary {
  background: var(--sh-accent);
  color: var(--sh-on-accent);
}

.sh-btn--primary:hover,
.button-primary:hover {
  background: var(--sh-accent-hover);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.sh-btn--primary:active,
.button-primary:active {
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}

.sh-btn--secondary,
.button-secondary {
  background: transparent;
  color: var(--sh-text);
  border-color: var(--sh-border);
}

.sh-btn--secondary:hover,
.button-secondary:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  background: var(--sh-accent-soft);
}

.sh-btn--ghost,
.button-ghost {
  background: transparent;
  color: var(--sh-accent);
  border-color: transparent;
}

.sh-btn--ghost:hover,
.button-ghost:hover {
  color: var(--sh-accent-hover);
}

.sh-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Layout */
.sh-main,
.main-wrapper {
  flex: 1;
}

.sh-container-large,
.container-large {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding-left: var(--sh-pad-global);
  padding-right: var(--sh-pad-global);
}

.sh-container-wide,
.container-wide {
  max-width: var(--sh-container-wide);
  margin: 0 auto;
  padding-left: var(--sh-pad-global);
  padding-right: var(--sh-pad-global);
}

.sh-container-reading,
.container-reading {
  max-width: var(--sh-reading);
  margin: 0 auto;
  padding-left: var(--sh-pad-global);
  padding-right: var(--sh-pad-global);
}

/* Plan H — horizontal padding utility */
.padding-global {
  padding-left: var(--sh-pad-global);
  padding-right: var(--sh-pad-global);
}

.padding-section-large {
  padding-top: var(--sh-section-y-lg);
  padding-bottom: var(--sh-section-y-lg);
}

.padding-section-medium {
  padding-top: var(--sh-section-y-md);
  padding-bottom: var(--sh-section-y-md);
}

.sh-section {
  padding-top: var(--sh-section-y-lg);
  padding-bottom: var(--sh-section-y-lg);
}

.sh-section--alt {
  background: var(--sh-bg-secondary);
}

.sh-section--tight {
  padding-top: var(--sh-section-y-md);
  padding-bottom: var(--sh-section-y-md);
}

.sh-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sh-accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.sh-heading-display,
.heading-display {
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  color: var(--sh-text);
}

.sh-heading-section,
.heading-section {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  line-height: 1.14;
  margin: 0 0 1rem;
}

.sh-heading-card {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.sh-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--sh-text-muted);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.sh-lead--wide {
  max-width: 42rem;
}

.sh-text-muted {
  color: var(--sh-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.sh-trust-line {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  margin-top: 1.25rem;
}

/* Hero — motion shell */
.section-hero.sh-hero-motion,
.section-hero {
  position: relative;
}

/* Hero grid */
.sh-grid-hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sh-grid-hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

/* Cockpit visual */
.sh-cockpit {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  background: var(--sh-bg-tertiary);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.sh-cockpit-panel {
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background: var(--sh-bg-secondary);
}

.sh-cockpit-label {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--sh-accent);
  margin-bottom: 0.35rem;
}

.sh-cockpit-blur {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  filter: blur(3px);
  user-select: none;
}

.sh-rule-accent {
  height: 2px;
  width: 48px;
  background: var(--sh-accent);
  border: none;
  margin: 0 0 1rem;
}

/* Problem diagram */
.sh-problem-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sh-problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sh-diagram-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.5rem;
  background: var(--sh-bg-tertiary);
}

.sh-diagram-card h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  font-family: var(--sh-font-head);
}

/* Loop */
.sh-loop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.25rem;
  align-items: center;
  margin-top: 2rem;
}

.sh-loop-step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  background: var(--sh-bg-tertiary);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--sh-text);
}

.sh-loop-step span.num {
  color: var(--sh-accent);
  font-weight: 600;
  font-family: var(--sh-font-head);
}

.sh-loop-arrow {
  color: var(--sh-text-muted);
  font-size: 0.75rem;
  display: none;
}

@media (min-width: 1200px) {
  .sh-loop-arrow {
    display: inline;
  }
}

.sh-loop-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .sh-loop-vertical {
    display: none;
  }
}

.sh-loop-horizontal {
  display: none;
}

@media (min-width: 992px) {
  .sh-loop-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2rem;
  }
}

.sh-loop-line,
.diagram-loop {
  width: 100%;
  max-width: 900px;
  margin: 1.5rem auto 0;
  display: block;
}

/* Loop line: default visible; GSAP sets dash on homepage when motion runs */
.sh-loop-line path,
.diagram-loop path {
  opacity: 0.5;
}

/* Cards grid */
.sh-grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sh-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-grid-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sh-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sh-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.5rem;
  background: var(--sh-bg-primary);
  height: 100%;
  transform-origin: center center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  transition: border-color var(--sh-duration-hover) var(--sh-ease-out),
    box-shadow var(--sh-duration-hover) var(--sh-ease-out);
}

.sh-section--alt .sh-card {
  background: var(--sh-bg-secondary);
}

.sh-card:hover {
  border-color: color-mix(in srgb, var(--sh-border) 80%, var(--sh-accent));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 107, 53, 0.08);
}

.sh-card-ui {
  height: 4rem;
  border-radius: 6px;
  background: var(--sh-bg-tertiary);
  border: 1px solid var(--sh-border);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.sh-card-ui::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 40%;
  top: 50%;
  height: 4px;
  background: var(--sh-border);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* AI architecture */
.sh-arch,
.diagram-ai-router {
  position: relative;
  padding: 2rem 0;
}

.sh-arch-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .sh-arch-ring {
    display: block;
    position: relative;
    min-height: 380px;
    max-width: 560px;
  }
}

.sh-arch-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  order: 2;
  width: 100%;
  max-width: 280px;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .sh-arch-chips {
    display: contents;
  }
}

.sh-arch-core {
  text-align: center;
  order: 1;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 1.75rem;
  border: 2px solid var(--sh-accent);
  border-radius: 16px;
  background: var(--sh-bg-tertiary);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.14), 0 18px 48px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .sh-arch-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    max-width: 22rem;
  }
}

.sh-arch-core img {
  width: 56px;
  height: auto;
  margin-bottom: 0.75rem;
}

.sh-arch-core h3 {
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.sh-arch-core p {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  margin: 0;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .sh-engine-chip.sh-arch-slot--top {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .sh-engine-chip.sh-arch-slot--right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .sh-engine-chip.sh-arch-slot--bottom {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .sh-engine-chip.sh-arch-slot--left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.sh-engine-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0.5rem;
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  background: var(--sh-bg-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--sh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .sh-engine-chip {
    width: 76px;
    height: 76px;
    min-height: 76px;
    z-index: 1;
  }
}

/* Provider mark inside router chips (dark UI: invert black artwork) */
.sh-engine-chip--brand-logo {
  padding: 0.3rem;
  box-sizing: border-box;
}

/* Small marks — similar visual weight to original uppercase text chips */
.sh-engine-chip__brand-logo {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  filter: invert(1) brightness(1.08);
}

@media (min-width: 768px) {
  .sh-engine-chip__brand-logo {
    width: 26px;
    height: 26px;
  }
}

/* Light-on-transparent provider marks — no invert (dark chips only) */
.sh-engine-chip__brand-logo--light {
  filter: none;
}

/* Router chips on small screens: fixed circular marks (avoid full-width grid stretch) */
@media (max-width: 767px) {
  .sh-arch-chips .sh-engine-chip--brand-logo {
    width: 64px;
    height: 64px;
    min-height: 64px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Inline row of provider marks (FAQ, Trust, Why) — same logo pixel size as router */
.sh-provider-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.sh-provider-logos > li {
  margin: 0;
}

.sh-engine-chip--inline-mark {
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0.3rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .sh-engine-chip--inline-mark {
    width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
  }
}

.sh-provider-logos--faq {
  margin-top: 0;
}

.sh-governance-panel {
  max-width: 36rem;
  margin: 0 auto;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.25rem 1.5rem;
  background: var(--sh-bg-secondary);
}

.sh-governance-panel h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sh-accent-tertiary);
  margin: 0 0 0.75rem;
}

.sh-governance-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

.sh-footnote {
  font-size: 0.75rem;
  color: var(--sh-text-muted);
  text-align: center;
  margin-top: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Governance rows */
.sh-gov-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sh-gov-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  background: var(--sh-bg-tertiary);
}

.sh-gov-row strong,
.sh-gov-row__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sh-text);
  margin-bottom: 0.2rem;
}

/* Run-in label at start of a note (replaces bold mid-sentence) */
.sh-run-in-label {
  font-weight: 500;
  color: var(--sh-text);
}

/* Short list lead before body text */
.sh-li-kicker {
  font-weight: 500;
  color: var(--sh-text);
}

.sh-gov-row span {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
}

/* Module grid */
.sh-module-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sh-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .sh-module-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-module-tile {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.25rem;
  background: var(--sh-bg-secondary);
  transform-origin: center center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: border-color var(--sh-duration-hover) var(--sh-ease-out),
    box-shadow var(--sh-duration-hover) var(--sh-ease-out);
}

.sh-module-tile:hover {
  border-color: color-mix(in srgb, var(--sh-border) 72%, var(--sh-accent));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.sh-module-tile h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

/* Quote / testimonial */
.sh-quote {
  border-left: 3px solid var(--sh-accent);
  padding: 0 0 0 1.25rem;
  margin: 0;
}

.sh-quote p {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  color: var(--sh-text);
}

.sh-quote cite {
  font-size: 0.875rem;
  color: var(--sh-text-muted);
  font-style: normal;
}

/* Pricing table teaser */
.sh-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}

.sh-price-table th,
.sh-price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--sh-border);
}

.sh-price-table th {
  color: var(--sh-text-muted);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CTA trio */
.sh-cta-trio,
.comp-cta-trio,
.section-cta-trio {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sh-cta-trio,
  .comp-cta-trio,
  .section-cta-trio {
    grid-template-columns: repeat(3, 1fr);
  }

  .sh-cta-trio--pair {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.sh-cta-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.5rem;
  background: var(--sh-bg-tertiary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transform-origin: center center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: border-color var(--sh-duration-hover) var(--sh-ease-out),
    box-shadow var(--sh-duration-hover) var(--sh-ease-out);
}

.sh-cta-card:hover {
  border-color: color-mix(in srgb, var(--sh-border) 70%, var(--sh-accent));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.sh-cta-card p {
  font-size: 0.875rem;
  color: var(--sh-text-muted);
  margin: 0;
  flex: 1;
}

/* Footer blueprint */
.sh-footer,
.comp-footer {
  background: var(--sh-bg-secondary);
  border-top: 1px solid var(--sh-border);
  padding: 3rem var(--sh-pad-global) 2rem;
  margin-top: auto;
}

.sh-footer-grid {
  max-width: var(--sh-container);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

/* Brand + 5 link columns on large screens; 2-col + full-width brand on tablet */
@media (min-width: 600px) and (max-width: 1023px) {
  .sh-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sh-footer-grid > .sh-footer-lead {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .sh-footer-grid {
    grid-template-columns: minmax(11rem, 1.2fr) repeat(5, minmax(0, 1fr));
  }
}

.sh-footer-brand {
  font-family: var(--sh-font-head);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--sh-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sh-footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sh-text-muted);
  margin: 0 0 1rem;
}

.sh-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-footer-col a {
  color: var(--sh-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  padding: 0.35rem 0;
}

.sh-footer-col a:hover {
  color: var(--sh-text);
}

.sh-footer-bottom {
  max-width: var(--sh-container);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sh-border);
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
}

/* Section header center */
.sh-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.sh-section-head .sh-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Not / Is strip */
.sh-not-is {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sh-not-is {
    grid-template-columns: 1fr 1fr;
  }
}

.sh-not-is-block {
  padding: 1.25rem 1.5rem;
  border-radius: var(--sh-radius-card);
  border: 1px solid var(--sh-border);
}

.sh-not-is-block--not {
  background: rgba(255, 255, 255, 0.02);
}

.sh-not-is-block--is {
  background: var(--sh-accent-soft);
  border-color: rgba(249, 115, 22, 0.25);
}

/* Forms */
.sh-form-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.75rem;
  background: var(--sh-bg-secondary);
}

.sh-form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sh-form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.sh-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  margin-bottom: 0.35rem;
}

.sh-input,
.sh-select,
.sh-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-btn);
  background: var(--sh-bg-primary);
  color: var(--sh-text);
  font-family: inherit;
  font-size: 1rem;
}

.sh-input:focus-visible,
.sh-select:focus-visible,
.sh-textarea:focus-visible {
  outline: var(--sh-focus-ring);
  outline-offset: var(--sh-focus-offset);
  border-color: var(--sh-accent);
}

.sh-textarea {
  min-height: 120px;
  resize: vertical;
}

.sh-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sh-radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
}

/* Pricing cards */
.sh-pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .sh-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sh-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sh-price-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.5rem;
  background: var(--sh-bg-tertiary);
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-origin: center center;
  transition: border-color var(--sh-duration-hover) var(--sh-ease-out),
    box-shadow var(--sh-duration-hover) var(--sh-ease-out);
}

.sh-price-card:hover {
  border-color: color-mix(in srgb, var(--sh-border) 55%, var(--sh-accent));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 107, 53, 0.12);
}

.sh-price-card--featured {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.14);
}

.sh-price-card h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.sh-price-amount {
  font-family: var(--sh-font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sh-text);
  margin: 0 0 0.25rem;
}

.sh-price-amount__period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--sh-text-muted);
}

.sh-price-counter {
  font-weight: inherit;
}

.sh-price-impl {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  margin: 0 0 1rem;
}

.sh-price-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
  flex: 1;
}

.sh-price-card li {
  margin-bottom: 0.35rem;
}

.sh-price-best-for {
  font-size: 0.8125rem;
  color: var(--sh-text);
  line-height: 1.45;
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--sh-bg-secondary);
  border-radius: 8px;
  border-left: 3px solid var(--sh-accent);
}

.sh-price-best-for strong {
  color: var(--sh-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.35rem;
}

.sh-price-outcome {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  margin: -0.35rem 0 0.85rem;
  line-height: 1.5;
}

/* Product proof — sample artifacts (homepage / product) */
.sh-proof-practice .sh-section-head {
  margin-bottom: 2rem;
}

.sh-proof-sample-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sh-proof-sample-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sh-proof-sample {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  background: var(--sh-bg-tertiary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transform-origin: center center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transition: border-color var(--sh-duration-hover) var(--sh-ease-out),
    box-shadow var(--sh-duration-hover) var(--sh-ease-out);
}

.sh-proof-sample:hover {
  border-color: color-mix(in srgb, var(--sh-border) 75%, var(--sh-accent));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 107, 53, 0.08);
}

.sh-proof-sample__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--sh-border);
  background: var(--sh-bg-secondary);
}

.sh-proof-sample__label {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--sh-accent);
  text-transform: uppercase;
}

.sh-proof-sample__title {
  font-family: var(--sh-font-head);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
  color: var(--sh-text);
}

.sh-proof-sample__body {
  padding: 1rem 1rem 1.1rem;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--sh-text-muted);
  white-space: pre-wrap;
  flex: 1;
}

.sh-proof-sample__note {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--sh-text-muted);
  border-top: 1px solid var(--sh-border);
  background: color-mix(in srgb, var(--sh-bg-primary) 65%, var(--sh-bg-tertiary));
}

.sh-proof-sample__note strong {
  color: var(--sh-accent-tertiary);
  font-weight: 600;
}

/* Product page — sample outputs + intelligence router bento */
.sh-proof-bento-section__head {
  margin-bottom: 2rem;
}

.sh-proof-bento-section__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.sh-proof-bento {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.sh-proof-bento__router-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  background: var(--sh-bg-secondary);
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.08), 0 20px 50px rgba(0, 0, 0, 0.18);
  height: 100%;
}

.sh-proof-bento__kicker {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-accent);
  margin: 0 0 0.5rem;
}

.sh-proof-bento__dek {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--sh-text-muted);
  margin: 0 0 1rem;
}

.sh-proof-bento__arch {
  padding: 1rem 0 0.5rem;
}

.sh-proof-bento__arch .sh-arch-ring {
  margin-bottom: 1.25rem;
}

.sh-proof-bento__arch .sh-footnote {
  margin-top: 1rem;
}

.sh-proof-bento__arch-cta {
  margin-top: 0.5rem !important;
}

.sh-proof-bento__samples {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .sh-proof-bento__samples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .sh-proof-bento {
    grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.15fr);
    gap: 1.5rem;
  }

  .sh-proof-bento__router-cell {
    position: sticky;
    top: 5rem;
  }

  .sh-proof-bento__samples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .sh-proof-bento__router-cell {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.sh-hero-cta-support {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
}

.sh-link-support {
  color: var(--sh-text-muted);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--sh-text-muted) 45%, transparent);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sh-link-support:hover {
  color: var(--sh-accent-tertiary);
  border-bottom-color: var(--sh-accent);
}

.sh-onboarding-steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sh-onboarding-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-onboarding-step {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.25rem;
  background: var(--sh-bg-tertiary);
}

.sh-onboarding-step h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

/* FAQ accordion (native details) */
.sh-faq details {
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  background: var(--sh-bg-secondary);
}

.sh-faq summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.sh-faq summary::-webkit-details-marker {
  display: none;
}

.sh-faq details[open] summary {
  border-bottom: 1px solid var(--sh-border);
}

.sh-faq .sh-faq-body {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--sh-text-muted);
}

/* Market pack cards — CMS-ready */
.sh-pack-card {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.5rem;
  background: var(--sh-bg-tertiary);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sh-pack-tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sh-accent);
  margin-bottom: 0.5rem;
}

/* —— Market landing pages (Phase 3.0 hub + per-market LPs) —— */
body.sh-market-page .sh-main {
  scroll-behavior: smooth;
}

.sh-mkt-hero .sh-btn-group {
  flex-wrap: wrap;
}

.sh-mkt-maturity {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.sh-mkt-maturity__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sh-text-muted);
  margin-right: 0.35rem;
}

.sh-mkt-maturity__pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-tertiary);
  color: var(--sh-text);
}

.sh-mkt-maturity__pill--primary {
  border-color: rgba(249, 115, 22, 0.45);
  background: var(--sh-accent-soft);
  color: var(--sh-accent-tertiary);
}

.sh-mkt-maturity__pill--demo {
  border-color: color-mix(in srgb, var(--sh-border) 70%, var(--sh-accent));
}

.sh-mkt-maturity__pill--pattern {
  border-style: dashed;
  color: var(--sh-text-muted);
}

.sh-mkt-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1rem 0 0;
  margin: 0;
  list-style: none;
  font-size: 0.875rem;
}

.sh-mkt-toc a {
  color: var(--sh-text-muted);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--sh-text-muted) 35%, transparent);
}

.sh-mkt-toc a:hover {
  color: var(--sh-accent-tertiary);
  border-bottom-color: var(--sh-accent);
}

.sh-mkt-section {
  scroll-margin-top: calc(4.5rem + env(safe-area-inset-top, 0px));
}

.sh-mkt-split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sh-mkt-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.sh-mkt-split h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  font-family: var(--sh-font-head);
  color: var(--sh-text);
}

.sh-mkt-signals {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--sh-text-muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.sh-mkt-signals li {
  margin-bottom: 0.4rem;
}

.sh-mkt-loop {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.25rem 1.5rem;
  background: var(--sh-bg-tertiary);
  font-size: 0.875rem;
  color: var(--sh-text-muted);
  line-height: 1.65;
}

.sh-mkt-loop__sequence {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sh-text);
  letter-spacing: 0.01em;
}

.sh-mkt-buyer {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.25rem 1.5rem;
  background: var(--sh-bg-secondary);
}

.sh-mkt-buyer h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.sh-mkt-crosslinks {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  padding: 1.25rem 1.5rem;
  background: var(--sh-bg-tertiary);
  max-width: 40rem;
}

.sh-mkt-crosslinks h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-family: var(--sh-font-head);
}

.sh-mkt-crosslinks ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--sh-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.sh-mkt-crosslinks a {
  color: var(--sh-accent-tertiary);
  text-decoration: none;
}

.sh-mkt-crosslinks a:hover {
  color: var(--sh-accent);
  text-decoration: underline;
}

.sh-mkt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.sh-mkt-back {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.sh-mkt-back a {
  color: var(--sh-text-muted);
  text-decoration: none;
}

.sh-mkt-back a:hover {
  color: var(--sh-accent-tertiary);
}

/* Resource list */
.sh-resource-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--sh-border);
  text-decoration: none;
  color: inherit;
  align-items: baseline;
}

.sh-resource-row:hover h3 {
  color: var(--sh-accent);
}

.sh-resource-row h3 {
  font-size: 1.0625rem;
  margin: 0;
  transition: color 0.2s ease;
}

.sh-resource-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.sh-resource-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.sh-resource-kind {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
  border: 1px solid var(--sh-border);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

.sh-resource-kind--cornerstone {
  color: var(--sh-accent-tertiary);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Resources hub */
.sh-resources-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.sh-resources-jump a {
  display: inline-block;
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--sh-border);
  border-radius: 4px;
  color: var(--sh-text-muted);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.sh-resources-jump a:hover {
  color: var(--sh-accent-tertiary);
  border-color: rgba(255, 255, 255, 0.18);
}

.sh-resources-pillar {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sh-border);
}

.sh-resources-pillar:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.sh-resources-pillar__lead {
  font-size: 0.9375rem;
  color: var(--sh-text-muted);
  max-width: 40rem;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.6;
}

.sh-resources-system-note {
  font-size: 0.875rem;
  color: var(--sh-text-muted);
  max-width: 42rem;
  margin: 0;
  line-height: 1.65;
}

.sh-resources-hero {
  border-bottom: 1px solid var(--sh-border);
  padding-bottom: 2.5rem;
}

.sh-resources-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.sh-resources-hero__meta {
  font-size: 0.8125rem;
  color: var(--sh-text-muted);
  margin-top: 1rem;
  max-width: 36rem;
  line-height: 1.6;
}

.sh-resources-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
  margin: 0 0 0.75rem;
}

/* Featured cornerstone */
.sh-resources-featured {
  display: grid;
  gap: 1.75rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

@media (min-width: 900px) {
  .sh-resources-featured {
    padding: 2rem 2rem 2rem 1.75rem;
    gap: 2rem;
    align-items: start;
  }
}

.sh-resources-featured__title {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  line-height: 1.2;
}

.sh-resources-featured__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sh-resources-featured__title a:hover {
  color: var(--sh-accent);
}

.sh-resources-featured__deck {
  font-size: 1rem;
  color: var(--sh-text-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 38rem;
}

.sh-resources-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.sh-resources-featured__side {
  padding: 1rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--sh-border);
  background: rgba(0, 0, 0, 0.2);
}

.sh-resources-featured__side-h {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
  margin: 0 0 0.65rem;
}

.sh-resources-featured__side ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.75;
}

.sh-resources-featured__side a {
  color: var(--sh-accent);
  text-decoration: none;
}

.sh-resources-featured__side a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sh-resources-library-h {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.sh-resources-library-intro {
  font-size: 0.9375rem;
  color: var(--sh-text-muted);
  max-width: 40rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* Commercial pathways */
.sh-resources-commercial {
  display: grid;
  gap: 0.35rem 2rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .sh-resources-commercial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sh-resources-commercial a {
  display: block;
  text-decoration: none;
  padding: 0.5rem 0;
}

.sh-resources-commercial a:hover .sh-resources-commercial__label {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sh-resources-commercial__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sh-accent);
}

.sh-resources-commercial__hint {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--sh-text-muted);
  margin-top: 0.2rem;
  line-height: 1.45;
}

.sh-resources-cta-band {
  text-align: center;
}

.sh-resources-cta-band__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.sh-resources-cta-band__secondary {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

.sh-resources-cta-band__secondary a {
  color: var(--sh-accent);
  text-decoration: none;
}

.sh-resources-cta-band__secondary a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Article “related” strip — outbound + sales enablement */
.sh-resources-related {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--sh-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.sh-resources-related h2 {
  font-size: 0.9375rem;
  margin: 0 0 0.75rem;
}

.sh-resources-related ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--sh-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.sh-resources-related a {
  color: var(--sh-accent);
}

/* Cornerstone resource articles (longform) */
.sh-resource-article .sh-container-reading > h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.sh-resource-article .sh-article-tldr {
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 0.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.sh-resource-article .sh-article-tldr__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
}

.sh-resource-article .sh-article-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--sh-text-muted);
  line-height: 1.72;
}

.sh-resource-article .sh-article-list li + li {
  margin-top: 0.35rem;
}

/* Product — SaaS-style screenshot cards */
.sh-app-preview {
  text-align: center;
}

.sh-app-preview__lead {
  max-width: 38rem;
  margin: -0.25rem auto 1.75rem;
  line-height: 1.65;
}

.sh-app-preview__card-wrap {
  max-width: min(100%, 920px);
  margin: 0 auto;
}

/* Rep coaching — score strip (mirrors dashboard scores; motion in GSAP) */
.sh-rep-score-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.75rem auto 0;
  max-width: 36rem;
}

.sh-rep-score-chip {
  flex: 1 1 5.5rem;
  min-width: 5.25rem;
  max-width: 8rem;
  padding: 0.65rem 0.85rem 0.55rem;
  border-radius: 12px;
  background: linear-gradient(165deg, var(--sh-bg-secondary) 0%, #121214 100%);
  border: 1px solid color-mix(in srgb, var(--sh-border) 85%, rgba(168, 85, 247, 0.35));
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.06), 0 12px 32px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.sh-rep-score-chip__val {
  display: block;
  font-family: var(--sh-font-head);
  font-size: clamp(1.35rem, 3.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--sh-accent);
  font-variant-numeric: tabular-nums;
}

.sh-rep-score-chip__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
}

.sh-showcase-card {
  position: relative;
  text-align: left;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--sh-bg-secondary) 0%, var(--sh-bg-tertiary) 100%);
  border: 1px solid color-mix(in srgb, var(--sh-border) 78%, var(--sh-accent));
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.07), 0 22px 56px rgba(0, 0, 0, 0.42), 0 6px 20px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transform-origin: 50% 58%;
}

.sh-showcase-card__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: color-mix(in srgb, var(--sh-bg-primary) 55%, var(--sh-bg-secondary));
  border-bottom: 1px solid var(--sh-border);
}

.sh-showcase-card__traffic {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.sh-showcase-card__traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d3d42;
}

.sh-showcase-card__traffic span:nth-child(1) {
  background: #ff5f57;
}

.sh-showcase-card__traffic span:nth-child(2) {
  background: #febc2e;
}

.sh-showcase-card__traffic span:nth-child(3) {
  background: #28c840;
}

.sh-showcase-card__title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family: var(--sh-font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sh-text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sh-showcase-card__pill {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--sh-accent-soft);
  color: var(--sh-accent-tertiary);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.sh-showcase-card__viewport {
  margin: 0;
  padding: clamp(0.35rem, 1.2vw, 0.55rem);
  background: #080809;
  overflow: hidden;
}

.sh-showcase-card__viewport img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* Legacy frame (if reused elsewhere) */
.sh-app-preview__frame {
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  background: var(--sh-bg-tertiary);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-card);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform-origin: 50% 55%;
}

.sh-app-preview__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--sh-radius-card) - 4px);
}

@media (prefers-reduced-motion: reduce) {
  .sh-card,
  .sh-module-tile,
  .sh-cta-card,
  .sh-price-card,
  .sh-showcase-card,
  .sh-rep-score-chip {
    transition: transform 0.22s var(--sh-ease-out), border-color var(--sh-duration-hover) var(--sh-ease-out),
      box-shadow var(--sh-duration-hover) var(--sh-ease-out);
  }

  .sh-card:hover,
  .sh-module-tile:hover,
  .sh-cta-card:hover,
  .sh-price-card:hover,
  .sh-showcase-card:hover,
  .sh-rep-score-chip:hover {
    transform: translateY(-4px);
  }
}

/* Utility */
.sh-text-center {
  text-align: center;
}

.sh-max-720 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.sh-mt-0 {
  margin-top: 0;
}

.sh-mb-0 {
  margin-bottom: 0;
}

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

/* Hide old mega nav when using blueprint pages */
body.sh-blueprint .div-block > .nav_container:not(.sh-nav-old) {
  /* replaced by sh-nav-wrap */
}

/* Optional legacy hook — scroll reveals are handled in shiberius-motion.js */
.sh-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Company name → About page (footer tagline) */
a.sh-footer-entity {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 0.15em;
  transition: color var(--sh-duration-hover) var(--sh-ease-out), text-decoration-color var(--sh-duration-hover) var(--sh-ease-out);
}
a.sh-footer-entity:hover {
  color: var(--sh-accent);
  text-decoration-color: var(--sh-accent);
}

.sh-eyebrow a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  text-underline-offset: 0.2em;
  transition: color var(--sh-duration-hover) var(--sh-ease-out), text-decoration-color var(--sh-duration-hover) var(--sh-ease-out);
}
.sh-eyebrow a:hover {
  color: var(--sh-accent);
  text-decoration-color: var(--sh-accent);
}

/* Skip link — keyboard / AT first stop before repeated nav */
.sh-skip-link {
  position: absolute;
  left: var(--sh-space-md);
  top: var(--sh-space-md);
  z-index: 9999;
  padding: var(--sh-space-sm) var(--sh-space-md);
  border-radius: 6px;
  background: var(--sh-accent);
  color: var(--sh-on-accent);
  font: 600 0.875rem/1.25 var(--sh-font-body);
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform var(--sh-duration-hover) var(--sh-ease-out);
}
.sh-skip-link:focus {
  transform: translateY(0);
  outline: var(--sh-focus-ring);
  outline-offset: var(--sh-focus-offset);
}
