:root {
  --bg: #07111f;
  --bg-soft: #0b1729;
  --panel: rgba(10, 22, 39, 0.92);
  --panel-2: rgba(16, 35, 60, 0.88);
  --glass: rgba(13, 28, 48, 0.72);
  --glass-line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.96);
  --card-soft: #f5f8fc;
  --text: #0d1d31;
  --text-soft: #526780;
  --text-inverse: #f4f8ff;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(12, 27, 49, 0.1);
  --brand: #42b7ff;
  --brand-deep: #0f67d0;
  --accent: #f3bf5d;
  --success: #36cb91;
  --danger: #ff8b8b;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-xl: 0 26px 70px rgba(0, 8, 22, 0.28);
  --shadow-lg: 0 20px 46px rgba(12, 27, 49, 0.15);
  --shadow-md: 0 12px 28px rgba(12, 27, 49, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 183, 255, 0.1), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(86, 146, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 14%, rgba(35, 86, 168, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(243, 191, 93, 0.06), transparent 18%),
    linear-gradient(180deg, #07111f 0, #091628 380px, #eef3f9 380px, #e8eef6 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 14, 27, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  color: #07111f;
  background: linear-gradient(135deg, #f7d37d, #72cbff);
}

.brand-copy strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.05;
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.72);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.header-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(244, 248, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.header-nav a.active,
.header-nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero {
  position: relative;
  padding: 34px 0 42px;
  color: var(--text-inverse);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.page-hero::before {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(66, 183, 255, 0.08), transparent 68%);
}

.page-hero::after {
  width: 360px;
  height: 360px;
  top: -90px;
  right: -120px;
  background: radial-gradient(circle, rgba(60, 112, 220, 0.08), transparent 70%);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(12, 27, 46, 0.74), rgba(8, 20, 36, 0.82)),
    radial-gradient(circle at 18% 16%, rgba(66, 183, 255, 0.08), transparent 28%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid var(--glass-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    var(--shadow-xl);
}

.hero-shell::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 183, 255, 0.16), transparent 70%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 191, 93, 0.08), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.84);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 28px rgba(0, 8, 22, 0.24);
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  color: rgba(244, 248, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.btn-primary {
  color: #08111f;
  background: linear-gradient(135deg, #f7d37d, #efb74c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 16px 32px rgba(243, 191, 93, 0.22);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #1566d0, #3ab7ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(21, 102, 208, 0.22);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 22, 39, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-side {
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 40, 68, 0.82), rgba(13, 31, 54, 0.84));
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 38px rgba(0, 8, 22, 0.2);
  min-width: 0;
}

.hero-side h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #fff;
}

.hero-side p,
.hero-side li {
  color: rgba(244, 248, 255, 0.82);
  font-size: 14px;
}

.hero-side ul {
  display: grid;
  gap: 10px;
}

.section {
  padding: 24px 0 84px;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 8% 12%, rgba(66, 183, 255, 0.05), transparent 24%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 56px rgba(12, 27, 49, 0.08);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 183, 255, 0.55), rgba(243, 191, 93, 0.45), transparent 72%);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.section-shell > * {
  position: relative;
  z-index: 1;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-deep);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  max-width: 780px;
  font-size: 15px;
  color: var(--text-soft);
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.card-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

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

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

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

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-width: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.05), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    var(--shadow-md);
}

.card.dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #0f2038, #162f4d);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(0, 8, 22, 0.2);
}

.card.dark h3,
.card.dark p,
.card.dark li,
.card.dark strong,
.card.dark span {
  color: var(--text-inverse);
}

.card.flat::before {
  display: none;
}

.card.tinted {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.94), rgba(249, 251, 255, 0.98)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.05), transparent 28%);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

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

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

.card-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.card-list li::before {
  content: "•";
  color: var(--brand-deep);
  font-weight: 900;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.04), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    var(--shadow-md);
}

.stat strong {
  display: block;
  font-size: 26px;
  color: var(--brand-deep);
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.timeline {
  position: relative;
  padding-left: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(15, 103, 208, 0.25), rgba(243, 191, 93, 0.42));
}

.timeline-item {
  position: relative;
  padding-bottom: 22px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 5px rgba(66, 183, 255, 0.08);
}

.timeline-year {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-deep);
}

.timeline-desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text);
}

.news-list,
.table-wrap {
  display: grid;
  gap: 0;
}

.news-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(12, 27, 49, 0.12);
}

.news-list li:last-child {
  border-bottom: 0;
}

.news-list .title {
  flex: 1;
  color: var(--text);
}

.news-list .meta {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--text-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(12, 27, 49, 0.08);
  text-align: left;
  font-size: 14px;
}

th {
  background: linear-gradient(180deg, #f6f9fd, #f1f6fb);
  color: var(--text);
}

tr:last-child td {
  border-bottom: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(66, 183, 255, 0.12);
  color: var(--brand-deep);
}

.tag.amber {
  background: rgba(243, 191, 93, 0.16);
  color: #8f671b;
}

.tag.dark {
  background: rgba(16, 35, 60, 0.12);
  color: #203957;
}

.toc {
  display: grid;
  gap: 10px;
}

.toc a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.toc a::after {
  content: "→";
  color: var(--brand-deep);
}

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

.kpi {
  padding: 18px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.04), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-md);
}

.kpi strong {
  display: block;
  font-size: 28px;
  color: var(--brand-deep);
}

.kpi span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(16, 35, 60, 0.06);
  border: 1px solid rgba(12, 27, 49, 0.08);
  color: var(--text-soft);
  font-size: 14px;
}

.chip-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-filter span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #294462;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.directory-list {
  display: grid;
  gap: 16px;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.stats-grid > *,
.card-grid > *,
.watch-grid > *,
.insight-grid > *,
.process-grid > *,
.trust-grid > * {
  height: 100%;
}

.supplier-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 254, 0.98)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.05), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-md);
}

.supplier-row > *,
.signal-row > * {
  min-width: 0;
}

.supplier-main h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.supplier-main p,
.supplier-specs p,
.supplier-action p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

.meta-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.meta-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}

.meta-list li::before {
  content: "•";
  color: var(--brand-deep);
  font-weight: 900;
}

.spec-table {
  display: grid;
  gap: 10px;
}

.spec-line {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(12, 27, 49, 0.1);
}

.spec-line:last-child {
  border-bottom: 0;
}

.spec-line strong {
  font-size: 13px;
  color: var(--text);
}

.spec-line span {
  font-size: 13px;
  color: var(--text-soft);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, #102038, #173154);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(12, 27, 49, 0.12);
}

.mini-btn.alt {
  background: linear-gradient(135deg, #f7d37d, #efb74c);
  color: #08111f;
}

.score-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(16, 35, 60, 0.06), rgba(16, 35, 60, 0.03));
  border: 1px solid rgba(12, 27, 49, 0.08);
}

.score-card strong {
  display: block;
  font-size: 28px;
  color: var(--brand-deep);
}

.score-card span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-soft);
}

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

.faq-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.04), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-md);
}

.faq-item strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.faq-item p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.required-mark {
  margin-left: 4px;
  color: #c63b56;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(12, 27, 49, 0.12);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--brand-deep);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(15, 103, 208, 0.5);
  box-shadow:
    0 0 0 4px rgba(66, 183, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.field.is-invalid input,
.field.is-invalid select,
.field-full.is-invalid textarea {
  border-color: rgba(198, 59, 86, 0.52);
  background: rgba(255, 247, 248, 0.98);
  box-shadow:
    0 0 0 4px rgba(198, 59, 86, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.field-help,
.field-error {
  font-size: 12px;
  line-height: 1.5;
}

.field-help {
  color: var(--text-soft);
}

.field-error {
  display: none;
  color: #b3374d;
}

.field.is-invalid .field-error,
.field-full.is-invalid .field-error {
  display: block;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-submitting {
  background: rgba(15, 103, 208, 0.08);
  color: var(--brand-deep);
  border: 1px solid rgba(15, 103, 208, 0.14);
}

.form-status.is-success {
  background: rgba(54, 203, 145, 0.12);
  color: #146f4d;
  border: 1px solid rgba(54, 203, 145, 0.2);
}

.form-status.is-error {
  background: rgba(198, 59, 86, 0.08);
  color: #b3374d;
  border: 1px solid rgba(198, 59, 86, 0.16);
}

.submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.submit-row .btn {
  min-height: 56px;
}

.btn[disabled] {
  opacity: 0.68;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

footer {
  padding: 34px 0 24px;
  background: #081321;
  color: rgba(244, 248, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.footer-column h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: #fff;
}

.footer-column a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.72);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(244, 248, 255, 0.58);
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .grid-4,
  .grid-3,
  .grid-2,
  .kpi-grid,
  .stats-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .supplier-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-shell,
  .section-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-actions,
  .cta-row {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1220px);
  }

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

  .btn {
    width: 100%;
  }
}

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

.footer-intro p {
  margin: 0;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.68);
}

.page-shell {
  display: grid;
  gap: 18px;
}

.hero-side .mini-note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.68);
}

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

.process-step,
.trust-card,
.watch-card,
.insight-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.05), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-md);
}

.process-step strong,
.trust-card strong,
.watch-card strong,
.insight-card strong {
  display: block;
  font-size: 16px;
  color: var(--text);
}

.process-step p,
.trust-card p,
.watch-card p,
.insight-card p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f67d0, #42b7ff);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.form-layout,
.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.form-panel,
.side-panel,
.radar-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.05), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-md);
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 103, 208, 0.08);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h2,
.panel-head h3 {
  margin: 14px 0 8px;
  line-height: 1.15;
  color: var(--text);
}

.panel-head p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

.field-grid-3,
.field-grid-2 {
  display: grid;
  gap: 14px;
}

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

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

.field-set {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field-set h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.hint {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.checkbox-grid,
.tag-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-chip,
.tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 103, 208, 0.06);
  border: 1px solid rgba(15, 103, 208, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.checkbox-chip input {
  width: 14px;
  height: 14px;
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.form-note,
.side-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 103, 208, 0.05);
  border: 1px solid rgba(15, 103, 208, 0.08);
  font-size: 13px;
  color: var(--text-soft);
}

.side-stack {
  display: grid;
  gap: 16px;
}

.side-panel ul,
.timeline-list,
.signal-list {
  display: grid;
  gap: 12px;
}

.side-panel li,
.timeline-item,
.signal-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 103, 208, 0.05);
  border: 1px solid rgba(15, 103, 208, 0.08);
  color: var(--text);
}

.side-panel li span,
.timeline-item span,
.signal-list li span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-soft);
}

.priority-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0c1c32, #163256);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 34px rgba(12, 27, 49, 0.18);
}

.priority-card strong {
  display: block;
  font-size: 26px;
}

.priority-card p {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.72);
}

.timeline-list {
  margin-top: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.timeline-item strong {
  color: var(--brand-deep);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.timeline-item p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

.signal-table {
  display: grid;
  gap: 12px;
}

.signal-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr)) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.04), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-md);
  align-items: center;
}

.signal-row.header {
  background: rgba(10, 22, 39, 0.92);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.signal-row strong,
.signal-row span {
  font-size: 13px;
  min-width: 0;
  word-break: break-word;
}

.status-up,
.status-mid,
.status-watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-up {
  background: rgba(54, 203, 145, 0.14);
  color: #127a52;
}

.status-mid {
  background: rgba(243, 191, 93, 0.18);
  color: #945f00;
}

.status-watch {
  background: rgba(66, 183, 255, 0.14);
  color: var(--brand-deep);
}

.company-card-large {
  display: grid;
  gap: 16px;
}

.company-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.company-head h3 {
  margin: 0;
  font-size: 22px;
  color: var(--text);
}

.company-head p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f67d0, #42b7ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

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

.dual-list ul {
  display: grid;
  gap: 8px;
}

.dual-list li {
  padding-left: 14px;
  position: relative;
  font-size: 13px;
  color: var(--text-soft);
}

.dual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0c1c32, #163256);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 40px rgba(12, 27, 49, 0.18);
}

.cta-strip h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.cta-strip p {
  margin: 0;
  color: rgba(244, 248, 255, 0.74);
}

.cta-strip .cta-row {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .footer-grid-wide,
  .process-grid,
  .trust-grid,
  .watch-grid,
  .insight-grid,
  .form-layout,
  .radar-layout,
  .field-grid-3,
  .signal-row,
  .dual-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .field-grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Home styles migrated from index.html */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --bg-soft: #0b1729;
  --panel: rgba(9, 21, 37, 0.9);
  --panel-2: rgba(14, 32, 54, 0.86);
  --glass: rgba(13, 28, 48, 0.72);
  --glass-strong: rgba(16, 35, 60, 0.8);
  --glass-line: rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.2);
  --card: rgba(255, 255, 255, 0.96);
  --card-soft: rgba(245, 248, 252, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(12, 27, 49, 0.1);
  --text: #0d1d31;
  --text-soft: #50647e;
  --text-inverse: #f4f8ff;
  --brand: #42b7ff;
  --brand-deep: #0f67d0;
  --accent: #f3bf5d;
  --accent-deep: #da9d28;
  --success: #36cb91;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-xl: 0 28px 70px rgba(0, 8, 22, 0.34);
  --shadow-lg: 0 22px 48px rgba(12, 27, 49, 0.16);
  --shadow-md: 0 14px 32px rgba(12, 27, 49, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 183, 255, 0.1), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(86, 146, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 16%, rgba(35, 86, 168, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(243, 191, 93, 0.06), transparent 20%),
    linear-gradient(180deg, #07111f 0, #091628 580px, #eef3f9 580px, #e8eef6 100%);
  color: var(--text);
  line-height: 1.65;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f3f6fb, #edf2f8);
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 8% 12%, rgba(66, 183, 255, 0.05), transparent 24%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 56px rgba(12, 27, 49, 0.08);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 183, 255, 0.55), rgba(243, 191, 93, 0.45), transparent 72%);
}

.section-shell::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -210px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 183, 255, 0.08), transparent 72%);
  pointer-events: none;
}

.section-shell > * {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-deep);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  color: var(--text);
}

.section-head p {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 14, 27, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar .container,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-bar .container {
  padding: 10px 0;
}

.header-main {
  padding: 16px 0;
}

.header-branding,
.utility-left,
.utility-right,
.nav-shell,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 248, 255, 0.74);
  font-size: 12px;
}

.status-pill strong {
  margin-right: 6px;
  color: #fff;
}

.utility-link {
  color: rgba(244, 248, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.utility-link.active,
.utility-link:hover {
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(0, 8, 22, 0.2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-copy strong,
.drawer-title strong {
  display: block;
  font-size: 24px;
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0.015em;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 24%, #b9c3d2 60%, #f5f8fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 8, 22, 0.2);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
}

.brand-copy span,
.drawer-title span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 6px 16px rgba(0, 8, 22, 0.16);
}

.brand-copy span em,
.drawer-title span em,
.brand-copy span i,
.drawer-title span i {
  font-style: normal;
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-copy span em,
.drawer-title span em {
  background-image: linear-gradient(180deg, #f4d388 0%, #e4b457 44%, #f8dea1 100%);
}

.brand-copy span i,
.drawer-title span i {
  background-image: linear-gradient(180deg, #fbfdff 0%, #dce4ef 38%, #b5c0cf 70%, #f5f8fd 100%);
}

.brand-copy span em + i,
.drawer-title span em + i {
  margin-left: 0.18em;
}

.header-branding {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-shell {
  flex: 1;
  justify-content: space-between;
}

.drawer-head,
.drawer-meta {
  display: none;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.drawer-title {
  min-width: 0;
}

.drawer-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.drawer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.nav-toggle,
.drawer-close {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-backdrop {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.main-nav a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(244, 248, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-link-btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.nav-link-btn {
  color: rgba(244, 248, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, #115ab8, #2ea8ff);
  box-shadow: 0 16px 34px rgba(17, 90, 184, 0.26);
}

.nav-cta.alt {
  color: #08111f;
  background: linear-gradient(135deg, #f7d37d, #efb74c);
  box-shadow: 0 16px 34px rgba(243, 191, 93, 0.22);
}

.nav-link-btn.active,
.nav-link-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta.active {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(17, 90, 184, 0.28);
}

.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 34px 0 84px;
  color: var(--text-inverse);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(66, 183, 255, 0.08), transparent 68%);
}

.hero::after {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -120px;
  background: radial-gradient(circle, rgba(60, 112, 220, 0.09), transparent 70%);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(12, 27, 46, 0.72), rgba(8, 20, 36, 0.8)),
    radial-gradient(circle at 18% 16%, rgba(66, 183, 255, 0.08), transparent 28%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid var(--glass-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 28px 70px rgba(0, 8, 22, 0.34);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shell::before {
  width: 380px;
  height: 380px;
  top: -170px;
  right: -100px;
  background: radial-gradient(circle, rgba(66, 183, 255, 0.16), transparent 68%);
}

.hero-shell::after {
  width: 340px;
  height: 340px;
  left: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(243, 191, 93, 0.08), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.84);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(243, 191, 93, 0.74);
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 28px rgba(0, 8, 22, 0.28);
}

.hero-copy p {
  margin: 0;
  max-width: 700px;
  font-size: 18px;
  color: rgba(244, 248, 255, 0.92);
}

.hero-badges,
.hero-subactions,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.chip-list span,
.subaction-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-badges span,
.subaction-link {
  color: rgba(244, 248, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.nav-cta:hover,
.nav-link-btn:hover,
.subaction-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #08111f;
  background: linear-gradient(135deg, #f7d37d, #efb74c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 36px rgba(243, 191, 93, 0.24);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #1566d0, #3ab7ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(21, 102, 208, 0.24);
}

.btn-ghost {
  color: #fff;
  background: rgba(10, 22, 39, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.metric {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(0, 10, 25, 0.14);
}

.metric strong {
  display: block;
  font-size: 28px;
  color: #fff;
}

.metric span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(244, 248, 255, 0.82);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 40, 68, 0.76), rgba(13, 31, 54, 0.8));
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 26px 56px rgba(0, 8, 22, 0.28);
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-top h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.panel-top p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.82);
}

.timestamp {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 255, 0.84);
  font-size: 12px;
  text-align: right;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.price-grid,
.gateway-grid,
.experts-grid,
.reasons-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.price-card,
.mini-panel {
  padding: 18px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(14, 31, 52, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 28px rgba(0, 8, 22, 0.16);
}

.price-card .label {
  font-size: 12px;
  color: rgba(244, 248, 255, 0.82);
}

.price-card .value {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0, 8, 22, 0.22);
}

.price-card .change {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.price-up {
  color: #85efbd;
}

.price-down {
  color: #ff8f8f;
}

.price-card .meta {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(244, 248, 255, 0.72);
}

.mini-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: #fff;
}

.mini-panel p {
  margin: 0;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.84);
}

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

.gateway-card,
.expert-card,
.reason-card,
.buyers-card,
.buyers-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gateway-card,
.expert-card,
.reason-card,
.buyers-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.05), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 34px rgba(12, 27, 49, 0.1);
}

.gateway-card:hover,
.expert-card:hover,
.reason-card:hover,
.buyers-card:hover,
.buyers-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 44px rgba(12, 27, 49, 0.16);
}

.gateway-card::before,
.expert-card::before,
.reason-card::before,
.buyers-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.gateway-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(66, 183, 255, 0.1);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.gateway-card h3,
.expert-card h3,
.reason-card h3,
.buyers-card h3,
.buyers-panel h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
}

.gateway-card p,
.expert-card p,
.reason-card p,
.buyers-card p,
.buyers-panel p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

.gateway-list,
.reason-list,
.buyers-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.gateway-list li,
.reason-list li,
.buyers-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.gateway-list li::before,
.reason-list li::before,
.buyers-list li::before {
  content: "•";
  color: var(--brand-deep);
  font-weight: 900;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #102038, #173154);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(12, 27, 49, 0.14);
}

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

.expert-role {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 800;
}

.expert-meta {
  margin-top: 8px;
  font-size: 13px;
  color: #27415f;
  font-weight: 700;
}

.expert-cred {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 27, 49, 0.08);
  font-size: 13px;
  color: var(--text-soft);
}

.buyers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

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

.buyers-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #0f2038, #152f4f);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 46px rgba(0, 8, 22, 0.24);
}

.buyers-panel h3,
.buyers-panel p,
.buyers-panel li {
  color: var(--text-inverse);
}

.buyers-steps {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.buyers-steps li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.buyers-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reasons-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

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

.reason-card.highlight {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #0f2038, #162f4d);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 44px rgba(0, 8, 22, 0.22);
}

.reason-card.highlight h3,
.reason-card.highlight p,
.reason-card.highlight li {
  color: var(--text-inverse);
}

.reason-card.highlight::before {
  background: linear-gradient(180deg, #78ccff, #f3bf5d);
}

.quick-links {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-link {
  padding: 18px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 254, 0.96)),
    radial-gradient(circle at top right, rgba(66, 183, 255, 0.04), transparent 26%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 28px rgba(12, 27, 49, 0.08);
}

.quick-link strong {
  display: block;
  font-size: 16px;
  color: var(--text);
}

.quick-link span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

footer {
  padding: 34px 0 24px;
  background: #081321;
  color: rgba(244, 248, 255, 0.76);
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.footer-column h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: #fff;
}

.footer-column a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(244, 248, 255, 0.72);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(244, 248, 255, 0.58);
  text-align: center;
}

@media (max-width: 1024px) {
  .header-main,
  .nav-shell,
  .hero-grid,
  .gateway-grid,
  .experts-grid,
  .buyers-layout,
  .reasons-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-main,
  .nav-shell {
    align-items: flex-start;
  }

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

  .buyers-main,
  .reasons-stack,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .utility-bar {
    display: none;
  }

  .site-header {
    overflow: visible;
  }

  .header-main {
    padding: 12px 0;
    align-items: center;
  }

  .header-branding {
    width: 100%;
  }

  .nav-toggle,
  .drawer-close {
    display: inline-flex;
  }

  .nav-shell {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1015;
    width: min(88vw, 360px);
    height: 100dvh;
    padding: 22px 18px 28px;
    display: grid;
    align-content: start;
    gap: 16px;
    background:
      linear-gradient(180deg, rgba(12, 27, 46, 0.96), rgba(8, 20, 36, 0.98)),
      radial-gradient(circle at top right, rgba(66, 183, 255, 0.12), transparent 28%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(0, 8, 22, 0.36);
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.32s ease;
  }

  .site-header.is-open .nav-shell {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .drawer-head,
  .drawer-meta {
    display: flex;
  }

  .drawer-head {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .drawer-title strong,
  .drawer-title span {
    display: block;
  }

  .drawer-title strong {
    font-size: 16px;
    line-height: 1.05;
  }

  .drawer-title span {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .main-nav,
  .nav-actions,
  .drawer-meta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    gap: 8px;
    overflow: visible;
  }

  .main-nav a,
  .nav-link-btn,
  .nav-cta,
  .drawer-meta a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 14px;
  }

  .drawer-meta {
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .drawer-meta a {
    display: inline-flex;
    align-items: center;
    color: rgba(244, 248, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1010;
    border: 0;
    padding: 0;
    background: rgba(4, 10, 18, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .site-header.is-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .section {
    padding: 56px 0;
  }

  .section-shell {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero {
    padding: 18px 0 52px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .hero-copy p,
  .page-hero p,
  .section-head p {
    font-size: 15px;
  }

  .hero-metrics,
  .price-grid,
  .gateway-grid,
  .experts-grid,
  .buyers-main,
  .reasons-stack,
  .quick-links,
  .footer-grid,
  .form-layout,
  .field-grid-2,
  .field-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-subactions,
  .buyers-actions,
  .contact-actions,
  .cta-row,
  .submit-row {
    width: 100%;
  }

  .btn,
  .nav-link-btn,
  .nav-cta,
  .subaction-link,
  .card-link {
    width: 100%;
    min-height: 54px;
  }

  .form-panel,
  .side-panel,
  .radar-panel {
    padding: 20px 18px;
  }

  .panel-top {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 18px, 1220px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy span {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.06;
  }

  .hero-copy p,
  .section-head p,
  .page-hero p {
    font-size: 14px;
  }

  .hero {
    padding: 14px 0 40px;
  }

  .section-shell {
    padding: 20px 16px;
  }

  .hero-shell {
    padding: 20px 16px;
  }

  .hero-badges span,
  .subaction-link,
  .checkbox-chip,
  .pill,
  .tag {
    min-height: 42px;
  }

  .page-hero {
    padding: 18px 0 22px;
  }

  .field-help,
  .field-error {
    font-size: 11px;
  }
}

