:root {
  --black: #000;
  --ink: #f7f7f1;
  --muted: #aaaab2;
  --soft: #e6e6e8;
  --blue: #d8d8dc;
  --blue-2: #b8bbc5;
  --panel: #090a0d;
  --panel-2: #121318;
  --line: rgba(255, 255, 255, 0.2);
  --dark-line: rgba(0, 0, 0, 0.16);
  --paper: #f7f7f1;
  --paper-muted: #55565d;
  --typewriter: "Courier New", Courier, "Nimbus Mono PS", "Liberation Mono", monospace;
  font-family: var(--typewriter);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background: var(--black);
  color: var(--ink);
  font-family: var(--typewriter);
  font-variant-ligatures: none;
  letter-spacing: 0;
}

.aximary-pointer-trail {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  contain: strict;
}

@media (prefers-reduced-motion: reduce), print {
  .aximary-pointer-trail {
    display: none;
  }
}

body,
button,
input {
  font: inherit;
}

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

button,
input {
  border: 0;
}

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--black);
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  height: 52px;
  padding: 0 clamp(18px, 7vw, 130px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(247, 247, 241, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #080a13;
  font-size: 0.72rem;
  font-weight: 700;
}

.brand {
  font-weight: 800;
}

.nav-links,
.header-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

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

.header-actions {
  justify-content: flex-end;
}

.top-button {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0 13px;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.menu-toggle i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-menu-backdrop,
.site-menu {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.site-menu-backdrop[hidden],
.site-menu[hidden] {
  display: none;
}

.site-menu-backdrop {
  inset: 0;
  z-index: 39;
  background: rgba(0, 0, 0, 0.36);
}

.site-menu {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  width: min(380px, calc(100vw - 18px));
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  background:
    radial-gradient(circle at 0% 42%, rgba(49, 119, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f7f1 100%);
  color: #050505;
  padding: 22px 18px;
  transform: translateX(100%);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.2);
}

.site-menu-backdrop.is-open,
.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu.is-open {
  transform: translateX(0);
}

.site-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-menu-top span {
  font-size: 1.1rem;
  font-weight: 800;
}

.site-menu-top button {
  min-height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #050505;
  padding: 0 12px;
  font-size: 0.72rem;
}

.site-menu nav {
  display: grid;
  align-content: start;
  gap: 9px;
  overflow: auto;
  padding-right: 4px;
}

.site-menu nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: #121212;
  padding: 0 13px;
}

.site-menu nav a:hover,
.site-menu nav a:focus-visible {
  border-color: #3177ff;
  background: #e8efff;
  color: #000;
  outline: 0;
}

.site-menu p {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  color: #3d3e44;
  padding-top: 16px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero {
  position: relative;
  min-height: 1120px;
  overflow: hidden;
  background: #000;
}

.hero-cloud {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 255, 255, 0.8), rgba(170, 199, 255, 0.48) 22%, transparent 46%),
    radial-gradient(circle at 72% 10%, rgba(108, 93, 255, 0.95), rgba(102, 143, 255, 0.64) 28%, transparent 56%),
    linear-gradient(180deg, #a9c6ff 0%, #6d86ff 44%, rgba(13, 25, 67, 0.62) 68%, #000 100%);
  filter: saturate(1.1);
}

.hero-cloud::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 42%, rgba(0, 19, 88, 0.78), transparent 30%),
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.72) 82%, #000 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1060px);
  margin: 0 auto;
  padding-top: 110px;
  text-align: center;
}

.app-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 25%, #fff, transparent 20%),
    linear-gradient(135deg, #526bff, #85b6ff 52%, #fff);
  color: #fff;
  box-shadow: 0 18px 42px rgba(40, 66, 210, 0.34);
  font-size: 1.4rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: #03050b;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.hero-subhead {
  width: min(680px, 100%);
  margin: 24px auto 0;
  color: #080b18;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.primary-action,
.secondary-action,
.offer-bar a,
.surfaces-section .section-heading a,
.surface-grid a,
.signup-form button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
}

.primary-action,
.offer-bar a,
.signup-form button {
  background: #000;
  color: #fff;
}

.secondary-action,
.surfaces-section .section-heading a,
.surface-grid a {
  background: #fff;
  color: #000;
}

.availability {
  margin: 18px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.82rem;
}

.hero-product {
  width: min(820px, 100%);
  margin: 86px auto 0;
}

.app-shell {
  display: grid;
  grid-template-columns: 180px 1fr 300px;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #090a0d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  text-align: left;
}

.app-sidebar,
.app-chat,
.diff-panel {
  min-width: 0;
  padding: 18px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: #8f929d;
  font-size: 0.74rem;
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b66;
}

.window-dots i:nth-child(2) {
  background: #ffcf5c;
}

.window-dots i:nth-child(3) {
  background: #9a9a9a;
}

.app-sidebar button {
  min-height: 30px;
  border-radius: 6px;
  background: transparent;
  color: #d4d6dc;
  text-align: left;
}

.app-sidebar button.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.app-chat {
  display: grid;
  align-content: space-between;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.app-bar,
.diff-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dfe2ea;
  font-size: 0.75rem;
}

.app-bar button {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 5px 9px;
}

.prompt-card,
.reply-card,
.input-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111218;
  color: #f6f6f0;
  padding: 16px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.reply-card {
  background: #161820;
}

.input-card {
  color: #9698a2;
}

.input-card b {
  float: right;
  color: #fff;
}

.diff-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.diff-top b {
  color: #d8d8d8;
}

.diff-top i {
  color: #ff6d6d;
  font-style: normal;
}

pre {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #121417;
  color: #d8d8dc;
  padding: 12px;
  font-size: 0.74rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(760px, 100%);
  margin: 92px auto 58px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.92;
}

.offer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(900px, 100%);
  margin: 0 auto;
  border-radius: 4px;
  background: #242426;
  color: #e8e8e8;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.82rem;
}

.desktop-section {
  position: relative;
  scroll-margin-top: 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(49, 119, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #000 0%, #050507 74%, #000 100%);
  color: #f7f7f1;
  padding: clamp(68px, 7vw, 96px) clamp(16px, 7vw, 130px) clamp(92px, 10vw, 140px);
}

.desktop-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto 30px;
}

.desktop-copy span,
.task-runner-copy span {
  color: #d8d8d8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-copy h2 {
  grid-row: 2;
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
}

.desktop-copy p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: #b8bac3;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.desktop-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.desktop-app-window,
.task-runner {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
}

.desktop-app-window {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 620px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

.desktop-app-sidebar {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
  padding: 14px 12px;
}

.desktop-brand-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
}

.desktop-brand-row b,
.operator-topline span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #3177ff;
  border-radius: 8px;
  background: #080a11;
  color: #d9e6ff;
  font-family: var(--typewriter);
  font-weight: 800;
}

.desktop-brand-row strong {
  color: #f5f5f5;
  font-size: 1rem;
}

.desktop-brand-row i,
.desktop-agent-strip em i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d8d8d8;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.new-chat-button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: transparent;
  color: #f8f8f8;
  font-weight: 800;
}

.sidebar-label {
  color: #64656e;
  font-size: 0.74rem;
  font-weight: 800;
}

.desktop-app-sidebar nav {
  display: grid;
  align-content: start;
  gap: 7px;
}

.desktop-app-sidebar nav a {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  min-height: 48px;
  align-items: center;
  border-left: 3px solid transparent;
  border-radius: 7px;
  color: #878992;
  padding: 8px 10px;
}

.desktop-app-sidebar nav a.is-active {
  border-left-color: #e8e8e8;
  background: #090909;
  color: #fff;
}

.desktop-app-sidebar nav i {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: #c8c8cc;
  opacity: 0.85;
}

.desktop-app-sidebar nav a:not(.is-active) i {
  background: #6c6d74;
}

.desktop-app-sidebar nav b,
.desktop-app-sidebar nav span {
  grid-column: 2;
}

.desktop-app-sidebar nav b {
  align-self: end;
  color: inherit;
  font-size: 0.82rem;
}

.desktop-app-sidebar nav span {
  color: #666873;
  font-size: 0.72rem;
}

.desktop-agent-strip {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.desktop-agent-strip span {
  color: #7b7d86;
  font-size: 0.75rem;
  font-weight: 800;
}

.desktop-agent-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.desktop-agent-strip b {
  display: grid;
  min-width: 28px;
  min-height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #e8e8e8;
  font-size: 0.68rem;
}

.desktop-agent-strip b:nth-child(3n) {
  color: #c8c8cc;
}

.desktop-agent-strip b:nth-child(4n) {
  color: #a8a8ad;
}

.desktop-agent-strip em {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.desktop-agent-strip small {
  margin-left: auto;
  color: #a4a6ae;
  font-size: 0.68rem;
}

.desktop-app-main {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 20px 28px;
}

.operator-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.operator-topline b {
  display: block;
  font-size: 0.94rem;
}

.operator-topline em {
  display: block;
  margin-top: 3px;
  color: #62646d;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
}

.operator-ready {
  align-self: center;
  justify-self: center;
  width: min(560px, 100%);
}

.operator-ready span {
  display: block;
  color: #d8d8d8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-ready h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.operator-ready p {
  margin: 14px 0 0;
  color: #8b8d96;
  font-size: 1rem;
}

.operator-input {
  display: grid;
  grid-template-columns: 44px 1fr 44px 44px;
  gap: 10px;
  align-items: center;
  width: min(680px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #050505;
  padding: 10px;
}

.operator-input button {
  display: grid;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #0b0c10;
  color: #9b9ea9;
}

.operator-input span {
  color: #62646e;
  font-size: 0.9rem;
}

.operator-input .mic-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(#d8d8d8 0 0) center 10px / 8px 17px no-repeat,
    linear-gradient(#d8d8d8 0 0) center 29px / 20px 2px no-repeat,
    #101010;
}

.operator-input .send-button {
  background: #f4f4f4;
  color: #050505;
  font-size: 1.1rem;
  font-weight: 900;
}

.task-runner {
  display: grid;
  align-content: start;
  gap: 18px;
  scroll-margin-top: 72px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 8%, rgba(49, 119, 255, 0.28), transparent 28%),
    #07080c;
}

.task-runner-copy h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.02;
}

.task-runner-copy p {
  margin: 14px 0 0;
  color: #b8bac3;
  font-size: 0.9rem;
  line-height: 1.55;
}

.automation-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #0b0d12;
}

.browser-control-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  color: #f4f4f4;
  padding: 9px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.browser-control-strip span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8d8d8;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.automation-browser header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
}

.automation-browser header b {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9dce6;
  padding: 7px 10px;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.automation-browser header span {
  color: #d8d8d8;
  font-size: 0.72rem;
  font-weight: 900;
}

.automation-workspace {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 360px;
}

.automation-workspace aside {
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #050607;
  color: #848691;
  padding: 14px;
  font-size: 0.72rem;
}

.automation-workspace aside b {
  color: #fff;
}

.automation-workspace section {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
  padding: 16px;
}

.task-action-label {
  border: 1px solid rgba(49, 119, 255, 0.24);
  border-radius: 8px;
  background: rgba(49, 119, 255, 0.1);
  color: #cbd8ff;
  padding: 12px;
  font-size: 0.8rem;
}

.task-table {
  display: grid;
  gap: 9px;
}

.task-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 11px;
}

.task-row.is-active {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.task-row b {
  color: #fff;
  font-size: 0.82rem;
}

.task-row span {
  justify-self: end;
  color: #9fb9ff;
  font-size: 0.72rem;
}

.task-row em {
  grid-column: 1 / -1;
  color: #a9abb5;
  font-size: 0.72rem;
  font-style: normal;
}

.draft-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #101218;
  padding: 14px;
}

.draft-card span {
  color: #9fb9ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.draft-card p {
  margin: 0;
  color: #e5e7ee;
  font-size: 0.8rem;
  line-height: 1.45;
}

.draft-card button {
  justify-self: start;
  min-height: 32px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 0 13px;
  font-size: 0.74rem;
  font-weight: 900;
}

.task-cursor {
  position: absolute;
  top: 112px;
  left: 170px;
  z-index: 3;
  width: 22px;
  height: 28px;
  background: #fff;
  clip-path: polygon(0 0, 0 78%, 7px 61%, 12px 100%, 17px 98%, 12px 58%, 22px 58%);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  animation: task-cursor-run 8s ease-in-out infinite;
}

.task-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-steps li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #8e929d;
  padding: 10px;
  font-size: 0.72rem;
  line-height: 1.3;
}

.task-steps li.is-active {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.agents-section,
.industries-section,
.surfaces-section,
.agent-consulting-section,
.pricing-section,
.login-section {
  background: var(--paper);
  color: #030303;
  padding: 92px clamp(16px, 7vw, 130px);
}

.agents-section {
  margin-top: -1px;
  padding-top: clamp(170px, 16vw, 250px);
  background:
    linear-gradient(
      180deg,
      #000 0,
      #000 48px,
      #171818 112px,
      rgba(247, 247, 241, 0.62) 188px,
      var(--paper) 260px
    );
}

.industries-section {
  position: relative;
  margin-top: -1px;
  padding-top: 80px;
}

.industry-shell {
  display: grid;
  gap: 38px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.industry-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: end;
}

.industry-copy span {
  color: #3177ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-copy h2 {
  grid-row: 2;
  margin: 0;
  color: #030303;
  font-size: clamp(2rem, 4.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.industry-copy p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  line-height: 1.55;
}

.industry-builder {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: #050507;
  color: #f7f7f1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.industry-picker {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(49, 119, 255, 0.22), transparent 28%),
    #08090d;
  padding: 20px;
}

.industry-picker button {
  display: grid;
  gap: 5px;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: #101116;
  color: #f5f5ef;
  padding: 12px;
  text-align: left;
}

.industry-picker button span {
  color: #9ea2ad;
  font-size: 0.74rem;
}

.industry-picker button.is-active {
  border-color: #3177ff;
  background: #06184f;
  box-shadow: inset 0 0 0 1px rgba(49, 119, 255, 0.42);
}

.pack-preview {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 88% 12%, rgba(180, 207, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(49, 119, 255, 0.14), transparent 42%),
    #050507;
}

.pack-header,
.pack-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pack-header span {
  color: #9fb9ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pack-header b,
.pack-footer a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 0 14px;
  font-size: 0.78rem;
}

.pack-preview h3 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.pack-preview p {
  max-width: 720px;
  margin: 0;
  color: #d0d4df;
  font-size: 0.96rem;
  line-height: 1.55;
}

.pack-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pack-columns article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.pack-columns span {
  color: #9fb9ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pack-columns ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pack-columns li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f7f7f1;
  font-size: 0.9rem;
}

.pack-columns li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #3177ff;
  box-shadow: 0 0 0 4px rgba(49, 119, 255, 0.16);
}

.pack-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: #f7f7f1;
  font-size: 0.8rem;
  font-weight: 800;
}

.pack-flow i {
  height: 1px;
  min-width: 22px;
  background: linear-gradient(90deg, #3177ff, rgba(255, 255, 255, 0.18));
}

.pack-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.pack-footer span {
  color: #b9bdc8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.login-section h2 {
  margin: 0;
  color: #030303;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.section-heading p,
.login-section p {
  margin: 16px 0 0;
  color: var(--paper-muted);
  font-size: 0.95rem;
}

.live-story {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: stretch;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.live-steps {
  position: relative;
  display: grid;
  gap: clamp(110px, 20vh, 190px);
  padding: 64px 0 160px 42px;
}

.live-steps::before {
  content: "";
  position: absolute;
  top: 76px;
  bottom: 152px;
  left: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18), transparent);
}

.live-orb {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #3177ff;
  box-shadow:
    0 0 0 8px rgba(49, 119, 255, 0.12),
    0 0 32px rgba(49, 119, 255, 0.68);
  transform: translate3d(0, var(--orb-y, 78px), 0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.live-step {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 220px;
  opacity: 0.42;
  transform: translateY(12px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.live-step::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -37px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  background: var(--paper);
}

.live-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.live-step > span {
  color: #3177ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.live-step h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.18;
}

.live-step p {
  margin: 0;
  color: #4b4c53;
  font-size: 0.92rem;
  line-height: 1.58;
}

.live-stage {
  position: relative;
  min-width: 0;
  padding: 64px 0 110px;
}

.live-console {
  position: sticky;
  top: 82px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 190px;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  background: #08090d;
  color: #f6f6ef;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
}

.live-projects,
.live-chat,
.live-output {
  min-width: 0;
  padding: 18px;
}

.live-projects {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: #9b9da7;
  font-size: 0.72rem;
}

.live-section-label {
  margin: 8px 0 4px;
  color: #6f7380;
  text-transform: uppercase;
}

.live-project {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  border-radius: 6px;
  background: transparent;
  color: #cfd2dc;
  padding: 0 8px;
  text-align: left;
}

.live-project i,
.live-agent-note i,
.automation-list i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4b5567;
}

.live-project em {
  color: #767a86;
  font-size: 0.66rem;
  font-style: normal;
}

.live-project.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.live-project.is-active i {
  background: #3177ff;
  box-shadow: 0 0 0 6px rgba(49, 119, 255, 0.12);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.live-chat {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.live-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dfe2ea;
  font-size: 0.75rem;
}

.live-chat-top b {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  color: #fff;
}

.live-thread-state {
  display: none;
  align-content: start;
  gap: 16px;
  min-height: 390px;
  opacity: 0;
  transform: translateY(12px);
}

.live-thread-state.is-visible {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  animation: live-panel-in 360ms ease both;
}

.live-thread-state p,
.live-agent-note,
.generated-preview,
.automation-list,
.approval-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #12141a;
  color: #f6f6f0;
  padding: 16px;
  font-size: 0.82rem;
  line-height: 1.48;
}

.live-thread-state p {
  margin: 0;
}

.live-agent-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  background: #171922;
}

.live-agent-note i {
  margin-top: 7px;
  background: #3177ff;
}

.agent-chip-grid {
  display: grid;
  gap: 10px;
}

.agent-chip-grid span,
.automation-list span,
.approval-card b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 12px;
  font-size: 0.78rem;
}

.agent-chip-grid b {
  color: #9fb9ff;
  font-size: 0.68rem;
}

.generated-preview {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.generated-preview b,
.generated-preview span {
  display: block;
}

.generated-preview span {
  margin-top: 6px;
  color: #b9bcc7;
}

.generated-photo {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 23%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(145deg, #256eff, #a9c6ff 70%, #f7f7f1);
}

.photo-dog {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 62px;
  height: 42px;
  border-radius: 44% 48% 38% 42%;
  background: #fffdf6;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.photo-dog::before,
.photo-dog::after {
  content: "";
  position: absolute;
  top: -14px;
  width: 24px;
  height: 30px;
  border-radius: 65% 65% 20% 20%;
  background: #fffdf6;
}

.photo-dog::before {
  left: 5px;
  transform: rotate(-22deg);
}

.photo-dog::after {
  right: 4px;
  transform: rotate(22deg);
}

.scan-line {
  position: absolute;
  inset: -50% 0 auto;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  animation: scan-preview 3.2s ease-in-out infinite;
}

.automation-list {
  display: grid;
  gap: 10px;
}

.automation-list span {
  justify-content: flex-start;
}

.automation-list i {
  background: #3177ff;
}

.approval-card {
  display: grid;
  gap: 12px;
}

.approval-card > span {
  color: #9fb9ff;
  text-transform: uppercase;
}

.approval-card button {
  justify-self: start;
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 800;
}

.live-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101117;
  color: #8d909b;
  padding: 14px 16px;
  font-size: 0.78rem;
}

.typing-dots {
  display: inline-flex;
  gap: 4px;
}

.typing-dots i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  animation: typing-dot 1.2s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 160ms;
}

.typing-dots i:nth-child(3) {
  animation-delay: 320ms;
}

.live-output {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 25%, rgba(49, 119, 255, 0.2), transparent 42%),
    #0b0c10;
  font-size: 0.78rem;
}

.activity-orbit {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.activity-orbit::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3177ff, #9fb9ff);
  box-shadow: 0 16px 38px rgba(49, 119, 255, 0.28);
}

.activity-orbit i {
  position: absolute;
  top: 43px;
  left: 43px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(var(--spin, 0deg)) translateX(46px);
  transform-origin: 5px 5px;
  animation: orbit 5s linear infinite;
}

.activity-orbit i:nth-child(2) {
  --spin: 120deg;
  animation-duration: 6.2s;
}

.activity-orbit i:nth-child(3) {
  --spin: 240deg;
  animation-duration: 7.4s;
}

.live-output span {
  color: #8f94a2;
  text-transform: uppercase;
}

.live-output strong {
  font-size: 1.05rem;
}

.live-output p {
  margin: 0;
  color: #b8bbc5;
  line-height: 1.45;
}

.activity-meter {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.activity-meter i {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3177ff, #cddcff);
  animation: meter-flow 3s ease-in-out infinite;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  width: min(1060px, 100%);
  margin: 0 auto 82px;
}

.feature-row-flipped {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr);
}

.feature-copy {
  text-align: left;
}

.feature-copy h3,
.surface-grid h3 {
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.feature-copy p {
  margin: 0;
  color: #4b4c53;
  font-size: 0.92rem;
  line-height: 1.55;
}

.gradient-frame,
.surface-art {
  display: grid;
  min-height: 350px;
  place-items: center;
  margin: 0;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 18% 85%, #045be8 0, transparent 36%),
    radial-gradient(circle at 75% 10%, #eef4ff 0, transparent 38%),
    linear-gradient(135deg, #2938f6, #88acff 48%, #f5f7ff);
}

.mini-phone,
.mini-sidebar,
.automation-card,
.code-card,
.terminal-card {
  display: grid;
  width: min(240px, 70%);
  gap: 12px;
  border-radius: 10px;
  background: #08090d;
  color: #f5f5f0;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  font-size: 0.8rem;
  line-height: 1.45;
}

.mini-phone b,
.mini-sidebar b,
.automation-card b {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
}

.mini-phone em {
  color: #a9c6ff;
  font-style: normal;
}

.automation-card span {
  color: #9fb9ff;
  text-transform: uppercase;
}

.surfaces-section {
  padding-top: 22px;
}

.surfaces-section .section-heading a {
  margin-top: 24px;
}

.surfaces-section .section-heading a,
.agent-consulting-section .section-heading a,
.surface-grid a {
  background: #000;
  color: #fff;
}

.agent-consulting-section .section-heading a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
}

.consulting-grid,
.pricing-grid {
  display: grid;
  width: min(1060px, 100%);
  margin: 0 auto;
}

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

.consulting-grid article,
.pricing-grid article {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ebecf0;
  padding: 24px;
}

.consulting-grid span,
.pricing-grid span {
  color: #3177ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.consulting-grid p,
.pricing-grid p {
  margin: 14px 0 0;
  color: #4b4c53;
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.pricing-grid article.featured {
  background: #050505;
  color: #fff;
}

.pricing-grid h3 {
  margin: 16px 0 0;
  color: inherit;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
}

.pricing-grid article.featured p {
  color: #d8d8de;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.surface-grid article {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ebecf0;
  padding: 10px;
}

.surface-art {
  min-height: 360px;
  height: 360px;
  padding: 18px;
}

.surface-app-preview,
.surface-browser-preview,
.surface-message-preview {
  width: min(310px, 100%);
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #08090d;
  color: #f7f7f1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  font-size: 0.68rem;
  line-height: 1.4;
}

.surface-app-preview {
  display: grid;
  grid-template-columns: 96px 1fr;
}

.surface-app-preview aside,
.surface-app-preview section {
  min-width: 0;
  padding: 14px;
}

.surface-app-preview aside {
  display: grid;
  align-content: start;
  gap: 9px;
  border-right: 1px solid var(--line);
  color: #8f929d;
}

.surface-app-preview aside span {
  color: #fff;
  font-weight: 800;
}

.surface-app-preview aside b,
.surface-app-preview aside i {
  border-radius: 6px;
  padding: 7px 8px;
  font-style: normal;
}

.surface-app-preview aside b {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.surface-app-preview section {
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.surface-app-preview section p,
.surface-app-preview section div,
.surface-app-preview section em {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #12141a;
  padding: 11px;
}

.surface-app-preview section div {
  display: grid;
  gap: 6px;
  background: #171922;
}

.surface-app-preview section div b {
  color: #9fb9ff;
}

.surface-app-preview section em {
  color: #8d909b;
  font-style: normal;
}

.surface-browser-preview {
  display: grid;
  grid-template-rows: auto 1fr;
}

.surface-browser-preview header {
  display: grid;
  grid-template-columns: 7px 7px 7px 1fr;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
}

.surface-browser-preview header span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff6b66;
}

.surface-browser-preview header span:nth-child(2) {
  background: #ffcf5c;
}

.surface-browser-preview header span:nth-child(3) {
  background: #9a9a9a;
}

.surface-browser-preview header b {
  min-width: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #cbd1dd;
  padding: 6px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-preview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  min-height: 162px;
}

.browser-page,
.surface-browser-preview aside {
  min-width: 0;
  padding: 14px;
}

.browser-page {
  display: grid;
  align-content: start;
  gap: 7px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.26), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(49, 119, 255, 0.5), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    #10121a;
}

.browser-page i {
  color: #9fb9ff;
  font-style: normal;
}

.browser-page strong {
  font-size: 0.9rem;
}

.browser-page p {
  margin: 0;
  color: #c6cad5;
}

.browser-page div {
  height: 52px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(49, 119, 255, 0.5) 0 42%, transparent 42% 48%, rgba(255, 255, 255, 0.18) 48% 100%),
    linear-gradient(#ffffff1f 0 0) 12px 14px / 72% 5px no-repeat,
    linear-gradient(#ffffff16 0 0) 12px 28px / 54% 5px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.surface-browser-preview aside {
  display: grid;
  align-content: space-between;
  gap: 10px;
  border-left: 1px solid var(--line);
  background: #090a0d;
}

.surface-browser-preview aside p {
  margin: 0;
  color: #c6cad5;
  font-size: 0.62rem;
}

.surface-browser-preview aside em {
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 7px 9px;
  font-style: normal;
  font-weight: 800;
}

.surface-message-preview {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f7f7f1;
  color: #08090d;
}

.surface-message-preview header,
.surface-message-preview footer {
  padding: 12px 14px;
}

.surface-message-preview header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.surface-message-preview header span {
  color: #3177ff;
}

.message-thread {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(11, 132, 255, 0.08), transparent 45%),
    #fbfbf8;
}

.bubble {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  border-radius: 16px;
  padding: 9px 11px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.bubble b {
  display: block;
  margin-bottom: 3px;
  font-size: 0.62rem;
  opacity: 0.75;
}

.bubble.friend {
  background: #e5e5ea;
}

.bubble.you {
  justify-self: end;
  background: #0b84ff;
  color: #fff;
}

.bubble.agent {
  background: #111218;
  color: #fff;
}

.surface-message-preview footer {
  margin: 0 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  color: #7b7e86;
}

.surface-grid h3 {
  margin: 16px 0 14px;
  font-size: 1rem;
}

.surface-grid a {
  width: 100%;
  min-height: 34px;
}

.login-section {
  text-align: center;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: min(620px, 100%);
  margin: 26px auto 0;
}

.signup-form input {
  flex: 1;
  min-height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 0 16px;
}

.signup-form span {
  position: absolute;
  transform: translateY(52px);
  color: var(--blue-2);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--paper);
  color: #000;
  padding: 34px clamp(16px, 7vw, 130px);
  font-size: 0.82rem;
}

@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(49, 119, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(49, 119, 255, 0.2);
  }
}

@keyframes live-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes scan-preview {
  0% {
    transform: translateY(0);
  }

  60%,
  100% {
    transform: translateY(240px);
  }
}

@keyframes orbit {
  from {
    transform: rotate(var(--spin, 0deg)) translateX(46px);
  }

  to {
    transform: rotate(calc(var(--spin, 0deg) + 360deg)) translateX(46px);
  }
}

@keyframes meter-flow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(110%);
  }
}

@keyframes task-cursor-run {
  0%,
  100% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(210px, 54px);
  }

  42% {
    transform: translate(300px, 118px);
  }

  66% {
    transform: translate(236px, 240px);
  }

  82% {
    transform: translate(150px, 286px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-orb,
  .live-step,
  .live-thread-state,
  .live-project.is-active i,
  .typing-dots i,
  .scan-line,
  .activity-orbit i,
  .activity-meter i,
  .task-cursor {
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-top: 92px;
  }

  .hero-product {
    margin-top: 62px;
  }

  .desktop-copy,
  .desktop-showcase {
    grid-template-columns: 1fr;
  }

  .desktop-copy p {
    grid-column: auto;
    grid-row: auto;
  }

  .desktop-app-window {
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 560px;
  }

  .app-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-sidebar,
  .diff-panel {
    display: none;
  }

  .app-chat {
    border-right: 0;
  }

  .live-story {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .live-stage {
    position: relative;
    top: auto;
    order: -1;
    padding: 18px 0 34px;
  }

  .live-console {
    position: relative;
    top: auto;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 480px;
  }

  .live-output {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 150px;
  }

  .activity-orbit {
    grid-row: span 3;
    margin-bottom: 0;
  }

  .live-steps {
    gap: 70px;
    padding: 42px 0 70px 42px;
  }

  .live-step {
    min-height: auto;
  }

  .logo-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .offer-bar,
  .feature-row,
  .feature-row-flipped,
  .industry-copy,
  .industry-builder,
  .surface-grid,
  .consulting-grid,
  .pricing-grid,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row-flipped {
    display: grid;
  }

  .signup-form {
    display: grid;
  }

  .industry-copy p {
    grid-column: auto;
    grid-row: auto;
  }

  .industry-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto auto;
    height: 58px;
    color: #080a13;
  }

  .header-actions {
    display: none;
  }

  .hero-cloud {
    height: 560px;
  }

  .app-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 3.55rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero-subhead,
  .availability,
  .offer-bar,
  .feature-copy p {
    font-size: 0.86rem;
  }

  .hero-subhead {
    width: min(100%, 340px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a {
    width: 100%;
  }

  .offer-bar {
    display: grid;
    text-align: center;
  }

  .app-chat {
    overflow: hidden;
    padding: 16px;
  }

  .app-bar {
    display: grid;
    gap: 10px;
  }

  .app-bar div {
    display: none;
  }

  .desktop-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .desktop-copy {
    gap: 16px;
  }

  .desktop-copy h2 {
    grid-row: auto;
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .desktop-app-window {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .desktop-app-sidebar {
    grid-template-rows: auto auto auto;
  }

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

  .desktop-app-sidebar nav a {
    min-height: 44px;
  }

  .desktop-agent-strip {
    display: none;
  }

  .desktop-app-main {
    min-height: 430px;
    padding: 18px;
  }

  .operator-ready {
    justify-self: stretch;
  }

  .operator-input {
    grid-template-columns: 38px 1fr 38px 38px;
    padding: 8px;
  }

  .operator-input button {
    height: 38px;
  }

  .task-runner {
    padding: 18px;
  }

  .automation-browser header {
    grid-template-columns: auto 1fr;
  }

  .automation-browser header span {
    grid-column: 1 / -1;
  }

  .automation-workspace {
    grid-template-columns: 1fr;
  }

  .automation-workspace aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .task-cursor {
    top: 166px;
    left: 58px;
    transform: scale(0.88);
  }

  .task-steps {
    grid-template-columns: 1fr 1fr;
  }

  .prompt-card,
  .reply-card,
  .input-card {
    padding: 14px;
    font-size: 0.74rem;
  }

  .input-card b {
    display: none;
  }

  .logo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    text-align: center;
  }

  .logo-strip span:last-child {
    grid-column: 1 / -1;
  }

  .agents-section,
  .industries-section,
  .surfaces-section,
  .agent-consulting-section,
  .pricing-section,
  .login-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agents-section {
    padding-top: 150px;
    background:
      linear-gradient(
        180deg,
        #000 0,
        #000 38px,
        #151616 82px,
        rgba(247, 247, 241, 0.78) 130px,
        var(--paper) 178px
      );
  }

  .live-story {
    margin-top: -10px;
  }

  .live-stage {
    padding-bottom: 22px;
  }

  .live-console {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .live-projects {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .live-projects .window-dots,
  .live-projects .live-section-label,
  .live-project:not(.is-active) {
    display: none;
  }

  .live-chat {
    min-height: 430px;
    border-right: 0;
  }

  .live-thread-state {
    min-height: 290px;
  }

  .live-output {
    display: none;
  }

  .generated-preview {
    grid-template-columns: 1fr;
  }

  .generated-photo {
    min-height: 180px;
  }

  .live-steps {
    gap: 54px;
    padding: 28px 0 58px 34px;
  }

  .live-steps::before {
    top: 38px;
    bottom: 58px;
  }

  .live-orb {
    left: 4px;
  }

  .section-heading h2,
  .login-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .feature-copy h3,
  .surface-grid h3 {
    font-size: clamp(1.12rem, 6vw, 1.45rem);
  }

  .feature-row {
    margin-bottom: 58px;
  }

  .industry-copy {
    gap: 16px;
  }

  .industry-copy h2 {
    grid-row: auto;
  }

  .industry-builder {
    border-radius: 6px;
  }

  .industry-picker {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .industry-picker button {
    min-height: 58px;
  }

  .pack-preview {
    padding: 20px;
  }

  .pack-header,
  .pack-footer {
    display: grid;
    align-items: start;
  }

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

  .pack-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pack-flow i {
    width: 1px;
    height: 18px;
    min-width: 0;
    margin-left: 10px;
    background: linear-gradient(180deg, #3177ff, rgba(255, 255, 255, 0.18));
  }

  .gradient-frame,
  .surface-art {
    height: auto;
    min-height: 280px;
    padding: 16px;
  }

  .surface-app-preview,
  .surface-browser-preview,
  .surface-message-preview {
    width: 100%;
    min-height: 230px;
  }

  .surface-app-preview {
    grid-template-columns: 86px 1fr;
  }

  .browser-preview-body {
    grid-template-columns: 1fr;
  }

  .surface-browser-preview aside {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .mini-phone,
  .mini-sidebar,
  .automation-card,
  .code-card,
  .terminal-card {
    width: min(230px, 88%);
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

/* Clean Codex-style local preview. Keeps Aximary's typewriter font while reducing visual density. */
.site-header {
  height: 56px;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  background: rgba(250, 251, 255, 0.82);
  box-shadow: none;
}

.menu-toggle {
  width: 38px;
  height: 38px;
  gap: 3px;
  border-radius: 10px;
  background: #050505;
  box-shadow: none;
}

.menu-toggle i {
  width: 16px;
}

.site-header a,
.top-button {
  white-space: nowrap;
}

.header-actions {
  gap: 18px;
}

.hero {
  min-height: 1060px;
  background: #000;
}

.hero-cloud {
  height: 720px;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.82), rgba(189, 213, 255, 0.5) 21%, transparent 48%),
    radial-gradient(circle at 78% 8%, rgba(92, 88, 255, 0.74), rgba(100, 147, 255, 0.5) 30%, transparent 60%),
    linear-gradient(180deg, #c7dcff 0%, #7599ff 48%, #14265e 72%, #000 100%);
}

.hero-cloud::after {
  background:
    radial-gradient(ellipse at 0% 44%, rgba(0, 23, 92, 0.52), transparent 34%),
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.5) 76%, #000 100%);
}

.hero-inner {
  width: min(100% - 40px, 1080px);
  padding-top: 112px;
}

.app-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(49, 119, 255, 0.2);
}

.hero h1 {
  font-size: clamp(4rem, 8.5vw, 7.2rem);
  letter-spacing: 0;
}

.hero-subhead {
  width: min(760px, 100%);
  margin-top: 22px;
  font-size: clamp(0.92rem, 1.18vw, 1.06rem);
  line-height: 1.6;
}

.availability {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.58);
}

.hero-product {
  margin-top: 74px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 20px;
  width: min(1120px, 100%);
  text-align: left;
}

.hero-showcase .desktop-app-window,
.hero-showcase .task-runner {
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.36);
}

.hero-desktop-window {
  grid-template-columns: 205px minmax(0, 1fr);
  min-height: 560px;
}

.hero-desktop-window .desktop-app-sidebar {
  padding: 16px 12px;
}

.hero-desktop-window .desktop-app-sidebar nav a {
  min-height: 44px;
}

.hero-desktop-window .desktop-agent-strip {
  gap: 8px;
}

.hero-desktop-window .desktop-app-main {
  padding: 22px 28px;
}

.hero-desktop-window .operator-ready h3 {
  max-width: 420px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.hero-task-runner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
  padding: 18px;
}

.hero-task-runner .task-runner-copy h3 {
  max-width: 430px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
}

.hero-task-runner .task-runner-copy p {
  max-width: 430px;
}

.hero-task-runner .automation-workspace {
  min-height: 310px;
}

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

.app-shell {
  grid-template-columns: 210px 1fr 270px;
  min-height: 430px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #050507;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.32);
}

.app-sidebar,
.app-chat,
.diff-panel {
  background: transparent;
}

.prompt-card,
.reply-card,
.input-card,
.diff-panel pre {
  border-radius: 8px;
}

.logo-strip {
  width: min(820px, 100%);
  margin: 66px auto 0;
  color: #fff;
  opacity: 0.84;
}

.offer-bar {
  width: min(960px, 100%);
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.desktop-section {
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(92, 139, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #000 0%, #020307 48%, #071225 76%, #f8f9fb 100%);
  padding-top: clamp(84px, 8vw, 118px);
  padding-bottom: clamp(120px, 12vw, 180px);
}

.desktop-copy {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  margin-bottom: 42px;
  text-align: center;
}

.desktop-copy span,
.task-runner-copy span {
  color: #9fb9ff;
  letter-spacing: 0.04em;
}

.desktop-copy h2 {
  grid-row: auto;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.desktop-copy p {
  grid-column: auto;
  grid-row: auto;
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(247, 247, 241, 0.72);
  font-size: clamp(0.9rem, 1.12vw, 1.02rem);
}

.desktop-showcase {
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(1120px, 100%);
}

.desktop-app-window,
.task-runner {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.desktop-app-window {
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 610px;
}

.desktop-app-sidebar {
  padding: 18px 14px;
}

.desktop-app-main {
  padding: 24px 34px;
}

.operator-ready h3 {
  max-width: 540px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.operator-input {
  border-radius: 12px;
}

.task-runner {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(92, 139, 255, 0.2), transparent 34%),
    #050507;
  padding: 20px;
}

.task-runner-copy h3 {
  max-width: 520px;
  font-size: clamp(1.65rem, 3.4vw, 3.2rem);
}

.automation-workspace {
  min-height: 336px;
}

.task-steps {
  grid-column: 1 / -1;
}

.agents-section {
  padding-top: clamp(110px, 10vw, 150px);
  background: #f8f9fb;
}

.industries-section,
.surfaces-section,
.agent-consulting-section,
.pricing-section,
.login-section {
  background: #f8f9fb;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .desktop-copy,
  .desktop-showcase,
  .hero-showcase,
  .task-runner {
    grid-template-columns: 1fr;
  }

  .desktop-copy p {
    grid-column: auto;
    grid-row: auto;
  }

  .desktop-app-window {
    grid-template-columns: 200px minmax(0, 1fr);
    min-height: 580px;
  }

  .hero-desktop-window {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.1rem);
  }

  .hero-product {
    margin-top: 54px;
  }

  .desktop-section {
    padding-top: 74px;
  }

  .desktop-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .desktop-app-window,
  .hero-desktop-window {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .desktop-app-main {
    padding: 18px;
  }

  .task-runner,
  .hero-task-runner {
    padding: 16px;
  }

  .hero-task-runner .task-steps {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-showcase {
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  align-items: stretch;
}

.hero-showcase .hero-desktop-window {
  grid-template-columns: 205px minmax(0, 1fr);
  min-height: 540px;
  max-height: 540px;
}

.hero-showcase .hero-task-runner {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  min-height: 540px;
  max-height: 540px;
  overflow: hidden;
}

.hero-showcase .hero-task-runner .task-steps {
  display: none;
}

.hero-showcase .hero-task-runner .task-runner-copy h3 {
  font-size: clamp(1.35rem, 2.45vw, 2.25rem);
}

.hero-showcase .hero-task-runner .task-runner-copy p {
  margin-top: 10px;
  font-size: 0.82rem;
}

.hero-showcase .hero-task-runner .automation-workspace {
  min-height: 270px;
}

.hero-showcase .hero-task-runner .draft-card {
  gap: 8px;
  padding: 12px;
}

.hero-showcase .hero-task-runner .draft-card p {
  font-size: 0.72rem;
}

.hero-showcase .hero-task-runner .task-row {
  padding: 9px;
}

@media (max-width: 900px) {
  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-showcase .hero-desktop-window {
    grid-template-columns: 200px minmax(0, 1fr);
    max-height: none;
  }

  .hero-showcase .hero-task-runner {
    max-height: none;
  }
}

@media (max-width: 560px) {
  .hero-showcase .hero-desktop-window,
  .hero-showcase .hero-task-runner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

@media (min-width: 561px) and (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }
}

.agents-section {
  padding-top: clamp(150px, 12vw, 210px);
  background:
    linear-gradient(
      180deg,
      #000 0,
      #020307 54px,
      rgba(248, 249, 251, 0.66) 168px,
      #f8f9fb 250px,
      #f8f9fb 100%
    );
}

.detail-body {
  background: #f8f9fb;
  color: #050505;
}

.detail-page {
  min-height: 100vh;
  background: #f8f9fb;
  color: #050505;
}

.nav-links a.is-current,
.site-menu nav a.is-current {
  color: #050505;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 122px clamp(18px, 7vw, 130px) 78px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.9), transparent 22%),
    radial-gradient(circle at 86% 5%, rgba(120, 123, 132, 0.24), transparent 34%),
    linear-gradient(180deg, #f1f2f4 0%, #d9dbe0 50%, #f8f9fb 100%);
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.detail-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.detail-back {
  margin-bottom: 28px;
  color: #050505;
  font-size: 0.8rem;
  font-weight: 900;
}

.detail-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.detail-copy p {
  width: min(690px, 100%);
  margin: 26px 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: clamp(0.94rem, 1.16vw, 1.06rem);
  line-height: 1.65;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.detail-visual {
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 40px 100px rgba(25, 54, 122, 0.18);
  padding: clamp(14px, 2vw, 22px);
}

.page-app-window,
.page-browser-window,
.page-pack,
.page-blueprint,
.page-agent-map,
.page-surface-stack,
.page-phone,
.page-connectors-board,
.page-skills-library,
.page-monitor-phone,
.page-voice,
.page-pricing-mini,
.page-contact-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #050507;
  color: #f7f7f1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.page-app-window {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.page-app-window aside {
  display: grid;
  align-content: start;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 18px;
}

.page-app-window aside b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #6fa0ff;
  border-radius: 8px;
}

.page-app-window aside span {
  color: #8d909a;
  font-size: 0.8rem;
}

.page-app-window section {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.page-app-window em,
.page-browser-window header span {
  color: #d8d8d8;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.page-app-window h2 {
  margin: 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.page-app-window p,
.page-app-window div,
.page-browser-window p,
.page-browser-window span {
  color: #a5a7b1;
}

.page-app-window div {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.page-app-window div b {
  color: #d8d8d8;
}

.page-browser-window {
  display: grid;
  grid-template-rows: auto 1fr;
}

.page-browser-window header {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
}

.page-browser-window header i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6262;
}

.page-browser-window header i:nth-child(2) {
  background: #ffca5b;
}

.page-browser-window header i:nth-child(3) {
  background: #9a9a9a;
}

.page-browser-window header b {
  min-width: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 7px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-browser-window main {
  display: grid;
  grid-template-columns: 124px 1fr;
}

.page-browser-window aside {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f929d;
  padding: 24px 18px;
  line-height: 2;
}

.page-browser-window section {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px;
}

.page-browser-window section div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.page-browser-window section b {
  display: block;
  color: #fff;
}

.page-browser-window button,
.page-contact-card button {
  justify-self: start;
  min-height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  padding: 0 14px;
  font-weight: 900;
}

.page-agent-map,
.page-surface-stack {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 35%, rgba(75, 121, 255, 0.28), transparent 44%),
    #050507;
}

.page-agent-map strong {
  display: grid;
  width: min(260px, 80%);
  min-height: 96px;
  place-items: center;
  border: 1px solid rgba(111, 160, 255, 0.44);
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
}

.page-agent-map span,
.page-surface-stack span {
  width: min(280px, 78%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dfe5ff;
  padding: 10px 14px;
  text-align: center;
}

.page-pack,
.page-blueprint,
.page-pricing-mini {
  display: grid;
  align-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(82, 123, 255, 0.24), transparent 38%),
    #050507;
  padding: 26px;
}

.page-pack header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9fb9ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-pack h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.page-pack div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.page-pack p {
  margin: 0;
  color: #b8bac3;
  line-height: 1.5;
}

.page-connectors-board,
.page-skills-library {
  display: grid;
  align-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.09), transparent 30%),
    #050507;
  padding: 24px;
}

.page-connectors-board header,
.page-skills-library header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f7f7f1;
  font-size: 0.8rem;
  font-weight: 900;
}

.page-connectors-board header b,
.page-skills-library header b {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d8d8dc;
  white-space: nowrap;
}

.connector-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.connector-tile,
.page-skills-library article,
.page-connectors-board section {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.connector-tile {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 78px;
  padding: 12px;
}

.connector-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.connector-logo svg {
  display: block;
  width: 28px;
  height: 28px;
}

.connector-tile > span {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.connector-tile-grid b,
.page-skills-library article span {
  color: #fff;
}

.connector-tile-grid small,
.page-skills-library small,
.page-skills-library footer,
.page-connectors-board section p,
.page-connectors-board section span,
.page-connectors-board section em {
  color: #a7a9b2;
}

.page-connectors-board section {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.page-connectors-board section p,
.page-connectors-board section div {
  margin: 0;
}

.page-connectors-board section div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-connectors-board section b,
.page-connectors-board section span,
.page-connectors-board section em {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  font-style: normal;
}

.skill-search {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #8d909a;
  padding: 13px 16px;
}

.page-skills-library article {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.page-skills-library article.is-active {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.page-skills-library article b {
  color: #d8d8dc;
}

.page-skills-library footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.page-blueprint span {
  border-left: 2px solid #4d82ff;
  background: rgba(255, 255, 255, 0.06);
  color: #f7f7f1;
  padding: 18px;
}

.page-phone {
  display: grid;
  width: min(310px, 100%);
  min-height: 510px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 16px;
}

.page-phone header,
.page-phone footer {
  color: #9aa0ad;
  text-align: center;
}

.page-phone section,
.page-messages {
  align-content: center;
  gap: 14px;
}

.page-phone section {
  display: grid;
  border-radius: 18px;
  background: #11131a;
  padding: 18px;
}

.page-phone button {
  min-height: 36px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 900;
}

.page-monitor-phone {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  width: min(340px, 100%);
  min-height: 560px;
  margin: 0 auto;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    #050507;
  padding: 16px;
}

.page-monitor-phone header,
.page-monitor-phone footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-monitor-phone header b {
  color: #fff;
}

.page-monitor-phone header span {
  color: #b8bac3;
  font-size: 0.78rem;
}

.page-monitor-phone section {
  display: grid;
  gap: 14px;
  align-content: center;
}

.monitor-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #101116;
}

.monitor-browser p {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 6px;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
}

.monitor-browser p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4f4f4;
}

.monitor-browser p span:nth-child(2) {
  background: #b8bbc5;
}

.monitor-browser p span:nth-child(3) {
  background: #737783;
}

.monitor-browser p b {
  min-width: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #f7f7f1;
  padding: 6px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monitor-browser div {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: center;
  padding: 18px;
  background:
    linear-gradient(#ffffff18 0 0) 18px 32px / 58% 7px no-repeat,
    linear-gradient(#ffffff12 0 0) 18px 48px / 72% 7px no-repeat,
    linear-gradient(#ffffff14 0 0) 18px 90px / 48% 44px no-repeat,
    #15161b;
}

.monitor-browser em {
  color: #d8d8dc;
  font-style: normal;
}

.monitor-browser strong {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px 12px;
}

.monitor-browser i {
  position: absolute;
  right: 62px;
  bottom: 48px;
  width: 18px;
  height: 24px;
  background: #f7f7f1;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 54% 100%, 72% 91%, 54% 66%, 100% 64%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
  animation: monitor-cursor 4s ease-in-out infinite;
}

.page-monitor-phone ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-monitor-phone li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #9da0aa;
  padding: 10px;
}

.page-monitor-phone li.is-active {
  border-color: rgba(255, 255, 255, 0.38);
  color: #f7f7f1;
}

.page-monitor-phone button {
  min-height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  padding: 0 12px;
  font-weight: 900;
}

.page-monitor-phone button:first-child {
  background: #17181d;
  color: #fff;
}

.page-messages p {
  max-width: 86%;
  margin: 0;
  border-radius: 18px;
  padding: 10px 12px;
}

.page-messages .friend {
  background: #e5e5ea;
  color: #050505;
}

.page-messages .you {
  justify-self: end;
  background: #0b84ff;
}

.page-messages .agent {
  background: #11131a;
}

.page-voice {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(89, 143, 255, 0.38), transparent 46%),
    #050507;
}

.page-voice b {
  font-size: 1.4rem;
}

.page-voice div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.page-voice i {
  display: block;
  width: 8px;
  height: 80px;
  border-radius: 999px;
  background: #9fb9ff;
}

.page-voice i:nth-child(2n) {
  height: 130px;
  background: #e6e8ee;
}

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

.page-pricing-mini span {
  display: grid;
  align-content: center;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #b8bac3;
  padding: 18px;
}

.page-pricing-mini b {
  margin-top: 18px;
  color: #fff;
  font-size: 2rem;
}

.page-contact-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 24px;
}

.page-contact-card label {
  display: grid;
  gap: 8px;
  color: #9fb9ff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-contact-card input,
.page-contact-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #101218;
  color: #fff;
  padding: 12px;
  font: inherit;
  text-transform: none;
}

.page-contact-card textarea {
  min-height: 120px;
  resize: vertical;
}

.detail-points,
.detail-flow {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 76px 0 42px;
}

.detail-points article {
  min-height: 230px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 24px;
}

.detail-points span {
  color: #1b56d9;
  font-size: 0.82rem;
  font-weight: 900;
}

.detail-points p {
  margin: 22px 0 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
}

.detail-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 92px;
}

.detail-flow span {
  display: grid;
  gap: 18px;
  min-height: 130px;
  align-content: start;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 16px;
  font-weight: 900;
}

.detail-flow b {
  color: #4e82ff;
}

@keyframes monitor-cursor {
  0%,
  100% {
    transform: translate(-12px, -8px);
  }

  42% {
    transform: translate(20px, -34px);
  }

  70% {
    transform: translate(4px, 10px);
  }
}

.detail-footer {
  background: #fff;
}

@media (max-width: 900px) {
  .detail-hero-inner,
  .detail-points,
  .detail-flow {
    grid-template-columns: 1fr;
  }

  .detail-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .page-browser-window main,
  .page-app-window {
    grid-template-columns: 1fr;
  }

  .page-browser-window aside,
  .page-app-window aside {
    display: none;
  }

  .detail-points article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .detail-hero {
    padding: 96px 16px 56px;
  }

  .detail-actions {
    display: grid;
    width: 100%;
  }

  .detail-actions a {
    width: 100%;
  }

  .detail-visual {
    padding: 10px;
  }

  .page-app-window,
  .page-browser-window,
  .page-pack,
  .page-blueprint,
  .page-agent-map,
  .page-surface-stack,
  .page-phone,
  .page-connectors-board,
  .page-skills-library,
  .page-monitor-phone,
  .page-voice,
  .page-pricing-mini,
  .page-contact-card {
    min-height: 340px;
  }

  .connector-tile-grid {
    grid-template-columns: 1fr;
  }

  .page-monitor-phone {
    min-height: 480px;
  }

  .page-monitor-phone footer {
    display: grid;
  }

  .page-browser-window header {
    grid-template-columns: auto auto auto 1fr;
  }

  .page-browser-window header span {
    grid-column: 1 / -1;
  }

  .page-pricing-mini {
    grid-template-columns: 1fr;
  }

  .page-pricing-mini span {
    min-height: 120px;
  }
}

.home-clean-preview {
  background: #f8f9fb;
  color: #050505;
}

.home-clean-preview .site-header {
  background: rgba(248, 249, 251, 0.92);
}

.home-clean-preview .nav-links a[href="page.html?view=desktop"] {
  color: #050505;
}

.home-detail-preview {
  min-height: auto;
  padding-right: clamp(18px, 4vw, 80px);
  padding-left: clamp(18px, 4vw, 80px);
  padding-bottom: 86px;
  background:
    linear-gradient(180deg, rgba(248, 249, 251, 0) 0%, rgba(248, 249, 251, 0) 70%, #f8f9fb 100%),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 84% 6%, rgba(77, 190, 255, 0.34), transparent 36%),
    linear-gradient(125deg, #f4fbff 0%, #cbeeff 42%, #5ecbff 100%);
}

.home-detail-preview .detail-hero-inner {
  grid-template-columns: minmax(330px, 0.72fr) minmax(580px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  width: min(1340px, 100%);
  min-height: 620px;
}

.home-detail-preview .detail-copy h1 {
  max-width: 620px;
}

.home-detail-preview .home-detail-visual {
  justify-self: end;
  width: min(650px, 100%);
  background: rgba(248, 249, 251, 0.66);
}

.actual-app-preview {
  display: grid;
  grid-template-columns: minmax(178px, 0.32fr) minmax(0, 1fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: #020202;
  color: #f6f6f6;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.actual-app-sidebar {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #030303;
  padding: 18px 14px 14px;
}

.actual-app-brand {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 8px;
  gap: 10px;
  align-items: center;
}

.actual-app-brand b,
.actual-app-topline span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(230, 234, 244, 0.5);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.96rem;
}

.actual-app-brand strong {
  overflow: hidden;
  color: #f6f6f6;
  font-size: 1.08rem;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actual-app-brand i,
.actual-app-agents em i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d8d8d8;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.22);
}

.actual-new-chat,
.actual-app-agents button,
.actual-app-input button {
  appearance: none;
  border: 0;
  font: inherit;
}

.actual-new-chat {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #060606;
  color: #f4f4f4;
  font-size: 0.92rem;
  font-weight: 760;
}

.actual-new-chat span {
  color: #fff;
  font-size: 1.1rem;
}

.actual-app-label,
.actual-app-agents > div span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 760;
}

.actual-app-sidebar nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.actual-app-sidebar nav a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  min-height: 44px;
  border-left: 3px solid transparent;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.52);
  padding: 8px 9px;
  text-decoration: none;
}

.actual-app-sidebar nav a.is-active {
  border-left-color: #e8e8e8;
  background: #0b0b0c;
  color: #f6f6f6;
}

.actual-app-sidebar nav i {
  grid-row: 1 / 3;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.86;
}

.actual-app-sidebar nav a:nth-child(2) i,
.actual-app-sidebar nav a:nth-child(6) i {
  border-radius: 999px;
}

.actual-app-sidebar nav b {
  overflow: hidden;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actual-app-sidebar nav span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actual-app-agents {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 14px;
}

.actual-app-agents > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.actual-app-agents button {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  background: #101010;
  color: #f1f1f1;
  font-weight: 800;
}

.actual-app-agents p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
}

.actual-app-agents p b {
  display: grid;
  min-width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #e7e7e7;
  font-size: 0.63rem;
  font-weight: 820;
}

.actual-app-agents em {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f2f2f2;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 760;
}

.actual-app-agents small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
}

.actual-app-main {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 18px clamp(22px, 4vw, 46px) 16px;
}

.actual-app-topline {
  display: flex;
  align-items: center;
  gap: 11px;
}

.actual-app-topline b {
  display: block;
  color: #e8e8e8;
  font-size: 0.96rem;
  font-weight: 760;
}

.actual-app-topline em {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

.actual-app-ready {
  align-self: center;
  justify-self: center;
  width: min(480px, 100%);
  transform: translateY(-8px);
}

.actual-app-ready span {
  display: block;
  margin-bottom: 12px;
  color: #d8d8d8;
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.actual-app-ready h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.72rem, 3.15vw, 2.45rem);
  font-weight: 780;
  line-height: 1.02;
}

.actual-app-ready p {
  width: min(330px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  line-height: 1.35;
}

.actual-app-input {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px 42px;
  gap: 8px;
  align-items: center;
  justify-self: end;
  width: min(520px, 100%);
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #030303;
  padding: 7px;
}

.actual-app-input > span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.9rem;
  white-space: nowrap;
}

.actual-app-input button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: #090909;
  color: #f4f4f4;
  font-size: 1rem;
  font-weight: 780;
}

.actual-app-input button:last-child {
  background: #f5f5f5;
  color: #050505;
}

.actual-app-input button i {
  display: block;
  width: 12px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
}

.home-detail-points,
.home-detail-flow {
  background: #f8f9fb;
}

.home-detail-points {
  padding-top: 10px;
}

.home-detail-flow {
  padding-bottom: clamp(88px, 10vw, 130px);
}

.voice-control-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  scroll-margin-top: 76px;
  background: #f8f9fb;
  color: #050505;
  padding: clamp(74px, 9vw, 132px) clamp(18px, 7vw, 130px);
}

.voice-control-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.voice-kicker {
  color: #1b56d9;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.voice-control-copy h2 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.voice-control-copy p {
  width: min(660px, 100%);
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.7;
}

.voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.voice-listen-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  padding: 0 20px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.voice-listen-button i {
  display: block;
  width: 12px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.voice-actions small {
  color: rgba(0, 0, 0, 0.52);
  line-height: 1.4;
}

.voice-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.voice-samples button {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #050505;
  padding: 9px 12px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
}

.voice-samples button:focus-visible {
  outline: 2px solid #9fb9ff;
  outline-offset: 2px;
}

.voice-control-demo,
.voice-detail-demo {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.voice-transcript-card,
.voice-computer-card {
  border-radius: 8px;
}

.voice-transcript-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 18px;
}

.voice-meter {
  display: flex;
  height: 52px;
  align-items: center;
  gap: 7px;
}

.voice-meter i {
  display: block;
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: #9fb9ff;
}

.voice-meter i:nth-child(2),
.voice-meter i:nth-child(4) {
  height: 40px;
  background: #d9dce4;
}

.voice-meter i:nth-child(3) {
  height: 52px;
  background: #050505;
}

.is-listening .voice-meter i {
  animation: voiceBar 0.72s ease-in-out infinite alternate;
}

.is-listening .voice-meter i:nth-child(2) {
  animation-delay: 0.08s;
}

.is-listening .voice-meter i:nth-child(3) {
  animation-delay: 0.16s;
}

.is-listening .voice-meter i:nth-child(4) {
  animation-delay: 0.24s;
}

.is-listening .voice-meter i:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes voiceBar {
  from {
    transform: scaleY(0.58);
  }
  to {
    transform: scaleY(1.08);
  }
}

.voice-transcript-card span,
.voice-computer-grid small {
  color: #1b56d9;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.voice-transcript-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.45;
}

.voice-computer-card {
  display: grid;
  gap: 18px;
  background: #050505;
  color: #fff;
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.voice-computer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-computer-top b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  font-family: var(--font-mono);
}

.voice-computer-top span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.voice-computer-grid {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.voice-computer-grid aside {
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 12px;
}

.voice-computer-grid aside span {
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.48);
  padding: 9px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.voice-computer-grid aside .is-active {
  background: #f4f4f4;
  color: #050505;
}

.voice-computer-grid section {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 3vw, 30px);
}

.voice-computer-grid h3 {
  margin: 0;
  max-width: 420px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.voice-computer-grid p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.voice-approval-row {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 800;
}

.voice-approval-row i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9fb9ff;
}

.voice-detail-demo {
  min-height: 520px;
}

.voice-detail-demo .voice-transcript-card {
  background: rgba(255, 255, 255, 0.92);
}

.voice-detail-demo .voice-actions {
  align-items: stretch;
}

.voice-detail-demo .voice-actions small {
  display: flex;
  align-items: center;
  min-height: 46px;
  color: rgba(0, 0, 0, 0.52);
}

.voice-detail-demo .voice-samples button {
  background: rgba(255, 255, 255, 0.92);
}

.mono-icon-preview .nav-links a[href="page.html?view=desktop"],
.mono-icon-preview .detail-back,
.mono-icon-preview .industry-copy span,
.mono-icon-preview .pack-header span,
.mono-icon-preview .pack-columns span,
.mono-icon-preview .live-step > span,
.mono-icon-preview .agent-chip-grid b,
.mono-icon-preview .approval-card > span,
.mono-icon-preview .voice-transcript-card span,
.mono-icon-preview .voice-computer-grid small,
.mono-icon-preview .detail-points span,
.mono-icon-preview .detail-flow b,
.mono-icon-preview .page-pack header,
.mono-icon-preview .page-contact-card label {
  color: #050505;
}

.mono-icon-preview .industry-builder,
.mono-icon-preview .live-console,
.mono-icon-preview .page-pack,
.mono-icon-preview .page-blueprint,
.mono-icon-preview .page-pricing-mini {
  background:
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.1), transparent 32%),
    #050505;
}

.mono-icon-preview .industry-picker {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.11), transparent 28%),
    #050505;
}

.mono-icon-preview .industry-picker button {
  border-color: rgba(255, 255, 255, 0.16);
  background: #101010;
}

.mono-icon-preview .industry-picker button.is-active {
  border-color: rgba(255, 255, 255, 0.72);
  background: #191919;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.mono-icon-preview .industry-picker button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.mono-icon-preview .pack-preview {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #050505;
}

.mono-icon-preview .pack-header span,
.mono-icon-preview .pack-columns span,
.mono-icon-preview .page-pack header,
.mono-icon-preview .page-agent-map span,
.mono-icon-preview .page-surface-stack span,
.mono-icon-preview .agent-chip-grid b,
.mono-icon-preview .approval-card > span,
.mono-icon-preview .page-browser-window header span,
.mono-icon-preview .page-app-window em {
  color: #f4f4f4;
}

.mono-icon-preview .pack-columns li::before,
.mono-icon-preview .live-project.is-active i,
.mono-icon-preview .live-agent-note i,
.mono-icon-preview .automation-list i,
.mono-icon-preview .voice-approval-row i {
  background: #f4f4f4;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.mono-icon-preview .pack-flow i {
  background: linear-gradient(90deg, #f4f4f4, rgba(255, 255, 255, 0.18));
}

.mono-icon-preview .live-orb {
  border: 2px solid #fff;
  background: #050505;
  box-shadow:
    0 0 0 8px rgba(0, 0, 0, 0.08),
    0 0 32px rgba(0, 0, 0, 0.24);
}

.mono-icon-preview .live-step::before {
  border-color: rgba(0, 0, 0, 0.34);
  background: #f8f9fb;
}

.mono-icon-preview .live-project.is-active i {
  animation: none;
}

.mono-icon-preview .generated-photo {
  background:
    radial-gradient(circle at 62% 23%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(145deg, #111, #9b9b9b 70%, #f7f7f1);
}

.mono-icon-preview .live-output {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.12), transparent 42%),
    #0b0c10;
}

.mono-icon-preview .activity-orbit {
  border-color: rgba(255, 255, 255, 0.24);
}

.mono-icon-preview .activity-orbit::after {
  background: linear-gradient(135deg, #f4f4f4, #777);
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.12);
}

.mono-icon-preview .activity-orbit i {
  background: #f4f4f4;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.mono-icon-preview .activity-meter {
  background: rgba(255, 255, 255, 0.14);
}

.mono-icon-preview .activity-meter i {
  background: linear-gradient(90deg, #f4f4f4, #888);
}

.mono-icon-preview .surface-grid article .surface-art {
  border-color: rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(135deg, #050505, #15161b 52%, #dfe2e8);
}

.mono-icon-preview .consulting-grid span,
.mono-icon-preview .pricing-grid article:not(.featured) span {
  color: #050505;
}

.mono-icon-preview .pricing-grid article.featured span {
  color: #f4f4f4;
}

.mono-icon-preview .surface-app-preview section div b,
.mono-icon-preview .browser-page i {
  color: #f4f4f4;
}

.mono-icon-preview .surface-browser-preview header span {
  background: #f4f4f4;
}

.mono-icon-preview .surface-browser-preview header span:nth-child(2) {
  background: #b8bbc5;
}

.mono-icon-preview .surface-browser-preview header span:nth-child(3) {
  background: #737783;
}

.mono-icon-preview .surface-browser-preview header b {
  background: rgba(255, 255, 255, 0.12);
  color: #f4f4f4;
}

.mono-icon-preview .browser-page {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    #101116;
}

.mono-icon-preview .browser-page div {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0 42%, transparent 42% 48%, rgba(255, 255, 255, 0.16) 48% 100%),
    linear-gradient(#ffffff22 0 0) 12px 14px / 72% 5px no-repeat,
    linear-gradient(#ffffff16 0 0) 12px 28px / 54% 5px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.mono-icon-preview .page-blueprint span {
  border-left-color: #f4f4f4;
}

.mono-icon-preview .page-app-window div b {
  color: #f4f4f4;
}

.mono-icon-preview .task-row.is-active,
.mono-icon-preview .task-steps li.is-active {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.mono-icon-preview .voice-meter i {
  background: #d9dce4;
}

.mono-icon-preview .voice-meter i:nth-child(3) {
  background: #050505;
}

.mono-icon-preview .voice-meter i:nth-child(2),
.mono-icon-preview .voice-meter i:nth-child(4) {
  background: #8d9098;
}

.mono-icon-preview .voice-samples button:focus-visible {
  outline-color: #050505;
}

.mono-icon-preview .actual-app-ready span {
  color: #d8d8d8;
}

.mono-icon-preview .actual-app-brand i,
.mono-icon-preview .actual-app-agents em i {
  background: #d8d8d8;
}

.voice-control-section + .agents-section {
  padding-top: clamp(92px, 9vw, 132px);
  background: #f8f9fb;
}

.voice-control-section + .agents-section .section-heading h2 {
  color: #050505;
}

@media (max-width: 900px) {
  .home-detail-preview .detail-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-detail-preview .home-detail-visual {
    justify-self: stretch;
    width: 100%;
  }

  .actual-app-preview {
    min-height: 500px;
    grid-template-columns: minmax(164px, 0.34fr) minmax(0, 1fr);
  }

  .actual-app-main {
    padding: 18px 24px 16px;
  }

  .voice-control-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .actual-app-preview {
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .actual-app-sidebar {
    display: none;
  }

  .actual-app-main {
    min-height: 430px;
    padding: 18px;
  }

  .actual-app-ready {
    justify-self: start;
    transform: none;
  }

  .actual-app-ready h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .actual-app-input {
    grid-template-columns: 38px minmax(0, 1fr) 38px 38px;
    gap: 6px;
    justify-self: stretch;
  }

  .actual-app-input button {
    width: 38px;
    height: 38px;
  }

  .voice-control-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .voice-control-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .voice-actions,
  .voice-listen-button {
    width: 100%;
  }

  .voice-listen-button {
    justify-content: center;
  }

  .voice-samples {
    display: grid;
    width: 100%;
  }

  .voice-computer-grid {
    grid-template-columns: 1fr;
  }

  .voice-computer-grid aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Aximary site-wide minimal refresh, aligned with the download page. */
:root {
  --ax-display: "Courier New", Courier, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ax-bg: #ffffff;
  --ax-ice: #eff9ff;
  --ax-ice-strong: #d7efff;
  --ax-text: #050505;
  --ax-muted: #606875;
  --ax-line: #dce6ef;
  --ax-panel: rgba(255, 255, 255, 0.82);
  --ax-shadow: 0 34px 90px rgba(61, 112, 174, 0.16);
}

body.home-clean-preview,
body.detail-body,
body.legal-body {
  background:
    linear-gradient(180deg, var(--ax-bg) 0%, var(--ax-bg) 42%, #f2faff 100%);
  color: var(--ax-text);
  font-family: var(--ax-display);
  letter-spacing: 0;
}

body.home-clean-preview .site-header,
body.detail-body .site-header,
body.legal-body .site-header {
  grid-template-columns: auto 1fr auto auto;
  height: 74px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ax-text);
  padding: 0 48px;
  box-shadow: none;
}

body.home-clean-preview .brand,
body.detail-body .brand,
body.legal-body .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--ax-text);
  font-family: var(--ax-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.home-clean-preview .brand::before,
body.detail-body .brand::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: url("/assets/aximary-icon.svg") center / contain no-repeat;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.08);
}

body.legal-body .brand-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 9px;
  background: url("/assets/aximary-icon.svg") center / contain no-repeat;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.08);
  color: transparent;
  font-size: 0;
}

body.home-clean-preview .nav-links,
body.detail-body .nav-links,
body.legal-body .nav-links,
body.home-clean-preview .header-actions,
body.detail-body .header-actions,
body.legal-body .header-actions {
  gap: 30px;
  color: #171717;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0;
}

body.home-clean-preview .nav-links a,
body.detail-body .nav-links a,
body.legal-body .nav-links a,
body.home-clean-preview .header-actions a,
body.detail-body .header-actions a,
body.legal-body .header-actions a {
  color: #171717;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

body.home-clean-preview .nav-links a:hover,
body.detail-body .nav-links a:hover,
body.legal-body .nav-links a:hover,
body.home-clean-preview .header-actions a:hover,
body.detail-body .header-actions a:hover,
body.legal-body .header-actions a:hover {
  color: #4b5563;
}

body.home-clean-preview .top-button,
body.detail-body .top-button,
body.legal-body .header-button,
body.home-clean-preview .primary-action,
body.detail-body .primary-action {
  min-height: 48px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
}

body.home-clean-preview .secondary-action,
body.detail-body .secondary-action {
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  padding: 0 24px;
  box-shadow: 0 14px 34px rgba(61, 112, 174, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
}

body.home-clean-preview .top-button:hover,
body.detail-body .top-button:hover,
body.legal-body .header-button:hover,
body.home-clean-preview .primary-action:hover,
body.detail-body .primary-action:hover,
body.home-clean-preview .secondary-action:hover,
body.detail-body .secondary-action:hover {
  transform: translateY(-1px);
}

body.home-clean-preview .menu-toggle,
body.detail-body .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #000;
}

body.home-clean-preview .site-menu,
body.detail-body .site-menu {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #fff 0%, #eef8ff 100%);
  box-shadow: -30px 0 80px rgba(61, 112, 174, 0.18);
}

body.home-clean-preview .site-menu-top span,
body.detail-body .site-menu-top span {
  font-family: var(--ax-display);
}

body.home-clean-preview .site-menu nav a,
body.detail-body .site-menu nav a {
  border-color: rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

body.home-clean-preview .home-detail-preview,
body.detail-body .detail-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 76%, #fff 100%),
    linear-gradient(135deg, #ffffff 0%, #f3fbff 36%, var(--ax-ice-strong) 100%);
}

body.home-clean-preview .detail-hero,
body.detail-body .detail-hero {
  padding-top: 148px;
  padding-bottom: 86px;
}

body.home-clean-preview .detail-hero-inner {
  grid-template-columns: minmax(360px, 0.7fr) minmax(580px, 1fr);
  gap: 64px;
  min-height: 660px;
}

body.detail-body .detail-hero-inner {
  grid-template-columns: minmax(330px, 0.78fr) minmax(460px, 0.9fr);
  gap: 72px;
}

body.home-clean-preview .detail-back,
body.detail-body .detail-back {
  margin-bottom: 30px;
  color: var(--ax-text);
  font-family: var(--ax-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.home-clean-preview .detail-copy h1,
body.detail-body .detail-copy h1,
body.legal-body .legal-page h1 {
  color: #000;
  font-family: var(--ax-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

body.home-clean-preview .detail-copy h1 {
  max-width: 680px;
  font-size: 92px;
}

body.detail-body .detail-copy h1,
body.legal-body .legal-page h1 {
  max-width: 820px;
  font-size: 76px;
}

body.home-clean-preview .detail-copy p,
body.detail-body .detail-copy p,
body.legal-body .legal-page > .section-wrap > p {
  color: var(--ax-muted);
  font-family: var(--ax-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

body.home-clean-preview .detail-actions,
body.detail-body .detail-actions {
  gap: 14px;
  margin-top: 34px;
}

body.home-clean-preview .detail-visual,
body.detail-body .detail-visual {
  border: 1px solid var(--ax-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--ax-shadow);
  padding: 18px;
}

body.home-clean-preview .actual-app-preview {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 32px 84px rgba(2, 6, 23, 0.24);
}

body.home-clean-preview .actual-app-sidebar {
  background: #050505;
}

body.home-clean-preview .actual-app-brand b,
body.home-clean-preview .actual-app-topline span,
body.detail-body .page-app-window aside b,
body.detail-body .voice-computer-top b {
  border-color: rgba(255, 255, 255, 0.18);
  background: url("/assets/aximary-icon.svg") center / cover no-repeat;
  color: transparent;
  font-size: 0;
}

body.detail-body .page-app-window,
body.detail-body .page-browser-window,
body.detail-body .page-pack,
body.detail-body .page-blueprint,
body.detail-body .page-agent-map,
body.detail-body .page-surface-stack,
body.detail-body .page-phone,
body.detail-body .page-connectors-board,
body.detail-body .page-skills-library,
body.detail-body .page-monitor-phone,
body.detail-body .page-voice,
body.detail-body .page-pricing-mini,
body.detail-body .page-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background-color: #050505;
  box-shadow: 0 30px 82px rgba(2, 6, 23, 0.24);
}

body.detail-body .connector-tile,
body.detail-body .page-skills-library article,
body.detail-body .page-connectors-board section,
body.detail-body .page-browser-window section div,
body.detail-body .page-app-window div,
body.detail-body .page-pricing-mini span {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

body.detail-body .connector-logo {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

body.detail-body .detail-points,
body.detail-body .detail-flow {
  width: min(1180px, calc(100% - 48px));
}

body.detail-body .detail-points {
  gap: 14px;
  padding-top: 82px;
}

body.detail-body .detail-points article {
  min-height: 240px;
  border: 1px solid var(--ax-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 56px rgba(61, 112, 174, 0.1);
}

body.detail-body .detail-points span {
  color: #050505;
  font-family: var(--ax-display);
  font-size: 1rem;
  letter-spacing: 0;
}

body.detail-body .detail-points p,
body.detail-body .detail-flow span {
  color: var(--ax-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

body.detail-body .detail-flow {
  gap: 14px;
  padding-bottom: 104px;
}

body.detail-body .detail-flow span {
  min-height: 132px;
  border-top: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--ax-line);
  padding: 18px;
  font-weight: 720;
}

body.detail-body .detail-flow b {
  color: #050505;
  font-family: var(--ax-display);
}

body.home-clean-preview .site-footer,
body.detail-body .site-footer {
  border-top: 1px solid var(--ax-line);
  background: #fff;
  color: #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

body.home-clean-preview .site-footer .brand,
body.detail-body .site-footer .brand {
  font-family: var(--ax-display);
}

body.legal-body main {
  min-height: 100vh;
  padding-top: 74px;
}

body.legal-body .legal-page {
  min-height: calc(100vh - 74px);
  padding: 88px 24px 96px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 76%),
    linear-gradient(135deg, #ffffff 0%, #f3fbff 36%, var(--ax-ice-strong) 100%);
}

body.legal-body .section-wrap {
  width: min(1040px, 100%);
  margin: 0 auto;
}

body.legal-body .eyebrow {
  margin: 0 0 24px;
  color: #050505;
  font-family: var(--ax-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.legal-body .legal-page h1 {
  margin: 0;
}

body.legal-body .legal-page > .section-wrap > p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 28px 0 0;
}

body.legal-body .legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

body.legal-body .legal-grid article {
  min-height: 190px;
  border: 1px solid var(--ax-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 56px rgba(61, 112, 174, 0.1);
  padding: 24px;
}

body.legal-body .legal-grid h2 {
  margin: 0;
  color: #050505;
  font-family: var(--ax-display);
  font-size: 1.3rem;
  letter-spacing: 0;
}

body.legal-body .legal-grid p {
  margin: 16px 0 0;
  color: var(--ax-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
}

body.legal-body .legal-grid a {
  color: #050505;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.home-clean-preview .nav-links,
body.detail-body .nav-links,
body.legal-body .nav-links,
body.home-clean-preview .header-actions,
body.detail-body .header-actions,
body.legal-body .header-actions {
  min-width: 0;
}

body.home-clean-preview .header-actions .top-button,
body.detail-body .header-actions .top-button,
body.legal-body .header-actions .header-button,
body.home-clean-preview .detail-actions .primary-action,
body.detail-body .detail-actions .primary-action {
  color: #fff;
}

body.home-clean-preview header.site-header .header-actions a.top-button,
body.detail-body header.site-header .header-actions a.top-button,
body.legal-body header.site-header .header-actions a.header-button {
  color: #fff;
}

body.home-clean-preview .detail-actions .secondary-action,
body.detail-body .detail-actions .secondary-action {
  color: #111827;
}

@media (max-width: 1380px) {
  body.home-clean-preview .header-actions,
  body.detail-body .header-actions {
    display: none;
  }

  body.home-clean-preview .menu-toggle,
  body.detail-body .menu-toggle {
    display: grid;
  }

  body.home-clean-preview .site-header,
  body.detail-body .site-header {
    grid-template-columns: auto 1fr auto;
  }

  body.home-clean-preview .nav-links,
  body.detail-body .nav-links {
    gap: 18px;
  }
}

@media (max-width: 1060px) {
  body.home-clean-preview .site-header,
  body.detail-body .site-header,
  body.legal-body .site-header {
    padding: 0 24px;
  }

  body.home-clean-preview .nav-links,
  body.detail-body .nav-links,
  body.legal-body .nav-links,
  body.home-clean-preview .header-actions,
  body.detail-body .header-actions,
  body.legal-body .header-actions {
    gap: 18px;
  }

  body.home-clean-preview .detail-hero-inner,
  body.detail-body .detail-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-clean-preview .home-detail-visual,
  body.detail-body .detail-visual {
    justify-self: stretch;
    width: 100%;
  }

  body.home-clean-preview .detail-copy h1 {
    font-size: 68px;
  }

  body.detail-body .detail-copy h1,
  body.legal-body .legal-page h1 {
    font-size: 62px;
  }
}

@media (max-width: 900px) {
  body.home-clean-preview .nav-links,
  body.detail-body .nav-links,
  body.home-clean-preview .header-actions,
  body.detail-body .header-actions {
    display: none;
  }

  body.home-clean-preview .menu-toggle,
  body.detail-body .menu-toggle {
    display: grid;
  }

  body.home-clean-preview .site-header,
  body.detail-body .site-header {
    grid-template-columns: auto auto;
  }

  body.legal-body .nav-links,
  body.legal-body .header-actions a:not(.header-button) {
    display: none;
  }

  body.detail-body .detail-points,
  body.detail-body .detail-flow,
  body.legal-body .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.home-clean-preview .site-header,
  body.detail-body .site-header,
  body.legal-body .site-header {
    height: 64px;
    padding: 0 18px;
  }

  body.home-clean-preview .brand,
  body.detail-body .brand,
  body.legal-body .brand {
    font-size: 1rem;
  }

  body.home-clean-preview .brand::before,
  body.detail-body .brand::before,
  body.legal-body .brand-mark {
    width: 30px;
    height: 30px;
  }

  body.home-clean-preview .detail-hero,
  body.detail-body .detail-hero {
    padding: 112px 18px 56px;
  }

  body.home-clean-preview .detail-copy h1,
  body.detail-body .detail-copy h1 {
    font-size: 46px;
  }

  body.legal-body .legal-page h1 {
    font-size: 42px;
  }

  body.home-clean-preview .detail-copy p,
  body.detail-body .detail-copy p,
  body.legal-body .legal-page > .section-wrap > p {
    font-size: 18px;
    line-height: 1.58;
  }

  body.home-clean-preview .detail-actions,
  body.detail-body .detail-actions {
    display: grid;
    width: 100%;
  }

  body.home-clean-preview .detail-actions a,
  body.detail-body .detail-actions a {
    width: 100%;
  }

  body.detail-body .detail-points,
  body.detail-body .detail-flow {
    width: calc(100% - 32px);
  }

  body.legal-body main {
    padding-top: 64px;
  }

  body.legal-body .legal-page {
    padding: 56px 18px 72px;
  }
}

/* Light app-window visual refresh requested from screenshot reference. */
body.home-clean-preview .site-header,
body.detail-body .site-header,
body.legal-body .site-header {
  grid-template-columns: auto 1fr auto;
}

body.home-clean-preview .nav-links,
body.detail-body .nav-links,
body.legal-body .nav-links,
body.home-clean-preview .header-actions,
body.detail-body .header-actions,
body.legal-body .header-actions {
  display: none;
}

body.home-clean-preview .menu-toggle,
body.detail-body .menu-toggle,
body.legal-body .menu-toggle {
  display: grid;
  justify-self: end;
}

body.home-clean-preview .site-menu,
body.detail-body .site-menu,
body.legal-body .site-menu {
  width: min(430px, calc(100vw - 18px));
}

body.home-clean-preview .home-detail-visual {
  width: 100%;
  background: transparent;
  padding: 0;
}

body.home-clean-preview .home-detail-preview .detail-hero-inner {
  grid-template-columns: minmax(280px, 0.48fr) minmax(690px, 0.92fr);
  gap: 34px;
  align-items: start;
}

body.home-clean-preview .actual-app-preview-light {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 600px;
  border: 1px solid #dbe6f1;
  border-radius: 24px;
  background: #ffffff;
  color: #070707;
  box-shadow:
    0 36px 94px rgba(50, 105, 160, 0.15),
    0 10px 36px rgba(15, 23, 42, 0.06);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

body.home-clean-preview .actual-app-preview-light .actual-app-sidebar {
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  border-right: 1px solid #dbe6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
  padding: 28px 20px;
}

.actual-window-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.actual-window-controls span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #ff5f57;
}

.actual-window-controls span:nth-child(2) {
  background: #ffbd2e;
}

.actual-window-controls span:nth-child(3) {
  background: #28c840;
}

body.home-clean-preview .actual-app-preview-light .actual-app-brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

body.home-clean-preview .actual-app-preview-light .actual-app-brand img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

body.home-clean-preview .actual-app-preview-light .actual-app-brand strong {
  color: #0b0b0b;
  font-size: 1.05rem;
  font-weight: 820;
  letter-spacing: 0;
}

body.home-clean-preview .actual-app-preview-light .actual-app-sidebar nav {
  gap: 14px;
}

body.home-clean-preview .actual-app-preview-light .actual-app-sidebar nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: #596171;
  padding: 0 14px;
  text-decoration: none;
}

body.home-clean-preview .actual-app-preview-light .actual-app-sidebar nav a.is-active {
  border-color: rgba(219, 230, 241, 0.62);
  background: #ffffff;
  color: #070707;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

body.home-clean-preview .actual-app-preview-light .actual-app-sidebar nav svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

body.home-clean-preview .actual-app-preview-light .actual-app-sidebar nav b {
  color: inherit;
  font-size: 0.94rem;
  font-weight: 820;
  letter-spacing: 0;
}

body.home-clean-preview .actual-app-preview-light .actual-app-main {
  display: grid;
  align-content: center;
  gap: 30px;
  min-width: 0;
  padding: clamp(28px, 4.2vw, 52px);
}

.actual-app-command {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  border: 1px solid #dbe6f1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
  padding: 10px 14px 10px 30px;
}

.actual-app-command span {
  overflow: hidden;
  color: #697180;
  font-size: 1rem;
  font-weight: 740;
  letter-spacing: 0;
  white-space: nowrap;
}

.actual-mic {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #050505;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.actual-voice-button {
  display: grid;
  grid-auto-flow: column;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 18px;
  background: #000;
  color: #fff;
}

.actual-voice-button i {
  display: block;
  width: 5px;
  height: 28px;
  border-radius: 999px;
  background: currentColor;
}

.actual-voice-button i:nth-child(2) {
  height: 38px;
}

.actual-recent-actions {
  display: grid;
  gap: 16px;
}

.actual-recent-actions > p {
  margin: 0;
  color: #697180;
  font-size: 1rem;
  font-weight: 780;
}

.actual-recent-actions article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  border: 1px solid #dbe6f1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.05);
  padding: 14px 18px;
}

.actual-action-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.actual-action-icon svg {
  width: 30px;
  height: 30px;
}

.actual-recent-actions strong {
  display: block;
  overflow: hidden;
  color: #0b0b0b;
  font-size: 1rem;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actual-recent-actions small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: #697180;
  font-size: 0.88rem;
  font-weight: 520;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actual-recent-actions em {
  border-radius: 999px;
  background: #dcf5df;
  color: #168536;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

body.detail-body .page-connectors-board {
  border: 1px solid #dbe6f1;
  background: #ffffff;
  color: #070707;
  box-shadow:
    0 34px 88px rgba(50, 105, 160, 0.14),
    0 10px 30px rgba(15, 23, 42, 0.05);
}

body.detail-body .page-connectors-board header,
body.detail-body .page-connectors-board header b,
body.detail-body .connector-tile-grid b,
body.detail-body .page-connectors-board section b {
  color: #0b0b0b;
}

body.detail-body .page-connectors-board header b,
body.detail-body .page-connectors-board section b,
body.detail-body .page-connectors-board section span,
body.detail-body .page-connectors-board section em {
  border-color: #dbe6f1;
  background: #f5f9fd;
}

body.detail-body .connector-tile,
body.detail-body .page-connectors-board section {
  border-color: #dbe6f1;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

body.detail-body .connector-tile-grid small,
body.detail-body .page-connectors-board section p,
body.detail-body .page-connectors-board section span,
body.detail-body .page-connectors-board section em {
  color: #697180;
}

@media (max-width: 1280px) {
  body.home-clean-preview .home-detail-preview .detail-hero-inner {
    grid-template-columns: minmax(340px, 0.5fr) minmax(650px, 0.9fr);
  }

  body.home-clean-preview .detail-copy h1 {
    max-width: 360px;
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  body.home-clean-preview .home-detail-preview .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  body.home-clean-preview .detail-copy h1 {
    max-width: 100%;
    font-size: 46px;
  }

  body.home-clean-preview .actual-app-preview-light {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-clean-preview .actual-app-preview-light .actual-app-sidebar {
    display: none;
  }

  body.home-clean-preview .actual-app-preview-light .actual-app-main {
    min-height: 430px;
    padding: 18px;
  }

  .actual-app-command {
    grid-template-columns: 28px minmax(0, 1fr) 54px;
    gap: 12px;
    min-height: 70px;
    border-radius: 18px;
    padding: 9px 9px 9px 18px;
  }

  .actual-app-command span {
    font-size: 0.9rem;
  }

  .actual-voice-button {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .actual-recent-actions article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .actual-recent-actions em {
    justify-self: start;
    grid-column: 2;
    margin-top: -6px;
  }
}

/* Light product visuals for every detail page preview. */
body.detail-body .detail-visual {
  border: 1px solid #dbe6f1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 88px rgba(50, 105, 160, 0.14),
    0 10px 30px rgba(15, 23, 42, 0.05);
}

body.detail-body .page-app-window,
body.detail-body .page-browser-window,
body.detail-body .page-pack,
body.detail-body .page-blueprint,
body.detail-body .page-agent-map,
body.detail-body .page-surface-stack,
body.detail-body .page-phone,
body.detail-body .page-connectors-board,
body.detail-body .page-skills-library,
body.detail-body .page-monitor-phone,
body.detail-body .page-voice,
body.detail-body .page-pricing-mini,
body.detail-body .page-contact-card,
body.detail-body .voice-detail-demo,
body.detail-body .voice-computer-card,
body.detail-body .voice-transcript-card {
  border: 1px solid #dbe6f1;
  border-radius: 22px;
  background: #ffffff;
  color: #090909;
  box-shadow:
    0 24px 64px rgba(50, 105, 160, 0.12),
    0 8px 26px rgba(15, 23, 42, 0.05);
}

body.detail-body .page-app-window {
  grid-template-columns: 170px minmax(0, 1fr);
}

body.detail-body .page-app-window aside,
body.detail-body .page-browser-window aside,
body.detail-body .page-monitor-phone,
body.detail-body .page-phone,
body.detail-body .voice-computer-grid aside {
  border-color: #dbe6f1;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
}

body.detail-body .page-app-window aside b {
  border-color: rgba(15, 23, 42, 0.12);
  background: url("/assets/aximary-icon.svg") center / cover no-repeat;
  color: transparent;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

body.detail-body .page-app-window aside span,
body.detail-body .page-app-window em,
body.detail-body .page-browser-window p,
body.detail-body .page-browser-window span,
body.detail-body .page-browser-window aside,
body.detail-body .page-pack p,
body.detail-body .page-skills-library small,
body.detail-body .page-skills-library footer,
body.detail-body .page-phone header,
body.detail-body .page-phone footer,
body.detail-body .page-monitor-phone header span,
body.detail-body .page-monitor-phone li,
body.detail-body .voice-transcript-card span,
body.detail-body .voice-computer-grid small,
body.detail-body .voice-computer-grid p {
  color: #697180;
}

body.detail-body .page-app-window h2,
body.detail-body .page-app-window div b,
body.detail-body .page-browser-window section b,
body.detail-body .page-agent-map strong,
body.detail-body .page-pack h2,
body.detail-body .page-connectors-board header,
body.detail-body .page-skills-library header,
body.detail-body .page-skills-library article span,
body.detail-body .page-skills-library article b,
body.detail-body .page-monitor-phone header b,
body.detail-body .page-monitor-phone li.is-active,
body.detail-body .page-voice b,
body.detail-body .page-pricing-mini b,
body.detail-body .voice-computer-grid h3,
body.detail-body .voice-approval-row span {
  color: #090909;
}

body.detail-body .page-app-window div,
body.detail-body .page-browser-window section div,
body.detail-body .page-browser-window header b,
body.detail-body .page-agent-map strong,
body.detail-body .page-agent-map span,
body.detail-body .page-surface-stack span,
body.detail-body .page-pack div,
body.detail-body .page-blueprint span,
body.detail-body .page-skills-library article,
body.detail-body .skill-search,
body.detail-body .page-monitor-phone li,
body.detail-body .monitor-browser,
body.detail-body .monitor-browser strong,
body.detail-body .page-pricing-mini span,
body.detail-body .page-contact-card input,
body.detail-body .page-contact-card textarea,
body.detail-body .voice-computer-grid section,
body.detail-body .voice-computer-grid aside span,
body.detail-body .voice-approval-row,
body.detail-body .voice-samples button {
  border-color: #dbe6f1;
  background: #ffffff;
  color: #090909;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

body.detail-body .page-browser-window header {
  border-bottom-color: #dbe6f1;
  background: #ffffff;
}

body.detail-body .page-browser-window header b {
  color: #404855;
  background: #f3f8fd;
}

body.detail-body .page-browser-window header span {
  color: #090909;
}

body.detail-body .page-browser-window main {
  background: #ffffff;
}

body.detail-body .page-browser-window section {
  background: #ffffff;
}

body.detail-body .page-browser-window button,
body.detail-body .page-contact-card button,
body.detail-body .page-monitor-phone button,
body.detail-body .page-phone button {
  border: 1px solid #050505;
  background: #050505;
  color: #ffffff;
}

body.detail-body .page-monitor-phone button:first-child,
body.detail-body .page-phone button + button {
  border-color: #dbe6f1;
  background: #ffffff;
  color: #090909;
}

body.detail-body .page-agent-map,
body.detail-body .page-surface-stack,
body.detail-body .page-pack,
body.detail-body .page-blueprint,
body.detail-body .page-pricing-mini,
body.detail-body .page-voice {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 46%, #e2f4ff 100%);
}

body.detail-body .page-pack header,
body.detail-body .page-connectors-board header b,
body.detail-body .page-skills-library header b {
  color: #090909;
}

body.detail-body .page-connectors-board,
body.detail-body .page-skills-library {
  align-content: center;
  background: #ffffff;
}

body.detail-body .page-skills-library article.is-active {
  border-color: #c9dceb;
  background: #f7fbff;
}

body.detail-body .page-blueprint span {
  border-left-color: #090909;
}

body.detail-body .page-phone section {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #dbe6f1;
}

body.detail-body .page-messages .friend {
  background: #eef3f8;
}

body.detail-body .page-messages .you {
  background: #050505;
  color: #ffffff;
}

body.detail-body .page-messages .agent {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #dbe6f1;
}

body.detail-body .monitor-browser p {
  border-bottom-color: #dbe6f1;
}

body.detail-body .monitor-browser p b {
  background: #f3f8fd;
  color: #404855;
}

body.detail-body .monitor-browser div {
  background:
    linear-gradient(#dbe6f1 0 0) 18px 32px / 58% 7px no-repeat,
    linear-gradient(#e8f0f7 0 0) 18px 48px / 72% 7px no-repeat,
    linear-gradient(#edf5fb 0 0) 18px 90px / 48% 44px no-repeat,
    #ffffff;
}

body.detail-body .monitor-browser em {
  color: #697180;
}

body.detail-body .monitor-browser i {
  background: #050505;
}

body.detail-body .page-voice i {
  background: #dbe6f1;
}

body.detail-body .page-voice i:nth-child(2n) {
  background: #050505;
}

body.detail-body .page-contact-card label {
  color: #090909;
}

body.detail-body .page-contact-card input,
body.detail-body .page-contact-card textarea {
  color: #090909;
}

body.detail-body .voice-meter i,
body.detail-body .voice-listen-button i,
body.detail-body .voice-approval-row i {
  background: #050505;
}

body.detail-body .voice-listen-button {
  background: #050505;
  color: #ffffff;
}

body.detail-body .voice-computer-top b {
  background: url("/assets/aximary-icon.svg") center / cover no-repeat;
  color: transparent;
}

body.detail-body .voice-computer-grid {
  border-color: #dbe6f1;
}

body.detail-body .voice-computer-grid aside .is-active {
  background: #050505;
  color: #ffffff;
}

body.detail-body .connector-logo {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

@media (max-width: 560px) {
  body.detail-body .page-browser-window main,
  body.detail-body .page-app-window {
    grid-template-columns: 1fr;
  }

  body.detail-body .page-browser-window aside,
  body.detail-body .page-app-window aside {
    display: none;
  }
}

/* Drawer typography matching the Aximary display headline face. */
body.home-clean-preview .site-menu,
body.detail-body .site-menu,
body.legal-body .site-menu {
  gap: 24px;
  background:
    radial-gradient(circle at 0% 42%, rgba(114, 191, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f0faff 100%);
}

body.home-clean-preview .site-menu nav,
body.detail-body .site-menu nav,
body.legal-body .site-menu nav {
  gap: 14px;
}

body.home-clean-preview .site-menu nav a,
body.detail-body .site-menu nav a,
body.legal-body .site-menu nav a {
  min-height: 66px;
  border-color: rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  color: #070707;
  padding: 0 28px;
  box-shadow: 0 14px 34px rgba(61, 112, 174, 0.08);
  font-family: var(--ax-display);
  font-size: 1.54rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

body.home-clean-preview .site-menu nav a:hover,
body.home-clean-preview .site-menu nav a:focus-visible,
body.detail-body .site-menu nav a:hover,
body.detail-body .site-menu nav a:focus-visible,
body.legal-body .site-menu nav a:hover,
body.legal-body .site-menu nav a:focus-visible,
body.home-clean-preview .site-menu nav a.is-current,
body.detail-body .site-menu nav a.is-current,
body.legal-body .site-menu nav a.is-current {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: #000;
}

body.home-clean-preview .site-menu-top button,
body.detail-body .site-menu-top button,
body.legal-body .site-menu-top button,
body.home-clean-preview .site-menu p,
body.detail-body .site-menu p,
body.legal-body .site-menu p {
  font-family: var(--ax-display);
  letter-spacing: 0;
}

body.home-clean-preview .site-menu p,
body.detail-body .site-menu p,
body.legal-body .site-menu p {
  color: #4f5864;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 560px) {
  body.home-clean-preview .site-menu,
  body.detail-body .site-menu,
  body.legal-body .site-menu {
    gap: 20px;
    padding: 20px 16px;
  }

  body.home-clean-preview .site-menu nav,
  body.detail-body .site-menu nav,
  body.legal-body .site-menu nav {
    gap: 12px;
  }

  body.home-clean-preview .site-menu nav a,
  body.detail-body .site-menu nav a,
  body.legal-body .site-menu nav a {
    min-height: 60px;
    border-radius: 19px;
    padding: 0 24px;
    font-size: 1.32rem;
  }
}
