﻿:root {
  font-size: clamp(14px, 1.2vw, 18px);
  --bg: #0f131f;
  --bg-soft: #1b2140;
  --card: #111827;
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f9fafb;
  --muted: #c7cbd6;
  --accent: #f59e0b;
  --accent-2: #38bdf8;
  --accent-3: #f472b6;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

body {
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at top, #1f2937, #0b0f1a 65%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

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

a,
button,
.panel,
.library-row,
.primary,
.ghost {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.2), transparent 45%),
    radial-gradient(circle at 88% 10%, rgba(244, 114, 182, 0.22), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.18), transparent 50%);
  filter: blur(10px);
  z-index: -1;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 24, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 56px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 21px;
}

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

.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #111827;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

.nav .primary {
  font-size: 21px;
}

.ghost {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.hero {
  padding: 24px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(28px, 4.8vw, 56px);
  margin: 12px 0 16px;
  line-height: 1.1;
  max-width: 12ch;
}

.hero-title-stagger {
  max-width: none;
  display: grid;
  gap: 2px;
}

.hero-title-stagger span {
  display: block;
}

.hero-title-stagger span:nth-child(2) {
  padding-left: 1em;
}

.hero-title-stagger span:nth-child(3) {
  padding-left: 2em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-size: clamp(11px, 1.2vw, 13px);
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 58ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-highlights span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.hero-manifesto {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 18px 18px 18px 22px;
  border-left: 3px solid rgba(247, 166, 43, 0.85);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(247, 166, 43, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-manifesto p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.9;
}

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

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

.metric {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.chip {
  font-size: clamp(11px, 1.2vw, 13px);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: var(--accent-2);
}

.card-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.card-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.card-list strong {
  color: var(--text);
}

.hero-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
  margin-top: 6px;
}

.section {
  padding: 60px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(22px, 3.4vw, 38px);
  margin-bottom: 8px;
}

.section-head-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section-head-inline h2 {
  margin-bottom: 0;
}

.section-head-inline .ghost {
  width: auto;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-module-grid {
  margin-top: 12px;
}

.home-module-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  align-content: start;
}

.home-module-card h3 {
  font-size: 24px;
}

.home-module-card p:last-child {
  color: var(--muted);
}

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

.home-value-card {
  display: grid;
  gap: 12px;
  min-height: 240px;
  align-content: start;
}

.home-value-card h3 {
  font-size: 26px;
  line-height: 1.25;
}

.home-value-card p:last-child {
  color: var(--muted);
}

.home-closing-note {
  margin-top: 22px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at top right, rgba(247, 166, 43, 0.18), transparent 34%),
    rgba(10, 18, 38, 0.78);
}

.home-closing-note h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}

.home-closing-note p:last-child {
  color: var(--muted);
  max-width: 64ch;
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: -8px 0 18px;
}

.stack-intro {
  display: grid;
  gap: 6px;
  margin: 6px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stack-intro-title {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  text-transform: uppercase;
}

.stack-intro-copy {
  color: var(--muted);
}

.radar-page {
  padding-top: 36px;
}

.radar-page .container {
  width: 100%;
  margin: 0;
  padding-right: 24px;
  padding-left: 0;
}

.radar-shell {
  position: relative;
}

.radar-content {
  margin-left: 340px;
  min-width: 0;
  width: calc(100vw - 364px);
}

.radar-page .section-head {
  margin-bottom: 24px;
}

.radar-sidebar {
  position: fixed;
  top: 87px;
  left: 0;
  bottom: 18px;
  width: 320px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px 16px 40px;
  border-radius: 0;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(16, 28, 50, 0.96), rgba(14, 22, 40, 0.9));
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.radar-sidebar::-webkit-scrollbar {
  display: none;
}

.radar-sidebar-head {
  display: grid;
  gap: 4px;
}

.radar-sidebar-head h3 {
  font-size: 24px;
}

.radar-sidebar-meta {
  display: grid;
  gap: 8px;
}

.radar-sidebar-stat {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-sidebar-stat:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.radar-journal-nav {
  display: grid;
  gap: 10px;
  padding-right: 4px;
  padding-bottom: 18px;
}

.radar-nav-link {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-nav-link:hover,
.radar-nav-link.is-active {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-1px);
}

.radar-nav-title {
  font-size: 18px;
  line-height: 1.2;
}

.radar-nav-sub,
.radar-nav-meta {
  color: var(--muted);
  font-size: 13px;
}

.radar-nav-sub {
  line-height: 1.5;
}

.journal-card-meta,
.journal-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journal-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-ghost {
  padding: 8px 14px;
}

.journal-meta-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.journal-sections {
  display: grid;
  gap: 20px;
}

.journal-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 110px;
}

.journal-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.journal-section-sub,
.journal-row-authors,
.journal-row-summary {
  color: var(--muted);
}

.journal-section .panel-kicker {
  margin-bottom: 8px;
}

.journal-section-head h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.journal-section-head > :first-child {
  min-width: 0;
}

.journal-section-head .journal-card-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
}

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

.journal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 20px;
  background: rgba(14, 20, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.journal-row-body {
  display: grid;
  gap: 10px;
}

.journal-row-actions {
  display: grid;
  gap: 10px;
  min-width: 126px;
}

.journal-row-title {
  font-size: 20px;
  line-height: 1.4;
}

.radar-link {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-2);
  background: rgba(56, 189, 248, 0.08);
}

.panel h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.panel p {
  color: var(--muted);
}

.panel-kicker,
.meta-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.library-table {
  display: grid;
  gap: 14px;
}

.library-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.library-actions {
  display: flex;
  justify-content: flex-end;
}

.library-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.chip-muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}


.library-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: default;
}

.library-table[data-layout="compact"] .library-row {
  grid-template-columns: minmax(260px, 2fr) minmax(120px, 0.6fr) minmax(120px, auto);
}

.library-table[data-layout="archive"] .library-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.library-row:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.32);
}

.library-row[role="link"] {
  cursor: pointer;
}

.library-row[role="link"]:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.8);
  outline-offset: 2px;
}

.library-head {
  background: transparent;
  border: 0;
  padding: 0 2px 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
}

.library-table[data-layout="archive"] .library-head {
  display: none;
}

.library-row-body {
  display: grid;
  gap: 12px;
}

.library-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.library-row-actions {
  display: grid;
  gap: 10px;
  min-width: 126px;
}

.library-title {
  font-weight: 600;
  min-width: 0;
  font-size: 20px;
  line-height: 1.45;
}

.library-info {
  color: var(--muted);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.library-link {
  justify-self: end;
  color: var(--accent-2);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.library-link:hover {
  border-color: rgba(56, 189, 248, 0.7);
  transform: translateY(-1px);
}

.journal-primary-link {
  font-size: 17px;
  padding: 10px 18px;
}

.library-empty {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--muted);
}

.library-page {
  padding-top: 40px;
}

.library-page-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.library-search {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.search-box {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid var(--card-border);
}

.search-label {
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 18px;
}

.search-input::placeholder {
  color: rgba(199, 203, 214, 0.7);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent-2);
}

.suggestion-chip.is-active,
.suggestion-chip:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.16);
}

.compact-panel {
  padding: 10px 18px;
  min-height: 40px;
  align-content: center;
}

.source-panel {
  text-align: left;
}

.panel {
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.panel:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.6);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 30;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.76);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 24px;
  background: rgba(10, 15, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.modal-dialog h3 {
  font-size: 30px;
  margin: 10px 0 12px;
}

.modal-dialog p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 24px;
}

.qrcode-card {
  margin-top: 22px;
  padding: 16px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.95));
}

.qrcode-image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 18px;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 16px;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--card-border);
}

.timeline-link {
  align-self: center;
  white-space: nowrap;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.18);
  color: var(--accent-2);
  font-weight: 600;
}

.site-footer {
  padding: 36px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-meta p {
  margin: 0;
}

.footer-counter {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.footer-counter span {
  color: var(--text);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav a:hover,
.ghost:hover,
.primary:hover {
  transform: translateY(-1px);
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.primary:hover {
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.42);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .home-values-grid {
    grid-template-columns: 1fr;
  }

  .logo-image {
    height: 48px;
  }

  .logo-text {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .library-row,
  .journal-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .library-link {
    justify-self: start;
  }

  .library-row-actions,
  .journal-row-actions {
    width: 100%;
    min-width: 0;
  }

  .library-row-actions .library-link,
  .journal-row-actions .library-link,
  .journal-row-actions .ghost {
    width: 100%;
    justify-content: center;
  }

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

  .library-meta {
    align-items: flex-start;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    animation: none;
  }

  .journal-section-head {
    flex-direction: column;
  }

  .radar-sidebar {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--card-border);
    background: rgba(10, 15, 30, 0.7);
    overflow: visible;
  }

  .radar-content {
    margin-left: 0;
    width: auto;
  }

  .radar-journal-nav {
    padding-right: 0;
  }

  .radar-journal-nav {
    grid-template-columns: 1fr;
  }

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

  .footer-counter {
    margin-top: -4px;
  }
}


@media (max-width: 520px) {
  .hero {
    padding: 60px 0 40px;
  }

  .logo-image {
    height: 43px;
  }

  .logo-text {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-highlights {
    gap: 8px;
  }

  .primary,
  .ghost {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .page-actions {
    display: grid;
  }

  .section-head-inline {
    align-items: flex-start;
  }

  .radar-sidebar {
    padding: 18px;
  }

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

  .step {
    width: 44px;
    height: 44px;
  }
}
