:root {
  color: #172033;
  background: #f6f8fb;
  font-family: "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: #f6f8fb;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(219, 230, 243, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.navLinks {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  overflow: hidden;
}

nav a {
  border-radius: 6px;
  padding: 8px 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  background: #eef5ff;
  color: #1d4ed8;
}

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

.navActions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 36px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 0 12px;
  background: #ffffff;
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.navActions .loginLink {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.navActions a:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}

.navActions .loginLink:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: #ffffff;
}

h1,
h2,
p {
  margin: 0;
}

section[id],
article[id] {
  scroll-margin-top: 86px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: 88px 44px 74px;
  background:
    linear-gradient(90deg, rgba(9, 21, 42, 0.84), rgba(9, 21, 42, 0.45), rgba(9, 21, 42, 0.16)),
    url("/assets/portal-hero.png") center / cover no-repeat;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0), #f6f8fb);
  pointer-events: none;
}

.heroOverlay {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(219, 234, 254, 0.92);
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow.warning {
  background: #fef3c7;
  color: #92400e;
}

h1 {
  max-width: 740px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.08;
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.hero p {
  max-width: 690px;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.72;
}

.heroActions,
.linkList,
.downloadActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.heroLine {
  width: fit-content;
  border-left: 3px solid #22c55e;
  padding: 4px 0 4px 10px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 900;
}

.primaryAction,
.secondaryAction,
.linkList a,
.downloadActions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 9px 14px;
  color: #0f766e;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.primaryAction {
  border-color: #16a34a;
  background: #22c55e;
  color: #06150b;
}

.secondaryAction {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.primaryAction.disabled,
.infoGrid a.disabled,
.linkList a.disabled {
  cursor: not-allowed;
  background: #e2e8f0;
  color: #64748b;
  pointer-events: none;
}

.downloadActions button {
  cursor: pointer;
}

.downloadActions button:disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 8px;
}

.heroStats div {
  display: grid;
  gap: 4px;
  border-left: 3px solid #22c55e;
  padding: 4px 0 4px 12px;
}

.heroStats strong {
  color: #ffffff;
  font-size: 22px;
}

.heroStats span {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}

.metricBand {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid #dbe6f3;
  background: #dbe6f3;
}

.metricBand article {
  display: grid;
  gap: 5px;
  min-height: 116px;
  align-content: center;
  padding: 22px 34px;
  background: #ffffff;
}

.metricBand strong {
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
}

.metricBand span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.platformBand {
  background: #ffffff;
}

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

.platformGrid article,
.proofGrid article {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.platformGrid strong,
.proofGrid strong {
  color: #0f172a;
  font-size: 18px;
}

.platformGrid span,
.proofGrid span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.62;
}

.platformGrid em {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  background: #e8f7ef;
  color: #166534;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.platformGrid article:not(:first-child) em {
  background: #eff6ff;
  color: #1d4ed8;
}

.contentBand {
  padding: 54px 44px;
  background: #ffffff;
}

.contentBand:nth-of-type(odd) {
  background: #f8fbff;
}

.sectionTitle {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 24px;
}

.sectionTitle > span {
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.sectionTitle h2 {
  color: #0f172a;
  font-size: 32px;
  line-height: 1.18;
}

.sectionTitle p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

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

.featureGrid article,
.scenarioGrid article,
.stepGrid article,
.infoGrid article,
.deliveryGrid article,
.resourceCard {
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.featureGrid article {
  min-height: 154px;
}

.clientBand {
  background: #f8fbff;
}

.clientWorkbenchLayout {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.clientWorkbenchPreview {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #eef2f7;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16);
}

.clientTopPreview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid #dbe6f3;
  background: #ffffff;
}

.clientTopPreview strong {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.clientTopPreview span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.clientPreviewBody {
  display: grid;
  grid-template-columns: 106px 190px minmax(0, 1fr) 58px;
  min-height: 0;
}

.clientAccountRail,
.clientContactRail,
.clientChatPreview,
.clientToolRail {
  min-width: 0;
  border-right: 1px solid #dbe6f3;
  background: #ffffff;
}

.clientAccountRail {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 10px;
  background: #f8fafc;
}

.clientAccountRail span,
.clientContactRail > span,
.clientChatPreview > span,
.clientToolRail span {
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
}

.clientAccountRail strong,
.clientAccountRail em {
  display: block;
  overflow: hidden;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clientAccountRail strong {
  color: #0f172a;
  background: #ffffff;
  font-size: 12px;
}

.clientAccountRail em {
  color: #15803d;
  background: #f0fdf4;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.clientContactRail {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 12px;
  background: #ffffff;
}

.clientContactRail div {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
  padding: 10px;
  background: #f8fbff;
}

.clientContactRail div:nth-child(3) {
  border-left-color: #22c55e;
}

.clientContactRail div:nth-child(4) {
  border-left-color: #f59e0b;
}

.clientContactRail strong,
.clientContactRail small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clientContactRail strong {
  color: #0f172a;
  font-size: 13px;
}

.clientContactRail small {
  color: #64748b;
  font-size: 11px;
}

.clientChatPreview {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 16px;
  background: #f7f3eb;
}

.clientChatPreview p {
  width: fit-content;
  max-width: 82%;
  border-radius: 8px;
  padding: 10px 12px;
  color: #172033;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.clientChatPreview .incoming {
  background: #ffffff;
}

.clientChatPreview .translation {
  border-left: 4px solid #2563eb;
  background: #eff6ff;
}

.clientChatPreview .outgoing {
  justify-self: end;
  background: #dcfce7;
}

.clientReplyBar {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 0 12px;
  background: #ffffff;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.clientToolRail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 14px 8px;
  border-right: 0;
  background: #f8fafc;
}

.clientToolRail em {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dbe6f3;
  border-radius: 999px;
  background: #ffffff;
  color: #2563eb;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.clientLoopPanel {
  display: grid;
  gap: 12px;
}

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

.clientLoopStatus article,
.clientLoopGrid article {
  display: grid;
  min-width: 0;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: #ffffff;
}

.clientLoopStatus article {
  gap: 5px;
  min-height: 92px;
  padding: 14px;
}

.clientLoopStatus span,
.clientLoopGrid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.clientLoopStatus strong {
  color: #0f172a;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.clientLoopGrid article {
  align-content: start;
  gap: 8px;
  min-height: 166px;
  padding: 15px;
}

.clientLoopGrid strong {
  color: #0f172a;
  font-size: 17px;
}

.clientLoopGrid p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.clientLoopGrid a {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  padding: 7px 10px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.softwareBand {
  background: #f8fbff;
}

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

.softwareGrid article {
  display: grid;
  gap: 9px;
  min-height: 190px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 17px;
  background: #ffffff;
}

.softwareGrid article:nth-child(4n + 1) {
  border-top: 4px solid #2563eb;
}

.softwareGrid article:nth-child(4n + 2) {
  border-top: 4px solid #16a34a;
}

.softwareGrid article:nth-child(4n + 3) {
  border-top: 4px solid #f59e0b;
}

.softwareGrid article:nth-child(4n) {
  border-top: 4px solid #06b6d4;
}

.softwareGrid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 900;
}

.softwareGrid strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
}

.softwareGrid p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.64;
}

.pricingBand {
  display: grid;
  gap: 4px;
}

.scenarioBand {
  background: #f8fbff;
}

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

.scenarioGrid article {
  min-height: 148px;
  background: #ffffff;
}

.scenarioGrid strong {
  display: block;
  color: #172033;
  font-size: 17px;
}

.scenarioGrid span {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.62;
}

.pricingGrid,
.whyGrid,
.proofGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricingGrid article,
.whyGrid article {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.pricingGrid article.highlight {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.pricingGrid span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.pricingGrid strong {
  color: #0f172a;
  font-size: 26px;
}

.pricingGrid p,
.whyGrid p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.62;
}

.choiceProofStrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.choiceProofStrip article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 154px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 18px;
  background: #f8fafc;
}

.choiceProofStrip span {
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
}

.choiceProofStrip strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
}

.choiceProofStrip p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.62;
}

.pricingGrid a,
.supportPanel a,
.siteFooter a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  padding: 8px 12px;
  color: #1d4ed8;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.legalShell {
  display: grid;
  gap: 22px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 52px;
}

.legalHero {
  display: grid;
  gap: 12px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.legalHero span {
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.legalHero h1 {
  color: #0f172a;
  font-size: 34px;
  line-height: 1.16;
}

.legalHero p,
.legalHero small {
  color: #64748b;
  font-size: 14px;
  line-height: 1.72;
}

.legalContent {
  display: grid;
  gap: 12px;
}

.legalContent article {
  display: grid;
  gap: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px 20px;
  background: #ffffff;
}

.legalContent h2 {
  color: #172033;
  font-size: 18px;
}

.legalContent p {
  color: #475569;
  font-size: 14px;
  line-height: 1.82;
}

.legalContent a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  padding: 8px 12px;
  color: #1d4ed8;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.featureGrid strong,
.stepGrid strong,
.whyGrid strong,
.deliveryGrid strong {
  display: block;
  color: #172033;
  font-size: 18px;
}

.featureGrid span,
.stepGrid span,
.deliveryGrid span {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.62;
}

.proofBand {
  background: #f8fbff;
}

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

.deliveryBand {
  background: #ffffff;
}

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

.deliveryGrid article {
  min-height: 156px;
  border-top: 4px solid #60a5fa;
}

.deliveryGrid article:nth-child(2) {
  border-top-color: #22c55e;
}

.deliveryGrid article:nth-child(3) {
  border-top-color: #f59e0b;
}

.deliveryGrid article:nth-child(4) {
  border-top-color: #8b5cf6;
}

.deliveryGrid article:nth-child(5) {
  border-top-color: #06b6d4;
}

.downloadBand {
  display: grid;
  gap: 18px;
}

.downloadPanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 18px;
  background: #f0fdf4;
}

.downloadPanel span,
.downloadPanel strong,
.downloadPanel p {
  display: block;
}

.downloadPanel span {
  color: #166534;
  font-size: 12px;
  font-weight: 900;
}

.downloadPanel strong {
  margin-top: 6px;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
}

.downloadPanel p {
  margin-top: 8px;
  color: #475569;
  font-size: 13px;
  line-height: 1.55;
}

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

.infoGrid article {
  min-height: 104px;
  background: #f8fafc;
}

.infoGrid span,
.infoGrid strong,
.infoGrid a {
  display: block;
}

.infoGrid span {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
}

.infoGrid strong,
.infoGrid a {
  margin-top: 10px;
  color: #172033;
  overflow-wrap: anywhere;
}

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

.releaseTrustGrid article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.releaseTrustGrid strong {
  color: #0f172a;
  font-size: 15px;
}

.releaseTrustGrid span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

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

.stepGrid strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
}

.resourceBand {
  display: grid;
  gap: 8px;
}

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

.resourceCard {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  background: #ffffff;
}

.resourceCard > span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.resourceCard h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.25;
}

.resourceCard p,
.resourceCard small,
.supportNote {
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.resourceCard small {
  display: block;
  padding-top: 4px;
}

.portalSupportBlock {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
}

.portalSupportBlock strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
}

.portalSupportBlock p {
  margin: 5px 0 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.portalSupportBlock small {
  padding-top: 2px;
  color: #64748b;
  font-size: 12px;
}

.portalSupportBlock a {
  min-height: 32px;
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 12px;
}

.portalSupportQr {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  background: #f8fbff;
  overflow: hidden;
}

.portalSupportQr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portalSupportQr.empty span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.resourceCard a {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  padding: 8px 12px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.resourceCard a:hover {
  border-color: #93c5fd;
  background: #dbeafe;
}

.resourceCard a.disabled {
  border-color: #e2e8f0;
  color: #94a3b8;
  background: #f8fafc;
  pointer-events: none;
}

.serviceCard {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.serviceCard > span,
.serviceCard a {
  color: #166534;
}

.serviceCard a {
  border-color: #bbf7d0;
  background: #ffffff;
}

.supportPanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 18px;
  background: #eff6ff;
}

.supportPanel div {
  display: grid;
  gap: 7px;
}

.supportPanel span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.supportPanel strong {
  color: #0f172a;
  font-size: 20px;
}

.supportPanel p {
  color: #475569;
  font-size: 13px;
  line-height: 1.62;
}

.supportChannelGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.supportChannelGrid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 168px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.supportChannelGrid span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.supportChannelGrid strong {
  color: #0f172a;
  font-size: 18px;
}

.supportChannelGrid p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.62;
}

.supportChannelGrid a {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  padding: 7px 11px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.faqBand {
  background: #ffffff;
}

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

.faqGrid article {
  display: grid;
  gap: 10px;
  min-height: 154px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 18px;
  background: #f8fafc;
}

.faqGrid strong {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.3;
}

.faqGrid span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.62;
}

.siteFooter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #dbe6f3;
  padding: 22px 44px;
  color: #64748b;
  background: #ffffff;
  font-size: 13px;
}

.siteFooter strong {
  color: #0f172a;
  font-size: 16px;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 132px;
  }

  section[id],
  article[id] {
    scroll-margin-top: 132px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  nav {
    justify-content: flex-start;
  }

  .navLinks,
  .navActions {
    width: 100%;
  }

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

  .hero {
    min-height: 590px;
    padding: 72px 22px 54px;
    background-position: center;
  }

  h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .heroStats,
  .metricBand,
  .featureGrid,
  .clientLoopStatus,
  .clientLoopGrid,
  .softwareGrid,
  .platformGrid,
  .scenarioGrid,
  .infoGrid,
  .releaseTrustGrid,
  .stepGrid,
  .resourceGrid,
  .supportChannelGrid,
  .faqGrid,
  .pricingGrid,
  .whyGrid,
  .choiceProofStrip,
  .proofGrid,
  .deliveryGrid {
    grid-template-columns: 1fr 1fr;
  }

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

  .clientPreviewBody {
    grid-template-columns: 96px 168px minmax(0, 1fr) 54px;
  }

  .contentBand {
    padding: 38px 20px;
  }

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

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

  .legalShell {
    width: min(100% - 36px, 980px);
    padding: 32px 0 44px;
  }
}

@media (max-width: 620px) {
  .topbar {
    gap: 10px;
    overflow: hidden;
  }

  nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 7px 9px;
  }

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

  .navActions a {
    min-width: 0;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(9, 21, 42, 0.98), rgba(9, 21, 42, 0.96), rgba(9, 21, 42, 0.9)),
      url("/assets/portal-hero.png") 64% center / cover no-repeat;
  }

  h1 {
    font-size: 34px;
  }

  .heroStats,
  .metricBand,
  .featureGrid,
  .clientLoopStatus,
  .clientLoopGrid,
  .softwareGrid,
  .platformGrid,
  .scenarioGrid,
  .infoGrid,
  .releaseTrustGrid,
  .stepGrid,
  .resourceGrid,
  .supportChannelGrid,
  .faqGrid,
  .pricingGrid,
  .whyGrid,
  .choiceProofStrip,
  .proofGrid,
  .deliveryGrid {
    grid-template-columns: 1fr;
  }

  .clientWorkbenchPreview {
    min-height: auto;
  }

  .clientTopPreview {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

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

  .clientAccountRail,
  .clientContactRail,
  .clientChatPreview,
  .clientToolRail {
    border-right: 0;
    border-bottom: 1px solid #dbe6f3;
  }

  .clientToolRail {
    grid-template-columns: repeat(5, 34px);
    justify-content: start;
  }

  .sectionTitle h2 {
    font-size: 26px;
  }

  .legalShell {
    width: min(100% - 28px, 980px);
    padding: 24px 0 36px;
  }

  .legalHero {
    padding: 18px;
  }

  .legalHero h1 {
    font-size: 28px;
  }

  .legalContent article {
    padding: 16px;
  }
}
