:root {
  color-scheme: dark;
  --bg: #07101d;
  --surface: #0d1828;
  --surface-2: #132033;
  --surface-3: #18283d;
  --line: rgba(226, 232, 240, 0.11);
  --line-strong: rgba(226, 232, 240, 0.2);
  --text: #eef5ff;
  --muted: #9aa8bb;
  --soft: #cbd5e1;
  --accent: #d7b56d;
  --accent-2: #66d9c4;
  --blue: #74a7ff;
  --green: #50d890;
  --orange: #f4a35d;
  --danger: #f87171;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(102, 217, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 217, 196, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 10%, rgba(215, 181, 109, 0.1), transparent 28rem),
    linear-gradient(140deg, rgba(102, 217, 196, 0.08), transparent 38rem),
    var(--bg);
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto;
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(102, 217, 196, 0.12), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.025));
  opacity: 0.5;
  transform: translateX(-60%);
  animation: backgroundSweep 8s ease-in-out infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.024) 0,
    rgba(255, 255, 255, 0.024) 1px,
    transparent 1px,
    transparent 7px
  );
  mix-blend-mode: screen;
  opacity: 0.18;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  animation: pageReveal 0.5s ease both;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 29, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 181, 109, 0.42);
  border-radius: 8px;
  background: rgba(215, 181, 109, 0.1);
  color: var(--accent);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(215, 181, 109, 0.14);
  animation: markPulse 3.2s ease-in-out infinite;
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: var(--soft);
  font-size: 14px;
}

.nav-links a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 198px;
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.mobile-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  padding: clamp(46px, 8vw, 90px) 0 28px;
}

.hero::before {
  position: absolute;
  top: 32px;
  right: 3%;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  border: 1px solid rgba(102, 217, 196, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0.48;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(102, 217, 196, 0.24) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(102, 217, 196, 0.18) 50%, transparent 50.5%);
  animation: radarRotate 18s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(102, 217, 196, 0.16);
  animation: fadeUp 0.72s ease both;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  margin-top: 20px;
  max-width: 640px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.8;
  animation: fadeUp 0.72s ease 0.08s both;
}

.hero-search {
  position: relative;
  isolation: isolate;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(102, 217, 196, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(13, 24, 40, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeUp 0.74s ease 0.14s both;
}

.hero-search::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(102, 217, 196, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  opacity: 0.4;
  transform: translateX(-82%);
  animation: panelScan 5.6s ease-in-out infinite;
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.signal-header strong {
  color: var(--accent-2);
}

.signal-board {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(102, 217, 196, 0.16);
  border-radius: 8px;
  background: rgba(7, 16, 29, 0.52);
}

.signal-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 12px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.signal-row i {
  position: relative;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.signal-row i::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform-origin: left;
  animation: signalLoad 3.4s ease-in-out infinite;
}

.signal-row:nth-child(2) i::before {
  animation-delay: 0.35s;
}

.signal-row:nth-child(3) i::before {
  animation-delay: 0.7s;
}

.signal-row:nth-child(4) i::before {
  animation-delay: 1.05s;
}

.signal-row b {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(102, 217, 196, 0.72);
  animation: nodeBlink 1.6s ease-in-out infinite;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0a1423;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--text);
  outline: none;
}

.search-form button,
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.search-form button,
.btn-primary {
  border: 0;
  background: var(--accent);
  color: #111827;
}

.btn-secondary {
  border: 1px solid rgba(102, 217, 196, 0.38);
  background: rgba(102, 217, 196, 0.08);
  color: var(--accent-2);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
}

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

.chip,
.filter-chip,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  font-size: 12px;
  white-space: nowrap;
}

.chip,
.filter-chip {
  cursor: pointer;
}

.filter-chip.active,
.chip:hover {
  border-color: rgba(215, 181, 109, 0.5);
  color: var(--accent);
}

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

.stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 217, 196, 0.32);
}

.stat strong {
  display: block;
  font-size: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2,
.page-head h1 {
  margin: 0;
  letter-spacing: 0;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.section-head p,
.page-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.scenario-card,
.industry-card,
.article-card,
.tool-card,
.ranking-item,
.info-card,
.form-panel,
.detail-panel,
.ad-banner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.78);
}

.scenario-card,
.industry-card,
.article-card,
.info-card {
  padding: 18px;
  animation: fadeUp 0.62s ease both;
  animation-delay: calc(var(--i, 0) * 0.03s);
}

.scenario-card:hover,
.industry-card:hover,
.article-card:hover,
.tool-card:hover,
.ranking-item:hover {
  border-color: rgba(215, 181, 109, 0.38);
  background: rgba(19, 32, 51, 0.92);
  transform: translateY(-2px);
}

.scenario-card,
.industry-card,
.article-card,
.tool-card,
.ranking-item {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.scenario-card strong,
.industry-card strong,
.article-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.scenario-card p,
.industry-card p,
.article-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
  gap: 14px;
}

.tool-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 258px;
  padding: 18px;
  overflow: hidden;
  animation: fadeUp 0.58s ease both;
}

.tool-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 0 38%, rgba(102, 217, 196, 0.1) 50%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-40%);
  transition:
    opacity 0.2s ease,
    transform 0.48s ease;
}

.tool-card:hover::before {
  opacity: 1;
  transform: translateX(40%);
}

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

.tool-identity {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.tool-logo {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
  overflow: hidden;
}

.tool-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tool-card h3,
.ranking-item h3 {
  margin: 0;
  font-size: 20px;
}

.tool-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}

.tool-meta,
.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-actions {
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.stars {
  color: var(--accent);
  letter-spacing: 0;
  white-space: nowrap;
}

.badge.free {
  border-color: rgba(80, 216, 144, 0.45);
  color: var(--green);
}

.badge.freemium {
  border-color: rgba(116, 167, 255, 0.45);
  color: var(--blue);
}

.badge.paid,
.badge.enterprise,
.badge.unknown {
  color: var(--muted);
}

.badge.cn,
.badge.access {
  border-color: rgba(244, 163, 93, 0.42);
  color: var(--orange);
}

.badge.featured {
  border-color: rgba(116, 167, 255, 0.5);
  color: var(--blue);
}

.badge.sponsored {
  border-color: rgba(215, 181, 109, 0.55);
  background: rgba(215, 181, 109, 0.12);
  color: var(--accent);
}

.filters {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.6);
}

.filter-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-label {
  min-width: 64px;
  color: var(--muted);
  font-size: 13px;
}

.page-head {
  padding: 48px 0 24px;
}

.page-head h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding-bottom: 58px;
}

.side-rail {
  display: grid;
  align-content: start;
  gap: 14px;
}

.ad-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background:
    linear-gradient(120deg, rgba(215, 181, 109, 0.14), rgba(102, 217, 196, 0.08)),
    rgba(13, 24, 40, 0.84);
}

.ad-banner-entry {
  justify-content: flex-start;
  color: var(--text);
  text-decoration: none;
}

.ad-banner.ad-banner-entry strong {
  margin-bottom: 0;
}

.ad-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.ad-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.8);
}

.detail-logo {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #f8fafc;
  padding: 16px;
}

.detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 54px);
}

.detail-panel {
  padding: 22px;
}

.detail-panel + .detail-panel {
  margin-top: 14px;
}

.detail-panel h2,
.rail-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.detail-panel p,
.detail-panel li,
.rail-card p,
.ranking-item p {
  color: var(--soft);
  line-height: 1.75;
}

.detail-panel ul {
  margin: 0;
  padding-left: 20px;
}

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

.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

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

.metric strong {
  display: block;
  margin-top: 4px;
}

.rail-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.78);
}

.ranking-list {
  display: grid;
  gap: 12px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.rank-no {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(215, 181, 109, 0.36);
  border-radius: 8px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.article-body {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.9;
}

.article-body h2 {
  margin: 30px 0 12px;
  color: var(--text);
}

.article-body p {
  margin: 0 0 16px;
}

.article-body ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-body li {
  margin: 7px 0;
}

.article-table-wrap {
  margin: 22px 0 26px;
  overflow-x: auto;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 17, 31, 0.72);
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.65;
}

.article-table th,
.article-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  border-right: 1px solid rgba(148, 163, 184, 0.1);
  vertical-align: top;
}

.article-table th {
  color: var(--text);
  background: rgba(126, 231, 255, 0.08);
  font-weight: 800;
}

.article-table td {
  color: var(--soft);
}

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

.article-callout {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.12), rgba(126, 231, 255, 0.06));
}

.article-callout h2 {
  margin-top: 0;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: var(--soft);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a1423;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-panel {
  padding: 22px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 4vw, 64px);
  color: var(--muted);
  background: rgba(7, 16, 29, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.empty {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(13, 24, 40, 0.6);
}

@keyframes pageReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundSweep {
  0%,
  100% {
    transform: translateX(-62%);
  }
  50% {
    transform: translateX(62%);
  }
}

@keyframes panelScan {
  0%,
  100% {
    transform: translateX(-82%);
  }
  50% {
    transform: translateX(82%);
  }
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(215, 181, 109, 0.12);
  }
  50% {
    box-shadow: 0 0 30px rgba(215, 181, 109, 0.34);
  }
}

@keyframes radarRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes signalLoad {
  0%,
  100% {
    transform: scaleX(0.28);
  }
  50% {
    transform: scaleX(0.92);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .mobile-menu {
    display: block;
  }

  .top-actions {
    min-width: 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 12px;
  }

  body.menu-open .nav-links {
    display: flex;
  }

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

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

  .detail-hero {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .detail-hero .detail-actions {
    grid-column: 1 / -1;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .top-actions .btn-secondary {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-search {
    padding: 14px;
  }

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

  .search-form button {
    min-height: 46px;
  }

  .stats,
  .scenario-grid,
  .industry-grid,
  .article-grid,
  .ad-grid,
  .metric-grid,
  .score-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .ad-banner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ranking-item {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .ranking-item .btn-ghost,
  .ranking-item .btn-secondary {
    grid-column: 1 / -1;
  }
}
