:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --text: #344054;
  --muted: #667085;
  --line: #d9e1ea;
  --line-strong: #b9c5d2;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --surface-3: #eef3f8;
  --brand: #175cd3;
  --brand-dark: #12316a;
  --ai: #1fae8a;
  --ai-dark: #13795f;
  --gold: #c69014;
  --red: #d9442b;
  --green: #15986b;
  --shadow-sm: 0 10px 24px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.58;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 225, 234, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 236px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--ink-2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  background: #eef4ff;
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
}

.language-select {
  height: 40px;
  min-width: 118px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 10px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: 700px;
  height: 84vh;
  max-height: 840px;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image:
    linear-gradient(102deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.82) 42%, rgba(17, 24, 39, 0.38) 100%),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1900&q=82");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.72) 100%),
    linear-gradient(135deg, rgba(31, 174, 138, 0.2) 0%, transparent 38%),
    linear-gradient(36deg, transparent 0%, rgba(198, 144, 20, 0.16) 86%, rgba(198, 144, 20, 0.22) 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 92px 0 146px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--ai);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #7de4ca;
}

.hero-copy h1 {
  margin: 0;
  max-width: 840px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.04;
  font-weight: 870;
  letter-spacing: 0;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.82;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 820;
  line-height: 1.2;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--ai);
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 174, 138, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ai-dark);
  outline: none;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
  outline: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.product-preview-band {
  margin-top: -116px;
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
}

.screen-shell {
  overflow: hidden;
  background: #0d1524;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.screen-topbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.9);
  background: #101a2b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.screen-topbar > span {
  color: rgba(255, 255, 255, 0.6);
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #506176;
}

.traffic span:first-child {
  background: var(--red);
}

.traffic span:nth-child(2) {
  background: var(--gold);
}

.traffic span:nth-child(3) {
  background: var(--ai);
}

.dashboard-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 190px 1fr;
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 12px;
  background: #0a1020;
  color: rgba(255, 255, 255, 0.62);
}

.dashboard-menu span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 720;
}

.dashboard-menu .active {
  color: #fff;
  background: linear-gradient(90deg, rgba(31, 174, 138, 0.22), rgba(23, 92, 211, 0.12));
  box-shadow: inset 3px 0 0 var(--ai);
}

.dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.82fr);
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(31, 174, 138, 0.08), transparent 36%),
    #111827;
}

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

.metric-card {
  min-height: 108px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--ai);
  border-radius: 8px;
}

.metric-card strong {
  display: block;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
}

.metric-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.metric-card small {
  display: inline-flex;
  margin-top: 8px;
  color: #7de4ca;
  font-weight: 800;
}

.chart-panel,
.risk-panel,
.architecture-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-main .chart-panel,
.dashboard-main .risk-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.chart-panel {
  min-height: 312px;
  padding: 18px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 850;
}

.dashboard-main .panel-title {
  color: #fff;
}

.panel-title small {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-main .panel-title small {
  color: rgba(255, 255, 255, 0.58);
}

.panel-title.strong {
  padding: 18px 18px 0;
}

.chart {
  width: 100%;
  height: 248px;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.chart-fill {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: var(--ai);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line.warn {
  stroke: var(--gold);
  stroke-width: 3;
  stroke-dasharray: 10 9;
}

.risk-panel {
  min-height: 312px;
  padding: 18px;
}

.risk-list {
  display: grid;
  gap: 14px;
}

.risk-item {
  display: grid;
  grid-template-columns: 96px 1fr 46px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.risk-item strong {
  color: #fff;
}

.risk-bar {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.risk-bar span {
  display: block;
  height: 100%;
  background: var(--ai);
  border-radius: inherit;
}

.section {
  padding: 92px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background:
    linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

.section-ink {
  background:
    linear-gradient(140deg, #101827 0%, #13263c 48%, #0f3f3a 100%);
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading.compact {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: start;
  max-width: none;
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.16;
  font-weight: 870;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-band p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.inverted h2,
.section-heading.inverted p:not(.eyebrow) {
  color: #fff;
}

.section-heading.inverted p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.trust-card {
  min-height: 162px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.trust-card strong {
  display: block;
  color: var(--ai-dark);
  font-size: 36px;
  line-height: 1.05;
}

.trust-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 840;
}

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

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

.module-card,
.service-card,
.security-card {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-card,
.service-card {
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.module-icon,
.service-index,
.security-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ai-dark);
  background: #e8f7f3;
  border-radius: 8px;
  font-weight: 880;
}

.module-icon svg,
.security-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card h3,
.service-card h3,
.security-card h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.module-card p,
.service-card p,
.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  margin-top: 66px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.feature-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.2;
}

.feature-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--ai);
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px #dff8f0;
}

.mobile-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 310px;
  min-height: 560px;
  padding: 12px;
  background:
    linear-gradient(180deg, #101827, #0b1220);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(17, 24, 39, 0.26);
}

.phone-status {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  padding: 0 10px;
  font-size: 12px;
}

.work-card,
.phone-block,
.ai-note {
  margin-top: 10px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

.work-card small {
  color: var(--muted);
}

.work-card h4 {
  margin: 6px 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.tag-row {
  display: flex;
  gap: 8px;
}

.tag-row span {
  padding: 3px 8px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 830;
}

.tag-row span + span {
  background: var(--gold);
}

.phone-block strong,
.ai-note strong {
  color: var(--ink);
  font-size: 13px;
}

.phone-block p,
.ai-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.ai-note {
  background: #e8f7f3;
  border-left: 4px solid var(--ai);
}

.phone-frame button {
  width: 100%;
  height: 44px;
  margin-top: 12px;
  color: #fff;
  background: var(--ai);
  border: 0;
  border-radius: 8px;
  font-weight: 840;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: 22px;
  align-items: start;
}

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

.service-index {
  color: #fff;
  background: var(--brand);
}

.architecture-panel {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.architecture-layers {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.layer {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: stretch;
}

.layer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 860;
}

.layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.layer-items span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 720;
}

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

.security-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.security-icon {
  color: #fff;
  background: rgba(31, 174, 138, 0.24);
}

.security-card h3 {
  color: #fff;
}

.security-card p {
  color: rgba(255, 255, 255, 0.72);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.process-card {
  min-height: 224px;
  position: relative;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  color: var(--ai-dark);
  font-weight: 880;
  font-size: 13px;
  margin-bottom: 16px;
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.contact-link {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-link span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 780;
}

.contact-link strong {
  color: #fff;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.76);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner img {
  width: 236px;
  height: auto;
}

.footer-inner p {
  margin: 0 0 4px;
}

.footer-inner small {
  color: rgba(255, 255, 255, 0.56);
}

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

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .header-actions {
    justify-content: flex-end;
    order: 3;
  }

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

  .dashboard-menu {
    flex-direction: row;
    overflow-x: auto;
  }

  .dashboard-menu span {
    flex: 0 0 auto;
  }

  .service-layout,
  .feature-split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .mobile-mockup {
    justify-content: flex-start;
  }

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    gap: 10px;
    padding: 0 14px;
  }

  .brand img {
    width: 178px;
  }

  .language-select {
    min-width: 98px;
    max-width: 112px;
  }

  .hero-section {
    height: auto;
    min-height: 700px;
  }

  .hero-bg {
    background-position: center;
  }

  .hero-inner {
    padding: 102px 0 132px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.76;
  }

  .product-preview-band {
    margin-top: -82px;
    padding-bottom: 50px;
  }

  .screen-topbar {
    height: auto;
    min-height: 52px;
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .metric-row,
  .module-grid,
  .service-list,
  .security-grid,
  .trust-grid,
  .process-timeline,
  .check-list {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 96px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-split {
    padding: 24px;
  }

  .phone-frame {
    width: min(310px, 100%);
  }

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

@media (max-width: 480px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .language-select {
    width: 92px;
    min-width: 92px;
    padding: 0 6px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 33px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .risk-item {
    grid-template-columns: 88px 1fr 38px;
    gap: 8px;
  }

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