:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #040b14;
  --surface: #0d1b2d;
  --surface-strong: #13243a;
  --surface-soft: #102035;
  --line: #28405e;
  --line-soft: rgb(94 127 164 / 26%);
  --text: #f4f7fb;
  --muted: #a8b6c8;
  --gold: #d9ae62;
  --gold-soft: #f0d7a6;
  --success: #56c596;
  --warning: #f2bd63;
  --danger: #ef7b79;
  --radius: 18px;
  --radius-large: 28px;
  --shadow: 0 24px 60px rgb(0 0 0 / 28%);
  --content: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgb(40 75 114 / 24%), transparent 26rem),
    radial-gradient(circle at 12% 38%, rgb(217 174 98 / 8%), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-size: 16px;
  line-height: 1.65;
}

body.drawer-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .24;
  background-image:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #07111f;
  background: var(--gold-soft);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.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;
}

.demo-banner {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 18px;
  color: #ecd5aa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  background: #132239;
  border-bottom: 1px solid rgb(217 174 98 / 26%);
}

.demo-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(217 174 98 / 10%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--content));
  min-height: 74px;
  margin: 0 auto;
  background: rgb(7 17 31 / 82%);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 1px;
  content: "";
  background: var(--line-soft);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-width: max-content;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .06em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: #07111f;
  font-weight: 850;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), #b7843c);
  border-radius: 11px;
}

.site-header nav {
  display: flex;
  gap: clamp(15px, 3vw, 34px);
  align-items: center;
  overflow-x: auto;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  scrollbar-width: none;
}

.site-header nav::-webkit-scrollbar {
  display: none;
}

.site-header nav a {
  position: relative;
  padding: 25px 0 22px;
  transition: color .2s ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--text);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero,
.section-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - 112px);
  padding-block: 80px 96px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 14px;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

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

.button-primary {
  color: #0a1422;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 30px rgb(217 174 98 / 18%);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f6e4c2, #e2b96f);
}

.button-ghost {
  color: var(--text);
  background: rgb(255 255 255 / 3%);
  border-color: var(--line);
}

.button-ghost:hover {
  background: rgb(255 255 255 / 7%);
  border-color: #45698f;
}

.button-compact {
  align-self: end;
  min-height: 46px;
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 0;
}

.hero-facts div {
  min-width: 110px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.hero-facts dt {
  color: var(--gold-soft);
  font-size: 22px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: saturate(.88);
  border: 1px solid rgb(217 174 98 / 16%);
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.visual-glow {
  position: absolute;
  inset: 20% -8% -4% 18%;
  z-index: 0;
  background: rgb(64 104 146 / 28%);
  filter: blur(55px);
  border-radius: 50%;
}

.floating-status {
  position: absolute;
  right: -18px;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 15px;
  color: #dbe6f2;
  font-size: 12px;
  font-weight: 700;
  background: rgb(9 22 37 / 92%);
  border: 1px solid #365674;
  border-radius: 13px;
  box-shadow: 0 14px 34px rgb(0 0 0 / 35%);
  backdrop-filter: blur(12px);
}

.status-pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(86 197 150 / 12%);
}

.section-shell {
  padding-block: 104px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading-split {
  display: flex;
  max-width: none;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
}

.section-heading-split > p {
  max-width: 410px;
  margin-bottom: 5px;
}

.section-heading h2,
.safety-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.15;
}

.section-heading > p:last-child,
.section-heading-split > p,
.safety-panel > div > p:last-child {
  color: var(--muted);
}

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

.capability-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 5%), transparent 65%),
    var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition:
    border-color .25s ease,
    transform .25s ease;
}

.capability-card::after {
  position: absolute;
  top: 0;
  left: 28px;
  width: 54px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.capability-card:hover {
  border-color: rgb(217 174 98 / 42%);
  transform: translateY(-4px);
}

.card-index {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
}

.capability-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-section {
  width: min(calc(100% - 24px), 1260px);
}

.demo-section > .section-heading {
  width: min(calc(100% - 16px), var(--content));
  margin-inline: auto;
}

.workbench {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgb(217 174 98 / 8%), transparent 28rem),
    #0a1728;
  border: 1px solid #294765;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.workbench-topbar {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 25px 28px;
  background: rgb(255 255 255 / 2%);
  border-bottom: 1px solid var(--line-soft);
}

.workbench-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.workbench-topbar h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.environment-pill {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 7px 11px;
  color: #a9e1c9;
  font-size: 11px;
  font-weight: 750;
  background: rgb(86 197 150 / 8%);
  border: 1px solid rgb(86 197 150 / 25%);
  border-radius: 999px;
}

.environment-pill span {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 28px 0;
}

.summary-card {
  padding: 18px;
  background: rgb(255 255 255 / 3%);
  border: 1px solid var(--line-soft);
  border-radius: 15px;
}

.summary-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
}

.summary-card strong {
  font-size: 26px;
  font-weight: 750;
}

.summary-card[data-tone="success"] strong {
  color: var(--success);
}

.summary-card[data-tone="warning"] strong {
  color: var(--warning);
}

.summary-card[data-tone="muted"] strong {
  color: #bdd0e5;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr auto;
  gap: 13px;
  align-items: end;
  padding: 22px 28px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #c6d3e1;
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--text);
  background: #0b192a;
  border: 1px solid #2a4765;
  border-radius: 12px;
  outline: none;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.field input::placeholder {
  color: #6f839a;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(217 174 98 / 12%);
}

.table-shell {
  margin-inline: 28px;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: rgb(4 13 24 / 45%);
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

th {
  color: #8fa3b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgb(255 255 255 / 3%);
}

td {
  color: #dbe5ef;
  font-size: 13px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background .18s ease;
}

tbody tr:hover {
  background: rgb(255 255 255 / 3%);
}

.item-title {
  display: flex;
  gap: 10px;
  align-items: center;
}

.item-token {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  place-items: center;
  background: #142942;
  border: 1px solid #315372;
  border-radius: 10px;
}

.item-title strong,
.item-title small {
  display: block;
}

.item-title small {
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-width: max-content;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid;
  border-radius: 999px;
}

.status-badge::before {
  width: 6px;
  height: 6px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.status-ready {
  color: #77d6ae;
  background: rgb(86 197 150 / 8%);
  border-color: rgb(86 197 150 / 22%);
}

.status-locked {
  color: #f1c270;
  background: rgb(242 189 99 / 8%);
  border-color: rgb(242 189 99 / 24%);
}

.status-pending {
  color: #a9bed5;
  background: rgb(169 190 213 / 7%);
  border-color: rgb(169 190 213 / 20%);
}

.lock-info {
  max-width: 240px;
}

.lock-info strong {
  display: block;
  color: #f1c270;
  font-size: 11px;
}

.lock-info span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-lock {
  color: #60758c;
}

.table-action {
  padding: 7px 10px;
  cursor: pointer;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 750;
  background: rgb(217 174 98 / 7%);
  border: 1px solid rgb(217 174 98 / 23%);
  border-radius: 9px;
}

.empty-state {
  padding: 36px 20px;
  color: var(--muted);
  text-align: center;
}

.workbench-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 28px 27px;
}

.workbench-footer > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.workbench-footer > .button {
  justify-self: end;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pagination button {
  display: grid;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--muted);
  background: #0c1c2f;
  border: 1px solid var(--line);
  border-radius: 9px;
  place-items: center;
}

.pagination button[aria-current="page"] {
  color: #0b1522;
  font-weight: 850;
  background: var(--gold);
  border-color: var(--gold);
}

.workflow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-list::before {
  position: absolute;
  top: 32px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
}

.workflow-list li {
  padding-inline: 10px;
  text-align: center;
}

.workflow-list span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
  background: #0f2034;
  border: 1px solid #34516f;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--bg-deep);
}

.workflow-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.safety-section {
  padding-bottom: 130px;
}

.safety-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  background:
    radial-gradient(circle at 0 0, rgb(217 174 98 / 12%), transparent 28rem),
    linear-gradient(145deg, #132640, #0a1727);
  border: 1px solid #34516f;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.safety-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.safety-list li {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 0;
  color: #d7e1eb;
  border-bottom: 1px solid var(--line-soft);
}

.safety-list li:last-child {
  border-bottom: 0;
}

.safety-list span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: #0b1725;
  font-size: 12px;
  font-weight: 900;
  place-items: center;
  background: var(--success);
  border-radius: 50%;
}

.site-footer {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--content));
  min-height: 100px;
  margin: 0 auto;
  color: #71849a;
  font-size: 11px;
  border-top: 1px solid var(--line-soft);
}

.site-footer p {
  margin-bottom: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgb(1 6 12 / 68%);
  backdrop-filter: blur(5px);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(440px, 92vw);
  height: 100vh;
  padding: 76px 34px 34px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0, rgb(217 174 98 / 10%), transparent 22rem),
    #0b192a;
  border-left: 1px solid #365575;
  box-shadow: -30px 0 70px rgb(0 0 0 / 40%);
  transform: translateX(104%);
  transition: transform .28s ease;
}

.drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: var(--text);
  font-size: 23px;
  line-height: 1;
  background: rgb(255 255 255 / 4%);
  border: 1px solid var(--line);
  border-radius: 11px;
  place-items: center;
}

.drawer h2 {
  margin-bottom: 26px;
  font-size: 30px;
}

.detail-list {
  display: grid;
  gap: 1px;
  padding: 1px;
  margin: 0;
  overflow: hidden;
  background: var(--line-soft);
  border-radius: 15px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 14px;
  background: #0e1d30;
}

.detail-list dt {
  color: var(--muted);
  font-size: 11px;
}

.detail-list dd {
  margin: 0;
  color: #e5edf5;
  font-size: 13px;
}

.drawer-note {
  padding: 14px;
  margin-top: 22px;
  color: #d9c39b;
  font-size: 12px;
  background: rgb(217 174 98 / 7%);
  border: 1px solid rgb(217 174 98 / 19%);
  border-radius: 13px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: min(420px, calc(100vw - 48px));
  padding: 14px 17px;
  color: #dff7ec;
  font-size: 13px;
  background: #12352f;
  border: 1px solid #347e6b;
  border-radius: 13px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .22s ease,
    transform .22s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 96px;
  }

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

  .hero-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

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

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

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

  .workbench-footer > .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

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

  .workflow-list::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 14px 20px 0;
  }

  .brand {
    margin-bottom: 8px;
  }

  .site-header nav {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding-inline: 20px;
  }

  .site-header nav a {
    padding: 10px 0 15px;
  }

  .site-header nav a::after {
    bottom: 8px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .floating-status {
    right: 12px;
    bottom: 18px;
  }

  .section-heading-split {
    display: block;
  }

  .section-heading-split > p {
    max-width: 620px;
  }

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

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

  .pagination {
    justify-content: flex-start;
  }

  .safety-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero,
  .section-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero {
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.7vw, 40px);
    letter-spacing: -.045em;
    line-height: 1.12;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-facts {
    justify-content: space-between;
  }

  .hero-facts div {
    min-width: 0;
    padding-right: 14px;
    margin-right: 14px;
  }

  .hero-visual img {
    border-radius: 22px;
    transform: none;
  }

  .floating-status {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    margin: -22px auto 0;
  }

  .section-shell {
    padding-block: 72px;
  }

  .capability-grid,
  .summary-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 200px;
  }

  .demo-section {
    width: calc(100% - 16px);
  }

  .workbench {
    border-radius: 20px;
  }

  .workbench-topbar,
  .summary-grid,
  .filter-grid,
  .workbench-footer {
    padding-right: 17px;
    padding-left: 17px;
  }

  .workbench-topbar {
    align-items: flex-start;
  }

  .environment-pill {
    min-width: max-content;
  }

  .table-shell {
    margin-inline: 17px;
  }

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

  .safety-section {
    padding-bottom: 92px;
  }

  .safety-panel {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .site-footer {
    display: block;
    width: calc(100% - 28px);
    padding-block: 28px;
  }

  .site-footer p + p {
    margin-top: 4px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }
}

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