@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-size: 18px;
  background: #ffffff;
  color: #0f1115;
}

body.dark {
  background: #1B1C1D;
  color: #f5f6f8;
}

* {
  box-sizing: border-box;
}

a {
  color: #0070f3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}
.git-form {
  padding: 10px 0;
}

/* Navigation styles */
.nav {
  box-sizing: border-box;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  font-size: 15px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 17, 21, 0.06);
  z-index: 100000;
}

.nav.clean {
  backdrop-filter: none;
}

body.dark .nav {
  background: rgba(27,28,29,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo:hover {
  text-decoration: none;
}

.logo {
  color: black;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  letter-spacing: -0.5px;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
}

body.dark .brand,
body.dark .logo {
  color: #f5f6f8;
}

.nav img {
  margin-right: 0;
}

.navLinks {
  display: flex;
  gap: 18px;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}

.navItem {
  color: rgba(0,0,0,0.8);
  padding: 8px 0;
  font-weight: 500;
}

.navItem:hover {
  color: #000;
}

body.dark .navItem {
  color: rgba(255,255,255,0.85);
}

body.dark .navItem:hover {
  color: #fff;
}

.navActions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pillButton,
.ghostButton,
.btn {
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 20px;
  border: 2px solid #0f1115;
  background: #0f1115;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.pillButton:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  text-decoration: none;
}

.pillButton.primary {
  background: #0f1115;
  border-color: #0f1115;
  color: #fff;
}

.ghostButton {
  background: transparent;
  color: #0f1115;
  border-color: rgba(15,17,21,0.12);
  box-shadow: none;
}

.ghostButton:hover {
  background: rgba(15,17,21,0.04);
}

body.dark .pillButton,
body.dark .btn {
  background: #f5f6f8;
  color: #0f1115;
  border-color: #f5f6f8;
}

body.dark .ghostButton {
  color: #f5f6f8;
  border-color: rgba(255,255,255,0.18);
}

body.dark .ghostButton:hover {
  background: rgba(255,255,255,0.06);
}

.btn.inverse {
  background: transparent;
  color: #0f1115;
  border-color: rgba(15,17,21,0.15);
  box-shadow: none;
}

.btn.inverse:hover {
  background: rgba(15,17,21,0.06);
}

body.dark .btn.inverse {
  color: #f5f6f8;
  border-color: rgba(255,255,255,0.2);
}

body.dark .btn.inverse:hover {
  background: rgba(255,255,255,0.08);
}

.pillButton:active,
.btn:active {
  transform: translateY(0);
}

/* Container styles */
.container {
  /* legacy */
}

.page {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 40px 24px 80px;
}

.contentBlock {
  width: 100%;
  margin: 0;
}

.hero {
  text-align: center;
  padding: 60px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.heroLogo {
  text-align: center;
}
.heroLogo img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.08));
}

.heroEyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  margin: 0;
}

body.dark .heroEyebrow {
  color: rgba(255,255,255,0.7);
}

.hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0;
}

.heroSubtitle {
  max-width: 760px;
  margin: 8px auto 0;
  color: rgba(0,0,0,0.65);
  font-size: 18px;
}

body.dark .heroSubtitle {
  color: rgba(255,255,255,0.75);
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.heroCaption {
  color: rgba(0,0,0,0.55);
  font-size: 15px;
  flex-basis: 100%;
  text-align: center;
  margin-top: 4px;
}

body.dark .heroCaption {
  color: rgba(255,255,255,0.7);
}

.hero .pillButton {
  padding: 12px 28px;
  font-size: 16px;
}

.sectionHeader.minimal {
  text-align: left;
}

.sectionHeader.minimal .title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sectionHeader.minimal .description {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Header styles */
/* Legacy hero styles retained for other pages */

.highlightList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 20px 0 15px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 15px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

.highlight i {
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.detailPage {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.detailHeader {
  text-align: center;
  padding: 40px 20px 20px;
}

.detailHeader h1 {
  margin: 0 0 15px;
  font-size: 48px;
  letter-spacing: -1px;
}

.detailHeader p {
  margin: 0 auto 20px;
  max-width: 640px;
  color: rgba(0,0,0,0.65);
}

.detailHeader .backLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: royalblue;
  font-weight: 600;
}

.detailHeader .backLink:hover {
  text-decoration: underline;
}

body.dark .detailHeader p {
  color: rgba(255,255,255,0.75);
}

/* Items container styles */
.itemsContainer {
  box-sizing: border-box;
  padding: 30px 10px 10px;
}

.itemsContainer .title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
}

body.dark .itemsContainer .title {
  color: white; 
}

.itemsContainer .description {
  text-align: left;
  color: rgba(0,0,0,0.65);
  margin-bottom: 20px;
  margin-top: 10px;
}

body.dark .itemsContainer .description {
  color: rgba(255,255,255,0.8);
}

.homePage {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(52, 81, 188, 0.035), transparent 26%),
    linear-gradient(180deg, #fafbfd 0%, #ffffff 44%, #ffffff 100%);
}

.homePageLayout {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 18px;
}

.homeHero {
  padding: 26px 0 44px;
  gap: 14px;
}

.homePage .heroLogo img {
  width: 152px;
  height: 152px;
  filter: drop-shadow(0 20px 34px rgba(15,17,21,0.06));
}

.homePage .heroEyebrow {
  letter-spacing: 2.4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(15,17,21,0.44);
}

.homePage .hero h1 {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: clamp(42px, 5.4vw, 62px);
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1;
  max-width: 760px;
}

.homePage .heroSubtitle {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(15,17,21,0.62);
}

.homePage .heroCaption {
  font-size: 14px;
  color: rgba(15,17,21,0.5);
}

.homePage .heroActions {
  gap: 12px;
  margin-top: 16px;
}

.homePage .pillButton,
.homePage .ghostButton {
  padding: 11px 18px;
  border-width: 1px;
  box-shadow: none;
}

.homePage .pillButton:hover,
.homePage .ghostButton:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.homePage .ghostButton {
  background: rgba(255,255,255,0.88);
  border-color: rgba(15,17,21,0.1);
}

.homePage .ghostButton:hover {
  background: rgba(245,247,251,1);
}

.overviewSection {
  padding: 10px 0 0;
}

.highlightMosaic {
  --highlight-grid-line: rgba(15,17,21,0.08);
  --highlight-media-frame: rgba(15,17,21,0.1);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.88fr);
  grid-template-areas:
    "launcher agent"
    "cloud agent"
    "assistant assistant"
    "agentLauncher agentLauncher";
  gap: 0;
  border-top: 1px solid var(--highlight-grid-line);
  border-left: 1px solid var(--highlight-grid-line);
}

.highlightPanel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 2.2vw, 30px);
  min-width: 0;
  border-right: 1px solid var(--highlight-grid-line);
  border-bottom: 1px solid var(--highlight-grid-line);
  background: transparent;
}

.highlightPanelLauncher {
  grid-area: launcher;
  align-content: start;
}

.highlightPanelAgent {
  grid-area: agent;
  align-content: start;
  grid-template-rows: auto 1fr;
}

.highlightPanelAssistant {
  grid-area: assistant;
  align-content: start;
}

.highlightPanelAgentLauncher {
  grid-area: agentLauncher;
  align-content: start;
}

.highlightPanelCloud {
  grid-area: cloud;
  align-content: start;
}

.highlightPanelCopy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.highlightPanelCopy h3 {
  margin: 0;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: clamp(24px, 2.35vw, 30px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.highlightPanelCopy p {
  margin: 0;
  color: rgba(15,17,21,0.68);
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.65;
}

.highlightPanelActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.highlightPanelButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(15,17,21,0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(15,17,21,0.84);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.highlightPanelButton:hover {
  background: rgba(15,17,21,0.04);
  border-color: rgba(15,17,21,0.2);
  color: rgba(15,17,21,1);
  transform: translateY(-1px);
}

.highlightPanelButtonPrimary {
  background: rgba(15,17,21,0.98);
  border-color: rgba(15,17,21,0.98);
  color: rgba(255,255,255,1);
}

.highlightPanelButtonPrimary:hover {
  background: rgba(15,17,21,1);
  border-color: rgba(15,17,21,1);
  color: rgba(255,255,255,1);
}

.highlightPanelMedia {
  align-self: start;
  padding-top: 18px;
  border-top: 1px solid var(--highlight-grid-line);
  min-width: 0;
}

.highlightPanelMedia img {
  width: 100%;
  display: block;
  height: auto;
  border: 1px solid var(--highlight-media-frame);
  background: rgba(255,255,255,0.96);
}

.highlightPanelMediaTall {
  display: block;
}

.highlightPanelMediaTall img {
  width: 100%;
}

.highlightRowIndex {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(15,17,21,0.5);
}

.highlightRowMeta {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 600;
  color: rgba(15,17,21,0.42);
}

body.dark .overviewSection {
  box-shadow: none;
}

body.dark .highlightMosaic {
  --highlight-grid-line: rgba(255,255,255,0.1);
  --highlight-media-frame: rgba(255,255,255,0.12);
}

body.dark .highlightPanel {
  background: transparent;
}

body.dark .highlightPanelCopy p {
  color: rgba(255,255,255,0.78);
}

body.dark .highlightPanelButton {
  border-color: rgba(255,255,255,0.14);
  background: transparent;
  color: rgba(255,255,255,0.88);
}

body.dark .highlightPanelButton:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,1);
}

body.dark .highlightPanelButtonPrimary {
  background: rgba(255,255,255,0.98);
  border-color: rgba(255,255,255,0.98);
  color: rgba(15,17,21,1);
}

body.dark .highlightPanelButtonPrimary:hover {
  background: rgba(255,255,255,1);
  border-color: rgba(255,255,255,1);
  color: rgba(15,17,21,1);
}

body.dark .highlightPanelMedia {
  background: transparent;
}

body.dark .highlightPanelMedia img {
  background: rgba(255,255,255,0.03);
}

body.dark .highlightRowIndex {
  color: rgba(255,255,255,0.56);
}

body.dark .highlightRowMeta {
  color: rgba(255,255,255,0.44);
}

body.dark.homePage {
  background:
    radial-gradient(circle at top center, rgba(117, 134, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #121318 0%, #17181d 40%, #1b1c1d 100%);
}

body.dark.homePage .heroEyebrow {
  color: rgba(255,255,255,0.58);
}

body.dark.homePage .heroSubtitle {
  color: rgba(255,255,255,0.74);
}

body.dark.homePage .heroCaption {
  color: rgba(255,255,255,0.58);
}

body.dark.homePage .ghostButton {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.items {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 10px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 17, 21, 0.08);
  box-shadow: 0 16px 30px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

body.dark .card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.newsGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.newsSection {
  padding-bottom: 40px;
}

/* Download page */
.downloadPage {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 16px 100px;
  text-align: center;
}

.downloadLogo {
  display: flex;
  justify-content: center;
}

.downloadHeroTitle {
  font-size: 44px;
  letter-spacing: -1px;
  margin: 10px 0 6px;
}

.downloadSubtitle {
  color: rgba(0,0,0,0.6);
  margin: 0 auto 28px;
  max-width: 640px;
}

body.dark .downloadSubtitle {
  color: rgba(255,255,255,0.75);
}

.downloadLogo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.downloadOptions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0 auto 24px;
}

.downloadCard {
  border: 1px solid rgba(15,17,21,0.08);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 300px;
  cursor: pointer;
}

.downloadCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  border-color: rgba(15,17,21,0.18);
}

.downloadCard.selected {
  border-color: #0f1115;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

.downloadCard .osHead {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.downloadCard .osIcon {
  font-size: 28px;
}

.downloadCard .osLabel {
  font-weight: 600;
}

.downloadCard .osNote {
  margin: 0;
  color: rgba(0,0,0,0.62);
  font-size: 15px;
  line-height: 1.4;
}

.downloadBtn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15,17,21,0.14);
  background: #0f1115;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.downloadBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  background: #181b22;
  border-color: #0f1115;
  text-decoration: none;
}

.downloadBtn.disabled {
  cursor: not-allowed;
  background: rgba(15,17,21,0.12);
  border-color: rgba(15,17,21,0.12);
  color: rgba(15,17,21,0.65);
  box-shadow: none;
}

.downloadBtn.disabled:hover {
  transform: none;
  box-shadow: none;
}

.downloadAction {
  max-width: 600px;
  margin: 12px auto 0;
  display: grid;
  gap: 8px;
  text-align: center;
}

.downloadHint {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

@media(max-width: 560px) {
  .archButtons {
    grid-template-columns: 1fr;
  }
}

.downloadCard.macCard {
  gap: 12px;
}

.macCard .osIcon,
.macCard .osLabel {
  justify-self: center;
  text-align: center;
}

.macCard .osNote {
  color: rgba(0,0,0,0.6);
}

.archButtons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 2fr));
  gap: 10px;
  margin-top: 6px;
}

.archButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  border: 1px solid rgba(15,17,21,0.14);
  border-radius: 12px;
  padding: 12px 12px;
  background: #f8f9fb;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  flex-wrap: wrap;
}

.archButton:hover {
  border-color: rgba(15,17,21,0.24);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.archButton .archBadge {
  display: none;
  background: rgba(15,17,21,0.08);
  color: #0f1115;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
}

.archButton.active {
  border-color: #0f1115;
  background: #0f1115;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.archButton.recommended {
  border-color: rgba(15,17,21,0.24);
}

.archButton.recommended .archBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.archHint {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0,0,0,0.6);
}

.macCard .archHint {
  text-align: center;
}

.downloadCTA {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.downloadCTA .heroCaption {
  margin: 0;
}

body.dark .downloadCard {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

body.dark .downloadCard.selected {
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}

body.dark .macCard .osNote,
body.dark .archHint {
  color: rgba(255,255,255,0.78);
}

body.dark .downloadCard .osNote {
  color: rgba(255,255,255,0.78);
}

body.dark .archButton {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

body.dark .archButton:hover {
  border-color: rgba(255,255,255,0.24);
  box-shadow: none;
}

body.dark .archButton .archBadge {
  background: rgba(255,255,255,0.12);
  color: #f5f6f8;
}

body.dark .archButton.recommended {
  border-color: rgba(255,255,255,0.28);
}

body.dark .downloadBtn {
  background: #f5f6f8;
  color: #0f1115;
  border-color: #f5f6f8;
  box-shadow: none;
}

body.dark .downloadBtn:hover {
  background: #ffffff;
  color: #0f1115;
  border-color: #ffffff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.24);
}

body.dark .downloadBtn.disabled {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

body.dark .downloadHint {
  color: rgba(255,255,255,0.75);
}

.item {
  box-sizing: border-box;
  display: flex;
  padding-bottom: 20px;
  align-items: center;
}

.item img {
  border-radius: 10px;
  flex-shrink: 0;
  max-width: 100px;
  height: auto;
}

.item .col {
  flex-grow: 1;
  padding-right: 15px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  min-width: 0;
}

.positioning,
.comparison,
.pitch {
  box-sizing: border-box;
  padding: 40px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.positioning {
  background: #f8f9fb;
}

body.dark .positioning {
  background: rgba(255,255,255,0.03);
}

.sectionHeader h2 {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1.1;
}

.sectionHeader p {
  margin: 0;
  color: rgba(0,0,0,0.7);
}

body.dark .sectionHeader p {
  color: rgba(255,255,255,0.75);
}

.positioningGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.positioningCard {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

body.dark .positioningCard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}

.positioningCard h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.positioningCard p {
  margin-top: 0;
  color: rgba(0,0,0,0.7);
}

body.dark .positioningCard p {
  color: rgba(255,255,255,0.75);
}

.positioningCard ul {
  margin: 15px 0 0;
  padding-left: 20px;
  color: rgba(0,0,0,0.8);
}

body.dark .positioningCard ul {
  color: rgba(255,255,255,0.8);
}

.comparison h2,
.pitch h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
}

.tableWrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.comparison th,
.comparison td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: white;
}

.comparison thead th {
  background: rgba(65, 105, 225, 0.1);
  font-weight: 600;
}

body.dark .comparison th,
body.dark .comparison td {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.dark .comparison thead th {
  background: rgba(65, 105, 225, 0.15);
}

.pitchGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pitchCard {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

body.dark .pitchCard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.pitchCard h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.pitchCard p {
  margin: 0;
  color: rgba(0,0,0,0.75);
}

body.dark .pitchCard p {
  color: rgba(255,255,255,0.75);
}

.item .title {
  line-height: 20px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: rgba(0,0,0,0.9);
}

body.dark .item .title {
  color: white; 
}

.item .description {
  font-size: 14px;
  line-height: 18px;
  padding: 0 0 0px 0;
  color: rgba(0,0,0,0.8);
  word-break: break-word;
}

body.dark .item .description {
  color: rgba(255,255,255,0.8);
}

.download-container {
  padding: 20px;
  text-align: right;
}

a.card:hover {
  text-decoration: none !important;
  border-color: rgba(15,17,21,0.2);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

a.card {
  text-decoration: none;
  box-sizing: border-box;
}

.btn:hover {
  text-decoration: none;
}

@media(max-width: 960px) {
  .highlightMosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "launcher"
      "agent"
      "cloud"
      "assistant"
      "agentLauncher";
  }

  .highlightPanelLauncher,
  .highlightPanelAgentLauncher,
  .highlightPanelAssistant,
  .highlightPanelCloud {
    grid-template-columns: 1fr;
  }
}

/* Responsive styles */
@media(max-width: 720px) {
  .items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .nav {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .navLinks {
    margin-left: 0;
    gap: 10px;
    flex: 1 1 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
  }

  .navActions {
    gap: 8px;
    margin-left: 0;
    order: 2;
    flex: 1 1 100%;
    justify-content: center;
  }

  .brand {
    font-size: 20px;
  }

  .page {
    padding: 24px 16px 60px;
  }

  .homeHero {
    padding: 30px 0 28px;
  }

  .homePage .heroLogo img {
    width: 152px;
    height: 152px;
  }

  .homePage .hero h1 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .homePage .heroSubtitle {
    font-size: 18px;
  }

  .overviewSection {
    padding-top: 10px;
  }

  .highlightPanel {
    padding: 18px;
  }

  .highlightPanelCopy h3 {
    font-size: 24px;
  }

  .highlightPanelCopy p {
    font-size: 16px;
  }
}

@media(max-width: 480px) {
  .items {
    grid-template-columns: 1fr;
  }

  .homePage .heroActions {
    justify-content: stretch;
  }

  .homePage .heroActions .pillButton,
  .homePage .heroActions .ghostButton {
    width: 100%;
    justify-content: center;
  }

  .highlightPanel {
    gap: 8px;
    padding: 16px;
  }
}

/* App page specific styles */

/* Override container max-width to match original */
.container {
  max-width: none;
}

/* Tab navigation styles matching utilStyles.tab */
.tab {
  display: flex;
  align-items: center;
  margin: 0 auto;
  background: white;
  box-sizing: border-box;
}

body.dark .tab {
  background: #1B1C1D;
}

.tab .filler {
  width: 1px;
  flex-grow: 1;
}

.tab .stretch {
  width: 1px;
  flex-grow: 1;
}

.tab button {
  background: none;
  border: none;
  color: rgba(0,0,0,0.6);
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.dark .tab button {
  color: white;
  /*
  color: rgba(255,255,255,0.6);
  */
}

.tab button.selected {
  color: rgba(0,0,0,0.9);
  font-weight: bold;
  border-bottom: 2px solid royalblue;
}

body.dark .tab button.selected {
  color: royalblue;
}

.tab button:hover {
  color: rgba(0,0,0,0.9);
}

body.dark .tab button:hover {
  color: white;
}

/* Grid layout matching utilStyles.grid */
.grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  /*
  padding: 0 1rem;
  */
  padding:1rem;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Sidebar styles matching the Tweet component area */
aside {
  background: none;
  padding: 0;
  border-radius: 0;
}

aside h2 {
  margin: 10px;
  font-size: 25px;
  letter-spacing: -1px;
  color: rgba(0,0,0,0.9);
  font-weight: bold;
}

body.dark aside h2 {
  color: white;
}

/* Search input matching utilStyles.input */
.input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid cornflowerblue;
  border-radius: 4px;
  font-size: 18px;
  margin: 10px 0 0;
  background: white;
  box-sizing: border-box;
}

body.dark .input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.input:focus {
  outline: none;
  border-color: royalblue;
}

.input::placeholder {
  color: rgba(0,0,0,0.5);
}

body.dark .input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* Items container matching utilStyles.minimalItemsContainer */
.minimalItemsContainer {
  margin: 0 auto;
  box-sizing: border-box;
}

/* Description styling */
.description {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1rem;
  margin: 0 auto 1rem auto;
}

body.dark .description {
  color: rgba(255,255,255,0.8);
}

/* Items grid matching utilStyles.minimal_items */
.minimal_items {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Apps section header */
.apps-header {
  margin: 10px;
  font-size: 25px;
  letter-spacing: -1px;
  color: rgba(0,0,0,0.9);
  font-weight: bold;
}

body.dark .apps-header {
  color: white;
}

/* Community info styles matching original */
.community {
  background: rgba(0,0,200, 0.04);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

body.dark .community {
  background: rgba(0,0, 250, 0.06);
  color: white;
  border: 2px solid rgba(0,0,250, 0.2);
}


.community_item:last-child {
  margin-bottom: 0;
}

.community_item h3 {
  margin: 0 0 10px 0;
  color: rgba(0,0,0,0.9);
  padding-left: 10px;
  border-left: 10px solid black;
}
body.dark .community_item h3 {
  border-color: white;
}

body.dark .community_item h3 {
  color: white;
}

.community_item div {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

/* Download button styles */
.download-section {
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  padding: 20px;
  margin: 10px 0;
}

body.dark .download-section {
  background: rgba(255,255,255,0.03);
}

#downloadSection {
  font-size: 14px;
}
#downloadSection h3 {
  margin: 0;
}
body.dark #downloadSection {
  color: white;
}

.tab button.download-btn, #downloadSection button.download-btn, #downloadSection a.download-btn  {
  background: royalblue;
  color: white;
  border: 2px solid royalblue;
  padding: 5px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  display: inline;
}

.tab button.download-btn:hover, #downloadSection button.download-btn:hover, #downloadSection a.download-btn:hover  {
  background: transparent;
  color: royalblue;
  text-decoration: none;
}

.download-input {
  width: 100%;
  padding: 10px;
  margin: 2px 0;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-size: 14px;
}

body.dark .download-input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: white;
}

/* Tweet styles and embedded tweet containers */
.tweet-item {
  margin-bottom: 15px;
  width: 100%;
}

.tweet-placeholder {
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  text-align: center;
}

body.dark .tweet-placeholder {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}

/* Twitter iframe styling */
.tweet-item iframe {
  max-width: 100% !important;
  width: 100% !important;
}

/* Loading spinner animation - matching item page */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 4px solid rgba(0,0,0,0.1);
  border-top: 4px solid rgba(0,0,0,0.8);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

body.dark .spinner {
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid rgba(255,255,255,0.8);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  margin-left: 10px;
  color: #666;
  font-size: 14px;
}

body.dark .loading-text {
  color: rgba(255,255,255,0.6);
}

/* Ensure twitter widgets fit in sidebar */
aside .tweet-item {
  max-width: 100%;
  overflow: hidden;
}

/* Responsive adjustments for app page */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  aside {
    order: 2;
  }
  
  .tab {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  
  .tab button {
    margin: 0;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  body.dark .tab button {
    border-bottom-color: rgba(255,255,255,0.1);
  }
  
  .tab .filler, .tab .stretch {
    display: none;
  }
}

/* Cancel button variant */
.download-btn.cancel {
  background: transparent;
  color: royalblue;
  margin-left: 10px;
}

/* Hidden element utility class */
.hidden {
  display: none;
}

/* Homepage redesign */
.homePage {
  --home-ink: #131827;
  --home-muted: #5b657a;
  --home-soft: #f5f7ff;
  --home-line: #dfe6f7;
  --home-blue: royalblue;
  --home-blue-dark: #2f52c6;
  --home-green: #16a34a;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  background: #ffffff;
  color: var(--home-ink);
  overflow-x: hidden;
}

.homePage a:hover {
  text-decoration: none;
}

.homeNav {
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 52px);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(16,18,23,0.06);
  position: sticky;
  top: 0;
}

.homeNav .logo {
  gap: 8px;
}

.homeNav .logo img {
  width: 34px;
  height: 34px;
}

.homeNav .brand {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.homeNav .navLinks {
  gap: clamp(18px, 3vw, 42px);
}

.homeNav .navItem {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #252a33;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 0;
}

.homeNav .navItem i {
  color: #858c98;
  font-size: 11px;
}

.homeNav .navItem:hover {
  color: var(--home-blue);
}

.navDownload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 7px;
  background: var(--home-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 9px 20px rgba(37,99,235,0.18);
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.navDownload:hover {
  background: var(--home-blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37,99,235,0.22);
}

.homeShell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
}

.homeHeroSplit {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(460px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  padding: clamp(34px, 5vw, 58px) 0 36px;
}

.heroCopy {
  min-width: 0;
}

.homePage .heroEyebrow {
  margin: 0 0 18px;
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.heroCopy h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.heroCopy h1 span {
  color: var(--home-blue);
}

.homePage .heroSubtitle {
  max-width: 460px;
  margin: 24px 0 0;
  color: #68707d;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.homePage .heroActions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin: 36px 0 0;
}

.homeButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.homeButton.primary {
  background: var(--home-blue);
  border-color: var(--home-blue);
  color: #fff;
  box-shadow: 0 14px 24px rgba(37,99,235,0.18);
}

.homeButton.secondary {
  background: #fff;
  border-color: #d9dee8;
  color: #2b3039;
}

.homeButton:hover {
  transform: translateY(-1px);
}

.homeButton.primary:hover {
  background: var(--home-blue-dark);
  border-color: var(--home-blue-dark);
}

.homeButton.secondary:hover {
  border-color: #c6ccd8;
  background: #f9fafc;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  color: #6d7480;
  font-size: 14px;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platforms i {
  color: #2f3440;
  font-size: 18px;
}

.productWindow {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(22,28,45,0.11);
}

.windowChrome {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #f6f7fa;
  border-bottom: 1px solid #e7ebf2;
  position: relative;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.dot.red {
  background: #ff625c;
}

.dot.yellow {
  background: #ffbd44;
}

.dot.green {
  background: #38c76b;
}

.windowTitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 22px;
  border-radius: 5px;
  background: #fff;
  color: #6d7480;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.windowAddress {
  margin-left: auto;
  margin-right: auto;
  width: min(410px, 64%);
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  background: #fff;
  color: #747b86;
  font-size: 11px;
}

.windowBody {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  min-height: 360px;
}

.mockSidebar {
  background: #f7f8fb;
  border-right: 1px solid #e7ebf2;
  padding: 10px;
}

.mockApp {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 6px 7px;
  border-radius: 7px;
  color: #222731;
  font-size: 11px;
}

.mockApp.active {
  background: #eef2f8;
}

.mockApp strong,
.mockApp small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockApp strong {
  font-size: 11px;
  line-height: 1.15;
}

.mockApp small {
  margin-top: 1px;
  color: #717986;
  font-size: 10px;
  line-height: 1.1;
}

.mockApp.active small,
.mockIdentity small {
  color: var(--home-blue);
  font-weight: 700;
}

.mockApp i {
  color: var(--home-blue);
  font-size: 9px;
}

.mockLogo {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  border: 1px solid rgba(16,18,23,0.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mockLogo img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.mockLogo.colorA {
  background: #2537d4;
  border-color: #2537d4;
}

.mockLogo.colorA::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #defb39;
  border-radius: 3px;
  transform: skewX(-10deg);
}

.mockLogo.cropper {
  border-color: #101217;
  border-radius: 2px;
}

.mockLogo.cropper::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #101217;
  transform: rotate(-45deg);
}

.mockLogo.dark {
  background: #101217;
}

.mockLogo.dark::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0 45%, transparent 46%);
}

.mockLogo.warm {
  background: linear-gradient(135deg, #8c341b, #222);
}

.mockAdd {
  width: calc(100% - 18px);
  min-height: 29px;
  margin: 8px 9px 0;
  border: 1px solid #dfe4ec;
  border-radius: 6px;
  background: #fff;
  color: #303643;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
}

.mockPanel {
  min-width: 0;
  width: 100%;
  padding: 14px 17px 16px;
}

.mockPanelHeader {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.mockIdentity {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: #20242c;
}

.mockIdentity strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.mockIdentity small {
  font-size: 11px;
}

.mockTools {
  display: inline-flex;
  gap: 5px;
}

.mockTools button,
.mockLogsHeader button {
  min-height: 23px;
  border: 1px solid #dfe4ec;
  border-radius: 5px;
  background: #fff;
  color: #323846;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  padding: 0 8px;
}

.mockTools .stop {
  color: #e03b3b;
}

.mockTabs {
  display: flex;
  gap: 32px;
  margin: 15px -17px 14px;
  padding: 0 17px;
  border-bottom: 1px solid #e8ecf3;
}

.mockTabs span {
  padding: 0 0 9px;
  color: #5e6674;
  font-size: 11px;
  font-weight: 700;
}

.mockTabs .selected {
  color: #222731;
  box-shadow: inset 0 -2px 0 var(--home-blue);
}

.mockAbout {
  width: 100%;
  border: 1px solid #e7ebf2;
  border-radius: 7px;
  padding: 10px 12px;
  background: #fbfcfe;
  color: #303643;
}

.mockAbout span,
.mockStats span {
  display: block;
  color: #6c7481;
  font-size: 10px;
  font-weight: 700;
}

.mockAbout p {
  margin: 8px 0 0;
  color: #4c5562;
  font-size: 11px;
  line-height: 1.45;
}

.mockStats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 12px 0;
}

.mockStats div {
  min-width: 0;
  border: 1px solid #e7ebf2;
  border-radius: 7px;
  padding: 9px 10px;
  background: #fff;
}

.mockStats strong {
  display: block;
  margin-top: 5px;
  color: #222731;
  font-size: 12px;
}

.mockLogs {
  width: 100%;
  border: 1px solid #e7ebf2;
  border-radius: 7px;
  padding: 10px;
  background: #fff;
}

.mockLogsHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #20242c;
  font-size: 12px;
}

.mockSearch {
  height: 25px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
  padding: 0 9px;
  border: 1px solid #e8ecf3;
  border-radius: 5px;
  color: #8b929e;
  font-size: 10px;
}

.mockLogs pre {
  margin: 0;
  color: #3e4652;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.mockOk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: var(--home-green);
  font-size: 10px;
  font-weight: 700;
}

.capabilitySection {
  padding: 30px 0 34px;
  border-top: 1px solid #eff2f7;
}

.capabilitySection h2,
.workflowCopy h2 {
  margin: 0;
  color: #171b23;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.capabilitySection h2 {
  text-align: center;
}

.capabilityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
}

.capabilityCard {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 138px;
  padding: 22px 26px;
  border: 1px solid #e2e7f0;
  border-radius: 8px;
  background: #fff;
  min-width: 0;
}

.capabilityIcon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5ff;
  color: var(--home-blue);
  font-size: 25px;
}

.capabilityCard h3 {
  margin: 0 0 8px;
  color: #151922;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.capabilityCard p {
  margin: 0;
  color: #6c7481;
  font-size: 14px;
  line-height: 1.45;
}

.capabilityCard > div {
  min-width: 0;
}

.workflowSection {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: clamp(42px, 6vw, 74px);
  padding: 50px 0 32px;
  border-top: 1px solid #eff2f7;
}

.workflowCopy p {
  max-width: 360px;
  margin: 18px 0 32px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.55;
}

.workflowList {
  list-style: none;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.workflowList li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: start;
  color: #5d6572;
  font-size: 14px;
  line-height: 1.45;
}

.workflowList i {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--home-blue);
  color: #fff;
  font-size: 11px;
}

.workflowList strong {
  display: block;
  margin-bottom: 3px;
  color: #171b23;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.workflowWindow {
  align-self: start;
  box-shadow: 0 16px 34px rgba(22,28,45,0.1);
}

.workflowShot {
  height: 346px;
  overflow: hidden;
  background: #fff;
}

.workflowShot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.docsCallout {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 36px 0 28px;
  padding: 0 22px;
  border: 1px solid #e2e7f0;
  border-radius: 8px;
  background: #fff;
  color: #69717f;
  font-size: 14px;
}

.docsCallout div,
.docsCallout a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.docsCallout i {
  color: var(--home-blue);
}

.docsCallout a {
  color: var(--home-blue);
  font-weight: 700;
}

.homeFooter {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.5fr);
  gap: clamp(46px, 8vw, 98px);
  margin: 0 auto;
  padding: 38px clamp(18px, 3vw, 32px) 52px;
}

.footerBrand .logo {
  gap: 8px;
}

.footerBrand .logo img {
  width: 31px;
  height: 31px;
}

.footerBrand .brand {
  font-size: 24px;
}

.footerBrand p {
  margin: 14px 0 24px;
  color: #6b7280;
  font-size: 14px;
}

.footerBrand small {
  color: #7b8491;
  font-size: 13px;
}

.footerLinks {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: clamp(28px, 5vw, 58px);
}

.footerLinks h2 {
  margin: 0 0 12px;
  color: #252a33;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.footerLinks a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 9px;
  color: #68707d;
  font-size: 13px;
}

.footerLinks a:hover {
  color: var(--home-blue);
}

.footerLinks i {
  font-size: 10px;
}

@media (max-width: 1040px) {
  .homeHeroSplit,
  .workflowSection {
    grid-template-columns: 1fr;
  }

  .homeHeroSplit {
    min-height: 0;
    padding-top: 46px;
  }

  .heroCopy {
    max-width: 650px;
  }

  .heroSubtitle {
    max-width: 560px;
  }

  .capabilityGrid {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .homeNav .navLinks {
    gap: 18px;
  }

  .homeNav .navItem:nth-child(2),
  .homeNav .navItem:nth-child(3),
  .homeNav .navItem:nth-child(4) {
    display: none;
  }

  .capabilityGrid {
    grid-template-columns: 1fr;
  }

  .capabilityCard {
    min-height: 116px;
  }

  .homeFooter {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .homeNav {
    min-height: 64px;
    padding: 12px 18px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .homeNav .brand {
    font-size: 22px;
  }

  .homeNav .navLinks {
    justify-self: end;
    margin-left: 0;
    gap: 12px;
  }

  .homeNav .navItem {
    display: none;
  }

  .navDownload {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .homeShell {
    padding: 0 18px;
    max-width: 100%;
    overflow: hidden;
  }

  .homeHeroSplit {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 28px;
    padding: 38px 0 26px;
  }

  .heroCopy,
  .productWindow,
  .workflowWindow {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .homePage .heroEyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .heroCopy h1 {
    font-size: clamp(45px, 14vw, 58px);
    max-width: 8ch;
    overflow-wrap: normal;
  }

  .homePage .heroSubtitle {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    font-size: 18px;
    margin-top: 18px;
    overflow-wrap: break-word;
  }

  .homePage .heroActions {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-top: 28px;
    gap: 10px;
  }

  .homeButton {
    width: 100%;
  }

  .platforms {
    gap: 13px;
    margin-top: 24px;
  }

  .windowBody {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
  }

  .mockSidebar {
    display: none;
  }

  .mockPanel {
    width: 100%;
    padding: 12px;
  }

  .mockPanelHeader {
    align-items: flex-start;
  }

  .mockTools button:nth-child(1),
  .mockTools button:nth-child(2) {
    display: none;
  }

  .mockTabs {
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 12px;
    gap: 22px;
  }

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

  .mockLogs pre {
    max-height: 125px;
    overflow: hidden;
  }

  .capabilitySection {
    padding-top: 24px;
  }

  .capabilitySection h2 {
    text-align: left;
  }

  .capabilityGrid {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-top: 20px;
  }

  .capabilityCard {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .capabilityIcon {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .workflowSection {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding-top: 38px;
    gap: 28px;
  }

  .workflowCopy p {
    margin-bottom: 24px;
  }

  .workflowShot {
    height: 248px;
  }

  .docsCallout {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
    line-height: 1.5;
  }

  .homeFooter {
    padding: 32px 18px 42px;
    max-width: 100%;
    overflow: hidden;
  }

  .footerLinks {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Homepage reference refinement */
.homePage {
  --home-ink: #131827;
  --home-muted: #5b657a;
  --home-soft: #f5f7ff;
  --home-line: #dfe6f7;
  --home-accent: royalblue;
  --home-accent-soft: #eef3ff;
  --home-action: royalblue;
  --home-action-hover: #2f52c6;
  --home-green: #16823a;
  --home-page-max: 1240px;
  --home-content-max: 1156px;
  --home-page-gutter: clamp(28px, 3vw, 42px);
}

.homeNav {
  min-height: 58px;
  padding: 10px clamp(30px, 4vw, 48px);
}

.homeNav .logo img {
  width: 38px;
  height: 38px;
}

.homeNav .brand {
  font-size: 27px;
}

.homeNav .navLinks {
  gap: clamp(22px, 3.4vw, 44px);
}

.homeNav .navItem {
  color: #202840;
  font-size: 13px;
}

.homeNav .navItem:hover {
  color: var(--home-accent);
}

.navDownload {
  min-height: 37px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--home-action);
  box-shadow: none;
  font-size: 12px;
}

.navDownload:hover {
  background: var(--home-action-hover);
  box-shadow: none;
}

.homeShell,
.homeFooter {
  max-width: 1220px;
  padding-left: clamp(26px, 4vw, 48px);
  padding-right: clamp(26px, 4vw, 48px);
}

.homeHeroSplit {
  min-height: 0;
  grid-template-columns: minmax(410px, 0.8fr) minmax(590px, 1.2fr);
  gap: clamp(48px, 7vw, 86px);
  padding: 38px 0 28px;
}

.homePage .heroEyebrow {
  color: var(--home-accent);
  font-size: 12px;
  letter-spacing: 0.075em;
  margin-bottom: 17px;
}

.heroCopy h1 {
  font-size: clamp(50px, 5.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.heroCopy h1 span {
  color: inherit;
}

.homePage .heroSubtitle {
  max-width: 430px;
  margin-top: 22px;
  color: #3f485d;
  font-size: 19px;
  line-height: 1.7;
}

.homePage .heroActions {
  margin-top: 27px;
  gap: 12px;
}

.homeButton {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 7px;
  font-size: 14px;
}

.homeButton.primary {
  background: var(--home-action);
  border-color: var(--home-action);
  box-shadow: none;
}

.homeButton.primary:hover {
  background: var(--home-action-hover);
  border-color: var(--home-action-hover);
}

.homeButton.secondary {
  border-color: #d7def0;
  background: #fff;
}

.platforms {
  margin-top: 54px;
  gap: 21px;
  font-size: 13px;
}

.platforms i {
  font-size: 17px;
}

.heroWindow {
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(22,28,45,0.09);
}

.windowChrome {
  height: 35px;
}

.windowBody {
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 322px;
}

.mockPanel {
  padding: 12px 15px 14px;
}

.mockLogo.colorB {
  border-color: #0b0d0f;
  background: #0b0d0f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.mockApp.active {
  background: #edf2ff;
}

.mockApp.active small,
.mockIdentity small {
  color: #111418;
}

.mockApp i,
.mockTabs .selected {
  color: var(--home-action);
}

.mockTabs .selected {
  box-shadow: inset 0 -2px 0 var(--home-action);
}

.capabilitySection {
  border-top: 0;
  padding: 0 0 31px;
}

.capabilityGrid {
  gap: 25px;
  margin-top: 0;
}

.capabilityCard {
  min-height: 133px;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 22px 36px;
  border-color: #dfe6f7;
  border-radius: 8px;
}

.capabilityIcon {
  width: 55px;
  height: 55px;
  background: var(--home-accent-soft);
  color: var(--home-accent);
  font-size: 24px;
}

.capabilityCard h3 {
  color: var(--home-ink);
  font-size: 17px;
}

.capabilityCard p {
  color: #5b657a;
  font-size: 14px;
  line-height: 1.55;
}

.workflowSection {
  display: block;
  padding: 0 0 25px;
  border-top: 0;
}

.workflowHeader {
  padding-top: 0;
  margin-bottom: 24px;
}

.workflowHeader h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(28px, 3vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.workflowHeader p {
  max-width: 590px;
  margin: 10px 0 0;
  color: #4f5661;
  font-size: 14px;
  line-height: 1.55;
}

.workflowStep {
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(520px, 0.58fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
  min-height: 232px;
  padding: 16px 14px 16px 14px;
  border-top: 1px solid #dfe6f7;
}


.workflowStepReverse .workflowStepCopy {
  order: 2;
}

.workflowStepReverse .workflowMedia {
  order: 1;
}

.workflowStepCopy {
  min-width: 0;
}

.stepHeading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.stepBadge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--home-action);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.stepHeading h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.workflowStepCopy p {
  max-width: 260px;
  margin: 17px 0 0 72px;
  color: #59616b;
  font-size: 14px;
  line-height: 1.72;
}

.workflowMedia {
  min-width: 0;
  height: 224px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe6f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22,28,45,0.04);
}

.workflowMedia img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.workflowStep:nth-of-type(2) .workflowMedia img {
  object-position: center;
}

.workflowStepReverse .workflowMedia img {
  object-position: center;
}

.docsCallout {
  margin: 24px 0 26px;
  min-height: 45px;
  border-radius: 8px;
  color: #5d6571;
}

.docsCallout i,
.docsCallout a {
  color: var(--home-action);
}

.homeFooter {
  padding-top: 29px;
}

@media (max-width: 1040px) {
  .homeHeroSplit {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 34px;
  }

  .workflowStep,
  .workflowStepReverse {
    grid-template-columns: 1fr;
  }

  .workflowStepReverse .workflowStepCopy,
  .workflowStepReverse .workflowMedia {
    order: initial;
  }

  .workflowStepCopy p {
    max-width: 600px;
  }
}

@media (max-width: 860px) {
  .capabilityGrid {
    grid-template-columns: 1fr;
  }

  .workflowStep {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .homeNav {
    padding: 12px 18px;
  }

  .homeNav .logo img {
    width: 34px;
    height: 34px;
  }

  .navDownload {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .homeHeroSplit {
    gap: 26px;
    padding-top: 36px;
  }

  .heroCopy h1 {
    max-width: 8ch;
    font-size: clamp(46px, 15vw, 58px);
  }

  .homePage .heroSubtitle,
  .homePage .heroActions,
  .heroCopy,
  .productWindow,
  .workflowWindow,
  .capabilityGrid,
  .docsCallout {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .platforms {
    margin-top: 29px;
  }

  .windowBody {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
  }

  .mockSidebar {
    display: none;
  }

  .mockPanel {
    width: 100%;
  }

  .capabilitySection {
    padding-bottom: 26px;
  }

  .capabilityGrid {
    gap: 14px;
  }

  .capabilityCard {
    min-height: 112px;
    grid-template-columns: 52px 1fr;
    padding: 17px;
  }

  .capabilityIcon {
    width: 48px;
    height: 48px;
  }

  .workflowHeader {
    margin-bottom: 14px;
  }

  .workflowStep {
    min-height: 0;
    gap: 18px;
    padding: 22px 0;
  }

  .stepHeading {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
  }

  .stepBadge {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .stepHeading h3 {
    font-size: 19px;
  }

  .workflowStepCopy p {
    max-width: none;
    margin-left: 54px;
    margin-top: 10px;
  }

  .workflowMedia {
    aspect-ratio: 1036 / 582;
    height: auto;
  }
}

/* Homepage final layout */
.homeShell,
.homeFooter {
  max-width: var(--home-page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--home-page-gutter);
  padding-right: var(--home-page-gutter);
}

.homeNav {
  padding-left: max(var(--home-page-gutter), calc((100vw - var(--home-page-max)) / 2 + var(--home-page-gutter)));
  padding-right: max(var(--home-page-gutter), calc((100vw - var(--home-page-max)) / 2 + var(--home-page-gutter)));
}

.homeHeroSplit {
  grid-template-columns: minmax(390px, 0.42fr) minmax(680px, 0.58fr);
  gap: clamp(54px, 6vw, 88px);
  padding-top: 36px;
}

.heroWindow {
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.capabilitySection {
  padding-bottom: 30px;
}

.capabilityGrid {
  gap: 26px;
}

.workflowSection {
  margin-left: calc(50% - 50vw);
  width: 100vw;
  padding: 29px var(--home-page-gutter) 22px;
  background: #f5f7ff;
  border-top: 1px solid #e4eaff;
}

.workflowHeader {
  max-width: var(--home-content-max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.workflowClosing {
  display: flex;
  justify-content: flex-end;
  max-width: var(--home-content-max);
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid #dfe6f7;
}

.workflowDocsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 6px;
  color: #34405c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.workflowDocsLink i {
  color: var(--home-accent);
  font-size: 9px;
}

.workflowDocsLink:hover {
  color: var(--home-action-hover);
}

.workflowStep {
  grid-template-columns: minmax(300px, 0.38fr) minmax(540px, 0.62fr);
  gap: clamp(38px, 6vw, 78px);
  max-width: var(--home-content-max);
  margin-left: auto;
  margin-right: auto;
  min-height: 196px;
  padding: 14px 0;
}

.workflowStepReverse {
  grid-template-columns: minmax(540px, 0.62fr) minmax(300px, 0.38fr);
}

.workflowMedia {
  aspect-ratio: var(--workflow-media-ratio, 1036 / 582);
  height: auto;
  box-shadow: none;
  background: #fff;
}

.workflowMediaDiscover {
  --workflow-media-ratio: 2722 / 1594;
}

.workflowMediaLauncher {
  --workflow-media-ratio: 1242 / 696;
}

.workflowMediaVersions {
  --workflow-media-ratio: 2422 / 1160;
}

.workflowMediaAgents {
  --workflow-media-ratio: 1036 / 582;
}

.workflowMock {
  width: 100%;
  height: 100%;
  display: grid;
  min-width: 0;
  color: #191c21;
  background: #fff;
  font-size: 12px;
}

.mockNavList,
.versionSidebar,
.agentSidebar {
  border-right: 1px solid #edf0f4;
  background: #fbfcfd;
}

.mockNavList {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 10px 12px;
}

.mockNavList span,
.versionSidebar span,
.agentSidebar span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 27px;
  border-radius: 6px;
  padding: 0 9px;
  color: #4a5059;
  font-weight: 600;
}

.mockNavList .selected,
.versionSidebar .selected,
.agentSidebar .selected {
  background: #edf2ff;
  color: #17275f;
}

.discoverMock {
  grid-template-columns: 125px minmax(0, 1fr);
}

.mockDirectory {
  min-width: 0;
  padding: 9px 12px;
}

.mockDirectoryBar {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) repeat(5, auto) auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.mockSearchInput,
.mockDirectoryBar span,
.mockDirectoryBar button {
  min-height: 24px;
  border: 1px solid #e3e7ee;
  border-radius: 5px;
  background: #fff;
  color: #6a717d;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 0 10px;
}

.mockSearchInput {
  display: flex;
  align-items: center;
  color: #9aa1ac;
  font-weight: 500;
}

.mockDirectoryBar span:first-of-type {
  background: #edf2ff;
  color: #17275f;
}

.mockDirectoryItem {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 8px;
  min-height: 39px;
  border-top: 1px solid #edf0f4;
}

.mockDirectoryItem strong,
.mockDirectoryItem small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockDirectoryItem strong {
  font-size: 13px;
  line-height: 1.1;
}

.mockDirectoryItem small {
  color: #66707c;
  font-size: 10px;
}

.mockDirectoryItem em,
.agentChatTop em {
  border-radius: 5px;
  background: #eef3ff;
  color: #5268a3;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
}

.mockDirectoryItem button {
  min-height: 24px;
  border: 1px solid #e3e7ee;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.mockAppMark {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #edf2ff;
  color: #17275f;
  font-size: 11px;
  font-weight: 800;
}

.mockAppMark.comfy {
  background: #1f2330;
  color: #f5d94a;
}

.mockAppMark.open {
  background: #08090b;
  color: #fff;
}

.mockAppMark.outline {
  background: #fff;
  border: 2px solid #121519;
}

.versionsMock {
  grid-template-columns: 170px minmax(0, 1fr);
}

.versionSidebar {
  padding: 10px 12px;
}

.versionBrand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 800;
}

.versionBrand img,
.versionIcon img {
  width: 24px;
  height: 24px;
}

.versionSidebar span {
  min-height: 28px;
  margin-bottom: 3px;
  font-size: 11px;
}

.versionTable {
  min-width: 0;
  padding: 10px 14px;
}

.versionRow {
  display: grid;
  grid-template-columns: 30px minmax(130px, 1fr) 8px 64px 56px 82px 58px;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border-bottom: 1px solid #edf0f4;
  color: #4f5661;
  font-size: 11px;
}

.versionRow strong {
  color: #15181d;
  font-size: 13px;
}

.versionRow small {
  color: #79818d;
  font-weight: 600;
}

.versionRow em {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d58a18;
}

.versionRow em.running {
  background: #13823d;
}

.versionRow b {
  color: #333a44;
}

.versionRow button,
.installVersion {
  border: 1px solid #e3e7ee;
  border-radius: 6px;
  background: #fff;
  color: #15181d;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  min-height: 24px;
}

.installVersion {
  margin-top: 6px;
  padding: 0 14px;
}

.agentsMock {
  grid-template-columns: 220px minmax(0, 1fr);
}

.agentSidebar {
  padding: 10px 12px;
}

.agentHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.agentHead button {
  border: 1px solid #e3e7ee;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  min-height: 24px;
}

.agentSidebar span {
  font-size: 11px;
}

.agentSidebar img {
  width: 22px;
  height: 22px;
}

.agentSidebar em {
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: #238a45;
}

.agentSidebar small {
  display: block;
  margin: 9px 0 4px;
  color: #59616b;
  font-weight: 800;
}

.agentChat {
  position: relative;
  min-width: 0;
  padding: 10px 12px 9px;
}

.agentChatTop {
  display: flex;
  align-items: center;
  gap: 9px;
}

.agentChatTop strong {
  font-size: 13px;
}

.agentChatTop em {
  color: #23713c;
  background: #e7f5ea;
}

.agentTooltip {
  position: absolute;
  top: 31px;
  right: 18px;
  max-width: 300px;
  border-radius: 5px;
  background: #181b20;
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}

.agentBubble {
  max-width: 430px;
  margin: 30px 0 8px 34px;
  border-radius: 8px;
  background: #eef3ff;
  color: #38445f;
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.35;
}

.agentBubble span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #23713c;
  font-size: 11px;
  font-weight: 700;
}

.agentBubble button {
  float: right;
  margin-top: 4px;
  border: 1px solid #d8dce3;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  min-height: 26px;
  padding: 0 14px;
}

.agentComposer {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  color: #9aa1ac;
  padding: 0 12px;
  font-size: 11px;
}

.agentComposer i:first-of-type {
  margin-left: auto;
}

.homeFooter {
  position: relative;
  grid-template-columns: minmax(260px, 1.1fr) minmax(500px, 1.9fr);
  padding-top: 26px;
  padding-bottom: 32px;
}

.homeFooter::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: #f5f7ff;
}

@media (max-width: 1040px) {
  .homeHeroSplit {
    grid-template-columns: 1fr;
  }

  .heroWindow {
    max-width: none;
  }

  .workflowSection {
    padding-left: clamp(24px, 4vw, 38px);
    padding-right: clamp(24px, 4vw, 38px);
  }

  .workflowStep,
  .workflowStepReverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .discoverMock,
  .versionsMock,
  .agentsMock {
    grid-template-columns: 1fr;
  }

  .mockNavList,
  .versionSidebar,
  .agentSidebar {
    display: none;
  }

  .workflowMedia {
    aspect-ratio: var(--workflow-media-ratio, 1036 / 582);
    height: auto;
  }

  .versionRow {
    grid-template-columns: 26px minmax(130px, 1fr) 8px 58px 46px 1fr;
  }

  .versionRow > span:nth-of-type(4),
  .versionRow button {
    display: none;
  }

  .agentTooltip {
    left: 48px;
    right: 12px;
  }

  .agentBubble {
    margin-left: 12px;
  }
}

@media (max-width: 640px) {
  .homeNav {
    padding: 12px 18px;
  }

  .homeShell,
  .homeFooter {
    padding-left: 18px;
    padding-right: 18px;
  }

  .homeHeroSplit,
  .capabilityGrid,
  .heroCopy,
  .productWindow,
  .workflowWindow,
  .homePage .heroSubtitle,
  .homePage .heroActions {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .workflowSection {
    margin-left: -18px;
    width: calc(100% + 36px);
    padding: 28px 18px 20px;
  }

  .workflowStepCopy p {
    margin-left: 54px;
  }

  .mockDirectory {
    padding: 10px;
  }

  .mockDirectoryBar {
    grid-template-columns: minmax(120px, 1fr) repeat(2, auto);
  }

  .mockDirectoryBar span:nth-of-type(n+3),
  .mockDirectoryBar button {
    display: none;
  }

  .mockDirectoryItem {
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .mockDirectoryItem em:nth-of-type(n+2),
  .mockDirectoryItem button {
    display: none;
  }

  .versionTable,
  .agentChat {
    padding: 11px;
  }

  .versionRow {
    grid-template-columns: 26px minmax(120px, 1fr) 8px 58px;
  }

  .versionRow > span:nth-of-type(n+3) {
    display: none;
  }

  .agentBubble button {
    float: none;
    display: block;
    margin-top: 8px;
  }

  .homeFooter {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) {
  .heroWindow {
    height: 318px;
  }

  .heroWindow .windowBody {
    height: 283px;
    min-height: 0;
  }

  .heroWindow .mockSidebar {
    padding: 7px;
    overflow: hidden;
  }

  .heroWindow .mockApp {
    min-height: 30px;
    gap: 7px;
    padding: 4px 6px;
  }

  .heroWindow .mockApp strong {
    font-size: 10px;
  }

  .heroWindow .mockApp small {
    font-size: 9px;
  }

  .heroWindow .mockLogo {
    width: 21px;
    height: 21px;
  }

  .heroWindow .mockLogo img {
    width: 17px;
    height: 17px;
  }

  .heroWindow .mockAdd {
    min-height: 24px;
    margin-top: 5px;
    font-size: 10px;
  }

  .heroWindow .mockPanel {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    padding: 9px 12px 10px;
  }

  .heroWindow .mockIdentity strong {
    font-size: 12px;
  }

  .heroWindow .mockIdentity small {
    font-size: 10px;
  }

  .heroWindow .mockTools button,
  .heroWindow .mockLogsHeader button {
    min-height: 20px;
    padding: 0 7px;
    font-size: 9px;
  }

  .heroWindow .mockTabs {
    gap: 28px;
    margin: 8px -12px 7px;
    padding: 0 12px;
  }

  .heroWindow .mockTabs span {
    padding-bottom: 5px;
    font-size: 10px;
  }

  .heroWindow .mockAbout {
    padding: 6px 8px;
  }

  .heroWindow .mockAbout p {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.3;
  }

  .heroWindow .mockStats {
    gap: 7px;
    margin: 6px 0;
  }

  .heroWindow .mockStats div {
    padding: 5px 7px;
  }

  .heroWindow .mockStats span,
  .heroWindow .mockAbout span {
    font-size: 9px;
  }

  .heroWindow .mockStats strong {
    margin-top: 3px;
    font-size: 11px;
  }

  .heroWindow .mockLogs {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    max-height: none;
    overflow: hidden;
    padding: 6px 8px;
  }

  .heroWindow .mockLogsHeader {
    font-size: 11px;
  }

  .heroWindow .mockSearch {
    height: 19px;
    margin: 4px 0;
    font-size: 9px;
  }

  .heroWindow .mockLogs pre {
    min-height: 0;
    max-height: none;
    flex: 1;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.28;
  }

  .heroWindow .mockOk {
    margin-top: 4px;
    font-size: 9px;
  }
}

.heroScreenshot.heroWindow {
  width: 100%;
  max-width: 760px;
  height: auto;
  aspect-ratio: 3171 / 1777;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(22,28,45,0.09);
}

.heroScreenshot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .heroScreenshot.heroWindow {
    max-width: none;
    justify-self: stretch;
  }
}

/* Download page refresh */
.downloadPageBody {
  background: #fff;
  color: var(--home-ink);
  overflow-x: hidden;
}

.downloadPageBody .downloadPage {
  max-width: var(--home-page-max);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) var(--home-page-gutter) 34px;
  text-align: left;
}

.downloadPageBody .downloadSimplePage {
  max-width: 1120px;
  padding-top: clamp(44px, 7vw, 72px);
}

.downloadSimpleHeader {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.downloadSimpleHeader h1 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(42px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.downloadSimpleHeader p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 13px 0 0;
  color: #5b657a;
  font-size: 13px;
  font-weight: 700;
}

.downloadSimpleHeader a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34405c;
  text-decoration: none;
  white-space: nowrap;
}

.downloadSimpleHeader a:hover {
  color: var(--home-accent);
}

.downloadPageBody .downloadOptions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  margin: 0;
}

.downloadPageBody .downloadCard {
  min-width: 0;
  min-height: 286px;
  padding: 22px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22,28,45,0.04);
  color: inherit;
  cursor: pointer;
  display: grid;
  align-content: start;
  gap: 16px;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.downloadPageBody .downloadCard:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--home-accent) 34%, var(--home-line));
  background: #fbfdff;
  box-shadow: 0 12px 30px rgba(22,28,45,0.07);
}

.downloadPageBody .downloadCard:focus-visible,
.downloadPageBody .archButton:focus-visible,
.downloadPageBody .downloadBtn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--home-accent) 35%, transparent);
  outline-offset: 2px;
}

.downloadPageBody .downloadCard.selected {
  border-color: var(--home-accent);
  background: #f8faff;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--home-accent) 12%, transparent), 0 12px 30px rgba(22,28,45,0.07);
}

.downloadPageBody .downloadCard .osHead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

.downloadPageBody .downloadCard .osHead > div {
  min-width: 0;
}

.downloadPageBody .downloadCard .osIcon,
.downloadPageBody .macCard .osIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--home-accent-soft);
  color: var(--home-accent);
  font-size: 24px;
  justify-self: center;
}

.downloadPageBody .downloadCard .osLabel,
.downloadPageBody .macCard .osLabel {
  color: var(--home-ink);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.downloadPageBody .downloadCard .osNote,
.downloadPageBody .macCard .osNote {
  max-width: 260px;
  margin: 6px auto 0;
  color: #5b657a;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.downloadPageBody .archButtons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 0;
}

.downloadPageBody .archButton {
  min-width: 0;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  background: #fff;
  color: #34405c;
  font-size: 12px;
  font-weight: 800;
  box-shadow: none;
}

.downloadPageBody .archButton:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--home-accent) 34%, var(--home-line));
  box-shadow: none;
}

.downloadPageBody .archButton.active {
  border-color: var(--home-accent);
  background: var(--home-accent);
  color: #fff;
  box-shadow: none;
}

.downloadPageBody .archButton.recommended {
  border-color: var(--home-accent);
}

.downloadPageBody .archButton .archBadge {
  padding: 3px 7px;
  font-size: 9px;
}

.downloadPageBody .archHint,
.downloadPageBody .downloadHint {
  color: #667086;
  font-size: 12px;
  line-height: 1.45;
}

.downloadPageBody .macCard .archHint {
  text-align: center;
}

.downloadPageBody .downloadAction {
  display: grid;
  gap: 9px;
  max-width: 420px;
  margin: 22px auto 0;
  text-align: center;
}

.downloadPageBody .downloadBtn {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--home-action);
  border-radius: 7px;
  background: var(--home-action);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.downloadPageBody .downloadBtn:hover {
  transform: none;
  border-color: var(--home-action-hover);
  background: var(--home-action-hover);
  box-shadow: none;
  color: #fff;
}

.downloadPageBody .downloadBtn.disabled {
  border-color: #d8e0f0;
  background: #eef3ff;
  color: #6a7590;
  cursor: not-allowed;
}

.downloadPageBody .homeFooter {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .downloadPageBody .homeNav {
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
  }

  .downloadPageBody .homeNav .navLinks {
    display: none;
  }

  .downloadPageBody .downloadPage {
    padding: 34px 18px 26px;
    max-width: 100%;
    overflow: hidden;
  }

  .downloadPageBody .downloadSimplePage {
    padding-top: 34px;
  }

  .downloadSimpleHeader,
  .downloadPageBody .downloadOptions,
  .downloadPageBody .downloadAction {
    width: 100%;
    max-width: 354px;
    margin-left: 0;
    margin-right: 0;
  }

  .downloadSimpleHeader {
    margin-bottom: 20px;
    text-align: left;
  }

  .downloadSimpleHeader h1 {
    font-size: clamp(40px, 13vw, 50px);
  }

  .downloadSimpleHeader p {
    justify-content: flex-start;
  }

  .downloadPageBody .downloadOptions {
    grid-template-columns: 1fr;
  }

  .downloadPageBody .downloadCard {
    min-height: 0;
    padding: 18px;
    overflow: hidden;
  }

  .downloadPageBody .downloadCard .osHead {
    grid-template-columns: 42px minmax(0, 1fr);
    justify-items: initial;
    text-align: left;
  }

  .downloadPageBody .downloadCard .osIcon,
  .downloadPageBody .macCard .osIcon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .downloadPageBody .downloadCard .osLabel,
  .downloadPageBody .macCard .osLabel,
  .downloadPageBody .downloadCard .osNote,
  .downloadPageBody .macCard .osNote {
    text-align: left;
  }

  .downloadPageBody .downloadCard .osNote,
  .downloadPageBody .macCard .osNote {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .downloadPageBody .archButtons {
    grid-template-columns: 1fr;
  }

  .downloadPageBody .archButton .archBadge {
    display: none;
  }

  .downloadPageBody .downloadBtn {
    white-space: normal;
    text-align: center;
  }

}
