:root {
  --ink: #111827;
  --ink-soft: #263241;
  --muted: #6f7b88;
  --paper: #f5f6f2;
  --paper-warm: #eceee8;
  --white: #ffffff;
  --line: #dfe3dc;
  --teal: #38b996;
  --teal-dark: #11816a;
  --blue: #5579d6;
  --orange: #e59a45;
  --purple: #927bd2;
  --max-width: 1180px;
  --radius: 10px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 124px 0;
}

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

.section-paper {
  background: #fbfbf8;
}

.section-ink {
  color: #eef3f0;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  color: var(--ink);
  background: rgba(245, 246, 242, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 9px;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #556270;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a,
.mobile-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 12px 24px rgba(17, 129, 106, 0.22);
}

.button-primary:hover {
  background: #0d6f5c;
}

.button-outline {
  color: var(--ink);
  border-color: #bcc5c0;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.76rem;
}

.button-light-outline {
  color: #eff7f3;
  border-color: rgba(239, 247, 243, 0.35);
  background: transparent;
}

.button-light-outline:hover {
  color: var(--ink);
  background: #eff7f3;
}

.button-contrast {
  color: var(--ink);
  background: #f1f5ef;
  box-shadow: none;
}

.button-contrast:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -5%;
  width: 46%;
  height: 1px;
  background: var(--teal);
  content: "";
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: #9bb1a7;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--teal-dark);
}

.eyebrow-dot,
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(56, 185, 150, 0.12);
}

.hero h1,
.section-heading h2,
.workflow-copy h2,
.cta-inner h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  font-weight: 850;
}

.hero h1 em,
.section-heading h2 em,
.cta-inner h2 em {
  color: var(--teal-dark);
  font-style: normal;
}

.hero-lede {
  max-width: 530px;
  margin: 28px 0 0;
  color: #5c6874;
  font-size: 1.06rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 33px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #255a4d;
  font-size: 0.86rem;
  font-weight: 850;
}

.text-link:hover {
  color: var(--teal-dark);
}

.text-link-dark {
  color: var(--ink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 44px;
  color: #7b878c;
  font-size: 0.71rem;
  font-weight: 750;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.status-dot-warm {
  background: var(--orange);
}

.status-dot-blue {
  background: var(--blue);
}

.hero-console {
  position: relative;
  min-height: 584px;
  padding: 24px 0 0 16px;
}

.console-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid #334454;
  border-radius: 11px;
  background: #192331;
  box-shadow: 0 35px 70px rgba(17, 24, 39, 0.24);
  transform: rotate(1.4deg);
}

.console-bar {
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0 16px;
  color: #80909d;
  border-bottom: 1px solid rgba(232, 241, 237, 0.08);
  font-size: 0.62rem;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-right: 17px;
}

.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #526274;
}

.window-dots i:first-child {
  background: #e29a63;
}

.console-url {
  flex: 1;
  letter-spacing: 0.08em;
}

.console-lock {
  color: var(--teal);
  font-size: 0.55rem;
}

.console-body {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 500px;
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  background: #151e29;
  border-right: 1px solid rgba(232, 241, 237, 0.07);
}

.console-side-logo {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #16231f;
  background: var(--teal);
  border-radius: 6px;
  font-size: 0.5rem;
  font-weight: 900;
}

.console-side-item {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #65798b;
  font-size: 0.82rem;
}

.console-side-item.active {
  color: #d9f4ea;
  border-radius: 6px;
  background: rgba(56, 185, 150, 0.14);
}

.console-main {
  min-width: 0;
  padding: 25px 26px 23px;
  color: #e9f0ed;
  background: #1c2734;
}

.console-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.console-heading small,
.console-heading strong {
  display: block;
}

.console-heading small {
  margin-bottom: 5px;
  color: #718391;
  font-size: 0.51rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.console-heading strong {
  color: #f2f8f4;
  font-size: 1rem;
}

.console-date {
  padding: 5px 9px;
  color: #a7b6bd;
  border: 1px solid #3b4a58;
  border-radius: 5px;
  font-size: 0.56rem;
}

.console-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 21px;
}

.console-stats > div {
  padding: 15px;
  border: 1px solid #324353;
  border-radius: 7px;
  background: #202f3d;
}

.console-stats span,
.console-stats strong,
.console-stats small {
  display: block;
}

.console-stats span {
  color: #80909e;
  font-size: 0.59rem;
}

.console-stats strong {
  margin-top: 4px;
  color: #f0f7f4;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.console-stats small {
  margin-top: 5px;
  font-size: 0.57rem;
  font-weight: 800;
}

.console-stats .up {
  color: var(--teal);
}

.console-stats .steady {
  color: #e1a464;
}

.console-chart {
  margin-top: 12px;
  padding: 15px 15px 12px;
  border: 1px solid #324353;
  border-radius: 7px;
  background: #202f3d;
}

.chart-label,
.chart-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #82919c;
  font-size: 0.56rem;
}

.chart-label span:first-child {
  color: #dbe9e2;
  font-weight: 750;
}

.console-chart svg {
  display: block;
  width: 100%;
  height: 115px;
  margin: 7px 0 0;
}

.chart-axis {
  color: #657684;
}

.console-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.model-list,
.console-code {
  min-width: 0;
  padding: 15px;
  border: 1px solid #324353;
  border-radius: 7px;
  background: #202f3d;
}

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: #dbe9e2;
  font-size: 0.59rem;
  font-weight: 750;
}

.mini-heading a {
  color: var(--teal);
  font-size: 0.52rem;
}

.model-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: #a8b6bb;
  font-size: 0.56rem;
}

.model-row b {
  margin-left: auto;
  color: #e1ece7;
  font-weight: 700;
}

.model-icon {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 4px;
  font-size: 0.5rem;
  font-weight: 900;
}

.model-icon-green {
  color: #b7f2dd;
  background: #276956;
}

.model-icon-purple {
  color: #d9cbff;
  background: #5b4a91;
}

.model-icon-orange {
  color: #ffe0b7;
  background: #82572f;
}

.live-pill {
  padding: 3px 5px;
  color: #9cf2d2;
  border: 1px solid rgba(56, 185, 150, 0.32);
  border-radius: 3px;
  font-size: 0.46rem;
  font-style: normal;
  letter-spacing: 0.06em;
}

.console-code code {
  display: block;
  overflow: hidden;
  margin-top: 9px;
  color: #9eb0bb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.52rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-green {
  color: #66d9b4;
}

.code-gray {
  color: #718391;
}

.hero-note {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  color: #27453d;
  border: 1px solid rgba(56, 185, 150, 0.25);
  border-radius: 6px;
  background: rgba(238, 248, 241, 0.92);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.1);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.hero-note-one {
  top: 92px;
  left: -5px;
}

.hero-note-two {
  right: -6px;
  bottom: 73px;
  color: #2b416e;
  border-color: rgba(85, 121, 214, 0.25);
  background: rgba(241, 244, 253, 0.96);
}

.signal-strip {
  color: #dce7e1;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
}

.signal-grid p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.signal-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: #86959e;
  font-size: 0.68rem;
}

.signal-items span {
  padding-left: 15px;
  border-left: 1px solid #3d4a55;
}

.section-heading {
  max-width: 680px;
}

.section-heading h2,
.workflow-copy h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
  font-weight: 820;
}

.section-light .section-heading h2,
.section-paper .section-heading h2,
.workflow-copy h2 {
  color: var(--ink);
}

.section-heading h2 span,
.workflow-copy h2 span {
  color: var(--teal-dark);
}

.section-heading > p:last-child,
.workflow-copy > p {
  max-width: 595px;
  margin: 24px 0 0;
  color: #9cadb3;
  font-size: 0.98rem;
  line-height: 1.85;
}

.section-light .section-heading > p:last-child,
.section-paper .section-heading > p:last-child,
.workflow-copy > p {
  color: #66727d;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 80px;
  max-width: none;
}

.split-heading > p {
  margin-bottom: 4px !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 63px;
}

.feature-card {
  min-height: 287px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card-dark {
  color: #edf7f1;
  border-color: #273747;
  background: #203040;
}

.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-number {
  color: #a2adb0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.65rem;
  font-weight: 800;
}

.feature-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 850;
}

.feature-icon-teal {
  color: #178a6e;
  background: #d5f2e8;
}

.feature-icon-blue {
  color: #4b67b6;
  background: #dfe6fc;
}

.feature-icon-orange {
  color: #b46a1d;
  background: #f9e6cc;
}

.feature-icon-white {
  color: #d9f4e8;
  background: rgba(217, 244, 232, 0.13);
}

.feature-card h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.feature-card-dark h3 {
  color: #f1f8f4;
}

.feature-card p {
  max-width: 390px;
  margin: 9px 0 0;
  color: #717d83;
  font-size: 0.82rem;
  line-height: 1.8;
}

.feature-card-dark p {
  color: #a5b5ba;
}

.feature-code {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 11px 13px;
  color: #80909a;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f3f5f0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.64rem;
}

.feature-code span {
  color: var(--teal-dark);
  font-weight: 850;
}

.feature-code i {
  margin-left: auto;
  color: #a8b5b4;
  font-style: normal;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 27px;
}

.feature-tags span {
  padding: 5px 8px;
  color: #586a9f;
  border: 1px solid #dce4fb;
  border-radius: 4px;
  background: #f0f3fd;
  font-size: 0.62rem;
  font-weight: 800;
}

.feature-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 40px;
  margin-top: 21px;
}

.feature-bars i {
  display: block;
  flex: 1;
  min-width: 6px;
  border-radius: 2px 2px 0 0;
  background: #e7b477;
}

.feature-bars i:nth-child(even) {
  background: #65c7a5;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: #b8f0d7;
  font-size: 0.77rem;
  font-weight: 850;
}

.model-board {
  margin-top: 58px;
  border-top: 1px solid #3a4956;
}

.model-board-head,
.model-board-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) minmax(220px, 1fr) minmax(135px, 0.55fr);
  align-items: center;
  gap: 30px;
}

.model-board-head {
  min-height: 42px;
  color: #82929c;
  border-bottom: 1px solid #3a4956;
  font-size: 0.64rem;
  font-weight: 800;
}

.model-board-row {
  min-height: 90px;
  border-bottom: 1px solid #3a4956;
}

.model-board-row > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.model-board-row strong {
  color: #edf5f1;
  font-size: 0.91rem;
}

.model-board-row p,
.board-note {
  margin: 0;
  color: #98a8ad;
  font-size: 0.75rem;
}

.board-note {
  color: #d3e5dd;
}

.board-badge {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  font-size: 0.58rem;
  font-weight: 900;
}

.board-badge-green {
  color: #b0f0d4;
  background: #226950;
}

.board-badge-purple {
  color: #ddceff;
  background: #594883;
}

.board-badge-orange {
  color: #ffdcae;
  background: #80552b;
}

.board-badge-blue {
  color: #c6d4ff;
  background: #3d5e99;
}

.model-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  color: #8d9ca1;
  font-size: 0.73rem;
}

.workflow-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.05fr);
  gap: 100px;
}

.steps {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 40px 0 30px;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 15px;
}

.steps li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--teal-dark);
  border: 1px solid #b8dfd2;
  border-radius: 50%;
  font-size: 0.71rem;
  font-weight: 900;
}

.steps strong {
  font-size: 0.86rem;
}

.steps p {
  margin: 3px 0 0;
  color: #718087;
  font-size: 0.76rem;
  line-height: 1.65;
}

.code-panel {
  overflow: hidden;
  border: 1px solid #344454;
  border-radius: 10px;
  color: #dce8e2;
  background: #17222f;
  box-shadow: var(--shadow);
}

.code-panel-head,
.code-panel-foot {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  color: #8496a1;
  border-bottom: 1px solid #2d3d4b;
  font-size: 0.61rem;
}

.code-panel-head > span:first-child {
  display: flex;
  gap: 5px;
  margin-right: 4px;
}

.code-panel-head > span:first-child i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #516272;
}

.code-panel-head > span:first-child i:first-child {
  background: #e09a63;
}

.copy-button {
  min-width: 42px;
  padding: 5px 7px;
  margin-left: auto;
  color: #a9f1d8;
  border: 1px solid rgba(56, 185, 150, 0.36);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 0.58rem;
}

.copy-button:hover {
  background: rgba(56, 185, 150, 0.1);
}

.code-panel pre {
  overflow: auto;
  min-height: 311px;
  margin: 0;
  padding: 29px 28px;
  background: #192633;
}

.code-panel code {
  color: #c4d5d0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 2;
}

.code-comment {
  color: #708a8a;
}

.code-string {
  color: #e7bc83;
}

.code-panel-foot {
  justify-content: space-between;
  border-top: 1px solid #2d3d4b;
  border-bottom: 0;
}

.code-panel-foot span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b0e9d2;
}

.centered-heading {
  max-width: none;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 48px;
}

.faq-grid details {
  border-top: 1px solid var(--line);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary span {
  color: var(--teal-dark);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-grid details[open] summary span {
  transform: rotate(45deg);
}

.faq-grid details p {
  max-width: 500px;
  padding: 0 45px 22px 4px;
  margin: 0;
  color: #6d7980;
  font-size: 0.82rem;
  line-height: 1.8;
}

.center-action {
  margin-top: 35px;
  text-align: center;
}

.cta-section {
  color: #f1f8f4;
  background: #1c4d43;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 103px;
  padding-bottom: 103px;
}

.cta-inner h2 {
  color: #f1f8f4;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  font-weight: 820;
}

.cta-inner h2 em {
  color: #9ce7ca;
}

.cta-action {
  max-width: 300px;
}

.cta-action p {
  margin: 0 0 22px;
  color: #c1ded3;
  font-size: 0.83rem;
  line-height: 1.8;
}

.site-footer {
  color: #a7b4b7;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  padding-top: 67px;
  padding-bottom: 60px;
}

.brand-footer {
  color: #eff6f1;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: #eff6f1;
}

.brand-footer .brand-copy small {
  color: #839198;
}

.footer-brand > p {
  max-width: 280px;
  margin: 23px 0 0;
  color: #7f8c92;
  font-size: 0.75rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #e1ebe7;
  font-size: 0.71rem;
}

.footer-links a {
  color: #89969b;
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 17px;
  padding-bottom: 22px;
  color: #6e7b82;
  border-top: 1px solid #2d3942;
  font-size: 0.64rem;
}

@media (max-width: 1000px) {
  .hero-grid,
  .workflow-grid {
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.3rem);
  }

  .hero-console {
    min-height: 530px;
  }

  .console-main {
    padding-right: 18px;
    padding-left: 18px;
  }

  .split-heading {
    gap: 40px;
  }

  .workflow-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 34px), var(--max-width));
  }

  .section {
    padding: 82px 0;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav {
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  .mobile-nav.is-open {
    max-height: 300px;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .mobile-nav a {
    padding: 11px 0;
    color: #556270;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    font-size: 0.83rem;
    font-weight: 800;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid,
  .workflow-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 12vw, 4.8rem);
  }

  .hero-lede {
    font-size: 0.96rem;
  }

  .hero-console {
    min-height: auto;
    padding: 0 5px 27px;
  }

  .console-window {
    transform: none;
  }

  .hero-note-one {
    top: -14px;
    left: -2px;
  }

  .hero-note-two {
    right: -1px;
    bottom: 0;
  }

  .signal-grid {
    display: grid;
    gap: 11px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .signal-grid p {
    font-size: 0.79rem;
  }

  .signal-items {
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .signal-items span {
    padding-left: 0;
    border-left: 0;
  }

  .section-heading h2,
  .workflow-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .split-heading > p {
    margin-top: 0 !important;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 250px;
  }

  .model-board {
    margin-top: 38px;
  }

  .model-board-head {
    display: none;
  }

  .model-board-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
    padding: 19px 0;
  }

  .model-board-row p,
  .board-note {
    margin-left: 47px;
  }

  .model-footnote {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .workflow-grid {
    gap: 54px;
  }

  .code-panel pre {
    min-height: 0;
    padding: 21px 17px;
  }

  .code-panel code {
    font-size: 0.65rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .cta-inner {
    display: grid;
    gap: 35px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .cta-inner h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 55px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-bottom {
    display: grid;
    gap: 7px;
  }
}

@media (max-width: 470px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 68px;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .console-body {
    grid-template-columns: 41px minmax(0, 1fr);
  }

  .console-sidebar {
    gap: 18px;
  }

  .console-main {
    padding: 19px 11px 15px;
  }

  .console-date {
    display: none;
  }

  .console-stats {
    gap: 7px;
  }

  .console-stats > div,
  .console-chart,
  .model-list,
  .console-code {
    padding: 10px;
  }

  .console-stats strong {
    font-size: 1.04rem;
  }

  .console-bottom {
    grid-template-columns: 1fr;
  }

  .console-chart svg {
    height: 90px;
  }

  .hero-note {
    padding: 7px 9px;
    font-size: 0.55rem;
  }

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

  .button {
    width: 100%;
  }

  .feature-card {
    padding: 20px;
  }

  .faq-grid summary {
    font-size: 0.86rem;
  }

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

/* Practical product refresh */
:root {
  --paper: #f7f8f5;
  --paper-warm: #eef1eb;
  --ink: #151c26;
  --muted: #65717b;
  --line: #e0e5dd;
  --teal: #2aa884;
  --teal-dark: #13745f;
  --blue: #5571b8;
  --orange: #c78543;
  --purple: #7867af;
  --shadow: 0 14px 34px rgba(24, 31, 42, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 252, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 68px;
}

.brand-mark {
  border-radius: 8px;
}

.site-nav {
  gap: 24px;
}

.button {
  min-height: 44px;
  border-radius: 6px;
  box-shadow: none;
}

.hero {
  padding-top: 84px;
  padding-bottom: 88px;
  background: #f7f8f5;
}

.hero::before {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.92fr);
  gap: 58px;
}

.hero h1 {
  max-width: 640px;
  font-size: 4.2rem;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 570px;
  margin-top: 23px;
  color: #52616b;
  font-size: 1rem;
  line-height: 1.86;
}

.hero-actions {
  margin-top: 30px;
}

.hero-trust {
  margin-top: 36px;
}

.hero-console {
  min-height: 0;
  padding: 0;
}

.console-window {
  border-color: #dce4dc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(24, 31, 42, 0.11);
  transform: none;
}

.console-bar {
  height: 42px;
  color: #75828b;
  border-bottom-color: #e3e8e0;
  background: #f6f8f5;
}

.window-dots i {
  background: #c2cbc4;
}

.console-lock {
  color: var(--teal-dark);
}

.console-body {
  min-height: 405px;
  grid-template-columns: 48px minmax(0, 1fr);
}

.console-sidebar {
  gap: 18px;
  background: #f7f9f6;
  border-right-color: #e2e8e0;
}

.console-side-logo {
  color: #ffffff;
  background: var(--teal-dark);
}

.console-side-item {
  color: #89979d;
}

.console-side-item.active {
  color: var(--teal-dark);
  background: #e4f3ec;
}

.console-main {
  color: var(--ink);
  background: #ffffff;
}

.console-heading small,
.console-stats span,
.chart-label,
.chart-axis,
.model-row,
.console-code code {
  color: #667781;
}

.console-heading strong,
.console-stats strong,
.chart-label span:first-child,
.mini-heading,
.model-row b {
  color: var(--ink);
}

.console-date,
.console-stats > div,
.console-chart,
.console-checklist,
.model-list,
.console-code {
  border-color: #dfe7df;
  background: #f8faf7;
}

.console-stats strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.console-chart svg {
  height: 96px;
}

.console-checklist {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid #324353;
  border-radius: 7px;
}

.console-checklist .mini-heading {
  margin-bottom: 11px;
}

.console-step {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px 11px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #e5ebe4;
}

.console-step:first-of-type {
  border-top: 0;
}

.console-step > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #ffffff;
  background: var(--teal-dark);
  border-radius: 5px;
  font-size: 0.63rem;
  font-weight: 850;
}

.console-step strong,
.console-step small {
  display: block;
}

.console-step strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.console-step strong,
.console-step small {
  grid-column: 2;
}


.console-step small {
  margin-top: 3px;
  color: #667781;
  font-size: 0.62rem;
  line-height: 1.55;
}

.hero-note {
  display: none;
}

.signal-strip {
  background: #17202b;
}

.section {
  padding: 96px 0;
}

.section-heading h2,
.workflow-copy h2,
.cta-inner h2 {
  letter-spacing: -0.03em;
}

.feature-card,
.article-table,
.check-list,
.article-related a {
  border-radius: 8px;
}

.feature-card {
  background: #ffffff;
}

.feature-card-dark {
  background: #1f2d38;
}

.footer-bottom {
  align-items: center;
}

.today-ip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8d9aa1;
}

.today-ip strong {
  color: #dce8e2;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    max-width: 12.5em;
    font-size: 2.65rem;
    letter-spacing: 0;
  }

  .hero-lede {
    font-size: 0.93rem;
  }

  .hero-console {
    padding-bottom: 0;
  }

  .console-window {
    max-width: 100%;
  }

  .console-body {
    min-height: auto;
  }

  .console-stats,
  .console-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 470px) {
  .hero h1 {
    max-width: 100%;
    font-size: 2.18rem;
  }

  .hero-lede {
    max-width: 34ch;
  }

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

  .console-sidebar {
    display: none;
  }

  .chart-axis span:nth-child(even) {
    display: none;
  }
}

.article-hero {
  color: #edf7f1;
  background: var(--ink);
  border-bottom: 1px solid #2e3b46;
}

.article-hero .container {
  padding-top: 92px;
  padding-bottom: 95px;
}

.article-hero-compact .container {
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 53px;
  color: #83939a;
  font-size: 0.68rem;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: #b4eed8;
}

.article-hero h1 {
  max-width: 16ch;
  margin: 0;
  color: #f2f8f4;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.article-hero h1 em {
  color: #9ce7ca;
  font-style: normal;
}

.article-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: #afc0c3;
  font-size: 1rem;
  line-height: 1.9;
}

.article-meta {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  color: #829299;
  font-size: 0.7rem;
  font-weight: 750;
}

.article-layout {
  padding-top: 78px;
}

.article-columns {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(180px, 0.33fr) minmax(0, 1fr);
  gap: 75px;
}

.article-aside {
  position: sticky;
  top: 96px;
}

.aside-card {
  display: grid;
  gap: 13px;
  padding: 20px 0;
  border-top: 2px solid var(--teal-dark);
  border-bottom: 1px solid var(--line);
}

.aside-label {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.aside-card a {
  color: #6f7c83;
  font-size: 0.76rem;
  font-weight: 700;
}

.aside-card a:hover {
  color: var(--teal-dark);
}

.aside-cta {
  display: grid;
  gap: 8px;
  padding: 17px;
  margin-top: 25px;
  color: #d9f4e8;
  border-radius: 7px;
  background: #1d4b42;
}

.aside-cta strong {
  font-size: 0.79rem;
}

.aside-cta span {
  color: #a6d2c2;
  font-size: 0.67rem;
  line-height: 1.6;
}

.article-content {
  max-width: 760px;
  color: #56636b;
}

.article-content > p {
  margin: 0 0 21px;
  font-size: 0.96rem;
  line-height: 2;
}

.article-content > .article-intro {
  margin-bottom: 58px;
  color: #25343d;
  font-size: 1.13rem;
  font-weight: 650;
  line-height: 1.85;
}

.article-content h2 {
  margin: 66px 0 19px;
  color: var(--ink);
  font-size: 1.72rem;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.article-callout {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  margin: 27px 0 34px;
  color: #42685b;
  border-left: 3px solid var(--teal);
  background: #eaf5ee;
  font-size: 0.83rem;
  line-height: 1.8;
}

.article-callout strong {
  flex: 0 0 auto;
  color: #176b57;
}

.article-points {
  display: grid;
  gap: 22px;
  margin: 28px 0 36px;
}

.article-points > div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.article-points > div > span {
  color: var(--teal-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.67rem;
  font-weight: 900;
}

.article-points p {
  margin: 5px 0 0;
  color: #6f7c82;
  font-size: 0.81rem;
  line-height: 1.8;
}

.article-steps {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 28px 0 38px;
  counter-reset: article-step;
  list-style: none;
}

.article-steps li {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.article-steps strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.article-steps span {
  color: #717e84;
  font-size: 0.8rem;
  line-height: 1.75;
}

.article-table {
  overflow: hidden;
  margin: 27px 0 39px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfbf8;
}

.article-table > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1.45fr);
  gap: 22px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.article-table > div:last-child {
  border-bottom: 0;
}

.article-table > div:first-child {
  color: #62716f;
  background: #eef1eb;
  font-size: 0.67rem;
  font-weight: 900;
}

.article-table span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.article-table span:last-child {
  color: #6e7d81;
  line-height: 1.65;
}

.article-end-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 23px;
  margin-top: 54px;
  color: #e8f4ee;
  border-radius: 8px;
  background: #203f3b;
}

.article-end-cta div {
  display: grid;
  gap: 5px;
}

.article-end-cta strong {
  font-size: 0.92rem;
}

.article-end-cta span {
  color: #a8cec0;
  font-size: 0.72rem;
}

.article-end-cta .button {
  flex: 0 0 auto;
}

.article-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.article-related a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 15px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfbf8;
}

.article-related a:hover {
  border-color: #b9d8cc;
}

.article-related span {
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-related strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.article-related b {
  grid-row: span 2;
  align-self: center;
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 400;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  margin: 27px 0 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfbf8;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #56656a;
  font-size: 0.82rem;
}

.check-list i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #126d57;
  border-radius: 50%;
  background: #d9f1e6;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
}

.article-code-panel {
  margin: 27px 0 29px;
}

.article-code-panel pre {
  min-height: 0;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 105px;
  align-items: start;
}

.faq-page-intro {
  position: sticky;
  top: 100px;
}

.faq-page-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.faq-page-intro h2 span {
  color: var(--teal-dark);
}

.faq-page-intro > p:not(.eyebrow) {
  max-width: 300px;
  margin: 24px 0 29px;
  color: #6d7a7f;
  font-size: 0.84rem;
  line-height: 1.85;
}

.faq-page-list {
  border-top: 1px solid var(--line);
}

.faq-page-list details {
  border-bottom: 1px solid var(--line);
}

.faq-page-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 3px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 800;
  list-style: none;
}

.faq-page-list summary::-webkit-details-marker {
  display: none;
}

.faq-page-list summary span {
  color: var(--teal-dark);
  font-size: 1.28rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-page-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-page-list details p {
  max-width: 650px;
  padding: 0 45px 25px 3px;
  margin: 0;
  color: #6b787d;
  font-size: 0.83rem;
  line-height: 1.9;
}

@media (max-width: 780px) {
  .article-hero .container {
    padding-top: 64px;
    padding-bottom: 65px;
  }

  .article-hero-compact .container {
    padding-bottom: 58px;
  }

  .breadcrumb {
    margin-bottom: 38px;
  }

  .article-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .article-lede {
    font-size: 0.91rem;
  }

  .article-layout {
    padding-top: 58px;
  }

  .article-columns,
  .faq-page-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-aside,
  .faq-page-intro {
    position: static;
  }

  .aside-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aside-label {
    grid-column: 1 / -1;
  }

  .aside-cta {
    margin-top: 17px;
  }

  .article-content > .article-intro {
    margin-bottom: 45px;
    font-size: 1rem;
  }

  .article-content h2 {
    margin-top: 48px;
    font-size: 1.5rem;
  }

  .article-steps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .article-end-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-end-cta .button,
  .faq-page-intro .button {
    width: auto;
  }

  .article-related {
    grid-template-columns: 1fr;
  }

  .faq-page-intro h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }
}

@media (max-width: 470px) {
  .aside-card {
    grid-template-columns: 1fr;
  }

  .aside-label {
    grid-column: auto;
  }

  .article-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq-page-intro .button,
  .article-end-cta .button {
    width: 100%;
  }
}

/* Final mobile polish */
@media (max-width: 780px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: auto;
    margin-right: 18px;
    margin-left: 18px;
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy,
  .hero-grid > *,
  .console-main,
  .console-stats > div,
  .console-checklist,
  .model-list,
  .console-code {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.46rem;
    line-height: 1.14;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    display: block;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    white-space: normal;
  }

  .hero-console,
  .console-window {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-console {
    padding-right: 0;
    padding-left: 0;
  }

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

  .console-sidebar {
    display: none;
  }

  .console-main {
    padding: 20px 16px 18px;
  }

  .console-stats,
  .console-bottom {
    grid-template-columns: 1fr;
  }

  .console-step {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .console-step strong,
  .console-step small {
    min-width: 0;
    grid-column: 2;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 470px) {
  .container {
    margin-right: 16px;
    margin-left: 16px;
  }

  .hero h1 {
    font-size: 2.02rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-width: 178px;
  }

  .console-bar {
    padding-right: 12px;
    padding-left: 12px;
  }

  .console-url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .console-heading {
    gap: 10px;
  }

  .console-date {
    display: none;
  }
}

