/* Chrome Safe Download Hub — www Tech/Performance theme (Inter + JetBrains Mono) */
:root {
  --bg: #0b1220;
  --bg-elevated: #111827;
  --bg-card: rgba(17, 24, 39, 0.72);
  --border: rgba(34, 211, 238, 0.22);
  --border-strong: rgba(34, 211, 238, 0.45);
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-soft: #64748b;
  --white: #f8fafc;
  --danger: #f87171;
  --success: #34d399;
  --glow: 0 0 24px rgba(34, 211, 238, 0.18);
  --glow-strong: 0 0 36px rgba(34, 211, 238, 0.32);
  --radius: 14px;
  --nav-h: 68px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "Consolas", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(59, 130, 246, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(8, 145, 178, 0.08), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #0a1020 40%, #0c1424 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #67e8f9;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.72));
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92%);
  margin: 0 auto;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-brand svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(34, 211, 238, 0.08);
}

.nav-links a.active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--cyan);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  text-align: center;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #0b1220;
  box-shadow: var(--glow), 0 4px 14px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong), 0 8px 20px rgba(59, 130, 246, 0.35);
  color: #0b1220;
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 20px rgba(34, 211, 238, 0.05);
}

.btn-ghost:hover {
  background: rgba(34, 211, 238, 0.1);
  transform: translateY(-2px);
  color: #67e8f9;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* —— Hero —— */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-copy h1 .accent {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.browser-mock {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-strong);
  box-shadow: var(--glow-strong), 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: floatGlow 6s ease-in-out infinite;
}

.browser-mock .chrome-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(8, 15, 28, 0.95);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.traffic .r { background: #f87171; }
.traffic .y { background: #fbbf24; }
.traffic .g { background: #34d399; }

.address-bar {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--mono);
}

.browser-body {
  padding: 1.25rem;
  min-height: 260px;
}

.perf-meter {
  display: grid;
  gap: 0.85rem;
}

.meter-row {
  display: grid;
  grid-template-columns: 90px 1fr 48px;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.meter-track {
  height: 8px;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.15);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
  animation: fillPulse 2.8s ease-in-out infinite;
}

.meter-val {
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 600;
  text-align: right;
}

.spark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.spark {
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.18);
  text-align: center;
}

.spark strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--mono);
}

.spark span {
  font-size: 0.7rem;
  color: var(--text-soft);
}

/* —— Sections —— */
section {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

/* —— Cards —— */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--glow);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--glow-strong);
  transform: translateY(-3px);
}

.card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

/* —— Stats —— */
.stats {
  padding: 1.5rem 0 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(17, 24, 39, 0.8));
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.stat-card .num {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--cyan);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* —— Deep features —— */
.deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.deep-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
}

.deep-item .card-icon {
  margin-bottom: 0;
}

/* —— Feature grid —— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

/* —— Platforms —— */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.platform-card {
  text-align: center;
}

.platform-card .card-icon {
  margin: 0 auto 1rem;
}

.platform-card .btn {
  margin-top: 1.1rem;
}

/* —— Reviews —— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.review-stars {
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.review-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.review-meta strong {
  color: var(--text);
}

/* —— Use cases —— */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

/* —— Comparison —— */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  font-size: 0.92rem;
}

th {
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-weight: 600;
}

td {
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}

td.yes {
  color: var(--success);
  font-weight: 600;
}

td.highlight {
  color: var(--white);
  font-weight: 600;
}

/* —— FAQ —— */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--glow);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 1.35rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* —— Download page —— */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto;
}

.changelog {
  margin-bottom: 0.5rem;
}

.changelog-list {
  display: grid;
  gap: 1rem;
}

.changelog-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
}

.changelog-date {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
}

.changelog-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.changelog-item ul {
  margin-top: 0.5rem;
}

.changelog-item li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.changelog-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.primary-dl {
  text-align: center;
}

.primary-dl-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  text-align: center;
}

.primary-dl-card .card-icon {
  margin: 0 auto 1.1rem;
  width: 56px;
  height: 56px;
}

.primary-dl-card .card-icon svg {
  width: 28px;
  height: 28px;
}

.primary-dl-card h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.primary-dl-card p {
  margin-bottom: 1.35rem;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.install-steps {
  counter-reset: step;
  margin-top: 0.75rem;
}

.install-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
}

.notice-box {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.08), rgba(17, 24, 39, 0.85));
}

.notice-box h2 {
  color: var(--success);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.notice-box ul {
  margin-top: 0.75rem;
}

.notice-box li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.notice-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* —— Guide page —— */
.guide-layout {
  display: grid;
  gap: 2rem;
}

.guide-block {
  padding: 1.75rem 1.85rem;
}

.guide-block h2 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.guide-block h3 {
  color: var(--cyan);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}

.guide-block p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.guide-block ul,
.guide-block ol {
  margin: 0.5rem 0 1rem 1.1rem;
}

.guide-block ul {
  list-style: disc;
}

.guide-block ol {
  list-style: decimal;
}

.guide-block li {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.tip-card {
  padding: 1.15rem;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.15);
}

.tip-card h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1rem;
}

.shortcut-table td:first-child {
  font-family: var(--mono);
  color: var(--cyan);
  white-space: nowrap;
}

.cta-banner {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.15));
  border: 1px solid var(--border-strong);
  box-shadow: var(--glow-strong);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.essay p {
  margin-bottom: 1rem;
}

/* —— Footer —— */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(34, 211, 238, 0.12);
  background: linear-gradient(180deg, transparent, rgba(8, 15, 28, 0.6));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand svg {
  width: 24px;
  height: 24px;
}

.footer-col p,
.footer-col li {
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.footer-col h4 {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-security {
  padding: 1.15rem 1.35rem;
  border-radius: 10px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.06);
  margin-bottom: 1.5rem;
}

.footer-security p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(34, 211, 238, 0.08);
  color: var(--text-soft);
  font-size: 0.82rem;
}

/* —— Animations —— */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); box-shadow: var(--glow-strong), 0 24px 60px rgba(0, 0, 0, 0.45); }
  50% { transform: translateY(-8px); box-shadow: 0 0 48px rgba(34, 211, 238, 0.4), 0 32px 70px rgba(0, 0, 0, 0.5); }
}

@keyframes fillPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy,
.browser-mock {
  animation: fadeUp 0.7s ease-out both;
}

.browser-mock {
  animation-delay: 0.15s;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero-grid,
  .deep-grid,
  .feature-grid,
  .platform-grid,
  .reviews-grid,
  .usecase-grid,
  .stats-grid,
  .install-grid,
  .req-grid,
  .tips-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }

  .hero-grid,
  .deep-grid,
  .feature-grid,
  .platform-grid,
  .reviews-grid,
  .usecase-grid,
  .stats-grid,
  .install-grid,
  .req-grid,
  .tips-grid,
  .footer-grid,
  .changelog-item {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  section {
    padding: 2.5rem 0;
  }

  .meter-row {
    grid-template-columns: 70px 1fr 40px;
  }
}
