* {
  box-sizing: border-box;
}

:root {
  color: #edf7f4;
  background: #05090b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --bg: #05090b;
  --panel: rgba(8, 21, 28, 0.9);
  --panel-strong: rgba(8, 28, 35, 0.96);
  --line: rgba(149, 192, 203, 0.22);
  --line-hot: rgba(49, 255, 178, 0.42);
  --text: #edf7f4;
  --muted: rgba(237, 247, 244, 0.68);
  --weak: rgba(197, 222, 227, 0.56);
  --green: #31ffb2;
  --blue: #49b4ff;
  --cyan: #08cdfd;
  --amber: #ffbd4a;
  --red: #ff6b6b;
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--bg);
}

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

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.rzw-industry-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -8%, rgba(8, 205, 253, 0.22), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(49, 255, 178, 0.1), transparent 28%),
    linear-gradient(145deg, #05090b, #071219 48%, #05090b);
}

.rzw-grid-bg,
.rzw-industry-shell::before,
.rzw-industry-shell::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.rzw-industry-shell::before {
  background:
    linear-gradient(90deg, rgba(73, 180, 255, 0.075) 1px, transparent 1px),
    linear-gradient(rgba(49, 255, 178, 0.055) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.96), transparent 86%);
}

.rzw-industry-shell::after {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0, rgba(255, 255, 255, 0.024) 1px, transparent 1px, transparent 7px),
    linear-gradient(115deg, transparent 0 36%, rgba(8, 205, 253, 0.11) 36.2%, transparent 37%, transparent 71%, rgba(49, 255, 178, 0.1) 71.2%, transparent 72%);
  opacity: 0.44;
}

.rzw-grid-bg {
  height: 260px;
  background: linear-gradient(180deg, transparent, rgba(8, 205, 253, 0.14), transparent);
  opacity: 0.34;
  transform: translateY(-280px);
  animation: rzw-scanline 9s linear infinite;
}

.rzw-industry-topbar,
.rzw-hero,
.rzw-section,
.rzw-final-cta,
.rzw-footer {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
}

.rzw-industry-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  border-bottom: 1px solid rgba(149, 192, 203, 0.18);
}

.rzw-brand,
.rzw-nav,
.rzw-top-actions {
  display: flex;
  align-items: center;
}

.rzw-brand {
  gap: 12px;
  min-width: 146px;
  font-size: 1.42rem;
  font-weight: 950;
}

.rzw-brand img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(49, 255, 178, 0.52);
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(49, 255, 178, 0.32);
}

.rzw-nav {
  gap: clamp(18px, 3vw, 48px);
  color: rgba(237, 247, 244, 0.72);
  font-weight: 760;
  white-space: nowrap;
}

.rzw-nav a {
  position: relative;
  padding: 25px 0 22px;
}

.rzw-nav a:hover {
  color: #fff;
}

.rzw-top-actions {
  gap: 12px;
}

.rzw-diagnosis-link,
.rzw-primary-btn,
.rzw-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
}

.rzw-diagnosis-link {
  border: 1px solid rgba(8, 205, 253, 0.5);
  background: rgba(8, 205, 253, 0.08);
  color: #eaf9ff;
}

.rzw-primary-btn {
  border: 1px solid rgba(8, 205, 253, 0.72);
  background: linear-gradient(135deg, #08cdfd, #177cff);
  color: #fff;
  box-shadow: 0 12px 34px rgba(8, 205, 253, 0.26);
}

.rzw-ghost-btn {
  border: 1px solid rgba(149, 192, 203, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: #dfeef5;
}

.rzw-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(149, 192, 203, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.rzw-menu span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #edf7f4;
}

.rzw-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 24px;
  align-items: stretch;
  padding: clamp(42px, 5vw, 78px) 0 20px;
}

.rzw-hero-copy,
.rzw-score-panel,
.rzw-section,
.rzw-final-cta,
.rzw-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 30, 38, 0.78), rgba(7, 16, 21, 0.9));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.rzw-hero-copy {
  padding: clamp(26px, 4vw, 46px);
}

.rzw-eyebrow,
.rzw-report-label,
.rzw-section-head > span {
  display: inline-flex;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rzw-hero h1 {
  max-width: 950px;
  margin: 14px 0 16px;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.rzw-hero p,
.rzw-section-head p,
.rzw-final-cta p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.68;
}

.rzw-hero-actions,
.rzw-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rzw-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(149, 192, 203, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.rzw-proof-row div {
  min-height: 88px;
  padding: 15px;
  border-right: 1px solid rgba(149, 192, 203, 0.16);
}

.rzw-proof-row div:last-child {
  border-right: 0;
}

.rzw-proof-row strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
}

.rzw-proof-row span {
  display: block;
  margin-top: 8px;
  color: var(--weak);
}

.rzw-score-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 26px;
}

.rzw-score-ring {
  --score: 74%;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(5, 14, 19, 1) 0 59%, transparent 60%),
    conic-gradient(var(--green) 0 var(--score), rgba(92, 116, 132, 0.25) var(--score) 100%);
  box-shadow: 0 0 36px rgba(49, 255, 178, 0.22);
}

.rzw-score-ring strong {
  margin-top: 22px;
  font-size: 58px;
  line-height: 1;
}

.rzw-score-ring span {
  margin-top: -54px;
  color: var(--weak);
}

.rzw-score-panel h2 {
  margin: 8px 0;
  font-size: clamp(28px, 3vw, 42px);
}

.rzw-score-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rzw-section,
.rzw-final-cta {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.rzw-section-head {
  max-width: 920px;
  margin-bottom: 20px;
}

.rzw-section-head h2,
.rzw-final-cta h2,
.rzw-stop-section h2,
.rzw-rule-plan-grid h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

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

.rzw-fit-grid article,
.rzw-flow-grid article,
.rzw-dimension-grid article,
.rzw-rule-plan-grid > article,
.rzw-stop-section > div,
.rzw-stop-section > aside,
.rzw-faq-grid details {
  border: 1px solid rgba(149, 192, 203, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.rzw-fit-grid article {
  padding: 20px;
}

.rzw-fit-grid h3,
.rzw-flow-grid h3,
.rzw-stop-section h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.rzw-fit-grid ul,
.rzw-stop-section ul,
.rzw-check-list,
.rzw-step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rzw-fit-grid li,
.rzw-stop-section li,
.rzw-check-list li,
.rzw-step-list li {
  position: relative;
  padding-left: 22px;
  color: #dcebf1;
  line-height: 1.55;
}

.rzw-fit-grid li::before,
.rzw-stop-section li::before,
.rzw-check-list li::before,
.rzw-step-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

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

.rzw-flow-grid article {
  min-height: 224px;
  padding: 20px;
}

.rzw-flow-grid b {
  color: var(--cyan);
  font-size: 28px;
}

.rzw-flow-grid p,
.rzw-dimension-grid p,
.rzw-faq-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.rzw-flow-grid span {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(49, 255, 178, 0.09);
  color: var(--green);
  font-weight: 850;
}

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

.rzw-dimension-grid article {
  min-height: 162px;
  padding: 14px;
}

.rzw-dimension-grid div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.rzw-dimension-grid b {
  color: var(--green);
}

.rzw-dimension-grid span {
  display: block;
  height: 7px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(149, 192, 203, 0.16);
}

.rzw-dimension-grid i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.rzw-rule-plan-grid,
.rzw-stop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
}

.rzw-rule-plan-grid > article,
.rzw-stop-section > div,
.rzw-stop-section > aside {
  padding: 22px;
}

.rzw-stop-section > aside {
  display: grid;
  align-content: start;
  gap: 16px;
}

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

.rzw-faq-grid details {
  padding: 18px;
}

.rzw-faq-grid summary {
  font-weight: 900;
  cursor: pointer;
}

.rzw-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 24px;
  align-items: center;
}

.rzw-final-actions {
  display: grid;
  margin-top: 0;
}

.rzw-final-actions a {
  justify-content: flex-start;
}

.rzw-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 24px;
  padding: 16px 20px;
  color: var(--weak);
}

.rzw-copy-source {
  position: fixed;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.rzw-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  padding: 12px 16px;
  border: 1px solid rgba(49, 255, 178, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 16, 22, 0.94);
  color: var(--green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@keyframes rzw-scanline {
  0% { transform: translateY(-280px); }
  100% { transform: translateY(110vh); }
}

@media (max-width: 1180px) {
  .rzw-nav {
    gap: 18px;
  }

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

@media (max-width: 920px) {
  .rzw-industry-topbar {
    min-height: 78px;
  }

  .rzw-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 12, 18, 0.98);
  }

  .rzw-industry-shell.is-menu-open .rzw-nav {
    display: grid;
    gap: 0;
  }

  .rzw-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(149, 192, 203, 0.1);
  }

  .rzw-menu {
    display: block;
  }

  .rzw-hero,
  .rzw-final-cta,
  .rzw-rule-plan-grid,
  .rzw-stop-section {
    grid-template-columns: 1fr;
  }

  .rzw-score-panel {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .rzw-score-ring {
    width: 132px;
    height: 132px;
  }

  .rzw-score-ring strong {
    font-size: 44px;
  }

  .rzw-score-ring span {
    margin-top: -42px;
  }

  .rzw-flow-grid,
  .rzw-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .rzw-industry-topbar,
  .rzw-hero,
  .rzw-section,
  .rzw-final-cta,
  .rzw-footer {
    width: min(100% - 24px, 1480px);
  }

  .rzw-brand {
    min-width: 0;
    font-size: 22px;
  }

  .rzw-brand img {
    width: 31px;
    height: 31px;
  }

  .rzw-diagnosis-link {
    max-width: 126px;
    padding: 0 10px;
    font-size: 12px;
    text-align: center;
  }

  .rzw-hero {
    padding-top: 28px;
  }

  .rzw-hero-copy,
  .rzw-score-panel,
  .rzw-section,
  .rzw-final-cta {
    padding: 18px;
  }

  .rzw-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .rzw-hero-actions,
  .rzw-proof-row,
  .rzw-fit-grid,
  .rzw-score-panel,
  .rzw-footer {
    grid-template-columns: 1fr;
  }

  .rzw-hero-actions a,
  .rzw-hero-actions button,
  .rzw-final-actions a {
    width: 100%;
  }

  .rzw-proof-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(149, 192, 203, 0.16);
  }

  .rzw-proof-row div:last-child {
    border-bottom: 0;
  }

  .rzw-dimension-grid {
    grid-template-columns: 1fr;
  }

  .rzw-score-ring {
    width: 150px;
    height: 150px;
  }
}

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