:root {
  --demo-bg: #f4f4f5;
  --demo-card: #ffffff;
  --demo-dark: #000000;
  --demo-zinc: #18181b;
  --demo-text: #18181b;
  --demo-muted: #71717a;
  --demo-dim: #a1a1aa;
  --demo-accent: #34d399;
  --demo-accent-hover: #6ee7b7;
  --demo-border: rgba(24, 24, 27, 0.1);
  --demo-border-dark: rgba(255, 255, 255, 0.1);
  --demo-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.demo-shell {
  margin: 0;
  overflow-x: hidden;
  background: var(--demo-bg);
  color: var(--demo-text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

body.demo-shell > .header,
body.demo-shell > .sim-hero-section,
body.demo-shell > .sim-terminal-section,
body.demo-shell > .doc-article-section,
body.demo-shell > .footer,
body.demo-shell > .modal-backdrop {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

body.demo-shell > .header .container,
body.demo-shell > .sim-hero-section .container,
body.demo-shell > .sim-terminal-section .container,
body.demo-shell > .doc-article-section > .container,
body.demo-shell > .footer .container {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0;
}

body.demo-shell > .header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 9999;
  width: min(calc(100% - 48px), 1200px);
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
}

body.demo-shell > .header .container {
  width: 100%;
}

body.demo-shell > .header .header-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 9px 12px 9px 18px;
  border: 1px solid var(--demo-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 50px -28px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.demo-shell > .header .brand-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--demo-text);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.04em;
  text-decoration: none;
}

body.demo-shell > .header .brand-glyph {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

body.demo-shell > .header .nav-menu {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

body.demo-shell > .header .nav-menu a {
  color: var(--demo-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 300ms ease;
}

body.demo-shell > .header .nav-menu a:hover {
  color: var(--demo-text);
}

body.demo-shell > .header .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--demo-dark);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 300ms var(--demo-ease), background-color 300ms ease;
}

body.demo-shell > .header .nav-cta:hover {
  background: var(--demo-zinc);
  transform: translateY(-1px) scale(1.02);
}

body.demo-shell > .header .nav-cta svg {
  width: 16px;
  height: 16px;
}

body.demo-shell > .sim-hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 186px 0 118px;
  border: 0;
  background: var(--demo-dark);
  background-image: none;
  color: #ffffff;
}

body.demo-shell > .sim-hero-section::before,
body.demo-shell > .sim-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: soft-light;
  filter: contrast(65%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.demo-shell > .sim-hero-section .sim-hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

body.demo-shell > .sim-hero-section .pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: var(--demo-accent);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.demo-shell > .sim-hero-section .status-dot,
body.demo-shell > .sim-terminal-section .sim-terminal-header .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--demo-accent);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.72);
}

body.demo-shell > .sim-hero-section .sim-hero-title {
  max-width: 900px;
  margin: 26px auto 26px;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

body.demo-shell > .sim-hero-section .sim-hero-title span {
  color: var(--demo-accent);
  font-style: normal;
}

body.demo-shell > .sim-hero-section .sim-hero-desc {
  max-width: 800px;
  margin: 0 auto;
  color: var(--demo-dim);
  font-size: 1.12rem;
  font-weight: 350;
  line-height: 1.7;
}

body.demo-shell > .sim-hero-section .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

body.demo-shell > .sim-hero-section .demo-button,
body.demo-shell > .sim-cta-section .demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 300ms var(--demo-ease), background-color 300ms ease, border-color 300ms ease;
}

body.demo-shell .demo-button-primary {
  background: var(--demo-accent);
  color: #000000;
}

body.demo-shell .demo-button-primary:hover {
  background: var(--demo-accent-hover);
  transform: translateY(-2px) scale(1.02);
}

body.demo-shell .demo-button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

body.demo-shell .demo-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

body.demo-shell > .sim-hero-section .hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 56px auto 0;
}

body.demo-shell > .sim-hero-section .proof-item {
  padding: 18px 16px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

body.demo-shell > .sim-hero-section .proof-value {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

body.demo-shell > .sim-hero-section .proof-label {
  display: block;
  margin-top: 4px;
  color: var(--demo-dim);
  font-size: 0.75rem;
  line-height: 1.45;
}

body.demo-shell > .sim-terminal-section {
  padding: 0 0 112px;
  border: 0;
  background: var(--demo-bg);
  scroll-margin-top: 150px;
}

body.demo-shell > .sim-terminal-section .sim-terminal-frame {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  overflow: hidden;
  border: 1px solid var(--demo-border-dark);
  border-radius: 40px;
  background: var(--demo-dark);
  box-shadow: 0 32px 90px -56px rgba(0, 0, 0, 0.72);
}

body.demo-shell > .sim-terminal-section .sim-terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px 24px;
  border: 0;
  border-bottom: 1px solid var(--demo-border-dark);
  background: var(--demo-dark);
  color: #ffffff;
}

body.demo-shell > .sim-terminal-section .sim-terminal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.demo-shell > .sim-terminal-section .btn-fullscreen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 300ms ease, border-color 300ms ease;
}

body.demo-shell > .sim-terminal-section .btn-fullscreen:hover {
  border-color: rgba(52, 211, 153, 0.46);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transform: none;
}

body.demo-shell > .sim-terminal-section .demo-scrollable-viewport {
  width: 100%;
  height: 680px;
  overflow: auto;
  background: #ffffff;
  contain: layout paint;
  isolation: isolate;
  transform: translateZ(0);
}

body.demo-shell > .doc-article-section {
  padding: 112px 0 128px;
  border: 0;
  border-top: 1px solid rgba(24, 24, 27, 0.06);
  background: var(--demo-bg);
  scroll-margin-top: 110px;
}

body.demo-shell > .doc-article-section #matrix,
body.demo-shell > .doc-article-section #faq,
body.demo-shell > .doc-article-section #cta {
  scroll-margin-top: 110px;
}

body.demo-shell > .doc-article-section > .container {
  display: block;
}

body.demo-shell > .doc-article-section .article-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.48fr);
  column-gap: 96px;
  row-gap: 0;
  align-items: start;
}

body.demo-shell > .doc-article-section .article-header {
  position: sticky;
  top: 124px;
  margin: 0;
}

body.demo-shell > .doc-article-section .article-header .pill-tag {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--demo-accent);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.demo-shell > .doc-article-section .article-title {
  margin: 18px 0 22px;
  color: var(--demo-text);
  font-family: inherit;
  font-size: clamp(2.2rem, 3vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

body.demo-shell > .doc-article-section .article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: var(--demo-muted);
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1.5;
}

body.demo-shell > .doc-article-section .article-body {
  width: 100%;
  min-width: 0;
  max-width: none;
  color: var(--demo-text);
  font-size: 1rem;
  line-height: 1.75;
}

body.demo-shell > .doc-article-section .article-body > p {
  max-width: 740px;
  margin: 0 0 22px;
  color: #3f3f46;
}

body.demo-shell > .doc-article-section .article-body h2 {
  margin: 64px 0 20px;
  padding: 0;
  border: 0;
  color: var(--demo-text);
  font-family: inherit;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

body.demo-shell > .doc-article-section .article-body h3 {
  color: var(--demo-text);
  font-family: inherit;
  font-weight: 700;
}

body.demo-shell > .doc-article-section .article-callout-box {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid var(--demo-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
}

body.demo-shell > .doc-article-section .article-callout-box.logic-callout {
  border-color: rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.1);
}

body.demo-shell > .doc-article-section .sow-clause-list {
  margin: 0;
  padding-left: 20px;
  color: #52525b;
}

body.demo-shell > .doc-article-section .sow-clause-list li::marker {
  color: var(--demo-accent);
}

body.demo-shell > .doc-article-section .comparison-table-wrapper {
  margin: 30px 0 56px;
  overflow-x: auto;
  border: 1px solid var(--demo-border);
  border-radius: 24px;
  background: #ffffff;
}

body.demo-shell > .doc-article-section .comp-matrix-table {
  min-width: 720px;
  border: 0;
  box-shadow: none;
}

body.demo-shell > .doc-article-section .comp-matrix-table th,
body.demo-shell > .doc-article-section .comp-matrix-table td {
  padding: 17px 18px;
  border: 0;
  border-bottom: 1px solid var(--demo-border);
  color: var(--demo-text);
}

body.demo-shell > .doc-article-section .comp-matrix-table th {
  background: var(--demo-dark);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.demo-shell > .doc-article-section .comp-matrix-table th:last-child {
  color: var(--demo-accent);
}

body.demo-shell > .doc-article-section .comp-matrix-table td:last-child {
  font-weight: 700;
}

body.demo-shell > .doc-article-section .comp-matrix-table tr:nth-child(even) {
  background: #fafafa;
}

body.demo-shell > .doc-article-section .comp-matrix-table tr:last-child td {
  border-bottom: 0;
}

body.demo-shell > .doc-article-section .faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

body.demo-shell > .doc-article-section .faq-card {
  overflow: hidden;
  border: 1px solid var(--demo-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
  transition: border-color 300ms ease;
}

body.demo-shell > .doc-article-section .faq-card:hover,
body.demo-shell > .doc-article-section .faq-card.open {
  border-color: rgba(52, 211, 153, 0.42);
}

body.demo-shell > .doc-article-section .faq-question {
  width: 100%;
  min-height: 72px;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: var(--demo-text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 650;
  text-align: left;
}

body.demo-shell > .doc-article-section .faq-question span {
  color: var(--demo-accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 300ms ease;
}

body.demo-shell > .doc-article-section .faq-card.open .faq-question span {
  transform: rotate(45deg);
}

body.demo-shell > .doc-article-section .faq-answer {
  padding: 0 26px 24px;
  color: var(--demo-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

body.demo-shell > .doc-article-section .sim-cta-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  margin: 112px 0 0;
  padding: 76px 48px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 40px;
  background: var(--demo-dark);
  box-shadow: none;
  color: #ffffff;
}

body.demo-shell > .doc-article-section .sim-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.demo-shell > .doc-article-section .sim-cta-content {
  display: flex;
  width: min(100%, 760px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.demo-shell > .doc-article-section .sim-cta-banner .pill-tag {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--demo-accent);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
}

body.demo-shell > .doc-article-section .sim-cta-banner h2 {
  max-width: 640px;
  margin: 18px auto 0;
  color: #ffffff;
  font-family: inherit !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  font-weight: 650 !important;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

body.demo-shell > .doc-article-section .sim-cta-banner p {
  max-width: 620px !important;
  margin: 18px auto 30px !important;
  color: var(--demo-dim) !important;
  line-height: 1.65;
}

body.demo-shell > .doc-article-section .sim-cta-banner .demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 300ms var(--demo-ease), background-color 300ms ease;
}

body.demo-shell > .doc-article-section .sim-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

body.demo-shell > .footer {
  padding: 34px 0;
  border: 0;
  border-top: 1px solid var(--demo-border);
  background: #ffffff;
  color: var(--demo-muted);
}

body.demo-shell > .footer .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.875rem;
}

body.demo-shell > .footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.demo-shell > .footer a {
  color: var(--demo-muted);
  text-decoration: none;
  transition: color 300ms ease;
}

body.demo-shell > .footer a:hover {
  color: var(--demo-text);
}

body.demo-shell > .modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

body.demo-shell > .modal-backdrop .modal-card {
  position: relative;
  width: min(100%, 700px);
  padding: 46px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 40px;
  background: var(--demo-zinc);
  box-shadow: 0 34px 100px -48px rgba(0, 0, 0, 0.9);
  color: #ffffff;
}

body.demo-shell > .modal-backdrop .modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
}

body.demo-shell > .modal-backdrop .pill-tag {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--demo-accent);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
}

body.demo-shell > .modal-backdrop .serif-title {
  color: #ffffff;
  font-family: inherit !important;
  font-size: 1.75rem !important;
  font-weight: 650;
  letter-spacing: -0.04em;
}

body.demo-shell > .modal-backdrop .modal-copy {
  color: var(--demo-dim);
}

body.demo-shell > .modal-backdrop .modal-proof {
  padding: 20px;
  border: 1px solid var(--demo-border-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

body.demo-shell > .header a:focus-visible,
body.demo-shell > .sim-hero-section a:focus-visible,
body.demo-shell > .sim-hero-section button:focus-visible,
body.demo-shell > .sim-terminal-section button:focus-visible,
body.demo-shell > .doc-article-section a:focus-visible,
body.demo-shell > .doc-article-section button:focus-visible,
body.demo-shell > .doc-article-section .faq-question:focus-visible,
body.demo-shell > .footer a:focus-visible,
body.demo-shell > .modal-backdrop button:focus-visible {
  outline: 2px solid var(--demo-accent);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  body.demo-shell > .header .nav-menu {
    display: none;
  }

  body.demo-shell > .doc-article-section .article-layout {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }

  body.demo-shell > .doc-article-section .article-header {
    position: static;
    max-width: 760px;
  }

  body.demo-shell > .doc-article-section .sim-cta-banner {
    margin-top: 40px;
  }
}

@media (max-width: 720px) {
  body.demo-shell > .header {
    top: 14px;
    width: calc(100% - 28px);
  }

  body.demo-shell > .header .header-layout {
    min-height: 58px;
    padding-left: 14px;
  }

  body.demo-shell > .header .brand-wordmark {
    display: none;
  }

  body.demo-shell > .header .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  body.demo-shell > .header .nav-cta svg {
    display: none;
  }

  body.demo-shell > .sim-hero-section {
    padding: 136px 0 78px;
  }

  body.demo-shell > .sim-hero-section .sim-hero-title {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  body.demo-shell > .sim-hero-section .sim-hero-desc {
    font-size: 1rem;
  }

  body.demo-shell > .sim-hero-section .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.demo-shell > .sim-hero-section .demo-button {
    width: 100%;
  }

  body.demo-shell > .sim-hero-section .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 34px;
  }

  body.demo-shell > .sim-hero-section .proof-item {
    padding: 13px 7px;
  }

  body.demo-shell > .sim-hero-section .proof-value {
    font-size: 0.78rem;
  }

  body.demo-shell > .sim-hero-section .proof-label {
    font-size: 0.62rem;
  }

  body.demo-shell > .sim-terminal-section .sim-terminal-frame {
    margin-top: -38px;
    border-radius: 24px;
  }

  body.demo-shell > .sim-terminal-section .sim-terminal-header {
    padding: 12px 14px;
  }

  body.demo-shell > .sim-terminal-section .demo-scrollable-viewport {
    height: 620px;
  }

  body.demo-shell > .doc-article-section {
    padding: 80px 0 92px;
  }

  body.demo-shell > .doc-article-section .article-callout-box,
  body.demo-shell > .doc-article-section .faq-question,
  body.demo-shell > .doc-article-section .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.demo-shell > .doc-article-section .sim-cta-banner {
    min-height: auto;
    margin-top: 24px;
    padding: 48px 24px;
    border-radius: 28px;
  }

  body.demo-shell > .doc-article-section .sim-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  body.demo-shell > .doc-article-section .sim-cta-actions .demo-button {
    width: 100%;
  }

  body.demo-shell > .footer .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.demo-shell > .modal-backdrop .modal-card {
    padding: 38px 24px 28px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.demo-shell > .header *,
  body.demo-shell > .sim-hero-section *,
  body.demo-shell > .sim-terminal-section .sim-terminal-header *,
  body.demo-shell > .doc-article-section *,
  body.demo-shell > .footer * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
