:root {
  --bg: #0b0d10;
  --bg-alt: #10141a;
  --surface: #12161d;
  --surface-elevated: #171c24;
  --surface-soft: #1b2230;
  --border: #232937;
  --border-strong: #31394b;
  --text: #f5f7fa;
  --text-secondary: #b8c0cc;
  --text-muted: #8a93a3;
  --gold: #c9a227;
  --gold-hover: #d8b74a;
  --gold-soft: rgba(201, 162, 39, 0.16);
  --accent: #5b8def;
  --accent-soft: rgba(91, 141, 239, 0.16);
  --success-soft: rgba(93, 168, 126, 0.14);
  --shadow-sm: 0 14px 34px -24px rgba(0, 0, 0, 0.7);
  --shadow-md: 0 24px 60px -36px rgba(0, 0, 0, 0.8);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --copy: 760px;
  --header-height: 80px;
  --section-space: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.08), transparent 22%),
    radial-gradient(circle at left 20%, rgba(91, 141, 239, 0.08), transparent 28%),
    linear-gradient(180deg, #0d1014 0%, #090b0e 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(201, 162, 39, 0.22);
}

.page {
  min-height: 100vh;
}

.shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(35, 41, 55, 0.92);
  background: rgba(11, 13, 16, 0.84);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 13, 0.94);
  border-color: rgba(56, 66, 84, 0.95);
  box-shadow: 0 18px 42px -30px rgba(0, 0, 0, 0.9);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #1c2431, #11161d);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 0.35rem;
}

.header-actions {
  gap: 0.75rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.94rem;
  position: relative;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-link.is-active {
  color: var(--text);
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.08);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.06);
}

.nav-link:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(201, 162, 39, 0.28);
  background: var(--surface-elevated);
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
}

.menu-toggle:active {
  transform: translateY(0) scale(0.98);
}

.mobile-drawer {
  display: none;
  padding: 0 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-nav,
.mobile-actions,
.proof-row,
.grid,
.cta-row,
.hero-panel-grid,
.contact-links,
.form-grid,
.timeline,
.mini-list {
  display: grid;
}

.mobile-nav,
.mobile-actions,
.form-grid {
  gap: 0.75rem;
}

.mobile-nav .nav-link {
  justify-content: flex-start;
  border-color: var(--border);
  background: var(--surface);
  min-height: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #11151b;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px -22px rgba(201, 162, 39, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-hover);
  box-shadow: 0 22px 40px -24px rgba(201, 162, 39, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(201, 162, 39, 0.28);
  color: var(--gold-hover);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 16px 28px -24px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary:active {
  box-shadow: 0 10px 22px -18px rgba(201, 162, 39, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary:active {
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.28);
}

.button-inline {
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--gold-hover);
}

.button:focus-visible,
.nav-link:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.contact-links a:focus-visible,
.footer-links a:focus-visible,
.card-note a:focus-visible,
.helper a:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.26);
  outline-offset: 3px;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: scale(1.03);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.9);
}

.section,
.page-hero {
  padding: var(--section-space) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-cta {
  padding-bottom: 4rem;
}

section[id],
[id="commercial"],
[id="about"],
[id="contact"] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.hero {
  padding-top: 4.25rem;
}

.hero-grid,
.implementation-layout,
.page-hero-grid,
.contact-layout,
.about-layout,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.hero-copy-wrap {
  max-width: 42rem;
}

.stitch-hero-grid {
  gap: 4rem;
}

.hero-accent {
  color: var(--gold-hover);
}

.eyebrow,
.badge,
.card-label,
.timeline-phase {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.88rem;
  border-radius: 999px;
  color: var(--gold-hover);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.hero h1,
.page-hero h1 {
  margin: 1.15rem 0 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h2,
.section-intro h2,
.cta-banner h2,
.page-hero h2 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-copy,
.page-lead,
.section-intro p,
.cta-banner p,
.card p,
.info-card p,
.check-card p,
.timeline-item p,
.footer-meta {
  color: var(--text-secondary);
  line-height: 1.76;
}

.hero-copy,
.page-lead {
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
}

.cta-row {
  grid-auto-flow: column;
  justify-content: start;
  gap: 0.9rem;
  margin-top: 2rem;
}

.cta-row-compact {
  margin-top: 0;
}

.proof-row {
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.proof-pill {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
}

.proof-pill:hover {
  border-color: rgba(201, 162, 39, 0.22);
  background: rgba(201, 162, 39, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-panel,
.card,
.info-card,
.check-card,
.form-card,
.panel,
.cta-banner,
.timeline-item,
.trust-block {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-panel,
.cta-banner,
.form-card,
.panel {
  padding: 1.6rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(91, 141, 239, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.stitch-dashboard {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(42, 42, 42, 0.95), rgba(32, 31, 31, 0.96));
}

.stitch-dashboard-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.1);
  filter: blur(44px);
  opacity: 0.4;
}

.hero-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.18);
  box-shadow: 0 28px 64px -38px rgba(0, 0, 0, 0.95);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -16% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(91, 141, 239, 0.1);
  filter: blur(48px);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel-head h2 {
  margin: 0.55rem 0 0;
  font-size: 1.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
}

.badge-gold {
  color: var(--gold-hover);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.24);
}

.card-label {
  color: var(--gold-hover);
}

.hero-panel-grid,
.grid {
  gap: 1rem;
}

.hero-panel-grid {
  margin-top: 1.25rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.dashboard-card {
  padding: 1.35rem;
  min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(77, 70, 53, 0.18);
  background: rgba(32, 31, 31, 0.96);
}

.dashboard-card-strong {
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.96), rgba(32, 31, 31, 0.96));
}

.dashboard-card-wide {
  grid-column: 1 / -1;
}

.dashboard-metric {
  margin-top: 0.5rem;
  max-width: 100%;
  font-size: clamp(2.15rem, 3.4vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--gold-hover);
  font-family: "Manrope", Inter, sans-serif;
}

.dashboard-submetric {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 800;
  font-family: "Manrope", Inter, sans-serif;
}

.progress-bar {
  width: 100%;
  height: 0.45rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.9);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(135deg, #d4af37, #f2ca50);
}

.dashboard-status,
.dashboard-wide-head,
.window-dots {
  display: flex;
  align-items: center;
}

.dashboard-status,
.window-dots {
  gap: 0.65rem;
}

.dashboard-wide-head {
  justify-content: space-between;
  gap: 1rem;
}

.status-icon,
.dot {
  display: inline-block;
  border-radius: 999px;
}

.status-icon {
  width: 0.8rem;
  height: 0.8rem;
}

.status-icon-success {
  background: #37b26c;
  box-shadow: 0 0 0 0.25rem rgba(55, 178, 108, 0.12);
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
}

.dot-error {
  background: #ffb4ab;
}

.dot-gold {
  background: #d4af37;
}

.dot-success {
  background: #37b26c;
}

.info-card,
.check-card,
.card,
.timeline-item {
  padding: 1.35rem;
}

.info-card-strong {
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08), rgba(255, 255, 255, 0.02));
}

.capability-card:hover,
.audience-card:hover,
.process-step:hover,
.timeline-item:hover,
.info-card:hover,
.check-card:hover,
.side-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.16);
  box-shadow: 0 22px 50px -34px rgba(0, 0, 0, 0.94);
}

.info-card h3,
.check-card h3,
.card h3,
.timeline-item h3,
.contact-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1.22rem;
  line-height: 1.28;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li,
.mini-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.check-list li::before,
.mini-list div::before {
  content: "•";
  color: var(--gold-hover);
  font-weight: 800;
}

.trust-strip {
  padding-top: 1.4rem;
  padding-bottom: 2.5rem;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  padding: 1.25rem 0;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-hover);
  background: rgba(32, 31, 31, 0.92);
  border: 1px solid rgba(77, 70, 53, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-badge-large {
  width: 3.25rem;
  height: 3.25rem;
}

.icon-badge svg,
.workflow-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.trust-strip-item:hover .icon-badge,
.lab-card:hover .icon-badge,
.contact-direct-item:hover .icon-badge {
  transform: scale(1.06);
  border-color: rgba(201, 162, 39, 0.32);
  background: rgba(53, 53, 52, 0.96);
}

.stitch-lab-section {
  position: relative;
  overflow: hidden;
}

.stitch-section-intro {
  margin-bottom: 3rem;
}

.lab-grid {
  gap: 1.25rem;
}

.lab-card {
  padding: 2rem 1.75rem;
  background: rgba(32, 31, 31, 0.96);
}

.centered-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bento-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 31rem;
  background: rgba(42, 42, 42, 0.92);
}

.bento-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(242, 202, 80, 0.22);
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  font-family: "Manrope", Inter, sans-serif;
}

.bento-visual {
  width: 100%;
  height: 11rem;
  margin-top: 2rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(32, 31, 31, 0.92), rgba(14, 14, 14, 0.98));
  border: 1px solid rgba(77, 70, 53, 0.12);
  overflow: hidden;
  position: relative;
}

.bento-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

.bento-image-evidence {
  object-position: 68% center;
}

.bento-image-risk {
  object-position: 56% center;
}

.bento-visual-image::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.06), rgba(9, 11, 14, 0.22));
  pointer-events: none;
}

.bento-visual::before,
.bento-visual::after {
  content: "";
  position: absolute;
}

.bento-visual-flow::before {
  inset: 20% -10% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 202, 80, 0.65), transparent);
  box-shadow: 0 0 28px rgba(242, 202, 80, 0.18);
}

.bento-visual-grid::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 2rem 2rem;
  opacity: 0.35;
}

.bento-visual-grid::after {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  right: 1.5rem;
  bottom: 1.25rem;
  background: rgba(201, 162, 39, 0.15);
  filter: blur(20px);
}

.bento-visual-orbit::before {
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(242, 202, 80, 0.28);
  border-radius: 999px;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.bento-visual-orbit::after {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(242, 202, 80, 0.9);
  left: calc(50% + 2rem);
  top: calc(50% - 2rem);
  box-shadow: 0 0 18px rgba(242, 202, 80, 0.5);
}

.what-layout,
.governance-layout,
.founder-layout {
  display: grid;
  gap: 3rem;
}

.what-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.what-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.section-marker {
  width: 5rem;
  height: 0.25rem;
  margin-top: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f2ca50);
}

.what-list {
  display: grid;
  gap: 1.5rem;
}

.what-item {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: background 180ms ease, transform 180ms ease;
}

.what-item:hover {
  background: rgba(32, 31, 31, 0.9);
  transform: translateY(-2px);
}

.what-number {
  color: rgba(242, 202, 80, 0.28);
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  font-family: "Manrope", Inter, sans-serif;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-grid::before {
  content: "";
  position: absolute;
  inset: 2.55rem 0 auto;
  height: 2px;
  background: rgba(77, 70, 53, 0.32);
}

.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.workflow-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 175, 55, 0.48);
  background: rgba(32, 31, 31, 0.95);
  color: var(--gold-hover);
  box-shadow: 0 16px 30px -24px rgba(0, 0, 0, 0.9);
}

.workflow-step:first-child .workflow-icon {
  background: linear-gradient(135deg, #d4af37, #f2ca50);
  color: #3c2f00;
  border-color: transparent;
}

.audience-grid {
  gap: 1.25rem;
}

.audience-card-accent {
  border-left: 4px solid rgba(212, 175, 55, 0.9);
}

.governance-layout {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.88fr);
  align-items: start;
}

.compact-intro {
  max-width: 38rem;
}

.governance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2rem;
}

.governance-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.list-check {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f2ca50);
  box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.12);
  flex-shrink: 0;
}

.procurement-card {
  padding: 2rem;
  background: rgba(19, 19, 19, 0.96);
}

.procurement-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 1.5rem 0 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--text);
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.procurement-link:hover,
.procurement-link:focus-visible {
  background: rgba(32, 31, 31, 1);
  border-color: rgba(242, 202, 80, 0.35);
  transform: translateY(-1px);
}

.stitch-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 2rem;
}

.stitch-cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242, 202, 80, 0.12), transparent 68%);
  pointer-events: none;
}

.founder-layout {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.founder-portrait {
  position: relative;
  width: 18rem;
  height: 18rem;
  display: grid;
  place-items: center;
}

.portrait-disc {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: #090a0d;
  box-shadow: 0 30px 50px -32px rgba(0, 0, 0, 0.95);
}

.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.founder-copy {
  max-width: 44rem;
}

.founder-copy h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-family: "Manrope", Inter, sans-serif;
  letter-spacing: -0.045em;
}

.founder-lead {
  max-width: 40rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  color: var(--gold-hover);
  font-weight: 700;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--text);
}

.contact-section {
  padding-top: 4.5rem;
}

.contact-copy {
  max-width: 34rem;
}

.contact-direct-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-direct-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-direct-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.contact-direct-item p {
  margin: 0.1rem 0;
  color: var(--text-secondary);
}

.stitch-form-card {
  padding: 2rem;
  background: rgba(32, 31, 31, 0.96);
}

.button-full {
  width: 100%;
}

.section-intro {
  max-width: var(--copy);
  margin-bottom: 2.25rem;
}

.section-intro h2,
.cta-banner h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-intro p,
.cta-banner p {
  margin: 1rem 0 0;
  font-size: 1.03rem;
}

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

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

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

.card {
  height: 100%;
}

.card-note,
.helper {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-note a,
.footer-links a,
.contact-links a,
.helper a {
  color: var(--gold-hover);
}

.icon-chip,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
}

.icon-chip {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  color: var(--gold-hover);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.28), rgba(91, 141, 239, 0.2));
}

.step-number {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.implementation-layout,
.footer-grid,
.contact-layout,
.about-layout,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.timeline {
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding-left: 1.35rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 1.45rem auto 1.45rem 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.36), rgba(91, 141, 239, 0.12));
}

.timeline-phase {
  color: var(--accent);
}

.side-panel {
  align-self: start;
}

.mini-list {
  gap: 0.7rem;
  margin-top: 1rem;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at right top, rgba(201, 162, 39, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
}

.closing-grid {
  margin-top: 1rem;
}

.contact-links {
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.contact-links a {
  font-weight: 600;
  transition: color 160ms ease, opacity 160ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--text);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--text-secondary);
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.88rem 0.95rem;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.24);
  outline-offset: 2px;
  border-color: rgba(201, 162, 39, 0.38);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.08);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem 0 3rem;
}

.footer-grid {
  gap: 1rem;
}

.footer-meta {
  font-size: 0.96rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  color: var(--text-muted);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.card-note a:hover,
.card-note a:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible,
.helper a:hover,
.helper a:focus-visible {
  color: var(--text);
}

.footer-links a,
.card-note a,
.helper a {
  transition: color 160ms ease, opacity 160ms ease;
}

.footer-links a:hover,
.card-note a:hover,
.helper a:hover {
  opacity: 1;
}

.page-hero {
  padding-top: 4rem;
}

.form-card {
  padding: 1.55rem;
}

.site-404 {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .implementation-layout,
  .page-hero-grid,
  .contact-layout,
  .about-layout,
  .footer-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

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

  .workflow-grid::before {
    display: none;
  }

  .what-layout,
  .governance-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .what-intro {
    position: static;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-only-hidden {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 4rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .proof-row,
  .cta-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .process-grid,
  .field-row,
  .bento-grid,
  .workflow-grid,
  .dashboard-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    grid-auto-flow: row;
  }

  .button {
    width: 100%;
  }

  .hero-panel-head {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .founder-portrait {
    width: 13rem;
    height: 13rem;
  }

  .what-item {
    padding-left: 0;
    padding-right: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
