:root {
  --home-bg: #f8faf9;
  --home-surface: #ffffff;
  --home-ink: #07111f;
  --home-text: #1e2a37;
  --home-muted: #647386;
  --home-line: #dfe7ee;
  --home-line-soft: #edf2f5;
  --home-accent: #17933d;
  --home-accent-dark: #087229;
  --home-accent-soft: #e9f8ee;
  --home-accent-tint: #f4fbf6;
  --home-bluegray: #f3f7fb;
  --shadow-sm: 0 4px 8px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 6px 8px rgba(15, 23, 42, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shell: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--home-bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--home-ink);
  background:
    radial-gradient(circle at 74% 23%, rgba(23, 147, 61, 0.1), transparent 25%),
    linear-gradient(180deg, #ffffff 0, #ffffff 67%, var(--home-bg) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a:focus-visible {
  outline: 3px solid rgba(23, 147, 61, 0.28);
  outline-offset: 3px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

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

.home-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 84px;
}

.home-brand,
.home-nav,
.home-header-actions,
.home-status,
.home-login,
.home-actions,
.home-primary,
.home-secondary,
.home-assurance,
.home-card,
.home-card-copy b,
.home-footer,
.home-footer nav {
  display: flex;
  align-items: center;
}

.home-brand {
  position: relative;
  display: grid;
  grid-template-columns: 44px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  justify-self: start;
  min-width: 300px;
}

.home-brand > span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #07111f;
}

.home-brand img {
  width: 28px;
  height: 28px;
}

.home-brand strong {
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.home-brand strong span {
  color: var(--home-accent);
}

.home-brand small {
  margin-top: 4px;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 700;
}

.home-nav {
  justify-self: center;
  justify-content: center;
  gap: 38px;
  color: var(--home-text);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.home-nav a {
  transition: color 160ms ease;
}

.home-nav a:hover,
.home-nav a[aria-current="page"] {
  color: var(--home-accent);
}

.home-header-actions {
  justify-content: flex-end;
  gap: 16px;
  min-width: max-content;
}

.home-status {
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.home-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: 0 0 0 5px rgba(23, 147, 61, 0.1);
}

.home-login {
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  background: var(--home-surface);
  color: var(--home-text);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease;
}

.home-login:hover {
  border-color: rgba(23, 147, 61, 0.4);
  color: var(--home-accent-dark);
}

.home-login svg,
.home-primary svg,
.home-secondary svg,
.home-card-copy b svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-shell {
  min-height: calc(100dvh - 79px);
  padding: 70px 0 30px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: center;
  gap: 70px;
}

.home-copy {
  max-width: 720px;
}

.home-copy h1 {
  max-width: 710px;
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.home-copy h1 span {
  color: var(--home-accent);
}

.home-copy p {
  max-width: 62ch;
  margin: 26px 0 0;
  color: var(--home-muted);
  font-size: 19px;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.home-primary,
.home-secondary {
  justify-content: center;
  gap: 10px;
  min-width: 176px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 900;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.home-primary {
  background: linear-gradient(180deg, #20a947 0%, #0d822e 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.home-secondary {
  border: 1px solid var(--home-accent);
  background: #ffffff;
  color: var(--home-accent-dark);
}

.home-primary:hover,
.home-secondary:hover,
.home-card:hover {
  transform: translateY(-2px);
}

.home-secondary:hover {
  background: var(--home-accent-tint);
}

.home-visual {
  position: relative;
  min-height: 300px;
}

.home-orbit {
  position: absolute;
  inset: 8px 26px 18px 8px;
  border-radius: 48% 52% 42% 58% / 46% 48% 52% 54%;
  background:
    radial-gradient(circle at 77% 25%, rgba(23, 147, 61, 0.15) 0 2px, transparent 3px) 0 0 / 18px 18px,
    linear-gradient(135deg, rgba(23, 147, 61, 0.08), rgba(23, 147, 61, 0.02));
}

.home-laptop {
  position: absolute;
  top: 48px;
  left: 10px;
  width: 360px;
}

.home-screen {
  position: relative;
  height: 205px;
  padding: 34px 46px;
  border: 10px solid #e8edf2;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 6px 8px rgba(11, 23, 39, 0.08);
}

.home-screen::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #cdd7df;
  transform: translateX(-50%);
}

.home-screen i,
.home-support-card i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #eff3f7;
}

.home-screen i {
  width: 44%;
  margin-left: auto;
}

.home-screen i + i {
  width: 54%;
  margin-top: 18px;
}

.home-screen i + i + i {
  width: 34%;
}

.home-shield {
  position: absolute;
  left: 48px;
  top: 44px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(180deg, #84d996 0%, #14933d 100%);
  color: #ffffff;
  box-shadow: 0 6px 8px rgba(23, 147, 61, 0.28);
  transform: rotate(-2deg);
}

.home-shield svg {
  width: 56px;
  height: 56px;
}

.home-base {
  width: 92%;
  height: 28px;
  margin: -2px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #eef3f7, #dce5ec);
  box-shadow: 0 6px 8px rgba(11, 23, 39, 0.1);
}

.home-support-card {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 206px;
  min-height: 116px;
  padding: 26px 24px 22px 86px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.home-support-card span {
  position: absolute;
  left: 24px;
  top: 30px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--home-accent);
}

.home-support-card i {
  width: 76px;
}

.home-support-card i + i {
  width: 62px;
  margin-top: 14px;
}

.home-support-card i + i + i {
  width: 100%;
  height: 2px;
  margin-top: 22px;
}

.home-visual svg,
.home-assurance svg,
.home-card svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-assurance-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.home-assurance {
  min-height: 104px;
  gap: 20px;
  padding: 26px 34px;
}

.home-assurance + .home-assurance {
  border-left: 1px solid var(--home-line);
}

.home-assurance span,
.home-card-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--home-accent-soft);
  color: var(--home-accent);
}

.home-assurance strong {
  display: block;
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 900;
}

.home-assurance p {
  max-width: 31ch;
  margin: 4px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.45;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.home-card {
  gap: 26px;
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-lg);
  background: var(--home-surface);
  box-shadow: var(--shadow-card);
  transition: transform 170ms ease, border-color 170ms ease;
}

.home-card:hover {
  border-color: rgba(23, 147, 61, 0.28);
}

.home-card-icon {
  width: 72px;
  height: 72px;
}

.home-card-icon svg {
  width: 34px;
  height: 34px;
}

.home-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.home-card-copy strong {
  color: var(--home-ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.home-card-copy em {
  color: var(--home-muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.home-card-copy b {
  gap: 8px;
  margin-top: 10px;
  color: var(--home-accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.home-footer {
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 0 0;
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 14px;
}

.home-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.home-footer > span,
.status-footer > span,
.trust-footer > span {
  order: 1;
}

.home-footer nav,
.status-footer nav,
.trust-footer nav {
  order: 2;
}

.home-footer .home-service-status,
.status-footer .status-service-status,
.trust-footer .trust-service-status {
  order: 3;
}

.home-footer a:hover {
  color: var(--home-accent-dark);
}

.home-trust-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.home-trust-strip strong {
  display: block;
  color: var(--home-ink);
  font-size: 18px;
  font-weight: 900;
}

.home-trust-strip p {
  max-width: 52ch;
  margin: 6px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-trust-strip nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-trust-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-sm);
  color: var(--home-text);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.home-trust-strip a:hover {
  border-color: rgba(23, 147, 61, 0.34);
  background: var(--home-accent-tint);
  color: var(--home-accent-dark);
}

.home-trust-strip svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-status,
.status-service-status,
.trust-service-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 760;
  opacity: 0.66;
  white-space: nowrap;
}

.home-service-status:hover,
.status-service-status:hover,
.trust-service-status:hover {
  opacity: 1;
}

.home-service-status i,
.status-service-status i,
.trust-service-status i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: none;
}

.home-service-status small,
.status-service-status small,
.trust-service-status small {
  display: none;
}

.home-service-status-notice i,
.status-service-status-notice i,
.trust-service-status-notice i {
  background: #b7791f;
  box-shadow: none;
}

.home-service-status-degraded i,
.status-service-status-degraded i,
.trust-service-status-degraded i {
  background: #b42318;
  box-shadow: none;
}

.status-body {
  background:
    radial-gradient(circle at 78% 12%, rgba(23, 147, 61, 0.09), transparent 26%),
    linear-gradient(180deg, #ffffff 0, #ffffff 48%, var(--home-bg) 100%);
}

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

.status-header,
.status-brand,
.status-header nav,
.status-footer,
.status-footer nav {
  display: flex;
  align-items: center;
}

.status-header {
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
}

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

.status-brand > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--home-ink);
}

.status-brand img {
  width: 27px;
  height: 27px;
}

.status-brand strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.status-brand strong span {
  color: var(--home-accent);
}

.status-header nav,
.status-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--home-text);
  font-size: 14px;
  font-weight: 800;
}

.status-header a:hover,
.status-footer a:hover {
  color: var(--home-accent-dark);
}

.status-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-top: 68px;
  padding: 36px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.status-hero p {
  margin: 0 0 12px;
  color: var(--home-accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.status-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--home-ink);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.status-hero span {
  display: block;
  max-width: 72ch;
  margin-top: 16px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.65;
}

.status-hero aside {
  min-width: 220px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--home-accent-tint);
  color: var(--home-accent-dark);
}

.status-hero-notice aside {
  background: #fff8e8;
  color: #8a5a08;
}

.status-hero-degraded aside {
  background: #fff1ef;
  color: #9f1f15;
}

.status-hero aside strong,
.status-hero aside small {
  display: block;
}

.status-hero aside strong {
  font-size: 18px;
  font-weight: 900;
}

.status-hero aside small {
  margin-top: 5px;
  color: inherit;
  opacity: 0.78;
  font-size: 12px;
  font-weight: 800;
}

.status-counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.status-counts div {
  padding: 20px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.status-counts strong,
.status-counts span {
  display: block;
}

.status-counts strong {
  color: var(--home-ink);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.status-counts span {
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 850;
}

.status-components {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.status-component {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.status-component > div {
  position: relative;
  min-width: 0;
  padding-left: 28px;
}

.status-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: 0 0 0 5px rgba(23, 147, 61, 0.1);
}

.status-component-notice .status-dot {
  background: #b7791f;
  box-shadow: 0 0 0 5px rgba(183, 121, 31, 0.13);
}

.status-component-degraded .status-dot {
  background: #b42318;
  box-shadow: 0 0 0 5px rgba(180, 35, 24, 0.12);
}

.status-component strong {
  display: block;
  color: var(--home-ink);
  font-size: 17px;
  font-weight: 900;
}

.status-component p {
  max-width: 82ch;
  margin: 6px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.55;
}

.status-component em {
  min-width: 112px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.status-component-notice em {
  background: #fff8e8;
  color: #8a5a08;
}

.status-component-degraded em {
  background: #fff1ef;
  color: #9f1f15;
}

.status-footer {
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--home-line);
}

.trust-body {
  background:
    radial-gradient(circle at 80% 14%, rgba(23, 147, 61, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0, #ffffff 44%, var(--home-bg) 100%);
}

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

.trust-header,
.trust-brand,
.trust-nav,
.trust-footer,
.trust-footer nav {
  display: flex;
  align-items: center;
}

.trust-header {
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
}

.trust-brand {
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  min-width: 276px;
}

.trust-brand > span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--home-ink);
}

.trust-brand img {
  width: 27px;
  height: 27px;
}

.trust-brand strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-brand strong span {
  color: var(--home-accent);
}

.trust-brand small {
  margin-top: 4px;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-nav,
.trust-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--home-text);
  font-size: 14px;
  font-weight: 800;
}

.trust-nav a:hover,
.trust-nav a[aria-current="page"],
.trust-footer a:hover {
  color: var(--home-accent-dark);
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 28px;
  align-items: end;
  margin-top: 62px;
  padding: 34px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.trust-hero p {
  margin: 0 0 12px;
  color: var(--home-accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.trust-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--home-ink);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.trust-hero span {
  display: block;
  max-width: 72ch;
  margin-top: 16px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.trust-updated {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid var(--home-line-soft);
  border-radius: 999px;
  background: var(--home-accent-tint);
  color: var(--home-accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.help-search {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.help-search span,
.trust-kicker {
  color: var(--home-accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  color: var(--home-ink);
  font: inherit;
  font-size: 16px;
  font-weight: 760;
}

.help-search input:focus {
  outline: 3px solid rgba(23, 147, 61, 0.2);
  outline-offset: 2px;
}

.trust-kicker {
  display: block;
  margin-bottom: 8px;
}

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

.trust-facts div {
  padding: 16px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-md);
  background: var(--home-accent-tint);
}

.trust-facts span,
.trust-facts strong {
  display: block;
}

.trust-facts span {
  color: var(--home-accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.trust-facts strong {
  margin-top: 6px;
  color: var(--home-text);
  font-size: 14px;
  line-height: 1.4;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.trust-content {
  display: grid;
  gap: 14px;
}

.trust-block,
.trust-card-grid,
.trust-actions,
.trust-aside {
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.trust-block {
  padding: 26px;
}

.trust-block h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.trust-block p {
  max-width: 74ch;
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.trust-block ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-block li {
  position: relative;
  padding-left: 18px;
  color: var(--home-text);
  font-size: 14px;
  line-height: 1.6;
}

.trust-block li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--home-accent);
}

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

.trust-faq-item {
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.trust-faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 900;
}

.trust-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

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

.trust-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--home-line-soft);
  border-radius: var(--radius-md);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.trust-card:hover {
  border-color: rgba(23, 147, 61, 0.32);
  background: var(--home-accent-tint);
  transform: translateY(-1px);
}

.trust-card strong {
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 900;
}

.trust-card span {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
}

.trust-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  color: var(--home-text);
  font-size: 14px;
  font-weight: 900;
}

.trust-action-primary {
  border-color: transparent;
  background: linear-gradient(180deg, #20a947 0%, #0d822e 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.trust-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.trust-aside strong {
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 900;
}

.trust-aside nav {
  display: grid;
  gap: 8px;
}

.trust-aside nav a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--home-text);
  font-size: 13px;
  font-weight: 820;
}

.trust-aside nav a:hover {
  background: var(--home-accent-tint);
  color: var(--home-accent-dark);
}

.trust-aside div {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--home-line-soft);
}

.trust-aside div span {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.45;
}

.trust-aside div a {
  color: var(--home-accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.trust-footer {
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .home-header-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .home-brand,
  .home-header-actions {
    justify-self: center;
  }

  .home-shell {
    padding-top: 54px;
  }

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

  .home-copy {
    max-width: none;
    text-align: center;
  }

  .home-copy h1,
  .home-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .home-actions {
    justify-content: center;
  }

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

@media (max-width: 900px) {
  .home-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .home-copy h1 {
    font-size: 48px;
  }

  .home-assurance-bar,
  .home-card-grid,
  .home-trust-strip,
  .trust-hero,
  .trust-layout {
    grid-template-columns: 1fr;
  }

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

  .trust-aside {
    position: static;
  }

  .home-assurance + .home-assurance {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .home-header-inner,
  .home-shell {
    width: min(100% - 28px, var(--shell));
  }

  .home-header {
    position: static;
  }

  .home-brand {
    justify-self: start;
  }

  .home-brand strong {
    font-size: 21px;
  }

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

  .home-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .home-status {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .home-login {
    min-height: 38px;
  }

  .home-shell {
    padding-top: 42px;
  }

  .home-copy {
    text-align: left;
  }

  .home-copy h1 {
    font-size: 38px;
  }

  .home-copy p {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .home-actions {
    justify-content: flex-start;
  }

  .home-primary,
  .home-secondary {
    width: 100%;
  }

  .home-visual {
    min-height: 258px;
  }

  .home-laptop {
    left: 0;
    width: min(330px, 100%);
  }

  .home-screen {
    height: 182px;
    padding: 30px;
  }

  .home-shield {
    left: 34px;
    top: 43px;
    width: 76px;
    height: 76px;
  }

  .home-support-card {
    right: 0;
    width: 170px;
    min-height: 98px;
    padding: 22px 18px 18px 72px;
  }

  .home-support-card span {
    left: 20px;
    top: 26px;
    width: 36px;
    height: 36px;
  }

  .home-assurance-bar {
    margin-top: 38px;
  }

  .home-assurance {
    align-items: flex-start;
    padding: 22px;
  }

  .home-card {
    align-items: flex-start;
    padding: 24px;
  }

  .home-card-icon {
    width: 62px;
    height: 62px;
  }

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

  .home-footer nav {
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .home-service-status,
  .status-service-status,
  .trust-service-status {
    white-space: normal;
  }

  .status-shell,
  .trust-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .status-header,
  .status-footer,
  .trust-header,
  .trust-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-header nav,
  .status-footer nav,
  .trust-nav,
  .trust-footer nav {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .home-trust-strip {
    padding: 20px;
  }

  .home-trust-strip nav,
  .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .home-trust-strip a {
    justify-content: flex-start;
  }

  .trust-brand {
    min-width: 0;
  }

  .status-hero {
    grid-template-columns: 1fr;
    margin-top: 36px;
    padding: 24px;
  }

  .status-hero h1 {
    font-size: 34px;
  }

  .status-counts {
    grid-template-columns: 1fr;
  }

  .status-component {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .status-component em {
    justify-self: start;
  }

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

  .trust-hero h1 {
    font-size: 34px;
  }

  .trust-block {
    padding: 22px;
  }
}

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