:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-strong: #eaf1f8;
  --surface: #ffffff;
  --surface-soft: #f9fbfe;
  --surface-blue: #edf5ff;
  --surface-green: #eef8f2;
  --surface-gold: #fff6e6;
  --surface-ink: #111927;
  --surface-cyan: #edfaff;
  --text: #101828;
  --muted: #526174;
  --subtle: #7f8a9d;
  --line: rgba(30, 41, 59, 0.1);
  --soft-line: rgba(30, 41, 59, 0.06);
  --primary: #255fd5;
  --primary-strong: #1949b8;
  --cyan: #0d91a4;
  --green: #16745e;
  --gold: #9b6400;
  --violet: #6658e8;
  --red: #b42318;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.055);
  --shadow-md: 0 22px 60px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 34px 90px rgba(15, 23, 42, 0.13);
  --radius: 8px;
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 255, 0.9) 43%, rgba(242, 251, 248, 0.84) 100%),
    linear-gradient(rgba(15, 23, 42, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.026) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: var(--text);
  font-family:
    "Inter", "SF Pro Display", "PingFang SC", "Hiragino Sans GB",
    "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-kerning: normal;
}

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

svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

main,
.site-header,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.service-top,
.product-meta,
.catalog-head,
.footer-links,
.footer-bottom,
.shop-contact {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 760;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 12px 26px rgba(36, 87, 246, 0.24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.brand-text {
  font-size: 16px;
  letter-spacing: 0;
}

.site-nav {
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.header-cta,
.btn,
.text-link,
.product-link,
.catalog-head a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a {
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(15, 98, 254, 0.08);
  color: var(--primary-strong);
}

.header-cta {
  padding: 0 16px;
  border: 1px solid rgba(40, 100, 232, 0.22);
  background: linear-gradient(135deg, #2563eb, #0e9bb0);
  color: #fff;
  font-size: 14px;
  font-weight: 720;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 98, 254, 0.22);
}

.section-pad {
  padding: clamp(64px, 9vw, 112px) 0;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(14px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 360ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(40px, 6.5vw, 84px);
  padding-top: clamp(56px, 7vw, 90px);
  padding-bottom: clamp(50px, 6vw, 76px);
}

.hero-copy {
  min-width: 0;
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(40, 100, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1e4fb9;
  font-size: 12px;
  font-weight: 680;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.eyebrow {
  margin-bottom: 16px;
  color: #2452bb;
  font-size: 13px;
  font-weight: 680;
  text-transform: none;
}

h1 {
  max-width: 780px;
  font-size: clamp(46px, 4.9vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
  font-weight: 780;
}

h1 span {
  display: block;
  white-space: normal;
}

h1 span:not(.title-line) {
  margin-top: 14px;
  color: #26364f;
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 520;
  line-height: 1.16;
}

.title-line {
  max-width: max-content;
}

.hero-intro {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-width: 148px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 720;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #0f9fb2);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-strong);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(30, 41, 59, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(15, 98, 254, 0.35);
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: min(100%, 620px);
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-note span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(8, 124, 104, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin-top: 34px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.hero-metrics div {
  min-height: 88px;
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--soft-line);
  background: transparent;
  box-shadow: none;
}

.hero-metrics div + div {
  padding-left: 22px;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: var(--text);
  font-size: 28px;
  font-weight: 760;
  line-height: 1.1;
}

.hero-metrics dd {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  min-width: 0;
}

.command-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 253, 255, 0.84)),
    var(--surface);
  box-shadow: var(--shadow-lg);
  transform: translateY(4px);
}

.product-console {
  isolation: isolate;
}

.command-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(40, 100, 232, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(15, 159, 178, 0.12), transparent 46%);
  opacity: 0.8;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(40, 100, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 100, 232, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.product-console > * {
  position: relative;
  z-index: 1;
}

.panel-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 0 24px;
  border-bottom: 1px solid var(--soft-line);
  font-weight: 720;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-green);
  color: var(--green);
  font-size: 12px;
  font-weight: 680;
}

.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(8, 124, 104, 0.12);
  animation: status-pulse 1.8s ease-out infinite;
}

.control-overview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
  padding: 24px 24px 0;
}

.balance-card,
.flow-card {
  min-height: 132px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
}

.balance-card {
  display: grid;
  align-content: end;
  padding: 18px;
  background:
    radial-gradient(circle at 78% 14%, rgba(125, 211, 252, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(18, 27, 42, 0.98), rgba(30, 64, 175, 0.9)),
    var(--surface-ink);
  color: #fff;
}

.balance-card span,
.balance-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 750;
}

.balance-card strong {
  display: block;
  margin: 6px 0 2px;
  font-size: clamp(42px, 4.8vw, 56px);
  line-height: 0.95;
  font-weight: 760;
}

.flow-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(238, 245, 255, 0.82), rgba(237, 250, 255, 0.64)),
    rgba(255, 255, 255, 0.88);
}

.flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(40, 100, 232, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #244fb8;
  font-size: 13px;
  font-weight: 720;
}

.flow-card i {
  width: 22px;
  height: 1px;
  background: rgba(36, 87, 246, 0.34);
}

.console-lines {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 24px;
}

.console-lines div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(30, 41, 59, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 14px;
}

.console-lines div:hover {
  border-color: rgba(36, 87, 246, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

.line-key {
  color: var(--text);
  font-weight: 720;
}

.delivery-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 24px 24px;
}

.delivery-map span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(30, 41, 59, 0.07);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 255, 0.78)),
    var(--surface-soft);
  color: #627086;
  font-size: 12px;
  font-weight: 680;
}

.copy-api {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  min-height: 46px;
  margin: 0 24px 18px;
  border: 1px solid rgba(40, 100, 232, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #14213a, #1d4fc7);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 720;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.copy-api:hover,
.copy-api:focus-visible {
  background: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(24, 61, 184, 0.18);
}

.delivery-map span:nth-child(2n) {
  background: var(--surface-blue);
}

.delivery-map span:nth-child(3n) {
  background: var(--surface-green);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-strip div {
  min-height: 106px;
  padding: 22px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 253, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-sm);
}

.trust-strip div:hover {
  background: #fff;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 760;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 32px;
}

.section-heading h2 {
  font-size: clamp(31px, 4.1vw, 48px);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 740;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.section-heading.split > p {
  margin: 0 0 6px;
}

.capability-grid,
.service-grid,
.product-grid,
.workflow-grid,
.ops-grid {
  display: grid;
  gap: 18px;
}

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

.capability-card,
.service-card,
.product-card,
.step-card,
.ops-item,
.catalog,
.highlight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.capability-card::before,
.service-card::before,
.product-card::before,
.step-card::before,
.ops-item::before,
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(40, 100, 232, 0.72), rgba(15, 159, 178, 0.66));
  opacity: 0;
  transition: opacity 180ms ease;
}

.capability-card:hover::before,
.service-card:hover::before,
.product-card:hover::before,
.step-card:hover::before,
.ops-item:hover::before,
.highlight-card:hover::before {
  opacity: 1;
}

.capability-card:hover,
.service-card:hover,
.product-card:hover,
.step-card:hover,
.ops-item:hover,
.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.capability-card {
  min-height: 230px;
  padding: 26px;
}

.capability-card .icon-shell,
.service-card .icon-shell,
.detail-card .icon-shell {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055);
}

.highlight-section {
  border-top: 1px solid var(--soft-line);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: 18px;
}

.highlight-card {
  min-height: 236px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 251, 255, 0.62)),
    var(--surface);
}

.highlight-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.76), rgba(255, 255, 255, 0.66)),
    var(--surface);
}

.highlight-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(238, 250, 246, 0.78), rgba(255, 255, 255, 0.66)),
    var(--surface);
}

.highlight-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.82), rgba(255, 255, 255, 0.66)),
    var(--surface);
}

.highlight-main {
  grid-row: span 2;
  min-height: 494px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 78% 18%, rgba(125, 211, 252, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(17, 24, 39, 0.97), rgba(30, 64, 175, 0.82)),
    var(--surface-ink);
  color: #fff;
}

.highlight-main::before {
  opacity: 1;
  height: 5px;
  background: linear-gradient(90deg, #7dd3fc, #a7f3d0, #fde68a);
}

.highlight-main::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: var(--radius);
  transform: rotate(8deg);
}

.highlight-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
}

.highlight-main .highlight-kicker {
  background: rgba(255, 255, 255, 0.13);
  color: #dbeafe;
}

.highlight-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: clamp(21px, 2.35vw, 29px);
  line-height: 1.23;
  font-weight: 760;
}

.highlight-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.highlight-main p {
  color: rgba(255, 255, 255, 0.76);
}

.highlight-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.highlight-path span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 680;
}

.highlight-main a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary-strong);
  font-weight: 720;
}

.icon-shell {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
}

.icon-blue {
  background: var(--surface-blue);
  color: var(--primary);
}

.icon-green {
  background: var(--surface-green);
  color: var(--green);
}

.icon-gold {
  background: var(--surface-gold);
  color: var(--gold);
}

.capability-card h3,
.service-card h3,
.product-card h3,
.step-card h3 {
  margin-top: 22px;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 720;
}

.capability-card p,
.service-card p,
.product-card p,
.step-card p,
.ops-item span,
.catalog-list span,
.shop-banner-copy span {
  color: var(--muted);
}

.capability-card p,
.service-card p,
.product-card p,
.step-card p {
  margin-top: 12px;
  line-height: 1.72;
}

.service-grid {
  grid-template-columns: 1.18fr 1fr 1fr;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 26px;
}

.service-primary {
  background:
    linear-gradient(145deg, rgba(238, 245, 255, 0.88), rgba(237, 250, 255, 0.62), rgba(255, 255, 255, 0.66)),
    var(--surface);
}

.service-top {
  justify-content: space-between;
  gap: 16px;
}

.service-domain {
  color: var(--subtle);
  font-size: 13px;
  text-align: right;
  overflow-wrap: anywhere;
  font-weight: 640;
}

.service-card p {
  flex: 1;
}

.text-link {
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: var(--primary-strong);
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
}

.shop-section {
  border-top: 1px solid var(--soft-line);
}

.platform {
  padding-top: clamp(58px, 8vw, 96px);
}

.shop-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 6px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-sm);
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 680;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--primary-strong);
  background: var(--surface-blue);
}

.filter-button.active {
  background: #14213a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 124px;
  padding: 28px;
  border: 1px solid rgba(17, 120, 102, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(238, 250, 246, 0.86), rgba(255, 255, 255, 0.68)),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.shop-banner:hover,
.shop-banner:focus-visible {
  border-color: rgba(15, 138, 114, 0.42);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.shop-banner-copy {
  display: grid;
  gap: 6px;
}

.shop-banner-copy strong {
  font-size: 25px;
  font-weight: 740;
}

.shop-banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #117866, #0f9fb2);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.shop-contact {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.shop-contact span:first-child {
  color: var(--text);
  font-weight: 700;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 24px;
}

.product-card.is-hidden {
  display: none;
}

.product-card.featured {
  grid-column: span 2;
  border-color: rgba(40, 100, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(238, 245, 255, 0.9), rgba(237, 250, 255, 0.62), rgba(255, 255, 255, 0.68)),
    var(--surface);
}

.product-meta {
  justify-content: space-between;
  gap: 12px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 650;
}

.product-meta strong {
  color: var(--primary-strong);
  font-size: 19px;
  font-weight: 740;
}

.product-card h3 {
  min-height: 72px;
  overflow-wrap: anywhere;
}

.product-card p {
  flex: 1;
  font-size: 15px;
}

.product-link {
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(40, 100, 232, 0.16);
  background: rgba(238, 245, 255, 0.74);
  color: var(--primary-strong);
  font-weight: 700;
}

.product-link:hover,
.product-link:focus-visible {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  color: #fff;
  transform: translateY(-1px);
}

.catalog {
  margin-top: 18px;
  padding: 24px;
}

.catalog-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.catalog-head h3 {
  font-size: 20px;
  font-weight: 720;
}

.catalog-head a {
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 700;
}

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

.catalog-list a {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(30, 41, 59, 0.07);
  border-radius: var(--radius);
  background: var(--surface-soft);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.catalog-list a:hover,
.catalog-list a:focus-visible {
  border-color: rgba(15, 98, 254, 0.3);
  background: var(--surface-blue);
  transform: translateY(-1px);
}

.catalog-list strong {
  color: var(--text);
}

.workflow {
  border-top: 1px solid var(--soft-line);
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: workflow;
}

.step-card {
  min-height: 220px;
  padding: 28px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(238, 245, 255, 0.9);
  color: #244fb8;
  font-size: 13px;
  font-weight: 700;
}

.operations {
  border-top: 1px solid var(--soft-line);
}

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

.ops-item {
  min-height: 168px;
  padding: 24px;
}

.ops-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 720;
}

.ops-item span {
  display: block;
  font-size: 15px;
  line-height: 1.72;
}

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

.faq-list {
  display: grid;
  gap: 24px;
  max-width: 960px;
}

.faq-search-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(28, 84, 184, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94) 50%, rgba(238, 250, 247, 0.92)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 24px 60px rgba(15, 23, 42, 0.07);
}

.faq-search-hero {
  margin-top: 30px;
  max-width: 820px;
  gap: 18px;
  padding: clamp(18px, 2.3vw, 26px);
  border-color: rgba(28, 84, 184, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.95) 48%, rgba(235, 250, 247, 0.9)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 24px 66px rgba(15, 23, 42, 0.1);
}

.faq-search-hero .faq-search-form {
  max-width: none;
}

.faq-search-hero .faq-search-results {
  max-height: min(52vh, 520px);
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.faq-search-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 95, 213, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 95, 213, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 76%, transparent);
  pointer-events: none;
}

.faq-search-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(37, 95, 213, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(37, 95, 213, 0.1), rgba(13, 145, 164, 0.08)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 36px rgba(37, 95, 213, 0.08);
  transform: rotate(10deg);
  pointer-events: none;
}

.faq-search-copy,
.faq-search-form,
.faq-search-suggestions,
.faq-search-results {
  position: relative;
  z-index: 1;
}

.faq-search-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(37, 95, 213, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
}

.faq-search-copy strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.18;
}

.faq-search-copy p {
  margin-top: 8px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(28, 84, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 20px 50px rgba(15, 23, 42, 0.1),
    0 0 0 8px rgba(37, 95, 213, 0.035);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.faq-search-form::before {
  content: "";
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin-left: 4px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(37, 95, 213, 0.12), rgba(13, 145, 164, 0.1)),
    #eef5ff;
  mask:
    radial-gradient(circle at 44% 44%, transparent 0 7px, #000 7.5px 10px, transparent 10.5px),
    linear-gradient(45deg, transparent 0 58%, #000 58% 68%, transparent 68%);
  -webkit-mask:
    radial-gradient(circle at 44% 44%, transparent 0 7px, #000 7.5px 10px, transparent 10.5px),
    linear-gradient(45deg, transparent 0 58%, #000 58% 68%, transparent 68%);
}

.faq-search-form:focus-within {
  border-color: rgba(37, 95, 213, 0.32);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 4px rgba(37, 95, 213, 0.08),
    0 24px 60px rgba(15, 23, 42, 0.12);
}

.faq-search-form input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  outline: none;
  padding: 0 4px;
}

.faq-search-form input:focus {
  box-shadow: none;
}

.faq-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 112px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #255fd5, #0d91a4),
    var(--primary);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 0 20px;
  box-shadow: 0 14px 28px rgba(37, 95, 213, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.faq-search-form button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.faq-search-form button:hover,
.faq-search-form button:focus-visible {
  box-shadow: 0 18px 34px rgba(37, 95, 213, 0.26);
  transform: translateY(-1px);
}

.faq-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-search-suggestions button {
  min-height: 34px;
  border: 1px solid rgba(28, 84, 184, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #31506f;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 0 12px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.faq-search-suggestions button:hover,
.faq-search-suggestions button:focus-visible {
  border-color: rgba(37, 95, 213, 0.24);
  background: #fff;
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.faq-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 32px;
  max-width: none;
}

.faq-search-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.faq-search-status strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.faq-search-status span {
  color: var(--muted);
  font-size: 13px;
}

.faq-search-results p {
  grid-column: 1 / -1;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-search-results button {
  display: grid;
  align-content: start;
  gap: 6px;
  width: 100%;
  min-height: 118px;
  border: 1px solid rgba(18, 96, 216, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  padding: 14px 15px;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-search-results button:hover,
.faq-search-results button:focus-visible {
  border-color: rgba(18, 96, 216, 0.22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.faq-search-results button span {
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
}

.faq-search-results button strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.42;
}

.faq-search-results button small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 253, 255, 0.98)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 18px 42px rgba(15, 23, 42, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  border-color: rgba(18, 96, 216, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 22px 54px rgba(15, 23, 42, 0.075);
  transform: translateY(-1px);
}

.faq-list details.is-search-target {
  border-color: rgba(18, 96, 216, 0.36);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 0 0 4px rgba(18, 96, 216, 0.1),
    0 24px 56px rgba(15, 23, 42, 0.08);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  cursor: pointer;
  color: var(--text);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.45;
}

.faq-list p,
.faq-list li {
  color: var(--muted);
  line-height: 1.75;
}

.faq-list p {
  padding: 0 22px 18px;
}

.faq-list ul,
.faq-list ol {
  display: grid;
  gap: 9px;
  margin: 0 22px 18px;
  padding-left: 20px;
}

.faq-list li strong {
  color: #253347;
  font-weight: 760;
}

.faq-list p a {
  color: #174ea6;
  font-weight: 700;
  text-underline-offset: 3px;
}

.faq-list code {
  border: 1px solid rgba(18, 96, 216, 0.12);
  border-radius: 6px;
  background: rgba(238, 246, 255, 0.76);
  color: #174ea6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  padding: 2px 6px;
}

.faq-list pre {
  max-width: calc(100% - 44px);
  margin: 0 22px 18px;
  overflow-x: auto;
  border: 1px solid rgba(18, 96, 216, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    #101828;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.faq-list pre code {
  display: block;
  border: 0;
  background: transparent;
  color: #e6edf7;
  font-size: 13px;
  line-height: 1.7;
  padding: 16px;
  white-space: pre;
}

.faq-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.faq-guide-grid a {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(18, 96, 216, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.96)),
    #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-guide-grid a::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 200, 0.16), rgba(18, 184, 200, 0) 68%);
  pointer-events: none;
}

.faq-guide-grid a:nth-child(2)::after,
.faq-guide-grid a:nth-child(4)::after {
  background: radial-gradient(circle, rgba(18, 96, 216, 0.14), rgba(18, 96, 216, 0) 68%);
}

.faq-guide-grid a:nth-child(3)::after,
.faq-guide-grid a:nth-child(5)::after {
  background: radial-gradient(circle, rgba(244, 173, 61, 0.16), rgba(244, 173, 61, 0) 68%);
}

.faq-guide-grid a:hover,
.faq-guide-grid a:focus-visible {
  border-color: rgba(18, 96, 216, 0.18);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.faq-guide-grid span,
.faq-group-heading span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #edf5ff;
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.faq-guide-grid span {
  width: 38px;
}

.faq-guide-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
}

.faq-guide-grid p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.faq-doc-group {
  display: grid;
  gap: 12px;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.faq-group-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 24px 2px 4px;
}

.faq-group-heading span {
  width: 42px;
  min-height: 42px;
  background:
    linear-gradient(135deg, rgba(37, 95, 213, 0.12), rgba(13, 145, 164, 0.14)),
    #edf5ff;
}

.faq-group-heading h3 {
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.24;
}

.faq-group-heading p {
  max-width: 680px;
  margin-top: 8px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.74;
}

.faq-note {
  max-width: calc(100% - 44px);
  margin: 0 22px 18px;
  padding: 14px 16px !important;
  border: 1px solid rgba(18, 96, 216, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(237, 245, 255, 0.9), rgba(238, 248, 242, 0.82)),
    #f6fbff;
  color: #344760 !important;
  font-size: 14px;
}

.faq-api-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 96, 216, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(237, 245, 255, 0.92), rgba(238, 248, 242, 0.78)),
    #fff;
}

.faq-api-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.faq-api-line code {
  border: 1px solid rgba(18, 96, 216, 0.12);
  border-radius: 6px;
  background: #fff;
  color: #174ea6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  padding: 3px 7px;
}

.site-footer {
  padding: 54px 0 32px;
  border-top: 1px solid var(--soft-line);
}

.footer-main {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.footer-main p {
  color: var(--muted);
}

.footer-links {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.footer-links a {
  padding: 0 12px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary-strong);
  border-color: rgba(15, 98, 254, 0.32);
  background: var(--surface-blue);
}

.footer-bottom {
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--soft-line);
  color: var(--subtle);
  font-size: 14px;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(15, 98, 254, 0.32);
  outline-offset: 3px;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 124, 104, 0.24);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(8, 124, 104, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(8, 124, 104, 0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .hero-visual {
    max-width: 680px;
  }

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

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

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

  .product-card.featured {
    grid-column: 1 / -1;
  }

  .highlight-main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .shop-summary,
  .section-heading.split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  main,
  .site-header,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px;
  }

  .header-cta {
    padding: 0 12px;
    white-space: nowrap;
  }

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

  .site-nav a {
    padding: 0 10px;
    white-space: nowrap;
  }

  .section-pad {
    padding: 60px 0;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 48px;
    min-height: auto;
  }

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

  h1 {
    max-width: 11em;
    font-size: 42px;
    line-height: 1.05;
  }

  h1 span {
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.24;
  }

  h1 span.title-line {
    margin-top: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .hero-intro {
    line-height: 1.78;
    margin-top: 18px;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
    padding: 18px 0;
  }

  .hero-metrics div + div {
    padding-left: 0;
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .hero-metrics,
  .trust-strip,
  .capability-grid,
  .highlight-grid,
  .service-grid,
  .product-grid,
  .workflow-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .console-lines div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 14px;
  }

  .control-overview,
  .catalog-list {
    grid-template-columns: 1fr;
  }

  .flow-card {
    flex-wrap: wrap;
  }

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

  .service-card,
  .product-card,
  .step-card,
  .ops-item {
    min-height: auto;
  }

  .product-card h3 {
    min-height: auto;
  }

  .shop-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-banner-action,
  .btn,
  .hero-actions,
  .product-link {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .shop-contact {
    min-width: 0;
  }

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

  .catalog-list a {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding: 16px;
  }
}

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

  .brand,
  .header-cta {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .header-cta {
    font-size: 13px;
  }

  h1 {
    max-width: none;
    font-size: 36px;
  }

  h1 span {
    font-size: 23px;
  }

  h1 span.title-line {
    font-size: inherit;
  }

  .hero-intro,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 18px;
  }

  .console-lines,
  .control-overview,
  .delivery-map {
    padding-inline: 18px;
  }

  .flow-card {
    justify-content: flex-start;
  }

  .flow-card i {
    display: none;
  }

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

  .highlight-main {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Visual refinement layer */
body {
  background:
    linear-gradient(118deg, rgba(37, 95, 213, 0.07) 0%, rgba(37, 95, 213, 0) 30%),
    linear-gradient(304deg, rgba(22, 116, 94, 0.07) 0%, rgba(22, 116, 94, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 253, 0.98) 36%, rgba(250, 252, 255, 0.96) 100%),
    linear-gradient(rgba(30, 41, 59, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.022) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, 72px 72px, 72px 72px, auto;
}

.site-header {
  min-height: 72px;
  border-color: rgba(15, 23, 42, 0.075);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 24px 60px rgba(15, 23, 42, 0.075);
}

.brand {
  letter-spacing: 0;
}

.brand-mark {
  box-shadow: 0 14px 28px rgba(22, 75, 184, 0.24);
}

.site-nav {
  padding: 4px;
  border: 1px solid rgba(30, 41, 59, 0.06);
  border-radius: var(--radius);
  background: #f8fbff;
}

.site-nav a {
  min-height: 40px;
  padding: 0 13px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: #fff;
  color: #1746b6;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.header-cta,
.btn-primary {
  background:
    linear-gradient(135deg, rgba(38, 75, 214, 0.98), rgba(14, 159, 178, 0.96)),
    #2563eb;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background:
    linear-gradient(135deg, rgba(29, 79, 199, 1), rgba(17, 120, 102, 0.96)),
    #1d4fc7;
}

.hero {
  position: relative;
  min-height: min(660px, calc(100dvh - 96px));
}

.hero::before {
  content: "";
  position: absolute;
  top: 42px;
  right: min(42%, 520px);
  width: 1px;
  height: min(76%, 560px);
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.22), rgba(17, 120, 102, 0.16), transparent);
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-labels span,
.highlight-kicker,
.step-index {
  border-radius: var(--radius);
  letter-spacing: 0;
}

.hero-labels span {
  background: #fff;
  color: #1949b8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.eyebrow {
  color: #2552bb;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.08;
  font-weight: 780;
  color: #101828;
}

.hero-intro {
  max-width: 640px;
  color: #42526a;
}

.hero-actions {
  gap: 10px;
}

.btn,
.header-cta,
.copy-api,
.filter-button,
.product-link {
  touch-action: manipulation;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
}

.hero-note {
  padding: 14px 16px;
  border: 1px solid rgba(17, 120, 102, 0.1);
  border-radius: var(--radius);
  background: #f4fbf8;
}

.hero-metrics {
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.045);
}

.hero-metrics div {
  padding: 20px;
}

.hero-metrics div + div {
  padding-left: 20px;
}

.command-panel {
  border-color: rgba(30, 41, 59, 0.11);
  background:
    linear-gradient(180deg, #fff, #f9fbff),
    var(--surface);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.command-panel::before {
  opacity: 0.6;
}

.panel-header {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.46);
}

.balance-card {
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(29, 79, 199, 0.88) 56%, rgba(15, 159, 178, 0.78)),
    var(--surface-ink);
}

.flow-card {
  position: relative;
  align-items: stretch;
}

.flow-card span {
  flex: 1;
}

.console-lines div,
.delivery-map span,
.trust-strip div,
.capability-card,
.service-card,
.product-card,
.step-card,
.ops-item,
.catalog,
.highlight-card,
.faq-list details,
.route-card,
.detail-card,
.timeline-item,
.feature-band div {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 16px 38px rgba(15, 23, 42, 0.06);
}

.trust-strip {
  margin-top: -8px;
}

.trust-strip div {
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    #fff;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  font-weight: 720;
  color: #0f172a;
}

.section-heading p:not(.eyebrow) {
  color: #48586d;
}

.capability-card,
.service-card,
.product-card,
.step-card,
.ops-item,
.catalog,
.highlight-card,
.faq-list details,
.detail-card,
.timeline-item {
  background:
    linear-gradient(180deg, #fff, #fbfcff),
    #fff;
}

.capability-grid-featured {
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.95fr));
}

.capability-card.capability-primary {
  background:
    linear-gradient(145deg, #edf5ff, #fff 55%, #edfaff),
    #fff;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-top: 22px;
  padding: 0 9px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  color: #2a58c9;
  font-size: 12px;
  font-weight: 760;
}

.highlight-grid {
  grid-template-columns: minmax(320px, 1.25fr) repeat(2, minmax(0, 1fr));
}

.highlight-main {
  background:
    linear-gradient(145deg, #101828, #1b4db6 58%, #16745e),
    var(--surface-ink);
}

.highlight-main::after {
  top: 30px;
  right: 30px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius);
  opacity: 0.74;
}

.highlight-card h3,
.capability-card h3,
.service-card h3,
.product-card h3,
.step-card h3,
.detail-card h3,
.timeline-item h3 {
  color: #101827;
  font-weight: 720;
}

.highlight-main h3 {
  color: #fff;
}

.service-card,
.capability-card,
.product-card {
  isolation: isolate;
}

.service-primary,
.product-card.featured {
  background:
    linear-gradient(145deg, #edf5ff, #edfaff 48%, #fff),
    var(--surface);
}

.product-toolbar {
  width: fit-content;
  max-width: 100%;
  border-color: rgba(30, 41, 59, 0.07);
  background: rgba(255, 255, 255, 0.72);
}

.filter-button.active {
  background:
    linear-gradient(135deg, #111927, #1d4fc7),
    #111927;
}

.product-card {
  min-height: 302px;
}

.product-card h3 {
  min-height: 78px;
  font-size: 20px;
}

.product-meta strong {
  font-variant-numeric: tabular-nums;
}

.shop-banner {
  background:
    linear-gradient(135deg, rgba(238, 250, 246, 0.9), rgba(237, 250, 255, 0.68), rgba(255, 255, 255, 0.72)),
    var(--surface);
}

.shop-banner-action {
  background:
    linear-gradient(135deg, #117866, #0f9fb2),
    #117866;
}

.catalog-list a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 255, 0.72)),
    var(--surface-soft);
}

.faq-list summary {
  position: relative;
  padding-right: 48px;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary-strong);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-hero {
  position: relative;
  padding-top: clamp(70px, 9vw, 118px);
  padding-bottom: clamp(50px, 7vw, 86px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: clamp(28px, 6vw, 76px);
}

.page-hero-copy {
  min-width: 0;
  max-width: 780px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 4.7vw, 60px);
  line-height: 1.1;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: #516174;
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.82;
}

.route-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(37, 95, 213, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 255, 0.9) 48%, rgba(235, 250, 247, 0.86)),
    #fff;
  color: var(--text);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 28px 68px rgba(15, 23, 42, 0.11);
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 95, 213, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 95, 213, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(150deg, #000 0 44%, transparent 72%);
  pointer-events: none;
}

.route-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -54px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(37, 95, 213, 0.12);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(37, 95, 213, 0.14), rgba(13, 145, 164, 0.1)),
    rgba(255, 255, 255, 0.46);
  transform: rotate(14deg);
  pointer-events: none;
}

.route-card.accent-green {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 249, 243, 0.92) 50%, rgba(235, 247, 255, 0.86)),
    #fff;
  border-color: rgba(22, 116, 94, 0.16);
}

.route-card.accent-gold {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 232, 0.9) 48%, rgba(239, 246, 255, 0.88)),
    #fff;
  border-color: rgba(155, 100, 0, 0.16);
}

.route-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.route-card-label {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(37, 95, 213, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 720;
}

.route-card-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #102033;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.route-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 36px;
  color: #111927;
  font-size: clamp(30px, 3.3vw, 40px);
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
}

.route-card p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-top: 12px;
  color: #5a6a7d;
  line-height: 1.74;
  overflow-wrap: anywhere;
}

.route-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.route-metrics span {
  display: grid;
  gap: 4px;
  min-height: 76px;
  align-content: center;
  padding: 12px 10px;
  border: 1px solid rgba(37, 95, 213, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.route-metrics b {
  color: #132033;
  font-size: 15px;
  line-height: 1.2;
}

.route-metrics small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.route-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.route-lines span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px 0 36px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  color: #26364f;
  font-size: 13px;
  font-weight: 680;
}

.route-lines span::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 0 0 5px rgba(37, 95, 213, 0.08);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  width: min(calc(100% - 40px), var(--max));
}

.feature-band div {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 255, 0.68)),
    rgba(255, 255, 255, 0.74);
}

.feature-band span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--surface-blue);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 720;
}

.feature-band strong {
  display: block;
  margin-top: 18px;
  color: #132033;
  font-size: 20px;
  font-weight: 700;
}

.feature-band p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.72;
}

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

.detail-card {
  min-height: 256px;
  padding: 28px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
}

.detail-card h3 {
  margin-top: 22px;
  font-size: 21px;
  line-height: 1.28;
}

.detail-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 144px;
  padding: 24px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
}

.timeline-item > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--surface-blue), var(--surface-cyan)),
    #eef5ff;
  color: var(--primary-strong);
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.timeline-item h3 {
  font-size: 22px;
  line-height: 1.3;
}

.timeline-item p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.72;
}

.site-footer {
  margin-top: 42px;
}

@media (hover: hover) {
  .route-card:hover,
  .detail-card:hover,
  .timeline-item:hover,
  .feature-band div:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .route-card,
  .detail-card,
  .timeline-item,
  .feature-band div {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
  }
}

@media (max-width: 1040px) {
  .hero::before {
    display: none;
  }

  .page-hero-grid,
  .detail-grid,
  .feature-band,
  .capability-grid-featured,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 260px;
  }

  .feature-band {
    width: min(calc(100% - 40px), var(--max));
  }

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

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding: 10px;
  }

  .site-nav {
    max-width: 100%;
    gap: 2px;
    padding: 3px;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-metrics {
    border-radius: var(--radius);
  }

  .hero-metrics div {
    padding: 18px 16px;
  }

  h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(34px, 8.8vw, 42px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-labels {
    margin-bottom: 16px;
  }

  .hero-labels span {
    min-height: 32px;
    padding: 0 10px;
  }

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

  .hero-note {
    margin-top: 16px;
  }

  .hero-metrics {
    margin-top: 22px;
  }

  .command-panel {
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.12);
  }

  .page-hero-grid {
    min-width: 0;
    gap: 24px;
  }

  .page-hero-copy,
  .route-card {
    width: 100%;
  }

  .route-card {
    min-height: auto;
    padding: 22px;
    border-radius: 16px;
  }

  .route-card strong {
    margin-top: 28px;
    font-size: 30px;
  }

  .route-metrics {
    grid-template-columns: 1fr;
  }

  .route-metrics span {
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 10px;
  }

  .page-hero p:not(.eyebrow) {
    overflow-wrap: anywhere;
  }

  .feature-band {
    width: min(calc(100% - 24px), var(--max));
  }

  .faq-list {
    gap: 18px;
    max-width: 100%;
  }

  .faq-search-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .faq-search-hero {
    margin-top: 24px;
    gap: 18px;
  }

  .faq-search-form,
  .faq-search-results {
    grid-column: auto;
  }

  .faq-search-results {
    grid-template-columns: 1fr;
  }

  .faq-search-form {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 10px;
    gap: 8px;
    min-height: auto;
  }

  .faq-search-form input {
    flex-basis: calc(100% - 58px);
    min-height: 48px;
    font-size: 16px;
  }

  .faq-search-form button {
    width: 100%;
    min-height: 52px;
  }

  .faq-search-form::before {
    width: 38px;
    height: 38px;
  }

  .faq-guide-grid {
    grid-template-columns: 1fr;
  }

  .faq-guide-grid a {
    min-height: 132px;
  }

  .faq-list summary {
    min-height: 60px;
    padding-left: 16px;
    padding-right: 48px;
    font-size: 16px;
  }

  .faq-list p {
    padding: 0 16px 16px;
  }

  .faq-list ul,
  .faq-list ol {
    margin: 0 16px 16px;
  }

  .faq-list pre,
  .faq-note {
    max-width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .faq-group-heading {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero-note {
    padding: 12px 14px;
  }

  .page-hero {
    padding-top: 36px;
  }

  .page-hero h1 {
    font-size: 32px;
    line-height: 1.14;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.72;
  }

  .faq-api-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-api-line code,
  .faq-list code {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .route-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-card-status {
    min-height: 26px;
  }

  .route-card,
  .detail-card,
  .feature-band div,
  .timeline-item {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .brand {
    justify-content: flex-start;
  }

  .header-cta {
    min-height: 42px;
  }
}

/* Home redesign v2 */
body {
  background:
    linear-gradient(180deg, #f7f9fd 0%, #ffffff 38%, #f7fafc 100%),
    var(--bg);
}

.home-main {
  width: min(calc(100% - 40px), 1180px);
}

.home-hero {
  padding: clamp(70px, 8vw, 112px) 0 48px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.home-hero-copy {
  min-width: 0;
}

.home-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.home-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  color: #1949b8;
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.home-hero h1 {
  max-width: 760px;
  color: #0b1220;
  font-size: clamp(44px, 4.9vw, 66px);
  line-height: 1.06;
  font-weight: 790;
  text-wrap: balance;
}

.home-hero-intro {
  max-width: 650px;
  margin-top: 24px;
  color: #475569;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.82;
}

.home-workbench {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f9fbff),
    #fff;
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.13);
}

.home-workbench::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(37, 95, 213, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(37, 95, 213, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
}

.home-workbench > * {
  position: relative;
  z-index: 1;
}

.workbench-head {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-weight: 760;
}

.workbench-main {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
}

.credit-tile,
.ledger-tile {
  min-height: 184px;
  border-radius: var(--radius);
}

.credit-tile {
  display: grid;
  align-content: end;
  padding: 22px;
  background: linear-gradient(145deg, #0f172a, #1d4fc7 58%, #0f9fb2);
  color: #fff;
}

.credit-tile span,
.credit-tile em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
}

.credit-tile strong {
  margin: 6px 0 4px;
  font-size: clamp(56px, 7vw, 78px);
  line-height: 0.9;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.ledger-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.ledger-tile span {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.ledger-tile strong {
  display: block;
  margin-top: 4px;
  color: #101828;
  font-size: 20px;
  line-height: 1.24;
}

.ledger-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 92px;
  padding-top: 10px;
}

.ledger-bars span {
  display: block;
  min-height: 24px;
  border-radius: var(--radius) var(--radius) 3px 3px;
  background: linear-gradient(180deg, #75e0c3, #255fd5);
}

.route-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.route-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.route-list span {
  color: #1949b8;
  font-size: 13px;
  font-weight: 760;
}

.route-list strong {
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.home-workbench .copy-api {
  width: 100%;
  margin: 14px 0 0;
}

.hero-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 58px rgba(15, 23, 42, 0.07);
}

.hero-route a {
  display: grid;
  gap: 8px;
  min-height: 106px;
  align-content: center;
  padding: 22px;
  background: #fff;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.hero-route a:hover,
.hero-route a:focus-visible {
  background: #f2f7ff;
}

.hero-route span {
  color: #0f9384;
  font-size: 12px;
  font-weight: 820;
}

.hero-route strong {
  color: #101828;
  font-size: 17px;
  line-height: 1.25;
}

.home-section {
  padding: clamp(64px, 7vw, 92px) 0;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.54fr);
  grid-template-areas:
    "eyebrow copy"
    "title copy";
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.home-section-head.compact {
  display: block;
  max-width: 740px;
}

.home-section-head > .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 12px;
}

.home-section-head > h2 {
  grid-area: title;
}

.home-section-head > p:not(.eyebrow) {
  grid-area: copy;
}

.home-section-head h2 {
  max-width: 760px;
  color: #101828;
  font-size: clamp(32px, 3.65vw, 48px);
  line-height: 1.12;
  font-weight: 760;
  text-wrap: balance;
}

.home-section-head p:not(.eyebrow) {
  color: #526174;
  font-size: 17px;
  line-height: 1.76;
}

.feature-matrix {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
}

.feature-lead,
.feature-stack article,
.store-panel,
.flow-lanes article {
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 18px 44px rgba(15, 23, 42, 0.055);
}

.feature-lead {
  display: flex;
  min-height: 428px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(145deg, #101828, #1d4fc7 60%, #0f9384),
    #101828;
  color: #fff;
}

.feature-lead .feature-tag {
  margin: 0 0 20px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
}

.feature-lead h3 {
  max-width: 560px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
}

.feature-lead p {
  max-width: 610px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.76;
}

.feature-meter {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.feature-meter span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.feature-meter i {
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-stack article {
  min-height: 130px;
  padding: 24px;
}

.feature-stack span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: var(--radius);
  background: #edf5ff;
  color: #1949b8;
  font-size: 12px;
  font-weight: 760;
}

.feature-stack h3 {
  margin-top: 18px;
  color: #101828;
  font-size: 23px;
  line-height: 1.22;
}

.feature-stack p {
  margin-top: 10px;
  color: #526174;
  line-height: 1.68;
}

.store-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.store-copy {
  position: sticky;
  top: 110px;
  min-width: 0;
}

.store-copy h2 {
  color: #101828;
  font-size: clamp(32px, 3.55vw, 46px);
  line-height: 1.12;
  font-weight: 760;
}

.store-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: #526174;
  font-size: 17px;
  line-height: 1.76;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-panel {
  padding: 18px;
  background: #fff;
}

.store-panel .product-toolbar {
  width: 100%;
  margin: 0 0 14px;
  box-shadow: none;
}

.product-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-list .product-card,
.product-list .product-card.featured {
  grid-column: auto;
  min-height: auto;
  padding: 18px;
  box-shadow: none;
}

.product-list .product-card.featured {
  grid-column: 1 / -1;
}

.product-list .product-card h3 {
  min-height: auto;
  margin-top: 16px;
  font-size: 18px;
}

.product-list .product-card p {
  font-size: 14px;
  line-height: 1.62;
}

.product-list .product-link {
  min-height: 42px;
  margin-top: 16px;
}

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

.flow-lanes article {
  min-height: 220px;
  padding: 28px;
}

.flow-lanes span {
  color: #0f9384;
  font-size: 13px;
  font-weight: 820;
}

.flow-lanes h3 {
  margin-top: 34px;
  color: #101828;
  font-size: 24px;
  line-height: 1.24;
}

.flow-lanes p {
  margin-top: 12px;
  color: #526174;
  line-height: 1.72;
}

.faq-redesign {
  padding-top: 72px;
}

@media (max-width: 1040px) {
  .home-hero-grid,
  .feature-matrix,
  .store-shell,
  .home-section-head {
    grid-template-columns: 1fr;
  }

  .home-workbench {
    max-width: 760px;
  }

  .store-copy {
    position: static;
  }

  .hero-route,
  .flow-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-main {
    width: min(calc(100% - 24px), 1180px);
  }

  .home-hero {
    padding: 44px 0 34px;
  }

  .home-hero h1 {
    font-size: clamp(36px, 10.2vw, 44px);
    line-height: 1.12;
  }

  .home-hero-intro,
  .home-section-head p:not(.eyebrow),
  .store-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .workbench-main,
  .hero-route,
  .flow-lanes {
    grid-template-columns: 1fr;
  }

  .home-workbench,
  .store-panel {
    padding: 14px;
  }

  .route-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 64px;
    padding: 12px 14px;
  }

  .hero-route a {
    min-height: 78px;
  }

  .home-section {
    padding: 60px 0;
  }

  .home-section-head h2,
  .store-copy h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.14;
  }

  .feature-lead {
    min-height: 380px;
    padding: 24px;
  }

  .feature-meter {
    grid-template-columns: 1fr;
  }

  .feature-meter i {
    display: none;
  }

  .store-actions,
  .store-actions .btn {
    width: 100%;
  }

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

  .product-list .product-card.featured {
    grid-column: auto;
  }
}

/* Home detail refinement inspired by mature B2B service homepages */
body.home-page {
  --home-blue: #225ed8;
  --home-blue-strong: #1746b6;
  --home-teal: #0f8f84;
  --home-ink: #101828;
  --home-muted: #536278;
  --home-band: #f3f7fc;
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 34%, #f6f9fd 100%),
    #fff;
}

body.home-page .site-header {
  top: 0;
  width: 100%;
  max-width: none;
  min-height: 72px;
  margin-top: 0;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.055);
}

body.home-page .site-nav {
  width: fit-content;
  justify-self: center;
  border-color: rgba(25, 73, 184, 0.07);
  background: rgba(248, 251, 255, 0.82);
  box-shadow: none;
}

body.home-page .site-nav a {
  color: #42526a;
}

body.home-page .site-nav a:hover,
body.home-page .site-nav a:focus-visible,
body.home-page .site-nav a.is-active {
  background: #fff;
  color: var(--home-blue-strong);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
}

body.home-page .header-cta,
body.home-page .btn-primary {
  background:
    linear-gradient(135deg, #225ed8, #0f8f84),
    var(--home-blue);
  box-shadow: 0 14px 30px rgba(34, 94, 216, 0.18);
}

body.home-page .btn-secondary {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.11);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

body.home-page .home-main {
  width: 100%;
  max-width: none;
}

body.home-page .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 104px) 0 58px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background:
    linear-gradient(180deg, rgba(237, 245, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 68%, #fff 100%),
    #fff;
}

body.home-page .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(34, 94, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 94, 216, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.42) 54%, transparent 100%);
}

body.home-page .home-hero-grid,
body.home-page .hero-route,
body.home-page .home-section-head,
body.home-page .feature-matrix,
body.home-page .store-shell,
body.home-page .flow-lanes,
body.home-page .faq-list {
  width: min(calc(100% - 40px), 1180px);
  margin-left: auto;
  margin-right: auto;
}

body.home-page .home-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 34px;
  text-align: center;
}

body.home-page .home-hero-copy {
  max-width: 920px;
  margin: 0 auto;
}

body.home-page .home-pills {
  justify-content: center;
  margin-bottom: 18px;
}

body.home-page .home-pills span {
  min-height: 32px;
  padding: 0 13px;
  border-color: rgba(34, 94, 216, 0.12);
  color: var(--home-blue-strong);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

body.home-page .home-hero .eyebrow,
body.home-page .home-section-head > .eyebrow,
body.home-page .store-copy .eyebrow {
  margin-bottom: 14px;
  color: var(--home-blue-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

body.home-page .home-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--home-ink);
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 720;
  line-height: 1.16;
  text-wrap: balance;
}

body.home-page .home-title-line {
  display: block;
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
}

body.home-page .home-hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 242, 230, 0.95), rgba(255, 255, 255, 0.36));
}

body.home-page #page-title {
  margin-inline: auto;
}

body.home-page .home-hero-intro {
  max-width: 800px;
  margin: 22px auto 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.84;
}

body.home-page .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

body.home-page .home-workbench {
  width: min(100%, 980px);
  margin: 4px auto 0;
  padding: 22px;
  text-align: left;
  border-color: rgba(15, 23, 42, 0.085);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 24px 70px rgba(15, 23, 42, 0.11);
}

body.home-page .home-workbench::before {
  background:
    linear-gradient(90deg, rgba(34, 94, 216, 0.036) 1px, transparent 1px),
    linear-gradient(rgba(34, 94, 216, 0.036) 1px, transparent 1px);
  background-size: 40px 40px;
}

body.home-page .workbench-head {
  min-height: 38px;
  margin-bottom: 16px;
  color: #132033;
  font-size: 15px;
}

body.home-page .workbench-main {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
}

body.home-page .credit-tile,
body.home-page .ledger-tile {
  min-height: 164px;
}

body.home-page .credit-tile {
  background:
    linear-gradient(145deg, #101828, #225ed8 58%, #0f8f84),
    #101828;
}

body.home-page .credit-tile strong {
  font-size: clamp(54px, 5.8vw, 72px);
}

body.home-page .ledger-tile {
  background: rgba(255, 255, 255, 0.9);
}

body.home-page .ledger-bars span {
  background: linear-gradient(180deg, #7dd9cf, #225ed8);
  opacity: 0.92;
}

body.home-page .route-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.home-page .route-list div {
  grid-template-columns: 1fr;
  gap: 6px;
  min-height: 76px;
  align-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
}

body.home-page .route-list span {
  color: var(--home-blue-strong);
}

body.home-page .home-workbench .copy-api {
  min-height: 44px;
  background:
    linear-gradient(135deg, #101828, #225ed8),
    #101828;
}

body.home-page .hero-route {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.065);
}

body.home-page .hero-route a {
  min-height: 92px;
  padding: 18px 22px;
  text-align: left;
}

body.home-page .hero-route a:hover,
body.home-page .hero-route a:focus-visible {
  background: #f7fbff;
  transform: translateY(-1px);
}

body.home-page .hero-route span,
body.home-page .flow-lanes span {
  color: var(--home-teal);
  font-variant-numeric: tabular-nums;
}

body.home-page .hero-route strong {
  font-size: 16px;
}

body.home-page .home-section {
  padding: clamp(78px, 8vw, 112px) 0;
  border-top: 0;
}

body.home-page .platform-redesign,
body.home-page .workflow-redesign {
  background: #fff;
}

body.home-page .storefront-redesign,
body.home-page .faq-redesign {
  background: var(--home-band);
}

body.home-page .home-section-head {
  display: block;
  max-width: 880px;
  margin-bottom: 44px;
  text-align: center;
}

body.home-page .home-section-head.compact {
  max-width: 760px;
}

body.home-page .home-section-head h2,
body.home-page .store-copy h2 {
  color: var(--home-ink);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

body.home-page .home-section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.78;
}

body.home-page .feature-matrix {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 20px;
}

body.home-page .feature-lead,
body.home-page .feature-stack article,
body.home-page .store-panel,
body.home-page .flow-lanes article,
body.home-page .faq-list details {
  border-color: rgba(15, 23, 42, 0.075);
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 18px 42px rgba(15, 23, 42, 0.055);
}

body.home-page .feature-lead {
  min-height: 390px;
  justify-content: flex-start;
  padding: clamp(28px, 3.6vw, 40px);
  color: var(--home-ink);
}

body.home-page .feature-lead::after {
  display: none;
}

body.home-page .feature-lead .feature-tag {
  border-color: rgba(34, 94, 216, 0.14);
  background: #edf5ff;
  color: var(--home-blue-strong);
}

body.home-page .feature-lead h3 {
  max-width: 600px;
  color: var(--home-ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

body.home-page .feature-lead p {
  color: var(--home-muted);
}

body.home-page .feature-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

body.home-page .feature-stats div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(34, 94, 216, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f7fbff),
    #fff;
}

body.home-page .feature-stats dt {
  color: var(--home-blue-strong);
  font-size: 13px;
  font-weight: 760;
}

body.home-page .feature-stats dd {
  margin-top: 12px;
  color: #344054;
  font-size: 15px;
  line-height: 1.45;
}

body.home-page .feature-meter span {
  border-color: rgba(34, 94, 216, 0.14);
  background: #fff;
  color: var(--home-blue-strong);
}

body.home-page .feature-meter i {
  background: rgba(34, 94, 216, 0.2);
}

body.home-page .feature-stack {
  gap: 16px;
}

body.home-page .feature-stack article {
  min-height: 122px;
  padding: 22px 24px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.home-page .feature-stack article:hover,
body.home-page .flow-lanes article:hover,
body.home-page .product-list .product-card:hover {
  border-color: rgba(34, 94, 216, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

body.home-page .feature-stack h3 {
  font-size: 22px;
}

body.home-page .store-shell {
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 5vw, 64px);
}

body.home-page .store-copy {
  top: 106px;
  padding-top: 8px;
}

body.home-page .store-copy p:not(.eyebrow) {
  color: var(--home-muted);
}

body.home-page .store-actions {
  margin-top: 26px;
}

body.home-page .store-panel {
  padding: 20px;
}

body.home-page .store-panel .product-toolbar {
  gap: 8px;
  padding: 7px;
  background: #f7faff;
}

body.home-page .filter-button {
  flex: 1;
  min-width: 90px;
}

body.home-page .filter-button.active {
  background: #101828;
  box-shadow: none;
}

body.home-page .product-list {
  gap: 14px;
}

body.home-page .product-list .product-card,
body.home-page .product-list .product-card.featured {
  border-color: rgba(15, 23, 42, 0.075);
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.home-page .product-list .product-card.featured {
  background:
    linear-gradient(135deg, #edf5ff, #fff 48%, #eefbf8),
    #fff;
}

body.home-page .product-meta span {
  color: #667085;
}

body.home-page .product-meta strong {
  color: var(--home-blue-strong);
}

body.home-page .product-list .product-card h3 {
  color: var(--home-ink);
  font-size: 17px;
  line-height: 1.35;
}

body.home-page .product-list .product-card p {
  color: var(--home-muted);
}

body.home-page .product-list .product-link {
  width: fit-content;
  min-width: 112px;
  padding: 0 14px;
  background: #f3f7ff;
}

body.home-page .product-list .product-link:hover,
body.home-page .product-list .product-link:focus-visible {
  background: var(--home-blue-strong);
}

body.home-page .flow-lanes {
  position: relative;
}

body.home-page .flow-lanes::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 94, 216, 0.2), transparent);
}

body.home-page .flow-lanes article {
  position: relative;
  min-height: 206px;
  padding: 26px;
}

body.home-page .flow-lanes span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 143, 132, 0.15);
  border-radius: var(--radius);
  background: #eefbf8;
  font-size: 13px;
}

body.home-page .flow-lanes h3 {
  margin-top: 26px;
  font-size: 23px;
}

body.home-page .faq-redesign {
  padding-top: clamp(72px, 7vw, 96px);
}

body.home-page .faq-list {
  max-width: 880px;
}

body.home-page .site-footer {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 54px max(24px, calc((100% - 1180px) / 2)) 32px;
  background: #fff;
}

@media (max-width: 1040px) {
  body.home-page .site-header {
    grid-template-columns: auto auto;
    padding: 12px 20px;
  }

  body.home-page .site-nav {
    width: 100%;
    justify-self: stretch;
  }

  body.home-page .home-hero-grid,
  body.home-page .hero-route,
  body.home-page .home-section-head,
  body.home-page .feature-matrix,
  body.home-page .store-shell,
  body.home-page .flow-lanes,
  body.home-page .faq-list {
    width: min(calc(100% - 40px), 1180px);
  }

  body.home-page .feature-matrix,
  body.home-page .store-shell {
    grid-template-columns: 1fr;
  }

  body.home-page .store-copy {
    position: static;
    max-width: 820px;
  }
}

@media (max-width: 820px) {
  body.home-page .home-hero {
    padding: 44px 0 42px;
  }

  body.home-page .home-hero-grid,
  body.home-page .hero-route,
  body.home-page .home-section-head,
  body.home-page .feature-matrix,
  body.home-page .store-shell,
  body.home-page .flow-lanes,
  body.home-page .faq-list {
    width: min(calc(100% - 24px), 1180px);
  }

  body.home-page .home-hero h1 {
    font-size: clamp(32px, 8vw, 42px);
    line-height: 1.18;
  }

  body.home-page .home-hero-intro {
    font-size: 16px;
    line-height: 1.78;
  }

  body.home-page .workbench-main,
  body.home-page .route-list,
  body.home-page .hero-route,
  body.home-page .flow-lanes,
  body.home-page .product-list {
    grid-template-columns: 1fr;
  }

  body.home-page .home-workbench {
    padding: 14px;
  }

  body.home-page .credit-tile,
  body.home-page .ledger-tile {
    min-height: 144px;
  }

  body.home-page .hero-route a {
    min-height: 76px;
  }

  body.home-page .home-section {
    padding: 62px 0;
  }

  body.home-page .home-section-head {
    margin-bottom: 30px;
    text-align: left;
  }

  body.home-page .home-section-head h2,
  body.home-page .store-copy h2 {
    font-size: clamp(29px, 7.8vw, 38px);
    line-height: 1.2;
  }

  body.home-page .home-section-head p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  body.home-page .feature-lead {
    min-height: auto;
    padding: 24px;
  }

  body.home-page .feature-meter {
    grid-template-columns: 1fr;
  }

  body.home-page .feature-stats {
    grid-template-columns: 1fr;
  }

  body.home-page .feature-meter i,
  body.home-page .flow-lanes::before {
    display: none;
  }

  body.home-page .product-list .product-link,
  body.home-page .store-actions,
  body.home-page .store-actions .btn,
  body.home-page .hero-actions,
  body.home-page .hero-actions .btn {
    width: 100%;
  }

  body.home-page .store-panel {
    padding: 14px;
  }
}

@media (max-width: 560px) {
  body.home-page .site-header {
    grid-template-columns: 1fr;
    padding: 10px 12px;
  }

  body.home-page .site-nav {
    overflow-x: auto;
  }

  body.home-page .home-pills {
    justify-content: flex-start;
  }

  body.home-page .home-hero-grid {
    text-align: left;
  }

  body.home-page .home-hero h1,
  body.home-page .home-hero-intro {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 400px) {
  body.home-page .home-hero h1 {
    font-size: clamp(29px, 7.5vw, 32px);
  }
}

/* TalkingData-inspired visual assets and module rhythm */
body.home-page {
  background: #fff;
}

body.home-page .site-header {
  position: fixed;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(16, 90, 204, 0.12);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

body.home-page .site-header.is-solid,
body.home-page .site-header:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.055);
}

body.home-page .site-header:hover .brand-text,
body.home-page .site-header.is-solid .brand-text,
body.home-page .site-header.is-solid .site-nav a,
body.home-page .site-header:hover .site-nav a {
  color: #26364f;
}

body.home-page .site-header:hover .site-nav {
  background: #f8fbff;
  border-color: rgba(30, 41, 59, 0.06);
}

body.home-page .site-header.is-solid .site-nav {
  background: #f8fbff;
  border-color: rgba(30, 41, 59, 0.06);
}

body.home-page .site-header:hover .site-nav a:hover,
body.home-page .site-header:hover .site-nav a:focus-visible,
body.home-page .site-header:hover .site-nav a.is-active,
body.home-page .site-header.is-solid .site-nav a:hover,
body.home-page .site-header.is-solid .site-nav a:focus-visible,
body.home-page .site-header.is-solid .site-nav a.is-active {
  background: #fff;
  color: var(--home-blue-strong);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
}

body.home-page .site-header.is-solid .header-cta,
body.home-page .site-header:hover .header-cta {
  border-color: rgba(34, 94, 216, 0.2);
  background: linear-gradient(135deg, #225ed8, #0f8f84);
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 94, 216, 0.18);
}

body.home-page .brand-text,
body.home-page .site-nav a {
  color: #fff;
}

body.home-page .site-nav {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(10, 55, 150, 0.18);
  backdrop-filter: blur(14px);
}

body.home-page .site-nav a:hover,
body.home-page .site-nav a:focus-visible,
body.home-page .site-nav a.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

body.home-page .header-cta {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

body.home-page .home-hero {
  min-height: 760px;
  margin-top: calc(-1 * var(--header-height));
  padding: 148px 0 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(15, 91, 204, 0.16), rgba(12, 78, 190, 0.1)),
    url("./assets/hero-data-bg.svg") center top / cover no-repeat,
    #1f6fe5;
}

body.home-page .home-hero::before {
  display: none;
}

body.home-page .home-hero-grid {
  gap: 0;
}

body.home-page .home-pills span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  box-shadow: none;
}

body.home-page .home-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

body.home-page .home-hero h1 {
  color: #fff;
  font-size: clamp(44px, 4.4vw, 60px);
  font-weight: 540;
  line-height: 1.18;
  text-shadow: 0 18px 48px rgba(0, 30, 96, 0.18);
}

body.home-page .home-hero-intro {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

body.home-page .home-hero .btn-primary {
  background: #fff;
  color: #1858ca;
  box-shadow: 0 18px 44px rgba(7, 37, 105, 0.2);
}

body.home-page .home-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  box-shadow: none;
}

body.home-page .hero-news-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 112px), 1000px);
  min-height: 138px;
  margin: 54px auto -70px;
  padding: 24px 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.16);
}

body.home-page .hero-news-visual {
  display: grid;
  width: 104px;
  height: 88px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(34, 94, 216, 0.1), rgba(15, 143, 132, 0.12)),
    #f3f8ff;
}

body.home-page .hero-news-visual span {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #74dbe2, #2368e2);
  box-shadow:
    18px 12px 0 rgba(34, 94, 216, 0.14),
    -12px 18px 0 rgba(15, 143, 132, 0.14);
  transform: rotate(45deg);
}

body.home-page .hero-news-card strong {
  display: block;
  color: #172033;
  font-size: 22px;
  font-weight: 620;
}

body.home-page .hero-news-card p {
  margin-top: 10px;
  color: #667085;
  line-height: 1.7;
}

body.home-page .hero-news-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(34, 94, 216, 0.18);
  border-radius: var(--radius);
  color: #1f63d8;
  font-weight: 700;
}

body.home-page .home-workbench {
  z-index: 2;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  transform: translateY(106px);
}

body.home-page .hero-route {
  z-index: 2;
  margin-top: 136px;
  background: rgba(15, 23, 42, 0.06);
}

body.home-page .platform-redesign {
  padding-top: 150px;
}

body.home-page .home-section-head .eyebrow,
body.home-page .store-copy .eyebrow {
  color: #1f63d8;
}

body.home-page .feature-matrix {
  align-items: stretch;
}

body.home-page .feature-lead,
body.home-page .feature-stack article {
  position: relative;
}

body.home-page .feature-lead > img,
body.home-page .feature-stack article > img {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}

body.home-page .feature-lead .feature-tag {
  position: absolute;
  top: 36px;
  right: 36px;
}

body.home-page .feature-lead {
  min-height: 470px;
  justify-content: flex-start;
}

body.home-page .feature-meter {
  margin-top: auto;
  padding-top: 30px;
}

body.home-page .feature-stack article {
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-template-areas:
    "icon tag"
    "icon title"
    "icon copy";
  column-gap: 22px;
  align-content: center;
}

body.home-page .feature-stack article > img {
  grid-area: icon;
  width: 62px;
  height: 62px;
  margin: 0;
}

body.home-page .feature-stack span {
  grid-area: tag;
  width: fit-content;
}

body.home-page .feature-stack h3 {
  grid-area: title;
  margin-top: 12px;
}

body.home-page .feature-stack p {
  grid-area: copy;
}

body.home-page .storefront-redesign {
  position: relative;
  overflow: hidden;
}

body.home-page .storefront-redesign::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  top: 86px;
  width: 146px;
  height: 146px;
  border-radius: 0 44px 0 44px;
  background: #f4a232;
  opacity: 0.95;
}

body.home-page .store-flow-art {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin-top: 26px;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.065);
}

@media (max-width: 1040px) {
  body.home-page .site-header {
    position: sticky;
    background: rgba(255, 255, 255, 0.94);
  }

  body.home-page .brand-text,
  body.home-page .site-nav a {
    color: #26364f;
  }

  body.home-page .site-nav {
    background: #f8fbff;
    border-color: rgba(30, 41, 59, 0.06);
  }

  body.home-page .site-nav a:hover,
  body.home-page .site-nav a:focus-visible,
  body.home-page .site-nav a.is-active {
    background: #fff;
    color: var(--home-blue-strong);
  }

  body.home-page .header-cta {
    background: linear-gradient(135deg, #225ed8, #0f8f84);
  }

  body.home-page .hero-news-card {
    width: min(calc(100% - 40px), 980px);
    grid-template-columns: 96px 1fr;
  }

  body.home-page .hero-news-card a {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 820px) {
  body.home-page .home-hero {
    min-height: auto;
    margin-top: 0;
    padding: 56px 0 0;
  }

  body.home-page .home-hero h1 {
    font-size: clamp(31px, 7.8vw, 40px);
    line-height: 1.22;
  }

  body.home-page .home-hero-intro {
    margin-top: 22px;
  }

  body.home-page .hero-news-card {
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 980px);
    margin: 32px auto -34px;
    padding: 20px;
  }

  body.home-page .hero-news-visual {
    display: none;
  }

  body.home-page .hero-news-card a {
    grid-column: auto;
    width: 100%;
  }

  body.home-page .home-workbench {
    transform: translateY(64px);
  }

  body.home-page .hero-route {
    margin-top: 84px;
  }

  body.home-page .platform-redesign {
    padding-top: 96px;
  }

  body.home-page .feature-lead .feature-tag {
    position: static;
    margin-bottom: 18px;
  }

  body.home-page .feature-lead > img {
    margin-bottom: 18px;
  }

  body.home-page .feature-stack article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "tag"
      "title"
      "copy";
  }

  body.home-page .feature-stack article > img {
    margin-bottom: 18px;
  }

  body.home-page .storefront-redesign::before {
    display: none;
  }
}

@media (max-width: 560px) {
  body.home-page .home-hero {
    background-position: center top;
  }

  body.home-page .home-hero h1 {
    color: #fff;
  }

  body.home-page .home-hero-intro {
    color: rgba(255, 255, 255, 0.88);
  }

  body.home-page .home-pills span {
    color: #fff;
  }
}

/* Full hero reset: blue visual stage + floating news + separate console module */
body.home-page .home-hero {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 650px;
  margin-top: calc(-1 * var(--header-height));
  padding: 132px 0 0;
  background:
    linear-gradient(180deg, rgba(15, 75, 190, 0.02), rgba(16, 80, 194, 0.16)),
    url("./assets/hero-data-bg.svg") center top / cover no-repeat,
    #1f6fe5;
}

body.home-page .home-hero-grid {
  width: 100%;
  max-width: none;
  display: block;
}

body.home-page .home-hero-copy {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 20px;
  text-align: center;
}

body.home-page .home-pills {
  justify-content: center;
  margin: 20px 0 0;
}

body.home-page .home-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 460;
  line-height: 1.12;
  letter-spacing: 0;
}

body.home-page .home-hero-subtitle {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.4;
}

body.home-page .home-hero-intro {
  max-width: 780px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.8;
}

body.home-page .hero-news-card {
  width: min(calc(100% - 120px), 1020px);
  margin: 58px auto -70px;
}

body.home-page .console-showcase {
  position: relative;
  z-index: 1;
  padding: 122px 0 84px;
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fd 100%),
    #fff;
}

body.home-page .console-layout {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
}

body.home-page .console-copy {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

body.home-page .console-copy .eyebrow {
  color: #1f63d8;
}

body.home-page .console-copy h2 {
  color: var(--home-ink);
  font-size: clamp(32px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

body.home-page .console-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.78;
}

body.home-page .console-showcase .home-workbench {
  width: min(100%, 980px);
  transform: none;
}

body.home-page .console-showcase .hero-route {
  width: min(100%, 1180px);
  margin-top: 28px;
}

body.home-page .platform-redesign {
  padding-top: clamp(78px, 8vw, 112px);
}

@media (max-width: 820px) {
  body.home-page .home-hero {
    margin-top: 0;
    min-height: auto;
    padding: 56px 0 0;
  }

  body.home-page .home-hero-copy {
    text-align: left;
  }

  body.home-page .home-pills {
    justify-content: flex-start;
  }

  body.home-page .home-hero h1 {
    font-size: clamp(32px, 8vw, 40px);
    max-width: 10em;
  }

  body.home-page .home-hero-subtitle {
    font-size: 20px;
  }

  body.home-page .home-hero h1::after {
    margin-left: 0;
  }

  body.home-page .hero-news-card {
    width: min(calc(100% - 24px), 1020px);
    margin: 32px auto -34px;
  }

  body.home-page .console-showcase {
    padding: 76px 0 62px;
  }

  body.home-page .console-layout {
    width: min(calc(100% - 24px), 1180px);
  }

  body.home-page .console-copy {
    text-align: left;
  }

  body.home-page .console-copy p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }
}

/* User-focused polish: refined hero, visual cards, and richer module detail */
body.home-page {
  --user-blue: #1260d8;
  --user-blue-deep: #082f8f;
  --user-cyan: #12b8c8;
  --user-mint: #42d7a6;
  --user-amber: #f4ad3d;
  --user-ink: #101828;
  --user-soft: #f5f8fc;
  background: #fff;
}

body.home-page .home-hero {
  min-height: 690px;
  padding-top: 142px;
  background:
    radial-gradient(circle at 16% 20%, rgba(110, 201, 255, 0.38) 0, rgba(110, 201, 255, 0) 28%),
    radial-gradient(circle at 82% 28%, rgba(71, 220, 171, 0.28) 0, rgba(71, 220, 171, 0) 25%),
    linear-gradient(180deg, rgba(5, 50, 150, 0.04), rgba(8, 66, 178, 0.24)),
    url("./assets/hero-data-bg.svg") center top / cover no-repeat,
    linear-gradient(135deg, #1359d7 0%, #1b77e7 54%, #0b8fa3 100%);
}

body.home-page .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 112px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 88%);
}

body.home-page .home-hero-copy {
  max-width: 1040px;
}

body.home-page .home-hero .eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

body.home-page .home-hero h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 620;
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

body.home-page .home-hero h1::after {
  width: 132px;
  height: 4px;
  margin-top: 26px;
  background: linear-gradient(90deg, #fff, rgba(66, 215, 166, 0.92), rgba(255, 255, 255, 0));
}

body.home-page .home-hero-subtitle {
  margin-top: 24px;
  font-size: clamp(21px, 2vw, 28px);
}

body.home-page .home-hero-intro {
  max-width: 830px;
  color: rgba(255, 255, 255, 0.9);
}

body.home-page .home-pills {
  gap: 10px;
}

body.home-page .home-pills span {
  min-height: 36px;
  padding-inline: 15px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  backdrop-filter: blur(12px);
  white-space: normal;
}

body.home-page .hero-actions .btn {
  min-height: 52px;
  padding-inline: 24px;
}

body.home-page .hero-news-card {
  grid-template-columns: 116px minmax(0, 1fr) auto;
  width: min(calc(100% - 96px), 1080px);
  margin-top: 60px;
  padding: 26px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96) 56%, rgba(236, 251, 247, 0.98)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 26px 64px rgba(9, 39, 96, 0.2);
}

body.home-page .hero-news-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(18, 96, 216, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

body.home-page .hero-news-visual {
  width: 92px;
  height: 92px;
  background:
    linear-gradient(135deg, rgba(18, 96, 216, 0.12), rgba(66, 215, 166, 0.14)),
    repeating-linear-gradient(90deg, rgba(18, 96, 216, 0.08) 0 1px, transparent 1px 14px),
    #f3f8ff;
}

body.home-page .hero-news-visual span {
  border-radius: 18px;
  animation: hero-card-float 4.8s ease-in-out infinite;
}

body.home-page .hero-news-card strong {
  color: #10213d;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 720;
}

body.home-page .hero-news-card a {
  min-width: 112px;
  border-color: rgba(18, 96, 216, 0.18);
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 96, 216, 0.08);
}

body.home-page .hero-news-card a:hover,
body.home-page .hero-news-card a:focus-visible {
  background: var(--user-blue);
  color: #fff;
  transform: translateY(-1px);
}

body.home-page .console-showcase {
  padding-top: 132px;
  background:
    linear-gradient(90deg, rgba(18, 96, 216, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(18, 96, 216, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

body.home-page .console-copy {
  margin-bottom: 40px;
}

body.home-page .console-copy h2,
body.home-page .home-section-head h2,
body.home-page .store-copy h2 {
  font-weight: 760;
  letter-spacing: 0;
}

body.home-page .home-workbench {
  border-color: rgba(18, 96, 216, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    #fff;
}

body.home-page .home-workbench::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 215, 166, 0.22), rgba(66, 215, 166, 0));
  pointer-events: none;
}

body.home-page .credit-tile {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #071b4d, #1260d8 58%, #10a8aa),
    #071b4d;
}

body.home-page .credit-tile::after {
  content: "";
  position: absolute;
  inset: auto -20px -36px 18px;
  height: 88px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.32) 8% 10%, transparent 10% 28%, rgba(255, 255, 255, 0.22) 28% 30%, transparent 30% 100%);
  opacity: 0.6;
  transform: rotate(-8deg);
}

body.home-page .ledger-tile {
  position: relative;
  overflow: hidden;
}

body.home-page .ledger-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 56%, rgba(18, 96, 216, 0.06) 56% 57%, transparent 57%),
    radial-gradient(circle at 82% 22%, rgba(18, 184, 200, 0.12), transparent 28%);
  pointer-events: none;
}

body.home-page .route-list div,
body.home-page .hero-route a,
body.home-page .feature-stack article,
body.home-page .flow-lanes article,
body.home-page .product-list .product-card {
  position: relative;
  overflow: hidden;
}

body.home-page .route-list div::after,
body.home-page .hero-route a::after,
body.home-page .feature-stack article::after,
body.home-page .flow-lanes article::after,
body.home-page .product-list .product-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 96, 216, 0.12), rgba(18, 96, 216, 0) 68%);
  pointer-events: none;
}

body.home-page .route-list div:nth-child(2)::after,
body.home-page .feature-stack article:nth-child(2)::after,
body.home-page .flow-lanes article:nth-child(2)::after {
  background: radial-gradient(circle, rgba(18, 184, 200, 0.14), rgba(18, 184, 200, 0) 68%);
}

body.home-page .route-list div:nth-child(3)::after,
body.home-page .feature-stack article:nth-child(3)::after,
body.home-page .flow-lanes article:nth-child(3)::after {
  background: radial-gradient(circle, rgba(244, 173, 61, 0.16), rgba(244, 173, 61, 0) 68%);
}

body.home-page .hero-route {
  border-color: rgba(18, 96, 216, 0.1);
}

body.home-page .hero-route a {
  min-height: 104px;
}

body.home-page .platform-redesign {
  background:
    linear-gradient(180deg, #fff 0%, #fff 66%, #f5f8fc 100%);
}

body.home-page .feature-lead {
  overflow: hidden;
  border-color: rgba(18, 96, 216, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.96)),
    #fff;
}

body.home-page .feature-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(18, 96, 216, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(18, 96, 216, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(18, 96, 216, 0.07) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  pointer-events: none;
}

body.home-page .feature-lead > * {
  position: relative;
  z-index: 1;
}

body.home-page .feature-stats div {
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
}

body.home-page .feature-stack article {
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    repeating-linear-gradient(90deg, rgba(18, 96, 216, 0.04) 0 1px, transparent 1px 22px),
    #fff;
}

body.home-page .feature-stack article > img {
  padding: 11px;
  border-radius: var(--radius);
  background: #f2f7ff;
}

body.home-page .storefront-redesign {
  background:
    linear-gradient(180deg, #f5f8fc 0%, #edf4fb 100%);
}

body.home-page .storefront-redesign::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - 1180px) / 2));
  bottom: 58px;
  width: 220px;
  height: 110px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 96, 216, 0.1), rgba(18, 184, 200, 0.12)),
    repeating-linear-gradient(0deg, rgba(18, 96, 216, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.9;
  pointer-events: none;
}

body.home-page .store-flow-art {
  border: 1px solid rgba(18, 96, 216, 0.08);
  background: #fff;
}

body.home-page .store-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98)),
    #fff;
}

body.home-page .store-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 4%, rgba(18, 184, 200, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(18, 96, 216, 0.035) 1px, transparent 1px);
  background-size: auto, 32px 32px;
  pointer-events: none;
}

body.home-page .store-panel > * {
  position: relative;
  z-index: 1;
}

body.home-page .product-list .product-card {
  padding-top: 20px;
  border-color: rgba(18, 96, 216, 0.08);
}

body.home-page .product-list .product-card::before {
  height: 4px;
  background: linear-gradient(90deg, var(--user-blue), var(--user-cyan), var(--user-mint));
  opacity: 0.72;
}

body.home-page .product-list .product-card.featured {
  border-color: rgba(18, 96, 216, 0.14);
  background:
    linear-gradient(135deg, rgba(232, 242, 255, 0.96), rgba(255, 255, 255, 0.96) 52%, rgba(231, 251, 246, 0.96)),
    #fff;
}

body.home-page .product-meta span {
  color: #4d5d73;
  font-size: 12px;
}

body.home-page .product-meta strong {
  color: #0d56c4;
  font-size: 20px;
}

body.home-page .workflow-redesign {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

body.home-page .flow-lanes article {
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    #fff;
}

body.home-page .flow-lanes article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 66%, rgba(18, 96, 216, 0.06) 66% 67%, transparent 67%),
    radial-gradient(circle at 20% 20%, rgba(66, 215, 166, 0.1), transparent 26%);
  pointer-events: none;
}

body.home-page .flow-lanes article > * {
  position: relative;
  z-index: 1;
}

body.home-page .faq-redesign {
  background:
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

body.home-page .faq-redesign .home-section-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.72;
}

body.home-page .faq-more-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

body.home-page .faq-more-action .btn {
  min-width: 240px;
}

body.home-page .usage-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 980px);
  margin: 18px auto 0;
}

body.home-page .usage-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  padding: 22px;
  border: 1px solid rgba(18, 96, 216, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.96)),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 16px 38px rgba(15, 23, 42, 0.045);
}

body.home-page .usage-proof-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--user-blue), var(--user-cyan), var(--user-mint));
}

body.home-page .usage-proof-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 96, 216, 0.13), rgba(18, 96, 216, 0) 66%);
  pointer-events: none;
}

body.home-page .usage-proof-grid article:nth-child(2)::after {
  background: radial-gradient(circle, rgba(18, 184, 200, 0.14), rgba(18, 184, 200, 0) 66%);
}

body.home-page .usage-proof-grid article:nth-child(3)::after {
  background: radial-gradient(circle, rgba(244, 173, 61, 0.16), rgba(244, 173, 61, 0) 66%);
}

body.home-page .usage-proof-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  background: #eef6ff;
  color: var(--user-blue);
  font-size: 12px;
  font-weight: 760;
}

body.home-page .usage-proof-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  color: var(--user-ink);
  font-size: 19px;
  line-height: 1.32;
}

body.home-page .usage-proof-grid p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.72;
}

body.home-page .store-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

body.home-page .store-stats div {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(18, 96, 216, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}

body.home-page .store-stats div::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 200, 0.16), rgba(18, 184, 200, 0) 68%);
}

body.home-page .store-stats span {
  display: block;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

body.home-page .store-stats strong {
  display: block;
  margin-top: 10px;
  color: #0d56c4;
  font-size: 20px;
  line-height: 1.18;
  font-variant-numeric: tabular-nums;
}

body.home-page .feature-matrix {
  position: relative;
}

body.home-page .feature-matrix::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 96, 216, 0.18), transparent);
  pointer-events: none;
}

body.home-page .feature-stack article:hover img {
  transform: translateY(-2px);
}

body.home-page .feature-stack article > img {
  transition: transform 180ms ease;
}

body.home-page .store-copy {
  padding: 8px 0 0;
}

body.home-page .store-panel .product-toolbar {
  position: sticky;
  top: 86px;
  z-index: 3;
  border: 1px solid rgba(18, 96, 216, 0.08);
}

body.home-page .workflow-redesign .home-section-head.compact {
  text-align: center;
}

body.home-page .workflow-redesign .home-section-head.compact p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px auto 0;
}

body.home-page .flow-lanes article {
  min-height: 238px;
  padding: 30px;
}

body.home-page .flow-lanes article + article::before {
  background:
    linear-gradient(135deg, transparent 0 66%, rgba(18, 96, 216, 0.06) 66% 67%, transparent 67%),
    radial-gradient(circle at 20% 20%, rgba(66, 215, 166, 0.1), transparent 26%);
}

body.home-page .flow-lanes h3 {
  margin-top: 30px;
}

body.home-page .faq-list details {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.home-page .faq-list details:hover,
body.home-page .faq-list details:focus-within {
  border-color: rgba(18, 96, 216, 0.16);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-6px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .hero-news-visual span {
    animation: none;
  }
}

@media (max-width: 1040px) {
  body.home-page .hero-news-card {
    width: min(calc(100% - 40px), 1040px);
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  body.home-page .home-hero {
    padding: 68px 0 0;
  }

  body.home-page .home-hero-copy {
    text-align: left;
  }

  body.home-page .home-hero .eyebrow {
    margin-bottom: 0;
  }

  body.home-page .home-hero h1 {
    max-width: 11em;
    margin-left: 0;
    font-size: clamp(33px, 8.5vw, 44px);
  }

  body.home-page .home-hero h1::after {
    margin-left: 0;
  }

  body.home-page .home-hero-subtitle {
    font-size: 19px;
  }

  body.home-page .home-pills {
    justify-content: flex-start;
  }

  body.home-page .hero-news-card {
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 1040px);
    margin-top: 34px;
    padding: 22px;
  }

  body.home-page .hero-news-card::before,
  body.home-page .storefront-redesign::after {
    display: none;
  }

  body.home-page .console-showcase {
    padding-top: 82px;
  }

  body.home-page .workbench-head {
    align-items: flex-start;
    flex-direction: column;
  }

  body.home-page .product-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  body.home-page .usage-proof-grid,
  body.home-page .store-stats {
    grid-template-columns: 1fr;
  }

  body.home-page .store-panel .product-toolbar {
    position: static;
  }

  body.home-page .workflow-redesign .home-section-head.compact {
    text-align: left;
  }

  body.home-page .workflow-redesign .home-section-head.compact p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  body.home-page .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px;
  }

  body.home-page .brand {
    min-width: 0;
  }

  body.home-page .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  body.home-page .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    min-width: 0;
    padding: 4px;
  }

  body.home-page .site-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
  }

  body.home-page .home-hero {
    padding-top: 60px;
  }

  body.home-page .home-hero h1 {
    max-width: 8.8em;
    font-size: 32px;
    line-height: 1.15;
  }

  body.home-page .home-hero-subtitle {
    font-size: 18px;
    line-height: 1.45;
    max-width: 18em;
    overflow-wrap: anywhere;
  }

  body.home-page .home-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.home-page .home-pills span {
    width: fit-content;
    max-width: 100%;
  }

  body.home-page .home-hero-intro {
    max-width: 21em;
    overflow-wrap: anywhere;
  }

  body.home-page .faq-redesign .home-section-head p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  body.home-page .faq-more-action,
  body.home-page .faq-more-action .btn {
    width: 100%;
  }
}

/* Header clearance refinement */
body.home-page .home-hero {
  padding-top: 168px;
}

body.home-page .home-hero .eyebrow {
  margin-top: 8px;
}

@media (max-width: 820px) {
  body.home-page .home-hero {
    padding-top: 80px;
  }
}

@media (max-width: 560px) {
  body.home-page .home-hero {
    padding-top: 78px;
  }
}
