:root {
  --navy-950: #061823;
  --navy-900: #092534;
  --navy-800: #103b52;
  --navy-700: #18536e;
  --orange: #c94b0b;
  --orange-dark: #b94208;
  --blue: #086b9b;
  --ink: #172832;
  --muted: #53646e;
  --line: #d5e0e4;
  --paper: #fcfdfd;
  --wash: #f2f6f7;
  --green: #17825b;
  --focus: #ffd44d;
  --radius: 12px;
  --radius-large: 20px;
  --shadow: 0 18px 50px rgb(4 29 42 / 12%);
  --shadow-soft: 0 8px 24px rgb(4 29 42 / 8%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.62 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; height: auto; }
button, input, select { font: inherit; }
:where(a, button, input, select, summary):focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; box-shadow: 0 0 0 1px var(--navy-950); }
.skip-link { position: absolute; top: -60px; left: 1rem; z-index: 30; padding: .6rem 1rem; background: white; }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.site-header { position: relative; z-index: 20; background: var(--navy-900); color: white; border-bottom: 3px solid var(--orange); }
.header-inner { width: min(1180px, calc(100% - 2rem)); min-height: 76px; margin: auto; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; flex-direction: column; flex: none; color: white; text-decoration: none; line-height: 1; letter-spacing: .055em; }
.brand:hover { color: white; }
.brand-main { font-size: 1.38rem; font-weight: 800; }
.brand-sub { margin-top: .2rem; font-size: .54rem; font-weight: 700; letter-spacing: .38em; }
.main-menu { display: flex; align-items: stretch; gap: .2rem; margin-left: auto; }
.main-menu a { display: inline-flex; align-items: center; min-height: 76px; padding: 0 .9rem; color: #eaf1f5; font-size: .94rem; font-weight: 650; text-decoration: none; }
.main-menu a:hover { color: white; background: rgb(255 255 255 / 8%); }
.header-search { position: relative; display: flex; width: 92px; min-width: 44px; height: 46px; align-items: center; margin: 0; color: white; background: rgb(255 255 255 / 4%); border: 1px solid rgb(255 255 255 / 28%); border-radius: 999px; overflow: hidden; transition: width .22s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease; }
.header-search.is-open { width: 270px; background: #102f40; border-color: rgb(255 255 255 / 52%); box-shadow: 0 10px 30px rgb(0 0 0 / 24%); }
.header-search-toggle, .header-search-submit { min-width: 44px; height: 44px; flex: none; color: inherit; background: transparent; border: 0; cursor: pointer; }
.header-search-toggle { display: inline-flex; align-items: center; justify-content: center; gap: .48rem; padding: 0 .78rem; }
.header-search-toggle b { font-size: .84rem; font-weight: 700; }
.header-search-toggle span { width: 14px; height: 14px; flex: none; border: 2px solid currentColor; border-radius: 50%; }
.header-search-toggle span::after { display: block; width: 6px; height: 2px; margin: 10px 0 0 10px; content: ""; background: currentColor; transform: rotate(45deg); transform-origin: left center; }
.header-search input { width: 0; min-width: 0; height: 44px; padding: 0; color: white; background: transparent; border: 0; outline: 0; opacity: 0; pointer-events: none; transition: width .2s ease, opacity .14s ease; }
.header-search input::placeholder { color: #b8cad3; }
.header-search-submit { width: 0; min-width: 0; padding: 0; color: #ffb487; font-weight: 800; opacity: 0; pointer-events: none; transition: width .2s ease, opacity .14s ease; }
.header-search.is-open input { width: 100%; padding-inline: .1rem .35rem; opacity: 1; pointer-events: auto; }
.header-search.is-open .header-search-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.header-search.is-open .header-search-submit { width: 44px; min-width: 44px; opacity: 1; pointer-events: auto; }
.header-search-toggle:focus-visible, .header-search-submit:focus-visible, .header-search input:focus-visible { outline-offset: -2px; }
.menu-toggle { display: none; margin-left: auto; color: white; background: transparent; border: 1px solid rgb(255 255 255 / 40%); border-radius: 4px; padding: .4rem .7rem; }

.content-shell { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; padding: 3.5rem 0 5rem; }
.page-header { display: flex; align-items: flex-start; gap: 1.6rem; padding: 0 0 2rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
.page-header h1 { margin: 0; color: var(--navy-900); font-size: clamp(2.1rem, 5vw, 3.55rem); line-height: 1.05; letter-spacing: -.03em; }
.subtitle { max-width: 760px; margin: .75rem 0 0; color: var(--muted); font-size: 1.2rem; line-height: 1.45; }
.eyebrow { margin: 0 0 .45rem; color: var(--orange-dark); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.page-icon { width: 106px; flex: none; border-radius: 16px; box-shadow: var(--shadow); }
.version { margin: .55rem 0 0; color: var(--muted); font-size: .92rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .42rem; margin-top: .9rem; }
.tag-list a { padding: .22rem .62rem; color: var(--navy-700); background: #edf4f7; border-radius: 999px; font-size: .76rem; font-weight: 650; text-decoration: none; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .35rem .55rem; margin: -1.6rem 0 1.8rem; color: var(--muted); font-size: .86rem; }
.breadcrumbs a { color: var(--navy-700); }
.deprecated-notice { max-width: 850px; margin: -1rem 0 2rem; padding: 1rem 1.2rem; color: #603713; background: #fff3e8; border: 1px solid #efbd96; border-left: 5px solid var(--orange); border-radius: var(--radius); }
.deprecated-notice strong { color: var(--navy-900); font-size: 1.08rem; }
.deprecated-notice p { margin: .3rem 0 .45rem; }

.hero { color: white; background: radial-gradient(circle at 80% 20%, #245d79 0, transparent 38%), linear-gradient(125deg, var(--navy-950), var(--navy-800)); overflow: hidden; }
.hero-inner { width: min(1120px, calc(100% - 2rem)); margin: auto; padding: clamp(4.8rem, 9vw, 8rem) 0; }
.hero h1 { max-width: 800px; margin: 0; font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: .98; letter-spacing: -.045em; }
.hero p:not(.eyebrow) { max-width: 660px; margin: 1.4rem 0 0; color: #dbe7ee; font-size: 1.3rem; }
.hero .eyebrow { color: #ff9b5d; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button { display: inline-flex; justify-content: center; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: 4px; font-weight: 750; text-decoration: none; }
.button.primary { color: white; background: var(--orange); }
.button.primary:hover { color: white; background: var(--orange-dark); }
.button.secondary { color: var(--navy-900); background: white; border-color: var(--line); }
.hero .button.secondary { color: white; background: transparent; border-color: rgb(255 255 255 / 45%); }
.app-discovery { padding-block: 3.5rem 4.5rem; }
.instant-app-search { display: flex; max-width: 760px; margin: 0 auto 2rem; }
.instant-app-search input { width: 100%; padding: .82rem 1rem; border: 1px solid #8799a3; border-radius: 4px 0 0 4px; font-size: 1.15rem; }
.instant-app-search button { padding: .75rem 1.25rem; color: white; background: var(--orange); border: 1px solid var(--orange); border-radius: 0 4px 4px 0; font-weight: 750; }
.app-category-tabs { display: flex; overflow-x: auto; border-bottom: 1px solid #aebbc3; scrollbar-width: thin; }
.app-category-tabs button { min-width: max-content; flex: 1; padding: .7rem .8rem; color: var(--muted); background: transparent; border: 0; border-bottom: 3px solid transparent; font-size: .82rem; font-weight: 750; text-transform: uppercase; cursor: pointer; }
.app-category-tabs button:hover { color: var(--orange-dark); }
.app-category-tabs button[aria-pressed="true"] { color: var(--orange-dark); border-color: var(--orange); }
.app-discovery-status { display: flex; justify-content: space-between; gap: 1rem; min-height: 2.8rem; padding: .7rem .2rem; color: var(--muted); font-size: .86rem; }
.app-discovery-status p { margin: 0; }
.app-grid.home-app-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.home-app-grid .app-card { align-items: flex-start; min-height: 172px; flex-direction: column; }
.home-app-grid .app-card img { width: 72px; height: 76px; align-self: center; }
.home-app-grid .app-card span { width: 100%; text-align: center; }
.works-with { padding-block: 4rem; border-top: 1px solid var(--line); }
.platform-logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.platform-logo-grid div { display: grid; min-height: 92px; padding: 1rem; place-items: center; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); }
.platform-logo-grid img { max-width: 145px; max-height: 58px; object-fit: contain; filter: grayscale(1); opacity: .75; }
.platform-logo-grid div:hover img { filter: none; opacity: 1; }
.home-section { padding-block: 4.5rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.8rem; }
.section-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(1.7rem, 4vw, 2.45rem); line-height: 1.1; }
.home-band { background: var(--wash); border-block: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; padding-block: 3rem; }
.feature-row div { display: grid; gap: .35rem; }
.feature-row strong { color: var(--navy-900); font-size: 1.15rem; }
.feature-row span { color: var(--muted); }
.feature-row a { width: max-content; margin-top: .25rem; font-size: .9rem; font-weight: 700; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.app-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { color: inherit; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 1px 1px rgb(7 24 37 / 2%); transition: border-color .16s, box-shadow .16s, transform .16s; }
.card:hover { color: inherit; border-color: #aebfc9; box-shadow: var(--shadow); transform: translateY(-2px); }
.app-card { display: flex; align-items: center; min-height: 132px; gap: .9rem; padding: 1rem; text-decoration: none; }
.app-card img { width: 72px; max-height: 78px; object-fit: contain; flex: none; border-radius: 10px; }
.app-card span { display: grid; gap: .28rem; min-width: 0; }
.app-card strong { color: var(--navy-900); font-size: 1.05rem; line-height: 1.2; }
.app-card small { color: var(--muted); line-height: 1.35; }
.content-card { padding: 1.3rem 1.4rem 1.5rem; }
.content-card h2 { margin: .25rem 0 .6rem; font-size: 1.22rem; line-height: 1.28; }
.content-card h2 a { color: var(--navy-900); text-decoration: none; }
.content-card p:last-child { color: var(--muted); margin-bottom: 0; }
.content-card time { color: var(--muted); font-size: .8rem; }
.help-card { display: block; min-height: 185px; padding: 1.5rem; text-decoration: none; }
.help-card h2 { margin: 0 0 .7rem; color: var(--navy-900); }
.help-card p { color: var(--muted); }

.filter-bar { display: flex; align-items: center; gap: 1rem; margin: -1rem 0 2rem; padding: .9rem 1rem; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); }
.filter-bar label { flex: none; font-weight: 700; }
.filter-bar input { width: 100%; padding: .62rem .75rem; background: white; border: 1px solid #b8c5cc; border-radius: 4px; }
.filter-bar select { flex: none; max-width: 220px; padding: .62rem .75rem; background: white; border: 1px solid #b8c5cc; border-radius: 4px; }
.app-controls select { flex: none; padding: .62rem .75rem; background: white; border: 1px solid #b8c5cc; border-radius: 4px; }
.category-links { display: flex; flex-wrap: wrap; gap: .5rem; margin: -1rem 0 2rem; }
.category-links a { padding: .35rem .7rem; color: var(--navy-700); background: #edf4f7; border-radius: 999px; font-size: .82rem; font-weight: 700; text-decoration: none; }
.document-list { border-top: 1px solid var(--line); }
.document-list > a { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem .4rem; color: var(--navy-900); border-bottom: 1px solid var(--line); text-decoration: none; }
.document-list > a:hover { background: var(--wash); }
.document-list small { color: var(--muted); flex: none; }
.docs-start { margin-bottom: 4rem; }
.docs-start-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.docs-start-grid .help-card { min-height: 0; }
.docs-start-grid h3 { margin: 0 0 .55rem; color: var(--navy-900); font-size: 1.12rem; }
.docs-browser .section-heading > p { margin: 0; color: var(--muted); font-size: .9rem; }
.docs-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.docs-category { align-self: start; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.docs-category > header { min-height: 110px; padding: 1.15rem 1.25rem; background: var(--wash); }
.docs-category h3 { margin: 0; color: var(--navy-900); font-size: 1.2rem; line-height: 1.3; }
.docs-category h3 a { color: inherit; text-decoration: none; }
.docs-category header p { margin: .4rem 0 0; color: var(--muted); font-size: .86rem; }
.docs-category details { border-top: 1px solid var(--line); }
.docs-category summary, .legacy-documentation summary { padding: .75rem 1.25rem; color: var(--navy-700); font-weight: 700; cursor: pointer; }
.doc-tree { margin: 0; padding: .2rem 1rem 1rem 2.35rem; }
.doc-tree .doc-tree { padding: .35rem 0 .2rem 1.2rem; border-left: 1px solid var(--line); }
.doc-tree li { margin: .38rem 0; padding-left: .15rem; }
.doc-tree a { color: var(--navy-900); text-decoration: none; }
.doc-tree a:hover { color: var(--orange-dark); text-decoration: underline; }
.doc-tree small { margin-left: .5rem; padding: .12rem .4rem; color: #774516; background: #fff0e2; border-radius: 999px; font-size: .7rem; text-transform: uppercase; }
.legacy-documentation { margin-top: 3rem; border: 1px solid #e8c7a8; border-radius: var(--radius); }
.legacy-documentation summary { display: flex; justify-content: space-between; color: #774516; background: #fff7ef; }
.legacy-documentation summary small { font-weight: 500; }
.legacy-documentation > details > p { margin: .8rem 1.25rem 1rem; color: var(--muted); }
.faq-start, .faq-topics, .blog-latest, .blog-topics { margin-bottom: 4rem; }
.faq-popular-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.faq-popular-card { display: grid; align-content: space-between; min-height: 150px; padding: 1.1rem 1.2rem; text-decoration: none; }
.faq-popular-card span { color: var(--orange-dark); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.faq-popular-card h3 { margin: .45rem 0 .8rem; color: var(--navy-900); font-size: 1.05rem; line-height: 1.32; }
.faq-popular-card small { color: var(--blue); font-weight: 700; }
.faq-topic-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .8rem; }
.faq-topic-card, .blog-topic-card { display: grid; align-content: start; gap: .45rem; padding: 1.1rem; text-decoration: none; }
.faq-topic-card strong, .blog-topic-card strong { color: var(--navy-900); font-size: 1.05rem; line-height: 1.25; }
.faq-topic-card small, .blog-topic-card small { color: var(--muted); line-height: 1.4; }
.faq-topic-count, .blog-topic-card > span { color: var(--orange-dark); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.faq-library .section-heading > p, .blog-archive .section-heading > p { margin: 0; color: var(--muted); font-size: .9rem; }
.faq-controls, .blog-controls { margin-bottom: 1rem; }
.faq-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.faq-topic-group { align-self: start; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; scroll-margin-top: 1rem; }
.faq-topic-group:target { border-color: var(--orange); box-shadow: 0 0 0 3px rgb(243 111 33 / 14%); }
.faq-topic-group > header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.2rem; background: var(--wash); border-bottom: 1px solid var(--line); }
.faq-topic-group h3 { margin: 0; color: var(--navy-900); font-size: 1.22rem; }
.faq-topic-group header p { margin: .35rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.42; }
.faq-topic-group header > a { flex: none; font-size: .78rem; font-weight: 700; }
.faq-question-list { margin: 0; padding: 0; list-style: none; }
.faq-question-list li + li { border-top: 1px solid var(--line); }
.faq-question-list a { display: block; padding: .8rem 1.2rem; color: var(--navy-900); line-height: 1.35; text-decoration: none; }
.faq-question-list a:hover { color: var(--orange-dark); background: #fbfcfc; text-decoration: underline; }
.faq-library > .empty-state, .blog-archive > .empty-state { margin-top: 1rem; }
.blog-latest-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 1rem; }
.blog-feature { padding: 1.5rem 1.6rem; }
.blog-feature h3 { margin: .8rem 0 .6rem; color: var(--navy-900); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.18; }
.blog-feature h3 a { color: inherit; text-decoration: none; }
.blog-feature time, .blog-recent-list time { color: var(--muted); font-size: .8rem; }
.blog-feature > p:not(.content-type-badge) { color: var(--muted); }
.blog-read-more { font-weight: 750; }
.blog-recent-list { display: grid; border: 1px solid var(--line); border-radius: var(--radius); }
.blog-recent-list article { display: grid; align-content: center; gap: .2rem; padding: .8rem 1.1rem; }
.blog-recent-list article + article { border-top: 1px solid var(--line); }
.blog-recent-list h3 { margin: 0; font-size: 1rem; line-height: 1.3; }
.blog-recent-list h3 a { color: var(--navy-900); text-decoration: none; }
.blog-recent-list h3 a:hover { color: var(--orange-dark); text-decoration: underline; }
.blog-topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.blog-topic-card { min-height: 155px; }
.blog-year-groups { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.blog-year-group + .blog-year-group { border-top: 1px solid var(--line); }
.blog-year-group summary { display: flex; align-items: baseline; justify-content: space-between; padding: .9rem 1.15rem; color: var(--navy-900); background: var(--wash); font-size: 1.15rem; font-weight: 800; cursor: pointer; }
.blog-year-group summary small { color: var(--muted); font-size: .78rem; font-weight: 500; }
.blog-article-list { margin: 0; padding: 0; list-style: none; }
.blog-article-list > li { display: grid; grid-template-columns: 4.6rem minmax(0, 1fr) minmax(120px, auto); align-items: baseline; gap: .8rem; padding: .72rem 1.15rem; }
.blog-article-list > li + li { border-top: 1px solid var(--line); }
.blog-article-list > li:hover { background: #fbfcfc; }
.blog-article-list time { color: var(--muted); font-size: .78rem; }
.blog-article-title { color: var(--navy-900); line-height: 1.35; text-decoration: none; }
.blog-article-title:hover { color: var(--orange-dark); text-decoration: underline; }
.blog-article-tags { display: flex; justify-content: flex-end; gap: .3rem; }
.blog-article-tags a { padding: .12rem .42rem; color: var(--navy-700); background: #edf4f7; border-radius: 999px; font-size: .68rem; text-decoration: none; }
.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.screenshot-controls { margin-bottom: 1rem; }
.gallery-status { min-height: 2.6rem; margin: 0; padding: .7rem .2rem; color: var(--muted); font-size: .88rem; }
.screenshot-card { display: grid; align-content: start; color: var(--navy-900); background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.screenshot-card-image { display: block; background: #dde4e8; }
.screenshot-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #dde4e8; }
.screenshot-card > div { display: grid; gap: .25rem; padding: .8rem 1rem; }
.screenshot-card strong a { color: var(--navy-900); text-decoration: none; }
.screenshot-card small { color: var(--muted); }
.screenshot-detail { max-width: 1050px; margin: 0 0 2rem; }
.screenshot-detail img { display: block; width: 100%; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.screenshot-detail figcaption { margin-top: .5rem; color: var(--muted); font-size: .86rem; }
.forum-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-bottom: 3rem; }
.forum-category-grid .help-card { min-height: 0; }
.forum-tag-discovery { margin: 0 0 3.5rem; }
.forum-tag-discovery .tag-list { margin-top: 0; }
.forum-tag-discovery .tag-list a span { color: var(--muted); font-weight: 500; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: 2.5rem; }

.prose { max-width: 850px; font-size: 1.03rem; }
.content-appliance .prose { max-width: none; }
.prose h2, .prose h3, .prose h4 { color: var(--navy-900); line-height: 1.22; margin: 1.8em 0 .55em; }
.prose h2 { font-size: 1.7rem; }
.prose h3 { font-size: 1.32rem; }
.prose p { margin: 0 0 1.05em; }
.prose li { margin-block: .25rem; }
.prose pre, .prose code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.prose pre { overflow-x: auto; padding: 1rem; color: #e9f0f4; background: var(--navy-950); border-radius: 5px; }
.prose code { padding: .08rem .28rem; background: #edf1f3; border-radius: 3px; }
.prose code { overflow-wrap: anywhere; word-break: break-word; }
.prose pre code { padding: 0; background: transparent; overflow-wrap: normal; word-break: normal; }
.prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.prose th, .prose td { padding: .55rem .7rem; border: 1px solid var(--line); text-align: left; }
.prose blockquote { margin-inline: 0; padding: .2rem 1rem; color: var(--muted); border-left: 4px solid var(--orange); }
.prose hr { margin: 2rem 0; border: 0; border-top: 1px solid var(--line); }
.prose .actionbox { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: .7rem; margin: 1.6rem 0; padding: .9rem; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); }
.prose .actionbox > div { padding: .8rem; background: white; border: 1px solid var(--line); border-radius: 4px; }
.prose .actionbox h3 { margin: 0 0 .4rem; font-size: 1rem; }
.prose .screenshots > .field > .field-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.prose .screenshots .node-screenshot { overflow: hidden; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); }
.prose .screenshots img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; }
.prose .screenshots a[href] { display: block; color: inherit; text-decoration: none; }
.prose .screenshots a[href]:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.prose .gallery_title { padding: .5rem .7rem; color: var(--muted); font-size: .82rem; }
.prose .field-label { font-weight: 700; }
.static-notice { padding: .8rem 1rem; color: #65420c; background: #fff6dc; border: 1px solid #eed397; border-radius: 4px; }
.legacy-smiley { display: inline-block; font-size: 1.05em; line-height: 1; vertical-align: -.08em; }
.legacy-file-icon { display: inline-block; margin-right: .3rem; line-height: 1; vertical-align: -.08em; }
.forum-archive-notice { max-width: 850px; margin: -1rem 0 2rem; padding: 1rem 1.2rem; color: #523b14; background: #fff7df; border: 1px solid #e7c978; border-left: 5px solid var(--orange); border-radius: var(--radius); }
.forum-archive-notice strong { color: var(--navy-900); font-size: 1.05rem; }
.forum-archive-notice p { margin: .3rem 0 .45rem; }
.forum-replies { margin-top: 3.2rem; padding-top: .6rem; border-top: 3px solid var(--navy-800); }
.forum-replies > h2 { margin-top: 1rem; }
.forum-reply { margin: 1rem 0; padding: 1rem 1.1rem; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: 1rem; }
.forum-reply:target { border-color: var(--orange); box-shadow: 0 0 0 3px rgb(243 111 33 / 16%); }
.forum-reply-header { display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem .75rem; padding-bottom: .65rem; margin-bottom: .8rem; border-bottom: 1px solid var(--line); }
.forum-reply-header h3 { flex-basis: 100%; margin: 0; font-size: 1.05rem; }
.forum-reply-header time, .forum-reply-permalink { color: var(--muted); font-size: .78rem; }
.forum-reply-body > :last-child { margin-bottom: 0; }
.forum-reply-depth-1 { margin-left: 1.5rem; }
.forum-reply-depth-2 { margin-left: 3rem; }
.forum-reply-depth-3, .forum-reply-depth-4, .forum-reply-depth-5 { margin-left: 4.5rem; }

.site-search { max-width: 760px; }
.site-search label { display: block; margin-bottom: .5rem; font-weight: 700; }
.site-search div { display: flex; }
.site-search input { width: 100%; padding: .75rem; border: 1px solid #aebbc3; border-radius: 4px 0 0 4px; }
.site-search button { padding: .7rem 1.1rem; color: white; background: var(--orange); border: 1px solid var(--orange); border-radius: 0 4px 4px 0; font-weight: 700; }
.search-results { max-width: 850px; margin-top: 1.4rem; }
.search-result-group + .search-result-group { margin-top: 2.2rem; }
.search-result-group > .result-heading { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: .45rem; border-bottom: 2px solid var(--navy-800); }
.search-result-group > .result-heading small { color: var(--muted); font-size: .78rem; font-weight: 500; }
.search-result-group > div { display: grid; gap: .6rem; }
.search-result { padding: 1rem; border: 1px solid var(--line); border-radius: 4px; }
.search-result h3 { margin: .25rem 0 0; font-size: 1.1rem; }
.search-result p { margin: .35rem 0 0; color: var(--muted); }
.content-type-badge { display: inline-flex; padding: .13rem .45rem; color: var(--navy-700); background: #e9f2f6; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.error-page { min-height: 55vh; text-align: center; }
.error-page h1 { margin: 0; font-size: clamp(2.5rem, 8vw, 5rem); color: var(--navy-900); }
.result-heading { margin: 2.5rem 0 1rem; color: var(--navy-900); }
.empty-state { max-width: 680px; padding: 1.5rem; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); }
.empty-state h2 { margin-top: 0; }
.related-content { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line); }

.site-footer { color: #bacbd5; background: var(--navy-950); }
.footer-inner { width: min(1120px, calc(100% - 2rem)); margin: auto; padding: 2.5rem 0; display: grid; grid-template-columns: 1fr 2fr; gap: 1rem 3rem; align-items: center; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem 1.5rem; }
.footer-inner nav a { color: #e3edf2; text-decoration: none; }
.footer-inner p { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .85rem; }
.footer-brand { opacity: .88; }

[hidden] { display: none !important; }

@media (max-width: 900px) {
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-start-grid, .docs-category-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-topic-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .app-grid.home-app-grid, .platform-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-toggle { display: block; }
  .main-menu { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; padding: .5rem 1rem 1rem; background: var(--navy-900); border-bottom: 3px solid var(--orange); }
  .main-menu.open { display: flex; }
  .main-menu a { min-height: 44px; }
}

@media (max-width: 580px) {
  .header-inner { gap: .7rem; }
  .hero-inner { padding-block: 4.5rem; }
  .hero h1 { font-size: 2.75rem; }
  .app-grid.home-app-grid { grid-template-columns: 1fr; }
  .platform-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .app-discovery-status { display: block; }
  .page-header { display: block; }
  .page-icon { margin-bottom: 1rem; }
  .card-grid, .app-grid, .screenshot-grid { grid-template-columns: 1fr; }
  .docs-start-grid, .docs-category-grid { grid-template-columns: 1fr; }
  .faq-popular-grid, .faq-topic-grid, .faq-groups, .blog-latest-grid, .blog-topic-grid { grid-template-columns: 1fr; }
  .forum-category-grid { grid-template-columns: 1fr; }
  .filter-bar { display: block; }
  .filter-bar input { margin-top: .5rem; }
  .filter-bar select, .app-controls select { width: 100%; max-width: none; margin-top: .5rem; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .prose .screenshots > .field > .field-items { grid-template-columns: 1fr; }
  .document-list > a { display: grid; }
  .blog-article-list > li { grid-template-columns: 3.8rem minmax(0, 1fr); gap: .45rem; }
  .blog-article-tags { grid-column: 2; justify-content: flex-start; }
  .forum-reply-depth-1, .forum-reply-depth-2, .forum-reply-depth-3, .forum-reply-depth-4, .forum-reply-depth-5 { margin-left: .75rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { justify-content: flex-start; }
}

/* Open Infrastructure visual language */

html { scroll-padding-top: 1rem; }
body { min-width: 320px; }
.site-header { background: rgb(6 24 35 / 97%); border-bottom: 1px solid rgb(255 255 255 / 10%); backdrop-filter: blur(12px); }
.header-inner { width: min(1220px, calc(100% - 3rem)); min-height: 72px; gap: 1.5rem; }
.brand { position: relative; padding-left: 1rem; }
.brand::before { position: absolute; left: 0; top: -.04rem; width: 4px; height: 1.86rem; content: ""; background: var(--orange); border-radius: 3px; transform: skewY(-20deg); }
.brand-main { font-size: 1.24rem; letter-spacing: .035em; }
.brand-sub { margin-top: .24rem; font-size: .49rem; letter-spacing: .42em; }
.main-menu { gap: .35rem; }
.main-menu a { position: relative; min-height: 72px; padding-inline: .8rem; color: #dce8ed; font-size: .88rem; letter-spacing: .01em; }
.main-menu a::after { position: absolute; right: .8rem; bottom: 13px; left: .8rem; height: 2px; content: ""; background: var(--orange); border-radius: 2px; opacity: 0; transform: scaleX(.45); transition: opacity .16s ease, transform .16s ease; }
.main-menu a:hover, .main-menu a[aria-current="page"] { color: white; background: transparent; }
.main-menu a:hover::after, .main-menu a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.menu-toggle { min-height: 44px; padding-inline: .9rem; border-radius: 8px; }

.content-shell { width: min(1160px, calc(100% - 3rem)); padding-block: 4.5rem 5.5rem; }
.breadcrumbs { margin: -1.8rem 0 1.5rem; font-size: .81rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--blue); }
.eyebrow { margin-bottom: .65rem; color: var(--orange-dark); font-size: .7rem; letter-spacing: .16em; }
.page-header { position: relative; padding: 1.2rem 0 2.4rem; margin-bottom: 3rem; }
.page-header::after { position: absolute; right: 0; bottom: -1px; width: 22%; height: 1px; content: ""; background: var(--orange); }
.page-header h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: -.045em; }
.subtitle { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.section-heading { align-items: end; margin-bottom: 2rem; }
.section-heading > div > p:last-child:not(.eyebrow) { max-width: 700px; margin: .75rem 0 0; color: var(--muted); }
.section-heading h2 { font-size: clamp(1.85rem, 4vw, 2.65rem); letter-spacing: -.035em; }

.button { min-height: 46px; align-items: center; gap: .55rem; padding: .72rem 1.2rem; border-radius: 9px; box-shadow: 0 1px 1px rgb(6 24 35 / 8%); transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--orange); box-shadow: 0 7px 20px rgb(237 100 29 / 23%); }
.button.primary:hover { background: #a93605; box-shadow: 0 9px 25px rgb(201 75 11 / 28%); }
.button.secondary { border-color: #aebec6; }

.hub-ribbon { display: block; color: #dfeef4; background: #0c3042; border-bottom: 1px solid rgb(255 255 255 / 9%); text-decoration: none; }
.hub-ribbon:hover { color: white; background: #103a4e; }
.hub-ribbon .content-shell { padding-block: 0; }
.hub-ribbon-inner { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: .84rem; }
.hub-ribbon-inner > span:first-child { display: flex; align-items: center; gap: 1rem; }
.hub-ribbon strong { color: white; letter-spacing: .03em; }
.hub-ribbon strong::after { display: inline-block; width: 1px; height: 16px; margin-left: 1rem; content: ""; background: rgb(255 255 255 / 24%); vertical-align: middle; }
.hub-ribbon-action { flex: none; color: #ffae7e; font-weight: 750; }
.hub-ribbon-action span { display: inline-block; margin-left: .28rem; transition: transform .16s ease; }
.hub-ribbon:hover .hub-ribbon-action span { transform: translateX(3px); }

.home-hero { position: relative; background: radial-gradient(circle at 82% 12%, rgb(44 121 153 / 32%), transparent 30%), linear-gradient(118deg, #051a26 0%, #0b2e40 58%, #0e4058 100%); }
.home-hero::before { position: absolute; inset: 0; content: ""; opacity: .1; background-image: linear-gradient(rgb(255 255 255 / 24%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 24%) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, transparent 25%, black 100%); }
.home-hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); padding-block: clamp(5.2rem, 9vw, 8.2rem); }
.home-hero-copy { position: relative; z-index: 2; }
.home-hero .eyebrow { color: #ffae7e; }
.home-hero h1 { max-width: 680px; font-size: clamp(3.2rem, 6.5vw, 5.75rem); line-height: .94; }
.home-hero h1 span { color: #ff9b64; }
.home-hero p:not(.eyebrow) { max-width: 650px; margin-top: 1.6rem; color: #d3e2e8; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.home-hero .button.secondary { color: white; background: rgb(255 255 255 / 4%); border-color: rgb(255 255 255 / 36%); }
.home-hero .button.secondary:hover { background: rgb(255 255 255 / 10%); border-color: rgb(255 255 255 / 55%); }
.hero-confidence { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 2.2rem 0 0; padding: 0; color: #bdd1d9; font-size: .82rem; list-style: none; }
.hero-confidence li::before { margin-right: .48rem; color: #62d2a4; content: "✓"; font-weight: 800; }
.infrastructure-demo { position: relative; display: grid; min-height: 360px; place-items: center; }
.demo-window { position: relative; z-index: 2; width: min(100%, 540px); color: #d6e5eb; background: #061923; border: 1px solid #456674; border-radius: 11px; box-shadow: 0 28px 60px rgb(0 7 13 / 28%); overflow: hidden; }
.demo-toolbar { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; color: #88a4af; background: #0d2733; border-bottom: 1px solid #294954; }
.demo-toolbar code { color: #b4c8d0; font-size: .7rem; }
.demo-toolbar > span { color: #76929d; font: .72rem/1 "SFMono-Regular", Consolas, monospace; letter-spacing: .48rem; }
.demo-terminal { min-height: 282px; padding: 1.9rem 2.15rem 2.2rem; margin: 0; color: #cbdbe1; background: transparent; font: .8rem/1.68 "SFMono-Regular", Consolas, monospace; white-space: pre-wrap; }
.demo-terminal code { display: block; color: inherit; background: transparent; }
.terminal-command { display: block; margin-bottom: 1.35rem; color: #eef6f8; }
.terminal-command b { color: #64d7a7; font-weight: 650; }
.terminal-output { display: block; min-height: 12.7rem; }
.terminal-line { display: block; margin: .26rem 0; }
.terminal-line b { display: inline-block; min-width: 4.8rem; color: #64d7a7; font-weight: 700; }
.terminal-ready { display: block; margin-top: 1.15rem; color: white; font-weight: 650; }
[data-terminal-demo][data-animation-state="running"] .terminal-ready::after { content: "_"; animation: terminal-cursor .9s steps(1, end) infinite; }
@keyframes terminal-cursor { 50% { opacity: 0; } }

.app-discovery { padding-block: 5.5rem 6rem; }
.instant-app-search { max-width: 820px; margin-bottom: 2.3rem; box-shadow: var(--shadow-soft); }
.instant-app-search input { min-height: 58px; padding-inline: 1.25rem; color: var(--navy-900); background: white; border-color: #a9bac2; border-radius: 12px 0 0 12px; }
.instant-app-search button { min-width: 110px; border-radius: 0 12px 12px 0; }
.app-category-tabs { gap: .2rem; padding: .3rem; background: var(--wash); border: 1px solid var(--line); border-radius: 12px; }
.app-category-tabs button { min-height: 44px; padding: .65rem 1rem; border: 0; border-radius: 8px; text-transform: none; }
.app-category-tabs button[aria-pressed="true"] { color: var(--navy-900); background: white; box-shadow: 0 2px 8px rgb(7 31 44 / 9%); }
.app-discovery-status { padding: .9rem .35rem; }
.card { border-color: var(--line); border-radius: var(--radius); box-shadow: 0 2px 4px rgb(4 29 42 / 3%); }
.card:hover { border-color: #9db3bd; box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.app-card { position: relative; min-height: 142px; padding: 1.15rem; overflow: hidden; }
.app-card::after { position: absolute; right: -30px; bottom: -36px; width: 92px; height: 92px; content: ""; background: var(--wash); border-radius: 50%; transition: transform .18s ease; }
.app-card:hover::after { transform: scale(1.18); }
.app-card img { position: relative; z-index: 1; border-radius: 12px; filter: drop-shadow(0 7px 8px rgb(8 30 43 / 14%)); }
.app-card-copy { position: relative; z-index: 1; }
.app-card strong { font-size: 1rem; }
.app-card em { margin-top: .2rem; color: var(--blue); font-size: .74rem; font-style: normal; font-weight: 750; opacity: 0; transform: translateY(3px); transition: opacity .16s ease, transform .16s ease; }
.app-card:hover em, .app-card:focus-visible em { opacity: 1; transform: none; }
.home-app-grid .app-card { min-height: 190px; justify-content: space-between; padding: 1.2rem 1rem; }
.home-app-grid .app-card img { width: 76px; height: 80px; }
.home-app-grid .app-card-copy { min-height: 65px; align-content: start; }
.home-app-grid .app-card em { display: none; }

.home-band { background: #eef4f5; }
.feature-row { gap: 0; padding-block: 4rem; }
.feature-row > div { position: relative; grid-template-columns: auto 1fr; gap: .3rem .9rem; padding: .2rem 2.4rem; }
.feature-row > div:first-child { padding-left: 0; }
.feature-row > div + div { border-left: 1px solid #cfdde2; }
.feature-number { grid-row: 1 / span 3; color: #9aafb8; font: .68rem/1 "SFMono-Regular", Consolas, monospace; }
.feature-row strong, .feature-row span:not(.feature-number), .feature-row a { grid-column: 2; }
.feature-row strong { font-size: 1.08rem; }
.feature-row a { margin-top: .45rem; }

.hub-feature-section { color: white; background: radial-gradient(circle at 82% 10%, rgb(35 112 146 / 28%), transparent 30%), var(--navy-950); }
.hub-feature-inner { display: grid; grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); align-items: center; gap: clamp(2.5rem, 6vw, 5rem); padding-block: 5.5rem 2.2rem; }
.hub-feature-inner h2 { max-width: 630px; margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -.035em; }
.hub-feature-inner > div:first-child > p:not(.eyebrow) { max-width: 610px; margin: 1.2rem 0 1.8rem; color: #bdd0d8; }
.hub-feature-section .eyebrow { color: #ffad7d; }
.hub-capabilities { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; }
.hub-capabilities > div { display: grid; grid-template-columns: 42px 1fr; gap: .2rem .8rem; padding: 1.1rem 0; border-top: 1px solid rgb(255 255 255 / 12%); }
.hub-capabilities > div > span { grid-row: 1 / span 2; display: grid; width: 42px; height: 42px; place-items: center; color: #ffb58b; background: rgb(237 100 29 / 14%); border-radius: 10px; font-size: 1.15rem; }
.hub-capabilities strong { color: white; }
.hub-capabilities small { color: #a9c0c9; line-height: 1.45; }

.works-with { padding-block: 5rem; border-top: 0; }
.platform-logo-grid { gap: .7rem; }
.platform-logo-grid div { min-height: 96px; background: white; border-radius: 10px; }
.platform-logo-grid img { opacity: .66; transition: filter .16s ease, opacity .16s ease, transform .16s ease; }
.platform-logo-grid div:hover img { transform: scale(1.04); }
.deployment-map-wide { position: relative; width: min(1280px, calc(100vw - 2rem)); margin: 4rem 50% 0; background: #acd7f4; border-radius: 10px; box-shadow: var(--shadow-soft); overflow: hidden; transform: translateX(-50%); }
.deployment-map-wide img { display: block; width: 100%; height: auto; }
.map-date-mask { position: absolute; right: 7.22%; bottom: 0; width: 2.75%; height: 3.35%; background: #e7e7e7; }
.home-section { background: var(--wash); }

.appliance-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(310px, .6fr); gap: 2.5rem; padding: clamp(1.6rem, 4vw, 2.7rem); margin-bottom: 0; background: linear-gradient(135deg, #f7fafb, white 58%); border: 1px solid var(--line); border-radius: var(--radius-large) var(--radius-large) 0 0; overflow: hidden; }
.appliance-hero::before { position: absolute; top: -70px; right: 20%; width: 210px; height: 210px; content: ""; background-image: radial-gradient(circle, #b8cbd3 1.2px, transparent 1.2px); background-size: 14px 14px; opacity: .3; transform: rotate(15deg); }
.appliance-identity { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.7rem; }
.appliance-icon { display: grid; width: 134px; height: 134px; flex: none; place-items: center; background: white; border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow-soft); }
.appliance-icon .page-icon { width: 102px; max-height: 108px; margin: 0; border-radius: 16px; box-shadow: none; object-fit: contain; }
.appliance-heading h1 { margin: 0; color: var(--navy-900); font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.appliance-heading .subtitle { margin-top: .75rem; }
.appliance-action-panel { position: relative; z-index: 1; display: grid; align-content: center; gap: .7rem; padding: 1.25rem; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); }
.action-kicker { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.appliance-status { display: flex; align-items: center; gap: .65rem; margin: 0 0 .45rem; color: var(--muted); font-size: .83rem; }
.appliance-status strong { display: block; color: var(--navy-900); font-size: .96rem; }
.status-dot { width: 10px; height: 10px; flex: none; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgb(23 130 91 / 12%); }
.status-dot.status-muted { background: #8a969c; box-shadow: 0 0 0 5px rgb(83 100 110 / 10%); }
.appliance-action-panel .button { width: 100%; }
.action-deploy { font-size: .96rem; }
.appliance-utility-links { display: flex; justify-content: center; gap: .9rem; padding-top: .45rem; font-size: .76rem; font-weight: 700; }
.confidence-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 1.6rem; padding: 1rem clamp(1.5rem, 4vw, 2.7rem); color: #37515d; background: #edf5f2; border: 1px solid #cee3da; border-top: 0; border-radius: 0 0 var(--radius-large) var(--radius-large); font-size: .81rem; list-style: none; }
.confidence-strip li { display: flex; align-items: center; gap: .5rem; }
.confidence-strip span { display: grid; width: 20px; height: 20px; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .66rem; }
.appliance-hero.is-deprecated { border-radius: var(--radius-large); }

.appliance-showcase { margin: 0 0 3.5rem; }
.appliance-showcase-grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(250px, .75fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.showcase-shot { position: relative; min-height: 0; color: white; background: var(--navy-900); border: 1px solid #b8c8cf; border-radius: 14px; box-shadow: var(--shadow-soft); overflow: hidden; text-decoration: none; }
.showcase-shot-lead { grid-row: 1 / span 2; }
.showcase-shot img { display: block; width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .24s ease; }
.showcase-shot:not(.showcase-shot-lead) img { aspect-ratio: 16/8.35; }
.showcase-shot::after { position: absolute; inset: 45% 0 0; content: ""; background: linear-gradient(transparent, rgb(4 20 29 / 74%)); pointer-events: none; }
.showcase-shot > span { position: absolute; z-index: 1; right: 1rem; bottom: .8rem; left: 1rem; display: flex; justify-content: space-between; gap: .5rem; color: white; font-size: .8rem; font-weight: 700; }
.showcase-shot i { font-size: 1rem; font-style: normal; }
.showcase-shot:hover { color: white; }
.showcase-shot:hover img { transform: scale(1.015); }

.content-appliance .prose { max-width: 920px; margin-inline: auto; scroll-margin-top: 1rem; }
.content-appliance .prose > .field > .field-items > .field-item > p:first-child { color: #354c57; font-size: 1.16rem; line-height: 1.7; }
.content-appliance .prose .screenshots { display: none; }
.content-appliance .prose .actionbox { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; margin: 1.8rem 0 3.2rem; padding: 1rem; background: #edf3f5; border-radius: 15px; }
.content-appliance .prose .actionbox .deploy { display: none; }
.content-appliance .prose .actionbox > div { min-height: 120px; padding: 1rem; border-radius: 10px; }
.content-appliance .prose .actionbox h3 { color: var(--navy-900); font-size: 1.03rem; }
.content-appliance .prose .actionbox .download:first-of-type { border-color: #f1aa82; box-shadow: inset 0 3px var(--orange); }
.content-appliance .prose .actionbox a { font-weight: 650; }
.content-appliance .prose .version { margin: .8rem 0 2rem; }
.prose h2 { padding-top: .35rem; font-size: clamp(1.55rem, 3vw, 1.9rem); letter-spacing: -.02em; }
.prose pre { padding: 1.2rem; border: 1px solid #284959; border-radius: 10px; box-shadow: inset 0 1px rgb(255 255 255 / 5%); }
.prose code { color: #173f52; }
.prose blockquote { padding: .6rem 1.2rem; background: #f7fafb; border-radius: 0 10px 10px 0; }

.filter-bar { min-height: 64px; padding: .7rem .8rem; background: #edf3f5; border-radius: 12px; }
.filter-bar input, .filter-bar select, .app-controls select { min-height: 44px; border-color: #aebfc7; border-radius: 8px; }
.category-links a, .tag-list a, .blog-article-tags a { min-height: 30px; display: inline-flex; align-items: center; background: #e9f2f5; border: 1px solid #d6e6ec; }
.docs-start-grid .help-card, .faq-popular-card, .faq-topic-card, .blog-topic-card { position: relative; overflow: hidden; }
.docs-start-grid .help-card::before, .faq-popular-card::before, .faq-topic-card::before, .blog-topic-card::before { position: absolute; top: 0; left: 0; width: 4px; height: 100%; content: ""; background: #93b6c5; transition: background .16s ease; }
.docs-start-grid .help-card:hover::before, .faq-popular-card:hover::before, .faq-topic-card:hover::before, .blog-topic-card:hover::before { background: var(--orange); }
.docs-category, .faq-topic-group, .blog-year-groups, .blog-recent-list, .legacy-documentation { border-radius: var(--radius); box-shadow: 0 2px 4px rgb(4 29 42 / 3%); }
.docs-category > header, .faq-topic-group > header, .blog-year-group summary { background: #eef4f5; }
.screenshot-card { background: white; border-radius: var(--radius); box-shadow: 0 2px 4px rgb(4 29 42 / 3%); transition: box-shadow .16s ease, transform .16s ease; }
.screenshot-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.screenshot-card img { transition: transform .2s ease; }
.screenshot-card:hover img { transform: scale(1.015); }
.search-result { background: white; border-radius: 10px; }

.site-footer { background: #04141d; }
.footer-inner { width: min(1160px, calc(100% - 3rem)); grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.4fr); padding-block: 4rem 2.2rem; }
.footer-intro > p { max-width: 350px; margin: 1.2rem 0 0; color: #9fb5bf; border: 0; font-size: .92rem; }
.footer-links { justify-self: end; }
.footer-links > strong { display: block; margin-bottom: .85rem; color: white; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-inner .footer-links nav { justify-content: flex-end; }
.footer-inner nav a { color: #c5d5dc; font-size: .9rem; }
.footer-principles { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.6rem; padding-top: 1.4rem; color: #7f9ba7; border-top: 1px solid rgb(255 255 255 / 10%); font-size: .74rem; }
.footer-principles span::before { margin-right: .45rem; color: #4ac591; content: "✓"; }

@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 760px; }
  .infrastructure-demo { width: min(100%, 600px); min-height: 350px; margin-inline: auto; }
  .hub-feature-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hub-capabilities { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
  .appliance-hero { grid-template-columns: 1fr; }
  .appliance-action-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
  .appliance-action-panel .action-kicker, .appliance-action-panel .appliance-status, .appliance-action-panel .appliance-utility-links { grid-column: 1 / -1; }
  .appliance-utility-links { justify-content: flex-start; }
  .home-app-grid .app-card { min-height: 180px; }
}

@media (max-width: 900px) {
  .header-inner { width: min(100% - 2rem, 1160px); }
  .main-menu { top: 72px; padding: .7rem 1rem 1rem; border: 0; box-shadow: var(--shadow); }
  .main-menu a { min-height: 48px; padding-inline: .7rem; }
  .main-menu a::after { right: auto; bottom: 5px; left: .7rem; width: 38px; }
  .header-search { width: 46px; flex: none; }
  .header-search-toggle { padding: 0; }
  .header-search-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .header-search.is-open { position: absolute; top: 72px; right: 1rem; left: 1rem; width: auto; max-width: none; padding: 0 .35rem; border-radius: 12px; }
  .feature-row > div { padding: 1.4rem 0; }
  .feature-row > div + div { border-top: 1px solid #cfdde2; border-left: 0; }
  .appliance-showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .showcase-shot-lead { grid-column: 1 / -1; grid-row: auto; }
  .showcase-shot:not(.showcase-shot-lead) img { aspect-ratio: 16/9; }
  .confidence-strip { grid-template-columns: 1fr; gap: .55rem; }
}

@media (max-width: 640px) {
  .content-shell, .footer-inner { width: min(100% - 2rem, 1160px); }
  .header-inner { gap: .55rem; }
  .hub-ribbon-inner { min-height: 58px; }
  .hub-ribbon-inner > span:first-child > span { display: none; }
  .hub-ribbon strong::after { display: none; }
  .home-hero-inner { padding-block: 4.2rem; }
  .home-hero h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .infrastructure-demo { min-height: 315px; }
  .demo-terminal { min-height: 260px; padding: 1.35rem 1.2rem 1.6rem; font-size: .67rem; }
  .terminal-line b { min-width: 4rem; }
  .hero-confidence { display: grid; }
  .instant-app-search button { min-width: auto; padding-inline: .9rem; }
  .appliance-identity { align-items: flex-start; flex-direction: column; }
  .appliance-icon { width: 112px; height: 112px; border-radius: 21px; }
  .appliance-icon .page-icon { width: 86px; }
  .appliance-action-panel { grid-template-columns: 1fr; }
  .appliance-action-panel .action-kicker, .appliance-action-panel .appliance-status, .appliance-action-panel .appliance-utility-links { grid-column: auto; }
  .confidence-strip { margin-bottom: 1.25rem; }
  .hub-capabilities { grid-template-columns: 1fr; gap: 0; }
  .appliance-showcase-grid { grid-template-columns: 1fr; }
  .showcase-shot-lead { grid-column: auto; }
  .content-appliance .prose .actionbox { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-inner .footer-links nav { justify-content: flex-start; }
  .footer-principles { grid-column: auto; display: grid; }
  .platform-logo-grid, .platform-logo-grid > div { min-width: 0; }
  .platform-logo-grid > div { overflow: hidden; }
  .platform-logo-grid img { width: min(100%, 145px); }
}

@media (max-width: 380px) {
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Responsive discovery and containment refinements */

.card-grid,
.card-grid > *,
.search-results,
.search-result-group,
.search-result-group > div,
.search-result,
.search-result h3,
.search-result p,
.content-card,
.content-card > * {
  min-width: 0;
}

.search-result,
.content-card {
  overflow-wrap: anywhere;
}

.search-result p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-result mark {
  color: inherit;
  background: #fff0b8;
  border-radius: 2px;
}

.search-more {
  margin-top: .8rem;
}

.load-more-row {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.category-scroll {
  position: relative;
  min-width: 0;
}

.category-scroll::after {
  position: absolute;
  z-index: 2;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 64px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--wash) 72%);
  border-radius: 0 11px 11px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease;
}

.category-scroll.is-scrollable:not(.is-at-end)::after {
  opacity: 1;
}

.app-category-tabs {
  scroll-behavior: auto;
}

.action-deploy-compact {
  display: none;
}

@media (hover: none), (pointer: coarse) {
  .app-card em,
  .home-app-grid .app-card em {
    display: inline-flex;
    opacity: 1;
    transform: none;
  }
}

/* Content discovery and editorial refinements */

@media (min-width: 1101px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    padding-block: clamp(5.5rem, 8vw, 7.5rem);
  }

  .home-hero h1 {
    font-size: clamp(4.2rem, 5.2vw, 4.8rem);
  }

  .infrastructure-demo {
    min-height: 320px;
  }

  .demo-window {
    width: min(100%, 640px);
  }

  .demo-terminal {
    min-height: 244px;
    padding: 1.55rem 1.8rem 1.75rem;
    font-size: .78rem;
    line-height: 1.55;
  }

  .terminal-command {
    margin-bottom: 1.05rem;
  }

  .terminal-output {
    min-height: 10.8rem;
  }
}

.deployment-map-wide {
  padding: .7rem .7rem 0;
  color: white;
  background: linear-gradient(145deg, #0d3446, #061823);
  border: 1px solid #244b5d;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgb(4 29 42 / 17%);
}

.deployment-map-image {
  position: relative;
  overflow: hidden;
  background: #acd7f4;
  border-radius: 11px;
}

.deployment-map-wide figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem .65rem 1rem;
}

.deployment-map-wide figcaption strong {
  font-size: .9rem;
}

.deployment-map-wide figcaption span {
  color: #a9c2cd;
  font-size: .78rem;
}

.home-section {
  background: transparent;
  border-top: 1px solid var(--line);
}

.content-card.has-image {
  padding: 0;
  overflow: hidden;
}

.content-card-image {
  display: block;
  overflow: hidden;
  background: #dce7eb;
}

.content-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  transition: transform .22s ease;
}

.content-card:hover .content-card-image img {
  transform: scale(1.018);
}

.content-card-body {
  padding: 1.15rem 1.25rem 1.4rem;
}

.app-taxonomy {
  margin: 0 0 2rem;
}

.app-taxonomy-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.app-taxonomy-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1rem;
}

.app-taxonomy-heading > span {
  color: var(--muted);
  font-size: .78rem;
}

.app-taxonomy .category-links {
  margin: 0 0 .75rem;
}

.app-taxonomy .category-links a {
  gap: .42rem;
}

.app-taxonomy .category-links a span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
}

.all-app-categories {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.all-app-categories summary {
  padding: .7rem .9rem;
  color: var(--navy-700);
  background: #f7fafb;
  font-size: .82rem;
  font-weight: 750;
  cursor: pointer;
}

.all-app-categories nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.all-app-categories nav a {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .75rem;
  color: var(--navy-900);
  background: white;
  font-size: .78rem;
  text-decoration: none;
}

.all-app-categories nav a:hover {
  color: var(--orange-dark);
  background: #fbfcfc;
}

.all-app-categories nav small {
  color: var(--muted);
  white-space: nowrap;
}

.docs-filter-bar {
  margin: 0 0 1.4rem;
}

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

.docs-journey {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 5px rgb(4 29 42 / 4%);
}

.docs-journey header {
  min-height: 130px;
  padding: 1.25rem 1.3rem 1rem;
  background: linear-gradient(145deg, #edf4f6, #f8fafb);
  border-bottom: 1px solid var(--line);
}

.docs-journey h3 {
  margin: 0 0 .4rem;
  color: var(--navy-900);
  font-size: 1.15rem;
}

.docs-journey header p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.48;
}

.docs-journey ul {
  margin: 0;
  padding: .55rem 0;
  list-style: none;
}

.docs-journey li + li {
  border-top: 1px solid #e7eef1;
}

.docs-journey a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1.3rem;
  color: var(--navy-700);
  font-size: .85rem;
  font-weight: 650;
  text-decoration: none;
}

.docs-journey a::after {
  color: #8da5af;
  content: "→";
}

.docs-journey a:hover {
  color: var(--orange-dark);
  background: #fafcfc;
}

.docs-directories,
.docs-all,
.legacy-documentation,
.doc-collection {
  margin-top: 4rem;
}

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

.docs-directory-grid .help-card {
  min-height: 200px;
}

.docs-directory-grid h3 {
  margin: 0 0 .55rem;
  color: var(--navy-900);
}

.docs-directory-grid span {
  display: inline-flex;
  gap: .35rem;
  margin-top: .7rem;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 750;
}

.docs-all,
.legacy-documentation {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.docs-all summary,
.legacy-documentation summary,
.blog-archive-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  color: var(--navy-900);
  background: #f4f8f9;
  cursor: pointer;
  list-style: none;
}

.docs-all summary::-webkit-details-marker,
.legacy-documentation summary::-webkit-details-marker,
.blog-archive-disclosure > summary::-webkit-details-marker {
  display: none;
}

.docs-all summary > span:first-child,
.legacy-documentation summary > span:first-child {
  display: grid;
  gap: .15rem;
}

.docs-all summary small,
.legacy-documentation summary small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
}

.docs-complete-list,
.doc-collection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.docs-complete-list li,
.doc-collection-list li {
  min-width: 0;
  border-bottom: 1px solid #e4ecef;
}

.docs-complete-list li:nth-child(odd),
.doc-collection-list li:nth-child(odd) {
  border-right: 1px solid #e4ecef;
}

.docs-complete-list a,
.doc-collection-list a {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: .65rem 1rem;
  color: var(--navy-900);
  font-size: .85rem;
  line-height: 1.35;
  text-decoration: none;
}

.docs-complete-list a:hover,
.doc-collection-list a:hover {
  color: var(--orange-dark);
  background: #f8fafb;
}

.doc-collection {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.doc-collection-controls {
  margin: 0 0 1rem;
}

.doc-collection-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.legacy-comment-anchor {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.blog-latest,
.blog-topics,
.blog-archive {
  margin-top: 4.5rem;
}

.blog-lead-grid {
  display: grid;
  gap: 1rem;
}

.blog-lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.blog-lead-story > div {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.blog-lead-story h3 {
  margin: .65rem 0 .6rem;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.07;
  letter-spacing: -.035em;
}

.blog-lead-story h3 a,
.blog-story-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-lead-story h3 a:hover,
.blog-story-card h3 a:hover {
  color: var(--orange-dark);
}

.blog-lead-story > div > p:not(.content-type-badge):not(.blog-card-byline) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.blog-lead-image {
  height: 420px;
  min-height: 0;
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-lead-image img {
  min-height: 0;
}

.content-card-image img[src="/images/blog/hugo-site-migration.png"],
.blog-card-image img[src="/images/blog/hugo-site-migration.png"],
.blog-hero-image img[src="/images/blog/hugo-site-migration.png"] {
  object-position: top;
}

.blog-card-byline {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

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

.blog-story-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 5px rgb(4 29 42 / 4%);
}

.blog-story-card .blog-card-image {
  display: block;
  height: 155px;
  overflow: hidden;
  background: #dce7eb;
}

.blog-story-card > div {
  padding: 1rem 1.05rem 1.15rem;
}

.blog-story-card h3 {
  margin: .45rem 0 0;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.3;
}

.blog-archive-disclosure {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.blog-archive-disclosure > summary {
  padding: 1.25rem 1.4rem;
  background: white;
}

.blog-archive-disclosure > summary > span:first-child {
  display: grid;
  gap: .15rem;
}

.blog-archive-disclosure > summary .eyebrow {
  margin: 0;
}

.blog-archive-disclosure > summary strong {
  font-size: 1.25rem;
}

.blog-archive-disclosure > summary small {
  color: var(--muted);
}

.blog-archive-panel {
  padding: 1.25rem;
  background: #f7fafb;
  border-top: 1px solid var(--line);
}

.blog-archive-panel .blog-controls {
  margin: 0 0 .7rem;
}

#blog-filter-status {
  margin: 0 0 .7rem;
  color: var(--muted);
  font-size: .8rem;
}

.blog-article-list > li {
  grid-template-columns: 4.6rem minmax(0, 1fr) minmax(110px, auto);
}

.blog-archive-author {
  color: var(--muted);
  font-size: .74rem;
  text-align: right;
}

.content-blog {
  width: min(1180px, calc(100% - 2rem));
}

.blog-article-header {
  max-width: 1020px;
  margin: 1.7rem auto 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.blog-article-header h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.blog-byline {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: .84rem;
}

.blog-byline strong {
  color: var(--navy-900);
}

.blog-hero-image {
  max-width: 1060px;
  margin: 0 auto 3.2rem;
}

.blog-hero-image img {
  display: block;
  width: 100%;
  max-height: 610px;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  background: #dce7eb;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.blog-hero-image figcaption {
  max-width: 760px;
  margin: .65rem auto 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.content-blog .prose {
  max-width: 780px;
  margin-inline: auto;
  color: #20333d;
  font-size: 1.12rem;
  line-height: 1.78;
}

.content-blog .prose > p:first-child,
.content-blog .prose > .field:first-child > .field-items > .field-item > p:first-child {
  color: #354d59;
  font-size: 1.24rem;
  line-height: 1.68;
}

.content-blog .prose h2 {
  margin-top: 2.35em;
  padding-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.content-blog .prose h3 {
  margin-top: 2em;
  font-size: 1.42rem;
  letter-spacing: -.02em;
}

.content-blog .prose p,
.content-blog .prose ul,
.content-blog .prose ol {
  margin-bottom: 1.35em;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .all-app-categories nav,
  .docs-journey-grid,
  .blog-recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-lead-story {
    grid-template-columns: 1fr;
  }

  .blog-lead-image,
  .blog-lead-image img {
    height: 320px;
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .demo-window {
    width: 100%;
  }

  .demo-terminal {
    min-height: 0;
    padding: 1.25rem 1rem 1.45rem;
    font-size: .66rem;
    line-height: 1.55;
  }

  .terminal-output {
    min-height: 0;
  }

  .deployment-map-wide {
    width: calc(100vw - 1rem);
    margin-top: 2.5rem;
    padding: .4rem .4rem 0;
    border-radius: 12px;
  }

  .deployment-map-wide figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: .15rem;
  }

  .all-app-categories nav,
  .docs-journey-grid,
  .docs-directory-grid,
  .docs-complete-list,
  .doc-collection-list,
  .blog-recent-grid {
    grid-template-columns: 1fr;
  }

  .docs-complete-list li:nth-child(odd),
  .doc-collection-list li:nth-child(odd) {
    border-right: 0;
  }

  .docs-journey header {
    min-height: 0;
  }

  .blog-archive-disclosure > summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-archive-panel {
    padding: .7rem;
  }

  .blog-article-list > li {
    grid-template-columns: 3.6rem minmax(0, 1fr);
  }

  .blog-archive-author {
    grid-column: 2;
    text-align: left;
  }

  .blog-article-header h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .content-blog .prose {
    font-size: 1.04rem;
    line-height: 1.72;
  }

  .content-blog .prose > p:first-child,
  .content-blog .prose > .field:first-child > .field-items > .field-item > p:first-child {
    font-size: 1.13rem;
  }
}

@media (max-width: 1100px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    max-width: 760px;
  }

  .infrastructure-demo {
    width: min(100%, 600px);
    min-height: 350px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .category-links a,
  .tag-list a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: .5rem .8rem;
  }
}

@media (max-width: 580px) {
  .content-shell {
    padding-block: 3.25rem 4.25rem;
  }

  .page-header {
    padding-top: .5rem;
    margin-bottom: 2.25rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > * {
    max-width: 100%;
  }

  .app-discovery {
    padding-block: 4rem 4.5rem;
  }

  .app-card em,
  .home-app-grid .app-card em {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    opacity: 1;
    transform: none;
  }

  .home-app-grid .app-card-copy {
    min-height: 86px;
  }

  .appliance-hero {
    gap: 1.35rem;
    padding: 1rem;
  }

  .appliance-identity {
    gap: 1rem;
  }

  .appliance-action-panel {
    padding: 1rem;
  }

  .action-deploy {
    padding-inline: .7rem;
    white-space: nowrap;
  }

  .action-deploy-wide {
    display: none;
  }

  .action-deploy-compact {
    display: inline;
  }

  .site-search div,
  .site-search input,
  .instant-app-search input {
    min-width: 0;
  }

  .footer-principles {
    font-size: .8rem;
  }
}

@media (max-width: 380px) {
  .appliance-icon {
    width: 96px;
    height: 96px;
  }

  .appliance-icon .page-icon {
    width: 76px;
  }

  .appliance-heading h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr);
    gap: clamp(1.8rem, 4vw, 3rem);
    padding-block: clamp(4.6rem, 7vw, 6rem);
  }

  .home-hero-copy {
    max-width: none;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 6.4vw, 4.45rem);
  }

  .home-hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .infrastructure-demo {
    width: 100%;
    min-height: 300px;
  }

  .demo-window {
    width: 100%;
  }

  .demo-terminal {
    min-height: 238px;
    padding: 1.35rem 1.25rem 1.55rem;
    font-size: .68rem;
    line-height: 1.52;
  }

  .terminal-command {
    margin-bottom: 1rem;
  }

  .terminal-output {
    min-height: 10.3rem;
  }
}

@media (max-width: 780px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    padding-block: 4.2rem;
  }

  .infrastructure-demo {
    width: min(100%, 620px);
    min-height: 0;
    margin-inline: auto;
  }
}
