@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@700;800&family=Outfit:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --hn-900: #0d1821;
  --hn-800: #142230;
  --hn-700: #1c3045;
  --parch-100: #f5f1ea;
  --parch-50: #faf8f4;
  --cream: #ede8df;
  --teal-700: #1d6a5c;
  --teal-600: #25856f;
  --teal-300: #5ab5a0;
  --parch-text: #e8e3da;
  --slate-muted: #8fa5b0;
  --ink-900: #1a2232;
  --ink-700: #344858;
  --ink-500: #4a5a6a;
  --flag-amber: #c8a96e;
  --flag-red: #a63b3b;
  --container-max: 1180px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --grid-gap: 2rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(13,24,33,0.12);
  --shadow-nav: 0 1px 24px rgba(13,24,33,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  background: var(--parch-50);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3, h4, h5 { font-family: 'Newsreader', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: 'Outfit', system-ui, sans-serif; }
p { max-width: 68ch; }

.shc-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Outfit', system-ui, sans-serif;
}

.shc-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.shc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.shc-btn--primary {
  background: var(--teal-700);
  color: #fff;
  border: 2px solid var(--teal-700);
}
.shc-btn--primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.shc-btn--primary-light {
  background: var(--teal-300);
  color: var(--hn-900);
  border: 2px solid var(--teal-300);
}
.shc-btn--primary-light:hover {
  background: #4da396;
  border-color: #4da396;
}

.shc-btn--ghost-dark {
  background: transparent;
  color: var(--ink-900);
  border: 2px solid var(--ink-700);
}
.shc-btn--ghost-dark:hover {
  background: var(--ink-900);
  color: var(--parch-50);
  border-color: var(--ink-900);
}

.shc-btn--ghost-light {
  background: transparent;
  color: var(--parch-text);
  border: 2px solid rgba(232,227,218,0.5);
}
.shc-btn--ghost-light:hover {
  background: rgba(232,227,218,0.12);
  border-color: var(--parch-text);
}

.shc-btn--outline-teal {
  background: transparent;
  color: var(--teal-300);
  border: 2px solid var(--teal-300);
}
.shc-btn--outline-teal:hover {
  background: rgba(90,181,160,0.1);
}

.shc-btn--lg {
  padding: 0.9375rem 2rem;
  font-size: 1rem;
}
.shc-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================================
   NAV
   ============================================================ */

.shc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.22s, box-shadow 0.22s;
}

.shc-page--dark-top .shc-nav {
  background: transparent;
}
.shc-page--dark-top .shc-nav--scrolled {
  background: var(--hn-800);
  box-shadow: var(--shadow-nav);
}

.shc-page--light-top .shc-nav {
  background: var(--hn-800);
  box-shadow: var(--shadow-nav);
}
.shc-page--light-top .shc-nav--scrolled {
  background: var(--hn-800);
  box-shadow: var(--shadow-nav);
}

.shc-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.shc-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.shc-nav__logo img,
.shc-nav__logo svg {
  height: 32px;
  width: auto;
}

.shc-nav__logo-light { display: block; }
.shc-nav__logo-dark { display: none; }

.shc-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.shc-nav__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--parch-text);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.shc-nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.shc-nav__link--active {
  color: var(--teal-300);
}

.shc-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.shc-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.shc-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parch-text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s, background 0.15s;
}
.shc-nav--open .shc-nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.shc-nav--open .shc-nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.shc-nav--open .shc-nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.shc-nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--hn-800);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.5rem;
}
.shc-nav--open .shc-nav__mobile {
  display: flex;
}
.shc-nav__mobile-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--parch-text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shc-nav__mobile-link:hover { color: #fff; }
.shc-nav__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .shc-nav__links,
  .shc-nav__cta { display: none; }
  .shc-nav__hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */

.shc-hero {
  background: var(--hn-900);
  padding-top: calc(68px + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(29,106,92,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.shc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shc-hero__eyebrow {
  color: var(--teal-300);
  margin-bottom: 1.25rem;
}

.shc-hero__h1 {
  color: #fff;
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.shc-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--parch-text);
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.shc-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.shc-hero__note {
  font-size: 0.8125rem;
  color: var(--slate-muted);
  margin-top: 1rem;
}

/* Inline mock contract review panel */
.shc-inline-mock {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  background: var(--hn-800);
  border: 1px solid rgba(90,181,160,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}

.shc-inline-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: var(--hn-700);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.shc-inline-mock__dots {
  display: flex;
  gap: 6px;
}
.shc-inline-mock__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.shc-inline-mock__dot--red { background: #c0392b; }
.shc-inline-mock__dot--yellow { background: #d4a017; }
.shc-inline-mock__dot--green { background: #27ae60; }

.shc-inline-mock__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-muted);
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shc-inline-mock__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #7ecfbe;
  background: rgba(90,181,160,0.12);
  border: 1px solid rgba(90,181,160,0.25);
  border-radius: 100px;
  padding: 0.2em 0.65em;
  font-family: 'Outfit', system-ui, sans-serif;
}

.shc-inline-mock__body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shc-mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}
.shc-mock-row--amber { border-left: 3px solid var(--flag-amber); }
.shc-mock-row--red { border-left: 3px solid var(--flag-red); }
.shc-mock-row--teal { border-left: 3px solid var(--teal-300); }

.shc-mock-row__clause {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--parch-text);
  line-height: 1.5;
}
.shc-mock-row__clause em {
  font-style: normal;
  color: var(--flag-amber);
}
.shc-mock-row__clause .shc-mock-row__highlight-red { color: #e07070; }
.shc-mock-row__clause .shc-mock-row__highlight-teal { color: var(--teal-300); }

.shc-mock-row__flag {
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: 'Outfit', system-ui, sans-serif;
  white-space: nowrap;
  padding: 0.2em 0.6em;
  border-radius: 100px;
}
.shc-mock-row__flag--amber {
  color: var(--flag-amber);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
}
.shc-mock-row__flag--red {
  color: #e88080;
  background: rgba(166,59,59,0.15);
  border: 1px solid rgba(166,59,59,0.3);
}
.shc-mock-row__flag--ok {
  color: var(--teal-300);
  background: rgba(90,181,160,0.12);
  border: 1px solid rgba(90,181,160,0.25);
}

.shc-inline-mock__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,24,33,0.3);
}
.shc-inline-mock__stat {
  font-size: 0.75rem;
  color: var(--slate-muted);
  font-family: 'Outfit', system-ui, sans-serif;
}
.shc-inline-mock__stat strong {
  color: var(--parch-text);
  font-weight: 600;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.shc-trust-bar {
  background: var(--hn-800);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.shc-trust-bar__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.shc-trust-bar__label {
  color: var(--slate-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

.shc-trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.shc-trust-bar__client {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(232,227,218,0.4);
  letter-spacing: 0.04em;
  font-family: 'Outfit', system-ui, sans-serif;
  white-space: nowrap;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.shc-how-it-works {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}

.shc-how-it-works__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-how-it-works__header .shc-eyebrow {
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.shc-how-it-works__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-how-it-works__header p { color: var(--ink-700); margin-inline: auto; }

.shc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  counter-reset: step;
}

.shc-step {
  position: relative;
  padding: 2rem;
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.shc-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-700);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.shc-step__icon {
  width: 48px;
  height: 48px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.shc-step h4 { color: var(--ink-900); margin-bottom: 0.5rem; }
.shc-step p { color: var(--ink-700); font-size: 0.9375rem; max-width: none; }

@media (max-width: 768px) {
  .shc-steps { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .shc-steps { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CAPABILITIES
   ============================================================ */

.shc-capabilities {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}

.shc-capabilities__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-capabilities__header .shc-eyebrow {
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.shc-capabilities__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-capabilities__header p { color: var(--ink-700); margin-inline: auto; }

.shc-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.shc-cap-card {
  padding: 2rem;
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s;
}
.shc-cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,24,33,0.14);
}

.shc-cap-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.shc-cap-card h4 { color: var(--ink-900); margin-bottom: 0.5rem; }
.shc-cap-card p { color: var(--ink-700); font-size: 0.9375rem; max-width: none; }

@media (max-width: 768px) {
  .shc-cap-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .shc-cap-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */

.shc-testimonial {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.shc-testimonial__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.shc-testimonial__quote {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.45;
  margin-bottom: 2rem;
  max-width: none;
}
.shc-testimonial__quote::before { content: '\201C'; color: var(--teal-700); }
.shc-testimonial__quote::after { content: '\201D'; color: var(--teal-700); }

.shc-testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.shc-testimonial__name {
  font-weight: 600;
  color: var(--ink-900);
  font-size: 0.9375rem;
}
.shc-testimonial__role {
  font-size: 0.875rem;
  color: var(--ink-500);
}

/* ============================================================
   SECURITY PREVIEW
   ============================================================ */

.shc-security-preview {
  background: var(--hn-900);
  padding: var(--section-pad) 0;
}

.shc-security-preview__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-security-preview__header .shc-eyebrow {
  color: var(--teal-300);
  margin-bottom: 0.75rem;
}
.shc-security-preview__header h2 { color: #fff; margin-bottom: 1rem; }
.shc-security-preview__header p { color: var(--parch-text); margin-inline: auto; }

.shc-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.shc-security-card {
  padding: 2rem;
  background: var(--hn-800);
  border: 1px solid rgba(90,181,160,0.12);
  border-radius: var(--radius-lg);
}

.shc-security-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(90,181,160,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.shc-security-card h4 { color: #fff; margin-bottom: 0.5rem; }
.shc-security-card p { color: var(--parch-text); font-size: 0.9375rem; max-width: none; }

.shc-security-preview__cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .shc-security-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING PREVIEW
   ============================================================ */

.shc-pricing-preview {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}

.shc-pricing-preview__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-pricing-preview__header .shc-eyebrow {
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.shc-pricing-preview__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-pricing-preview__header p { color: var(--ink-700); margin-inline: auto; }

.shc-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}

.shc-price-card {
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.shc-price-card--highlight {
  background: var(--hn-800);
  border-color: var(--teal-700);
  box-shadow: 0 4px 32px rgba(29,106,92,0.25);
}

.shc-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-700);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  white-space: nowrap;
}

.shc-price-card__tier {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Outfit', system-ui, sans-serif;
  margin-bottom: 0.75rem;
}
.shc-price-card--highlight .shc-price-card__tier { color: var(--teal-300); }

.shc-price-card__price {
  margin-bottom: 1.5rem;
}
.shc-price-card__amount {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
}
.shc-price-card--highlight .shc-price-card__amount { color: #fff; }
.shc-price-card__period {
  font-size: 0.875rem;
  color: var(--ink-500);
  font-weight: 400;
}
.shc-price-card--highlight .shc-price-card__period { color: var(--slate-muted); }

.shc-price-card__desc {
  font-size: 0.875rem;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
  max-width: none;
}
.shc-price-card--highlight .shc-price-card__desc { color: var(--parch-text); }

.shc-price-card__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.shc-price-card__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--ink-700);
}
.shc-price-card--highlight .shc-price-card__features li { color: var(--parch-text); }
.shc-price-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231d6a5c' d='M6.5 11.3 2.5 7.3l1.1-1.1 2.9 2.9 5.9-5.9 1.1 1.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.shc-price-card--highlight .shc-price-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235ab5a0' d='M6.5 11.3 2.5 7.3l1.1-1.1 2.9 2.9 5.9-5.9 1.1 1.1z'/%3E%3C/svg%3E");
}

.shc-pricing-preview__cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

@media (max-width: 900px) {
  .shc-pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.shc-final-cta {
  background: var(--hn-900);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shc-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(29,106,92,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.shc-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.shc-final-cta .shc-eyebrow {
  color: var(--teal-300);
  margin-bottom: 1rem;
}
.shc-final-cta h2 { color: #fff; margin-bottom: 1.25rem; }
.shc-final-cta p { color: var(--parch-text); margin-inline: auto; margin-bottom: 2.5rem; }
.shc-final-cta__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.shc-footer {
  background: var(--hn-700);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  color: var(--parch-text);
}

.shc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.shc-footer__brand .shc-footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.shc-footer__brand .shc-footer__logo img,
.shc-footer__brand .shc-footer__logo svg {
  height: 28px;
  width: auto;
}

.shc-footer__tagline {
  font-size: 0.9rem;
  color: var(--parch-text);
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.shc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.shc-footer__contact a {
  font-size: 0.875rem;
  color: var(--slate-muted);
  transition: color 0.15s;
}
.shc-footer__contact a:hover { color: var(--parch-text); }
.shc-footer__contact p {
  font-size: 0.875rem;
  color: var(--slate-muted);
  max-width: none;
}

.shc-footer__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-muted);
  font-family: 'Outfit', system-ui, sans-serif;
  margin-bottom: 1rem;
}
.shc-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shc-footer__col ul li a {
  font-size: 0.9rem;
  color: var(--parch-text);
  transition: color 0.15s;
}
.shc-footer__col ul li a:hover { color: var(--teal-300); }

.shc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.shc-footer__copyright {
  font-size: 0.8125rem;
  color: var(--slate-muted);
}
.shc-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.shc-footer__legal-links a {
  font-size: 0.8125rem;
  color: var(--slate-muted);
  transition: color 0.15s;
}
.shc-footer__legal-links a:hover { color: var(--parch-text); }

@media (max-width: 768px) {
  .shc-footer__grid { grid-template-columns: 1fr; }
  .shc-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */

.shc-page-hero {
  background: var(--hn-900);
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.shc-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(29,106,92,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.shc-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.shc-page-hero__text .shc-eyebrow {
  color: var(--teal-300);
  margin-bottom: 1rem;
}
.shc-page-hero__text h1 { color: #fff; margin-bottom: 1.25rem; }
.shc-page-hero__text p {
  color: var(--parch-text);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 2rem;
  max-width: none;
}
.shc-page-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.shc-page-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shc-page-hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .shc-page-hero__inner {
    grid-template-columns: 1fr;
  }
  .shc-page-hero__visual { display: none; }
}

/* Sub-page hero centered variant */
.shc-page-hero--centered .shc-page-hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.shc-page-hero--centered .shc-page-hero__text p { margin-inline: auto; }
.shc-page-hero--centered .shc-page-hero__ctas { justify-content: center; }

/* Sub-page with light bg */
.shc-page-hero--light {
  background: var(--parch-50);
}
.shc-page-hero--light::before { display: none; }
.shc-page-hero--light .shc-page-hero__text .shc-eyebrow { color: var(--teal-700); }
.shc-page-hero--light .shc-page-hero__text h1 { color: var(--ink-900); }
.shc-page-hero--light .shc-page-hero__text p { color: var(--ink-700); }

/* ============================================================
   PLATFORM PAGE
   ============================================================ */

.shc-plat-intro {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}

.shc-plat-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.shc-plat-intro__text .shc-eyebrow {
  color: var(--teal-700);
  margin-bottom: 1rem;
}
.shc-plat-intro__text h2 { color: var(--ink-900); margin-bottom: 1.25rem; }
.shc-plat-intro__text p { color: var(--ink-700); margin-bottom: 1.5rem; max-width: none; }

.shc-plat-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,24,33,0.15);
}
.shc-plat-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .shc-plat-intro__grid { grid-template-columns: 1fr; }
}

.shc-plat-features {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}

.shc-plat-features__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-plat-features__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-plat-features__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-plat-features__header p { color: var(--ink-700); margin-inline: auto; }

.shc-plat-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.shc-plat-feature-item {
  padding: 2rem;
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
}
.shc-plat-feature-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.shc-plat-feature-item h4 { color: var(--ink-900); margin-bottom: 0.5rem; }
.shc-plat-feature-item p { color: var(--ink-700); font-size: 0.9rem; max-width: none; }

@media (max-width: 768px) {
  .shc-plat-features-grid { grid-template-columns: 1fr; }
}

.shc-plat-workflow {
  background: var(--hn-900);
  padding: var(--section-pad) 0;
}

.shc-plat-workflow__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-plat-workflow__header .shc-eyebrow { color: var(--teal-300); margin-bottom: 0.75rem; }
.shc-plat-workflow__header h2 { color: #fff; margin-bottom: 1rem; }
.shc-plat-workflow__header p { color: var(--parch-text); margin-inline: auto; }

.shc-plat-workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.shc-workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  background: var(--hn-800);
  border: 1px solid rgba(90,181,160,0.12);
  border-radius: var(--radius-lg);
}
.shc-workflow-step__num {
  width: 40px;
  height: 40px;
  background: rgba(90,181,160,0.12);
  border: 1px solid rgba(90,181,160,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-300);
  flex-shrink: 0;
}
.shc-workflow-step h4 { color: #fff; margin-bottom: 0.4rem; }
.shc-workflow-step p { color: var(--parch-text); font-size: 0.9rem; max-width: none; }

@media (max-width: 600px) {
  .shc-workflow-step { grid-template-columns: 1fr; }
  .shc-workflow-step__num { width: 36px; height: 36px; }
}

/* Platform integrations section */
.shc-plat-integrations {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-plat-integrations__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-plat-integrations__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-plat-integrations__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-plat-integrations__header p { color: var(--ink-700); margin-inline: auto; }

.shc-integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.shc-integration-chip {
  padding: 1.25rem;
  background: var(--parch-100);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.shc-integration-chip__icon {
  width: 40px;
  height: 40px;
  background: rgba(29,106,92,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.125rem;
}
.shc-integration-chip span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
}

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

/* ============================================================
   SECURITY PAGE
   ============================================================ */

.shc-sec-overview {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-sec-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.shc-sec-overview__text .shc-eyebrow { color: var(--teal-700); margin-bottom: 1rem; }
.shc-sec-overview__text h2 { color: var(--ink-900); margin-bottom: 1.25rem; }
.shc-sec-overview__text p { color: var(--ink-700); max-width: none; margin-bottom: 1rem; }

.shc-sec-overview__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,24,33,0.15);
}
.shc-sec-overview__img img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .shc-sec-overview__grid { grid-template-columns: 1fr; }
}

.shc-sec-controls {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}
.shc-sec-controls__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-sec-controls__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-sec-controls__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-sec-controls__header p { color: var(--ink-700); margin-inline: auto; }

.shc-sec-controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.shc-sec-control-card {
  padding: 2rem;
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
}
.shc-sec-control-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.shc-sec-control-card h4 { color: var(--ink-900); margin-bottom: 0.5rem; }
.shc-sec-control-card p { color: var(--ink-700); font-size: 0.9rem; max-width: none; }

@media (max-width: 768px) {
  .shc-sec-controls-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .shc-sec-controls-grid { grid-template-columns: 1fr 1fr; }
}

.shc-sec-compliance {
  background: var(--hn-900);
  padding: var(--section-pad) 0;
}
.shc-sec-compliance__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-sec-compliance__header .shc-eyebrow { color: var(--teal-300); margin-bottom: 0.75rem; }
.shc-sec-compliance__header h2 { color: #fff; margin-bottom: 1rem; }
.shc-sec-compliance__header p { color: var(--parch-text); margin-inline: auto; }

.shc-sec-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.shc-sec-compliance-item {
  padding: 1.75rem 2rem;
  background: var(--hn-800);
  border: 1px solid rgba(90,181,160,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.shc-sec-compliance-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(90,181,160,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  font-size: 1.125rem;
}
.shc-sec-compliance-item h4 { color: #fff; margin-bottom: 0.35rem; }
.shc-sec-compliance-item p { color: var(--parch-text); font-size: 0.9rem; max-width: none; }

@media (max-width: 768px) {
  .shc-sec-compliance-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

.shc-price-section {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}

.shc-price-section__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-price-section__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-price-section__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-price-section__header p { color: var(--ink-700); margin-inline: auto; }

.shc-price-full-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}

.shc-price-full-card {
  background: var(--parch-100);
  border: 1px solid rgba(26,34,50,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}
.shc-price-full-card--highlight {
  background: var(--hn-800);
  border-color: var(--teal-700);
  box-shadow: 0 4px 32px rgba(29,106,92,0.28);
}

.shc-price-full-card__top-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-700);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 100px;
  white-space: nowrap;
}

.shc-price-full-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Outfit', system-ui, sans-serif;
  margin-bottom: 0.5rem;
}
.shc-price-full-card--highlight .shc-price-full-card__name { color: var(--teal-300); }

.shc-price-full-card__price-block {
  margin-bottom: 0.5rem;
}
.shc-price-full-card__price-amount {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
}
.shc-price-full-card--highlight .shc-price-full-card__price-amount { color: #fff; }
.shc-price-full-card__price-period {
  font-size: 0.875rem;
  color: var(--ink-500);
}
.shc-price-full-card--highlight .shc-price-full-card__price-period { color: var(--slate-muted); }

.shc-price-full-card__tagline {
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-bottom: 1.75rem;
  max-width: none;
  min-height: 2.5rem;
}
.shc-price-full-card--highlight .shc-price-full-card__tagline { color: var(--parch-text); }

.shc-price-full-card__divider {
  height: 1px;
  background: rgba(26,34,50,0.1);
  margin-bottom: 1.5rem;
}
.shc-price-full-card--highlight .shc-price-full-card__divider { background: rgba(255,255,255,0.1); }

.shc-price-full-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.shc-price-full-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.45;
}
.shc-price-full-card--highlight .shc-price-full-card__features li { color: var(--parch-text); }
.shc-price-full-card__features li i {
  color: var(--teal-700);
  font-size: 0.875rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.shc-price-full-card--highlight .shc-price-full-card__features li i { color: var(--teal-300); }

.shc-price-full-card__cta { display: block; text-align: center; }

@media (max-width: 900px) {
  .shc-price-full-cards { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
}

.shc-price-faq {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}
.shc-price-faq__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-price-faq__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-price-faq__header p { color: var(--ink-700); margin-inline: auto; }

.shc-faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shc-faq-item {
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.shc-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  transition: color 0.15s;
}
.shc-faq-item__q:hover { color: var(--teal-700); }

.shc-faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--teal-700);
  transition: transform 0.22s;
}
.shc-faq-item--open .shc-faq-item__icon { transform: rotate(45deg); }

.shc-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.shc-faq-item--open .shc-faq-item__a {
  max-height: 300px;
}
.shc-faq-item__a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-700);
  line-height: 1.7;
  max-width: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.shc-about-mission {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.shc-about-mission__text .shc-eyebrow { color: var(--teal-700); margin-bottom: 1rem; }
.shc-about-mission__text h2 { color: var(--ink-900); margin-bottom: 1.25rem; }
.shc-about-mission__text p { color: var(--ink-700); max-width: none; margin-bottom: 1rem; }

.shc-about-mission__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,24,33,0.15);
}
.shc-about-mission__img img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .shc-about-mission__grid { grid-template-columns: 1fr; }
}

.shc-about-values {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}
.shc-about-values__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-about-values__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-about-values__header h2 { color: var(--ink-900); margin-bottom: 1rem; }

.shc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.shc-value-card {
  padding: 2rem;
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
}
.shc-value-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.shc-value-card h4 { color: var(--ink-900); margin-bottom: 0.5rem; }
.shc-value-card p { color: var(--ink-700); font-size: 0.9rem; max-width: none; }

@media (max-width: 768px) {
  .shc-values-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .shc-values-grid { grid-template-columns: 1fr 1fr; }
}

.shc-about-team {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-about-team__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-about-team__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-about-team__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-about-team__header p { color: var(--ink-700); margin-inline: auto; }

.shc-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  max-width: 900px;
  margin-inline: auto;
}
.shc-team-card {
  text-align: center;
}
.shc-team-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border: 3px solid var(--cream);
  box-shadow: 0 4px 16px rgba(13,24,33,0.12);
}
.shc-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.shc-team-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.25rem;
  font-family: 'Outfit', system-ui, sans-serif;
}
.shc-team-card__role {
  font-size: 0.875rem;
  color: var(--teal-700);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.shc-team-card p { font-size: 0.9rem; color: var(--ink-500); max-width: none; }

@media (max-width: 768px) {
  .shc-team-grid { grid-template-columns: 1fr; max-width: 320px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .shc-team-grid { grid-template-columns: 1fr 1fr; max-width: 600px; }
}

.shc-about-office {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}
.shc-about-office__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.shc-about-office__text .shc-eyebrow { color: var(--teal-700); margin-bottom: 1rem; }
.shc-about-office__text h2 { color: var(--ink-900); margin-bottom: 1.25rem; }
.shc-about-office__text address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--ink-700);
  line-height: 1.9;
}
.shc-about-office__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,24,33,0.15);
}
.shc-about-office__img img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .shc-about-office__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.shc-contact-section {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.shc-contact-info .shc-eyebrow { color: var(--teal-700); margin-bottom: 1rem; }
.shc-contact-info h2 { color: var(--ink-900); margin-bottom: 1.25rem; }
.shc-contact-info p { color: var(--ink-700); max-width: none; margin-bottom: 2rem; }

.shc-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.shc-contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.shc-contact-detail__icon {
  width: 36px;
  height: 36px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1rem;
  flex-shrink: 0;
}
.shc-contact-detail__text p, .shc-contact-detail__text a {
  font-size: 0.9375rem;
  color: var(--ink-700);
  max-width: none;
}
.shc-contact-detail__text a:hover { color: var(--teal-700); }

.shc-contact-form {
  background: var(--parch-100);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.shc-contact-form h3 { color: var(--ink-900); margin-bottom: 1.75rem; }

.shc-form-group {
  margin-bottom: 1.25rem;
}
.shc-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 0.5rem;
}
.shc-form-group input,
.shc-form-group textarea,
.shc-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--parch-50);
  border: 1.5px solid rgba(26,34,50,0.15);
  border-radius: var(--radius-md);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--ink-900);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.shc-form-group input:focus,
.shc-form-group textarea:focus,
.shc-form-group select:focus {
  outline: none;
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(29,106,92,0.1);
}
.shc-form-group textarea { min-height: 120px; resize: vertical; }

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

@media (max-width: 768px) {
  .shc-contact-section__grid { grid-template-columns: 1fr; }
  .shc-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PILOTS (REQUEST EARLY ACCESS) PAGE
   ============================================================ */

.shc-pilots-hero {
  background: var(--hn-900);
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shc-pilots-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(29,106,92,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.shc-pilots-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.shc-pilots-hero__inner .shc-eyebrow { color: var(--teal-300); margin-bottom: 1rem; }
.shc-pilots-hero__inner h1 { color: #fff; margin-bottom: 1.25rem; }
.shc-pilots-hero__inner p { color: var(--parch-text); margin-inline: auto; margin-bottom: 0; max-width: 54ch; }

.shc-pilots-form-section {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-pilots-form-wrap {
  max-width: 640px;
  margin-inline: auto;
  background: var(--parch-100);
  border: 1px solid rgba(26,34,50,0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.shc-pilots-form-wrap h2 { color: var(--ink-900); margin-bottom: 0.5rem; font-size: 1.5rem; }
.shc-pilots-form-wrap > p { color: var(--ink-700); margin-bottom: 2rem; max-width: none; }

/* ============================================================
   BLOG PAGES
   ============================================================ */

.shc-blog-hero {
  background: var(--hn-900);
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.shc-blog-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.shc-blog-hero__inner .shc-eyebrow { color: var(--teal-300); margin-bottom: 1rem; }
.shc-blog-hero__inner h1 { color: #fff; margin-bottom: 1rem; }
.shc-blog-hero__inner p { color: var(--parch-text); margin-inline: auto; max-width: 54ch; }

.shc-blog-listing {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}

.shc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.shc-blog-card {
  background: var(--parch-100);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}
.shc-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,24,33,0.14);
}

.shc-blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.shc-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.shc-blog-card:hover .shc-blog-card__img img { transform: scale(1.04); }

.shc-blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shc-blog-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.shc-blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 0.75rem;
  font-family: 'Newsreader', Georgia, serif;
  line-height: 1.35;
}
.shc-blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.65;
  max-width: none;
  flex: 1;
  margin-bottom: 1.25rem;
}
.shc-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-top: auto;
}
.shc-blog-card__read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-700);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  transition: gap 0.15s;
}
.shc-blog-card:hover .shc-blog-card__read-more { gap: 0.6rem; }

.shc-blog-card--featured {
  grid-column: span 3;
  flex-direction: row;
}
.shc-blog-card--featured .shc-blog-card__img {
  flex: 0 0 48%;
  aspect-ratio: auto;
  min-height: 260px;
}
.shc-blog-card--featured .shc-blog-card__body { padding: 2rem 2.5rem; }
.shc-blog-card--featured .shc-blog-card__title { font-size: 1.4rem; }

@media (max-width: 900px) {
  .shc-blog-grid { grid-template-columns: 1fr 1fr; }
  .shc-blog-card--featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .shc-blog-grid { grid-template-columns: 1fr; }
  .shc-blog-card--featured {
    grid-column: span 1;
    flex-direction: column;
  }
  .shc-blog-card--featured .shc-blog-card__img { aspect-ratio: 16/9; }
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.shc-article-hero {
  background: var(--hn-900);
  padding-top: calc(68px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.shc-article-hero__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.shc-article-hero__cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.shc-article-hero__inner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.shc-article-hero__meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--slate-muted);
  flex-wrap: wrap;
}
.shc-article-hero__meta span { display: flex; align-items: center; gap: 0.4rem; }

.shc-article-content > img:first-child,
.shc-article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.shc-article-cover {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  margin-top: 0;
  margin-bottom: 2rem;
}

.shc-article-body {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-article-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.shc-article-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--ink-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.shc-article-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.shc-article-content p {
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: none;
}
.shc-article-content ul, .shc-article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.shc-article-content li {
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.shc-article-content ul { list-style: disc; }
.shc-article-content ol { list-style: decimal; }
.shc-article-content blockquote {
  border-left: 4px solid var(--teal-700);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--parch-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.shc-article-content blockquote p { color: var(--ink-900); font-style: italic; }
.shc-article-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875em;
  background: var(--parch-100);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: var(--teal-700);
}
.shc-article-content pre {
  background: var(--hn-800);
  color: var(--parch-text);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.shc-article-content pre code { background: none; padding: 0; color: var(--parch-text); }

a.shc-article-back {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-300);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.15s;
  margin-bottom: 2rem;
}
a.shc-article-back:hover { gap: 0.6rem; }

/* ============================================================
   LOGIN / AUTH PAGES
   ============================================================ */

.shc-auth-page {
  min-height: 100vh;
  background: var(--hn-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.shc-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(29,106,92,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.shc-auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--hn-800);
  border: 1px solid rgba(90,181,160,0.18);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 2.75rem);
  box-shadow: 0 16px 64px rgba(0,0,0,0.45);
}

.shc-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.shc-auth-logo img, .shc-auth-logo svg {
  height: 30px;
  width: auto;
}

.shc-auth-card h1 {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.shc-auth-card__sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-muted);
  margin-bottom: 2rem;
  max-width: none;
}

.shc-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shc-auth-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--parch-text);
  margin-bottom: 0.4rem;
}
.shc-auth-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.shc-auth-field input::placeholder { color: rgba(255,255,255,0.3); }
.shc-auth-field input:focus {
  outline: none;
  border-color: var(--teal-300);
  box-shadow: 0 0 0 3px rgba(90,181,160,0.12);
}

.shc-auth-submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--teal-700);
  color: #fff;
  border: 2px solid var(--teal-700);
  border-radius: var(--radius-md);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.shc-auth-submit:hover { background: var(--teal-600); border-color: var(--teal-600); }

.shc-auth-links {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shc-auth-links a {
  color: var(--teal-300);
  transition: color 0.15s;
}
.shc-auth-links a:hover { color: #fff; }

.shc-auth-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.5rem 0;
}

.shc-auth-legal {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(143,165,176,0.7);
  max-width: none;
}
.shc-auth-legal a { color: rgba(90,181,160,0.8); }
.shc-auth-legal a:hover { color: var(--teal-300); }

/* ============================================================
   LEGAL CONTENT (for abw-legal pages)
   ============================================================ */

.shc-legal-page {
  background: var(--parch-50);
}

.shc-legal-hero {
  background: var(--hn-800);
  padding-top: calc(68px + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-legal-hero__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.shc-legal-hero__inner .shc-eyebrow { color: var(--teal-300); margin-bottom: 0.75rem; }
.shc-legal-hero__inner h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.shc-legal-hero__inner time { font-size: 0.875rem; color: var(--slate-muted); }

.shc-legal-content {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  color: var(--ink-900);
  background: var(--parch-50);
}

.shc-legal-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--ink-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.shc-legal-content h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-900);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.shc-legal-content p {
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: none;
}
.shc-legal-content ul, .shc-legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.shc-legal-content ul { list-style: disc; }
.shc-legal-content ol { list-style: decimal; }
.shc-legal-content li {
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.shc-legal-content a { color: var(--teal-700); text-decoration: underline; }
.shc-legal-content a:hover { color: var(--teal-600); }

/* ============================================================
   404 PAGE
   ============================================================ */

.shc-404-page {
  background: var(--hn-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.shc-404-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(68px + 4rem) clamp(1rem, 4vw, 2.5rem) 4rem;
  text-align: center;
}
.shc-404-hero__inner {
  max-width: 560px;
}
.shc-404-hero__code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 5rem;
  font-weight: 700;
  color: var(--teal-300);
  line-height: 1;
  margin-bottom: 1rem;
}
.shc-404-hero__inner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.shc-404-hero__inner p {
  color: var(--parch-text);
  font-size: 1.05rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.shc-404-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   DOCS / LONG-FORM CONTENT
   ============================================================ */

.shc-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
  background: var(--parch-50);
}

.shc-docs-sidebar {
  background: var(--parch-100);
  border-right: 1px solid rgba(26,34,50,0.1);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
}

.shc-docs-sidebar__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  font-family: 'Outfit', system-ui, sans-serif;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.shc-docs-sidebar__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.shc-docs-sidebar__nav li a {
  display: block;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.shc-docs-sidebar__nav li a:hover,
.shc-docs-sidebar__nav li a.shc--current {
  background: rgba(29,106,92,0.08);
  color: var(--teal-700);
}

.shc-docs-content {
  padding: 3rem clamp(2rem, 4vw, 4rem);
  max-width: 860px;
  background: var(--parch-50);
  color: var(--ink-900);
}
.shc-docs-content h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--ink-900); margin-bottom: 1.5rem; }
.shc-docs-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: var(--ink-900); margin-top: 2.5rem; margin-bottom: 1rem; }
.shc-docs-content h3 { font-size: 1.15rem; color: var(--ink-900); margin-top: 1.75rem; margin-bottom: 0.75rem; }
.shc-docs-content p { color: var(--ink-700); line-height: 1.8; margin-bottom: 1.25rem; max-width: none; }
.shc-docs-content ul, .shc-docs-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.shc-docs-content ul { list-style: disc; }
.shc-docs-content ol { list-style: decimal; }
.shc-docs-content li { color: var(--ink-700); line-height: 1.75; margin-bottom: 0.5rem; }
.shc-docs-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875em;
  background: var(--parch-100);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: var(--teal-700);
}
.shc-docs-content pre {
  background: var(--hn-800);
  color: var(--parch-text);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.shc-docs-content pre code { background: none; padding: 0; color: var(--parch-text); }

@media (max-width: 900px) {
  .shc-docs-layout { grid-template-columns: 1fr; }
  .shc-docs-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid rgba(26,34,50,0.1); }
}

/* ============================================================
   CHANGELOG / RELEASE NOTES
   ============================================================ */

.shc-changelog-section {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-changelog-entries {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.shc-changelog-entry {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26,34,50,0.1);
}
.shc-changelog-entry:last-child { border-bottom: none; }
.shc-changelog-entry__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--teal-700);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.shc-changelog-entry h3 { color: var(--ink-900); margin-bottom: 1rem; font-size: 1.25rem; }
.shc-changelog-entry ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.shc-changelog-entry ul li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.shc-changelog-entry ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal-700);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ============================================================
   INTEGRATIONS (sub-page detail) + FEATURE DETAIL
   ============================================================ */

.shc-feature-detail {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-feature-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.shc-feature-detail--reverse .shc-feature-detail__grid {
  direction: rtl;
}
.shc-feature-detail--reverse .shc-feature-detail__text,
.shc-feature-detail--reverse .shc-feature-detail__visual {
  direction: ltr;
}
.shc-feature-detail__text .shc-eyebrow { color: var(--teal-700); margin-bottom: 1rem; }
.shc-feature-detail__text h2 { color: var(--ink-900); margin-bottom: 1.25rem; }
.shc-feature-detail__text p { color: var(--ink-700); max-width: none; margin-bottom: 1rem; }
.shc-feature-detail__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 768px) {
  .shc-feature-detail__grid { grid-template-columns: 1fr; direction: ltr; }
}

/* Use case blocks */
.shc-use-case-section {
  background: var(--parch-100);
  padding: var(--section-pad) 0;
}
.shc-use-case-section__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-use-case-section__header .shc-eyebrow { color: var(--teal-700); margin-bottom: 0.75rem; }
.shc-use-case-section__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-use-case-section__header p { color: var(--ink-700); margin-inline: auto; }

.shc-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.shc-use-case-item {
  padding: 2rem;
  background: var(--parch-50);
  border: 1px solid rgba(26,34,50,0.08);
  border-radius: var(--radius-lg);
}
.shc-use-case-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(29,106,92,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.shc-use-case-item h4 { color: var(--ink-900); margin-bottom: 0.5rem; }
.shc-use-case-item p { color: var(--ink-700); font-size: 0.9rem; max-width: none; }

@media (max-width: 768px) {
  .shc-use-cases-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.shc-comparison-section {
  background: var(--parch-50);
  padding: var(--section-pad) 0;
}
.shc-comparison-section__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.shc-comparison-section__header h2 { color: var(--ink-900); margin-bottom: 1rem; }
.shc-comparison-section__header p { color: var(--ink-700); margin-inline: auto; }

.shc-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,34,50,0.1);
}

.shc-comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--parch-50);
}
.shc-comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--parch-100);
  border-bottom: 1px solid rgba(26,34,50,0.1);
}
.shc-comparison-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.shc-comparison-table thead th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.shc-comparison-table thead th.shc--highlight {
  background: var(--teal-700);
  color: #fff;
}
.shc-comparison-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(26,34,50,0.06);
  vertical-align: middle;
}
.shc-comparison-table tbody td.shc--feature { font-weight: 500; color: var(--ink-900); }
.shc-comparison-table tbody td.shc--highlight { background: rgba(29,106,92,0.04); }
.shc-comparison-table tbody tr:last-child td { border-bottom: none; }
.shc-comparison-table .shc--check { color: var(--teal-700); font-weight: 600; }
.shc-comparison-table .shc--cross { color: var(--ink-500); opacity: 0.5; }

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */

.shc-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.shc-fade-up.shc--visible {
  opacity: 1;
  transform: translateY(0);
}
.shc-fade-up.shc--force-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--hn-800);
  border-top: 1px solid rgba(90,181,160,0.2);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--parch-text);
  flex: 1;
  min-width: 240px;
  max-width: none;
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--teal-300);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  color: var(--parch-text);
  background: transparent;
  border-color: rgba(232,227,218,0.3);
}

.cookie-banner__btn--primary {
  background: var(--teal-700);
  color: #fff;
  border-color: var(--teal-700);
}
.cookie-banner__btn--primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--parch-text);
  border-color: rgba(232,227,218,0.4);
}
.cookie-banner__btn--secondary:hover {
  background: rgba(232,227,218,0.08);
  border-color: var(--parch-text);
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; justify-content: center; text-align: center; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.shc-text-center { text-align: center; }
.shc-mt-sm { margin-top: 1rem; }
.shc-mt-md { margin-top: 2rem; }
.shc-mt-lg { margin-top: 3rem; }
.shc--dark-bg { background: var(--hn-900); }
.shc--light-bg { background: var(--parch-50); }
.shc--teal { color: var(--teal-700); }
.shc--muted { color: var(--ink-500); }

.shc-stat-band {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  flex-wrap: wrap;
  padding: 2.5rem 0;
}
.shc-stat {
  text-align: center;
}
.shc-stat__num {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.shc-stat__label {
  font-size: 0.875rem;
  color: var(--slate-muted);
}

.shc-stat-band--light .shc-stat__num { color: var(--ink-900); }
.shc-stat-band--light .shc-stat__label { color: var(--ink-500); }

.shc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3em 0.8em;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Outfit', system-ui, sans-serif;
}
.shc-pill--teal {
  background: rgba(29,106,92,0.12);
  color: var(--teal-700);
  border: 1px solid rgba(29,106,92,0.2);
}
.shc-pill--teal-light {
  background: rgba(90,181,160,0.12);
  color: var(--teal-300);
  border: 1px solid rgba(90,181,160,0.2);
}
.shc-pill--amber {
  background: rgba(200,169,110,0.12);
  color: var(--flag-amber);
  border: 1px solid rgba(200,169,110,0.2);
}

.shc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-muted);
  margin-bottom: 1.5rem;
}
.shc-breadcrumb a { color: var(--slate-muted); transition: color 0.15s; }
.shc-breadcrumb a:hover { color: var(--parch-text); }
.shc-breadcrumb--dark a:hover { color: var(--teal-700); }
.shc-breadcrumb__sep { opacity: 0.5; }

.shc-notice {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.shc-notice--info {
  background: rgba(29,106,92,0.08);
  border: 1px solid rgba(29,106,92,0.2);
  color: var(--ink-700);
}
.shc-notice--info i { color: var(--teal-700); margin-top: 0.1rem; }
.shc-notice--warning {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  color: var(--ink-700);
}
.shc-notice--warning i { color: var(--flag-amber); margin-top: 0.1rem; }

/* Print */
@media print {
  .shc-nav, .cookie-banner { display: none !important; }
  .shc-hero, .shc-page-hero { padding-top: 2rem !important; }
}
