:root {
  --navy: #0d0a82;
  --navy-deep: #11183a;
  --ink: #161a24;
  --muted: #5e6678;
  --rule: #d8dce5;
  --paper: #f4f2ed;
  --white: #ffffff;
  --blue-wash: #eef1fb;
  --green: #267a67;
  --violet: #4a38f5;
  --violet-soft: #efedff;
  --yellow: #f2c84b;
  --yellow-soft: #fff7cf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.utility-bar {
  background: var(--navy-deep);
  color: #dce0ed;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner div {
  display: flex;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(10px);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 82px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 34px;
  font-size: 14px;
  font-weight: 600;
}

nav a,
.utility-inner a,
footer a {
  transition: color 150ms ease;
}

nav a:hover,
.utility-inner a:hover,
footer a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--violet);
  border: 1px solid var(--violet);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 150ms ease, border-color 150ms ease;
}

.button:hover {
  background: #3526d9;
  border-color: #3526d9;
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.hero {
  background: linear-gradient(115deg, var(--paper) 0%, var(--paper) 68%, var(--violet-soft) 100%);
  border-bottom: 1px solid var(--rule);
}

.hero-grid {
  min-height: 682px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 62px;
  align-items: center;
  padding: 74px 0 68px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero .eyebrow::before {
  width: 24px;
  height: 5px;
  background: var(--yellow);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.3vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.accent-text {
  color: var(--violet);
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 31px;
  color: #41495a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.55;
}

.hero-lede strong {
  color: var(--navy-deep);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 45px 0 0;
  padding-top: 21px;
  border-top: 1px solid #c9c7c1;
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
}

.product-frame {
  border: 1px solid #c8c3f0;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(26, 30, 52, 0.08);
}

.product-titlebar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--rule);
  background: #f8f9fb;
  color: #464d5e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-titlebar > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.product-mark {
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
}

.workspace-question {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid #ead070;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--navy-deep);
  box-shadow: 0 7px 20px rgba(52, 38, 217, 0.08);
  font-size: 12px;
}

.question-spark {
  color: #aa7700;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #4b5364;
  font-size: 10px;
  font-weight: 700;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.product-body {
  min-height: 458px;
  display: grid;
  grid-template-columns: 122px 1fr;
}

.workspace-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 13px;
  background: var(--navy-deep);
  color: #bbc0d0;
  font-size: 10px;
}

.workspace-nav strong {
  margin-bottom: 8px;
  color: #848ca1;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.workspace-nav span {
  padding: 9px 9px;
}

.workspace-nav .active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.workspace-main {
  padding: 25px 23px 20px;
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.micro-label {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workspace-heading h2 {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.date-label {
  padding-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}

.metric-row div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--rule);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row span,
.metric-row small {
  display: block;
  color: var(--muted);
  font-size: 8px;
}

.metric-row strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--navy-deep);
  font-size: 17px;
}

.activity-panel {
  margin-top: 17px;
  padding: 17px;
  border: 1px solid #b9bfd0;
  border-left: 3px solid var(--navy);
}

.activity-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}

.activity-head strong {
  color: var(--navy-deep);
}

.command {
  margin: 14px 0 16px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.4;
}

.match-details {
  display: grid;
  grid-template-columns: 70px 1fr;
  row-gap: 7px;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 9px;
}

.match-details span {
  color: var(--muted);
}

.review-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.review-actions button {
  min-height: 31px;
  padding: 0 13px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.review-actions button.secondary {
  background: var(--white);
  color: var(--navy);
}

.audit-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  color: #536072;
  font-size: 8px;
}

.principles {
  background: var(--navy-deep);
  color: var(--white);
}

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

.principle {
  min-height: 170px;
  padding: 27px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.principle:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.principle span {
  display: block;
  margin-bottom: 28px;
  color: #8c93b3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.principle strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.principle p {
  margin: 0;
  color: #c5c9d8;
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 105px 0;
}

.section h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
}

.split-intro > p,
.section-heading-row > p,
.integration-copy > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

.architecture {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.architecture-step {
  min-height: 252px;
  padding: 26px 27px;
  border-right: 1px solid var(--rule);
}

.architecture-step:first-child {
  border-left: 1px solid var(--rule);
}

.architecture-step.featured {
  background: linear-gradient(145deg, var(--violet), #3423c8);
  color: var(--white);
}

.architecture-step > span,
.card-index {
  display: block;
  margin-bottom: 52px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.architecture-step.featured > span {
  color: #b9b9e2;
}

.architecture-step strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  border-top: 0;
}

.flow-grid > div {
  padding: 28px 30px;
}

.flow-grid > div + div {
  border-left: 1px solid var(--rule);
}

.flow-label {
  display: block;
  margin-bottom: 9px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 800;
}

.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.assurance-strip {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  margin-top: 18px;
  border: 1px solid #d8d4fb;
  background: var(--violet-soft);
}

.assurance-strip > * {
  padding: 19px 22px;
  color: var(--navy-deep);
  font-size: 12px;
  line-height: 1.45;
}

.assurance-strip > * + * {
  border-left: 1px solid #d8d4fb;
}

.architecture-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.architecture-step.featured p {
  color: #d8d8ee;
}

.solutions {
  background: var(--paper);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 110px;
  align-items: end;
}

.section-heading-row > p {
  font-size: 16px;
}

.single-heading {
  display: block;
  max-width: 720px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  border-top: 1px solid #c9c7c1;
  border-left: 1px solid #c9c7c1;
}

.solution-card {
  min-height: 235px;
  padding: 31px 34px;
  border-right: 1px solid #c9c7c1;
  border-bottom: 1px solid #c9c7c1;
}

.solution-card .card-index {
  margin-bottom: 34px;
}

.solution-card h3,
.resource-grid h3 {
  margin-bottom: 13px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.solution-card > p {
  max-width: 440px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.solution-card ul {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  padding: 9px 0;
  border-top: 1px solid #d5d2cb;
  font-size: 12px;
  font-weight: 700;
}

.ar-section {
  background: var(--white);
}

.ar-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 105px;
  align-items: start;
}

.ar-copy {
  position: sticky;
  top: 120px;
}

.ar-copy h2 {
  margin-bottom: 27px;
}

.ar-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.conversation {
  border: 1px solid #bfc4cf;
  background: #f8f9fb;
}

.conversation-head {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.message {
  margin: 22px;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  background: var(--white);
}

.message span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.45;
}

.user-message {
  margin-left: 100px;
  border-right: 3px solid var(--navy);
}

.system-message {
  margin-right: 85px;
  border-left: 3px solid var(--navy);
}

.document-row {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  gap: 13px;
  align-items: center;
  margin: 0 22px;
  padding: 13px 15px;
  border: 1px solid var(--rule);
  background: var(--white);
}

.document-icon {
  display: grid;
  width: 42px;
  height: 46px;
  place-items: center;
  background: var(--blue-wash);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.document-row strong,
.document-row span {
  display: block;
  font-size: 11px;
}

.document-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.document-row b {
  color: var(--green);
}

.compact-message p {
  font-size: 15px;
}

.workflow-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px;
  border: 1px solid var(--rule);
  background: var(--white);
}

.workflow-result div {
  padding: 13px;
  border-right: 1px solid var(--rule);
}

.workflow-result div:last-child {
  border-right: 0;
}

.workflow-result span,
.workflow-result strong {
  display: block;
  font-size: 9px;
}

.workflow-result span {
  margin-bottom: 7px;
  color: var(--muted);
}

.controls {
  background: var(--navy-deep);
  color: var(--white);
}

.control-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 115px;
}

.control-copy h2 {
  margin-bottom: 28px;
  color: var(--white);
}

.control-copy > p:not(.eyebrow) {
  color: #cbd0dd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.control-note {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #414961;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
}

.control-list {
  border-top: 1px solid #414961;
}

.control-list > div {
  display: grid;
  grid-template-columns: 42px 155px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid #414961;
}

.control-list span {
  color: #878fa8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.control-list strong {
  font-size: 14px;
}

.control-list p {
  margin: 0;
  color: #bdc3d2;
  font-size: 12px;
  line-height: 1.5;
}

.integration-section {
  background: var(--paper);
}

.integration-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.integration-copy > p {
  font-size: 17px;
}

.integration-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
  border-top: 1px solid #c9c7c1;
  border-left: 1px solid #c9c7c1;
}

.integration-row div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px;
  border-right: 1px solid #c9c7c1;
  border-bottom: 1px solid #c9c7c1;
}

.integration-row .integration-live {
  background: var(--navy);
  color: var(--white);
}

.integration-row span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-live span {
  color: #c3c3e4;
}

.integration-row strong {
  font-size: 13px;
}

.resources .section-heading-row {
  align-items: end;
}

.resources .section-heading-row .text-link {
  justify-self: end;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.resource-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.resource-grid article > span {
  margin-bottom: 52px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-grid h3 {
  font-size: 24px;
}

.resource-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.resource-grid a {
  margin-top: auto;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.article-view {
  display: none;
  padding: 104px 0 112px;
  scroll-margin-top: 76px;
  border-top: 1px solid var(--rule);
  background: var(--white);
}

.article-view:target {
  display: block;
}

.article-shell {
  max-width: 980px;
}

.article-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 68px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-topbar a {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.article-header {
  max-width: 850px;
  margin-bottom: 62px;
}

.article-header h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 72px);
}

.article-lede {
  max-width: 780px;
  margin: 0;
  color: #40485a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.6;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin: 52px 0 16px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.18;
}

.article-body p,
.article-body li {
  color: #353c4b;
  font-size: 16px;
  line-height: 1.78;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  margin: 22px 0 30px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 9px;
  padding-left: 5px;
}

.article-body blockquote {
  margin: 24px 0 30px;
  padding: 20px 24px;
  border-left: 4px solid var(--yellow);
  background: var(--yellow-soft);
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}

.prompt-list {
  padding-left: 0 !important;
  list-style: none;
}

.prompt-list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--rule);
  color: var(--navy-deep);
}

.numbered-article h2 span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.article-back {
  display: inline-flex;
  margin-top: 60px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.about-strip {
  padding: 78px 0;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.about-grid h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.about-grid > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.contact {
  padding: 86px 0;
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 110px;
  align-items: center;
}

.contact h2 {
  color: var(--white);
}

.light-eyebrow {
  color: #bfc0e4;
}

.contact-grid > div:last-child p {
  margin-bottom: 25px;
  color: #dedff0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: #eeeff7;
  border-color: #eeeff7;
}

footer {
  padding: 66px 0 27px;
  background: #0b1025;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 78px;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 24px;
  color: #aeb5c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-grid strong {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-bottom {
  color: #9da5b9;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #30374c;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero-grid,
  .split-intro,
  .section-heading-row,
  .ar-grid,
  .control-grid,
  .integration-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid {
    padding-top: 58px;
  }

  .product-frame {
    max-width: 720px;
  }

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

  .flow-grid,
  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .flow-grid > div + div,
  .assurance-strip > * + * {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .principle:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .architecture-step:nth-child(3) {
    border-left: 1px solid var(--rule);
  }

  .ar-copy {
    position: static;
  }

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

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

  .resource-grid article {
    min-height: 260px;
  }

  .resources .section-heading-row .text-link {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .utility-inner > span,
  .utility-inner a:first-child {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .nav-inner {
    height: 66px;
  }

  .brand img {
    width: 72px;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

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

  .workspace-nav {
    display: none;
  }

  .workspace-main {
    padding: 18px 14px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .product-titlebar > div span:last-child,
  .date-label {
    display: none;
  }

  .principle-grid,
  .architecture,
  .solution-grid,
  .integration-row {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle:nth-child(3),
  .architecture-step,
  .architecture-step:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .architecture-step,
  .architecture-step:nth-child(3) {
    border-left-color: var(--rule);
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .contact h2 {
    font-size: 36px;
  }

  .article-view {
    padding: 72px 0 80px;
  }

  .article-topbar {
    margin-bottom: 46px;
  }

  .article-header h1 {
    font-size: 42px;
  }

  .article-lede {
    font-size: 18px;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .article-body p,
  .article-body li {
    font-size: 15px;
  }

  .solution-card {
    min-height: 220px;
  }

  .user-message,
  .system-message {
    margin-left: 14px;
    margin-right: 14px;
  }

  .document-row,
  .workflow-result {
    margin-left: 14px;
    margin-right: 14px;
  }

  .workflow-result {
    grid-template-columns: 1fr;
  }

  .workflow-result div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .control-list > div {
    grid-template-columns: 34px 1fr;
    padding: 15px 0;
  }

  .control-list p {
    grid-column: 2;
  }

  .integration-row div {
    min-height: 90px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}
