:root {
  --bg: #F5EFE6;
  --surface: #FFF9EF;
  --panel: #FFFFFF;
  --text: #261A13;
  --muted: #6F5B4B;
  --border: #D8C6AD;
  --primary: #7A3524;
  --accent: #B6813B;
  --accent-soft: #E9D2AA;
  --highlight: #D9A66A;
  --shadow: 0 18px 50px rgba(38, 26, 19, 0.10);
  --shadow-soft: 0 8px 24px rgba(38, 26, 19, 0.08);
  --radius-xs: 0.5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --font-display: "Space Grotesk", "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Noto Sans SC", system-ui, sans-serif;
  --container: 74rem;
  --container-narrow: 62rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --line: 1px solid var(--border);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 129, 59, 0.08), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(122, 53, 36, 0.07), transparent 30%),
    linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--bg) 70%, var(--surface)) 42%, var(--surface));
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: color-mix(in srgb, var(--accent) 28%, transparent); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--panel);
  border: var(--line);
  transform: translateY(-180%);
  transition: transform 180ms ease;
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.site-shell--wide { width: min(calc(100% - 2rem), 86rem); }
.site-shell--narrow { width: min(calc(100% - 2rem), var(--container-narrow)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
}
.site-header__inner {
  width: min(calc(100% - 2rem), 86rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 94%, white), color-mix(in srgb, var(--accent) 52%, var(--primary)));
  color: var(--surface);
  box-shadow: var(--shadow-soft);
  flex: none;
}
.brand__name {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.brand__tag {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-family: var(--font-body);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.75rem);
  flex-wrap: wrap;
  justify-content: center;
}
.site-nav a,
.site-nav button,
.pill-link,
.text-button,
.form-submit,
.ghost-button,
.button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  padding: 0.72rem 1rem;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.site-nav a,
.site-nav button {
  color: var(--muted);
  border-color: color-mix(in srgb, var(--border) 72%, transparent);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: color-mix(in srgb, var(--accent-soft) 34%, var(--surface));
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}
.site-nav a:hover,
.site-nav button:hover,
.pill-link:hover,
.text-button:hover,
.form-submit:hover,
.ghost-button:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: 0 8px 16px rgba(38, 26, 19, 0.08);
}
.site-nav__group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.utility-shell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.utility-shell [data-locale-toggle],
.utility-shell .lang-switch {
  min-width: 2.7rem;
  justify-content: center;
}
.utility-shell [aria-pressed="true"],
.utility-shell .is-active {
  color: var(--surface);
  background: var(--primary);
  border-color: var(--primary);
}

main { display: block; }
.page {
  padding: clamp(1rem, 2vw, 1.6rem) 0 0;
}
.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section + .section { border-top: 1px solid color-mix(in srgb, var(--border) 62%, transparent); }
.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-lead,
.lead {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.28vw, 1.14rem);
}
.hero-band,
.masthead,
.archive-masthead,
.docs-workspace,
.collection-home {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.hero-grid,
.masthead-grid,
.collection-grid,
.split-grid,
.content-grid,
.detail-grid,
.card-grid,
.card-list,
.index-grid,
.footer-grid,
.proof-grid,
.form-grid {
  display: grid;
  gap: var(--space-6);
}
.hero-grid,
.masthead-grid,
.collection-grid,
.split-grid,
.content-grid,
.detail-grid {
  grid-template-columns: 1.35fr 0.95fr;
  align-items: start;
}
.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.card-list {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}
.index-grid {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.panel,
.card,
.detail-card,
.surface,
.note,
.fact-row,
.resource-row,
.summary-row,
.spec-card,
.quote-card,
.form-card,
.footer-panel,
.stat-card,
.callout,
.reference-card {
  background: color-mix(in srgb, var(--surface) 92%, white);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.panel,
.card,
.detail-card,
.surface,
.note,
.fact-row,
.resource-row,
.summary-row,
.spec-card,
.quote-card,
.form-card,
.footer-panel,
.stat-card,
.callout,
.reference-card {
  padding: clamp(1rem, 1.6vw, 1.35rem);
}
.card,
.detail-card,
.reference-card,
.stat-card,
.note { display: grid; gap: var(--space-3); }
.card h3,
.detail-card h3,
.reference-card h3,
.stat-card h3,
.note h3,
.resource-row h3,
.summary-row h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.25;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}
.card p,
.detail-card p,
.reference-card p,
.stat-card p,
.note p,
.resource-row p,
.summary-row p,
.panel p,
.form-help,
.small,
.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.meta,
.small,
.kicker {
  font-size: 0.88rem;
}
.kicker,
.tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 38%, var(--surface));
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
  font-size: 0.84rem;
  letter-spacing: 0;
}

.stat-card {
  min-height: 7.5rem;
  align-content: start;
}
.stat-card strong,
.fact-value,
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  line-height: 1.05;
}

.resource-row,
.summary-row,
.fact-row,
.download-row,
.issue-row,
.reference-row {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.9fr) auto;
  align-items: center;
}
.resource-row,
.summary-row,
.fact-row,
.download-row,
.issue-row,
.reference-row {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, white);
}
.resource-row + .resource-row,
.summary-row + .summary-row,
.fact-row + .fact-row,
.download-row + .download-row,
.issue-row + .issue-row,
.reference-row + .reference-row {
  margin-top: 0.75rem;
}
.row-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pill-link,
.button,
.ghost-button,
.form-submit,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  font-weight: 600;
}
.button,
.form-submit {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(122, 53, 36, 0.16);
}
.button:hover,
.form-submit:hover { color: var(--surface); }
.ghost-button,
.text-button {
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border-color: color-mix(in srgb, var(--border) 88%, transparent);
}
.pill-link { background: color-mix(in srgb, var(--accent-soft) 30%, var(--surface)); border-color: color-mix(in srgb, var(--accent) 28%, var(--border)); }
.text-button { padding-inline: 0.3rem; min-height: auto; }

.hero-meta,
.intro-meta,
.support-meta,
.context-list,
.fact-list,
.check-list,
.resource-list,
.link-list,
.footer-list,
.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.check-list li,
.resource-list li,
.fact-list li,
.footer-list li,
.link-list li,
.inline-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.check-list li::before,
.resource-list li::before,
.fact-list li::before,
.footer-list li::before,
.link-list li::before,
.inline-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}

.prose {
  max-width: 72ch;
}
.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
  margin: 1.6em 0 0.6em;
}
.prose p,
.prose li,
.prose blockquote {
  font-size: 1rem;
  color: var(--text);
}
.prose blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: color-mix(in srgb, var(--accent-soft) 28%, var(--surface));
}
.prose hr {
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  margin: 2rem 0;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field--full { grid-column: 1 / -1; }
label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}
input,
textarea,
select {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--surface) 90%, white);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
textarea { min-height: 11rem; resize: vertical; }
input:focus,
textarea:focus,
select:focus,
.site-nav a:focus-visible,
.site-nav button:focus-visible,
.button:focus-visible,
.ghost-button:focus-visible,
.pill-link:focus-visible,
.text-button:focus-visible,
.form-submit:focus-visible,
.skip-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(182, 129, 59, 0.22);
  border-color: color-mix(in srgb, var(--accent) 72%, var(--border));
}

.site-footer {
  margin-top: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem) 0 2rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 76%, transparent), color-mix(in srgb, var(--primary) 6%, var(--surface)));
  border-top: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
}
.site-footer__inner {
  width: min(calc(100% - 2rem), 86rem);
  margin: 0 auto;
  display: grid;
  gap: var(--space-6);
}
.footer-band {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background: color-mix(in srgb, var(--surface) 92%, white);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  box-shadow: var(--shadow);
}
.footer-grid {
  grid-template-columns: 1.1fr 1fr 1fr 0.95fr;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 0.65rem;
}
.footer-brand .brand__name { white-space: normal; }
.footer-brand p { margin: 0; color: var(--muted); max-width: 34ch; }
.footer-col {
  display: grid;
  gap: 0.85rem;
}
.footer-col h2,
.footer-col h3,
.footer-heading {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-display);
  line-height: 1.2;
}
.footer-links,
.footer-nav,
.footer-meta,
.footer-actions {
  display: grid;
  gap: 0.6rem;
}
.footer-links a,
.footer-nav a,
.footer-meta a,
.footer-actions a,
.footer-actions button {
  color: var(--muted);
}
.footer-links a:hover,
.footer-nav a:hover,
.footer-meta a:hover,
.footer-actions a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, white);
  box-shadow: var(--shadow-soft);
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
}
.responsive-table th,
.responsive-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  text-align: left;
  vertical-align: top;
}
.responsive-table th {
  font-family: var(--font-display);
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface));
}
.responsive-table tr:last-child td { border-bottom: 0; }

.divider {
  height: 1px;
  background: color-mix(in srgb, var(--border) 82%, transparent);
  margin: var(--space-8) 0;
}

@media (max-width: 980px) {
  .site-header__inner,
  .footer-band,
  .footer-grid,
  .hero-grid,
  .masthead-grid,
  .collection-grid,
  .split-grid,
  .content-grid,
  .detail-grid,
  .resource-row,
  .summary-row,
  .fact-row,
  .download-row,
  .issue-row,
  .reference-row {
    grid-template-columns: 1fr;
  }
  .site-header__inner { align-items: stretch; }
  .site-nav { justify-content: flex-start; }
  .utility-shell { justify-content: flex-start; }
  .row-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-shell,
  .site-shell--wide,
  .site-shell--narrow {
    width: min(calc(100% - 1.2rem), 100%);
  }
  .site-header__inner,
  .site-footer__inner { width: min(calc(100% - 1.2rem), 100%); }
  .site-nav a,
  .site-nav button,
  .pill-link,
  .text-button,
  .ghost-button,
  .button,
  .form-submit {
    width: 100%;
    justify-content: center;
  }
  .site-nav,
  .utility-shell { width: 100%; }
  .site-nav__group,
  .utility-shell { flex-direction: column; align-items: stretch; }
  .card-grid,
  .card-list,
  .index-grid,
  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand__tag { white-space: normal; }
}

@media (min-width: 721px) {
  .stack-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }
}

/* runtime-stock-media-module */
.shpitto-stock-media {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.shpitto-stock-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.75rem;
}
.shpitto-stock-media figcaption {
  margin: 0;
  color: var(--muted, #52606d);
  font-size: 0.95rem;
  line-height: 1.55;
}
.shpitto-stock-media--enterprise-proof {
  max-width: 42rem;
}
.proof-strip .shpitto-stock-media--enterprise-proof {
  margin-inline: auto;
}
.proof-strip .shpitto-stock-media--enterprise-proof img {
  aspect-ratio: 5 / 3;
  border-radius: 0.5rem;
  border: 1px solid var(--line, #e0e0e0);
}
.proof-strip .shpitto-stock-media--enterprise-proof figcaption {
  max-width: 52ch;
}
.enterprise-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(28rem, 68vh, 44rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.enterprise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 54, 0.78) 0%, rgba(7, 27, 54, 0.52) 42%, rgba(7, 27, 54, 0.18) 100%);
  z-index: 1;
}
.enterprise-hero .shell-inner,
.enterprise-hero .masthead-stack,
.enterprise-hero .enterprise-hero__content,
.enterprise-hero .enterprise-proof-row {
  position: relative;
  z-index: 2;
}
.enterprise-hero .enterprise-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  max-width: none;
}
.enterprise-hero .enterprise-hero__media .media-cover,
.enterprise-hero .enterprise-hero__media picture {
  width: 100%;
  height: 100%;
  display: block;
}
.enterprise-hero .enterprise-hero__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  border: 0;
}
.enterprise-hero .enterprise-hero__content {
  max-width: 44rem;
  color: white;
}
.enterprise-hero .enterprise-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.enterprise-hero .enterprise-proof-row > * {
  backdrop-filter: blur(8px);
  background: rgba(7, 27, 54, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}
.masthead--single-column .masthead-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
}
.masthead--single-column .panel,
.masthead--single-column .proof-panel {
  max-width: 44rem;
}
.detail-layout .shpitto-stock-media,
.detail-grid .shpitto-stock-media {
  max-width: 32rem;
}
@media (max-width: 48rem) {
  .shpitto-stock-media--enterprise-proof,
  .detail-layout .shpitto-stock-media,
  .detail-grid .shpitto-stock-media {
    max-width: 100%;
  }
}
.page-title--measure {
  max-width: 20ch;
}
.proof-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.proof-figure {
  margin: 0;
  overflow: hidden;
}
.proof-figure__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.proof-figure__caption {
  padding: var(--space-4, 1rem);
  color: var(--text-subtle, #525252);
  font-size: 0.95rem;
}
.section-row--capability {
  align-items: end;
  margin-bottom: 1rem;
}
.section-row--cta {
  flex-wrap: wrap;
  align-items: center;
}
.stack--measure {
  max-width: 47.5rem;
}
.cta-surface {
  background: var(--surface);
}
.stack--section-intro {
  margin-bottom: var(--space-5);
}