/* ==========================================================
   Uptime OS — marketing site
   Design tokens: color, type, layout
   ========================================================== */

:root {
  --bg: #f5f7fc;
  --surface: #ffffff;
  --surface-2: #edf1fa;
  --border: rgba(15, 23, 41, 0.1);
  --text: #0f1729;
  --text-muted: #51617e;
  --text-faint: #8492ac;
  --accent: #3d63d6;
  --accent-2: #7b5fe0;
  --accent-soft: rgba(61, 99, 214, 0.1);
  --good: #0fa968;
  --warn: #b7791f;
  --critical: #d14343;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;
  --shadow:
    0 1px 2px rgba(15, 23, 41, 0.04), 0 12px 32px -16px rgba(15, 23, 41, 0.14);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b1120;
    --surface: #131b2e;
    --surface-2: #1a2440;
    --border: rgba(255, 255, 255, 0.09);
    --text: #eaf0ff;
    --text-muted: #93a5c9;
    --text-faint: #5d6e93;
    --accent: #6e93f7;
    --accent-2: #9c8cf5;
    --accent-soft: rgba(110, 147, 247, 0.14);
    --good: #3ecf8e;
    --warn: #f2b84b;
    --critical: #f1706c;
    --shadow:
      0 1px 2px rgba(0, 0, 0, 0.3), 0 24px 48px -20px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --bg: #0b1120;
  --surface: #131b2e;
  --surface-2: #1a2440;
  --border: rgba(255, 255, 255, 0.09);
  --text: #eaf0ff;
  --text-muted: #93a5c9;
  --text-faint: #5d6e93;
  --accent: #6e93f7;
  --accent-2: #9c8cf5;
  --accent-soft: rgba(110, 147, 247, 0.14);
  --good: #3ecf8e;
  --warn: #f2b84b;
  --critical: #f1706c;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}
html {
  color-scheme: light dark;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "IBM Plex Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
}

/* ---- nav ---- */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.05rem;
}
.brand-mark {
  width: 26px;
  height: 26px;
  flex: none;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.navlinks a:hover {
  color: var(--text);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "IBM Plex Sans";
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.btn-block {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: 0.2s;
}
.nav-toggle span::before {
  position: absolute;
  top: -5px;
}
.nav-toggle span::after {
  position: absolute;
  top: 5px;
}

@media (max-width: 820px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 18px;
  }
  .navlinks a {
    padding: 12px 0;
    width: 100%;
    border-top: 1px solid var(--border);
  }
  .navlinks.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ---- hero ---- */
.hero {
  padding: 64px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
h1.headline {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  font-weight: 800;
}
.headline .grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub {
  margin-top: 22px;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52ch;
}
.cta-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--text-faint);
}

/* pulse line */
.pulse-rail {
  position: relative;
  height: 34px;
  margin-bottom: 18px;
}
.pulse-rail svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* mockup panel */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.panel-head .dot-row {
  display: flex;
  gap: 6px;
}
.panel-head .dot-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}
.panel-title {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.site-row {
  display: grid;
  grid-template-columns: auto 1.4fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-radius: var(--radius-s);
}
.site-row + .site-row {
  border-top: 1px solid var(--border);
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}
.status-dot.good {
  background: var(--good);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--good) 20%, transparent);
}
.status-dot.warn {
  background: var(--warn);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--warn) 20%, transparent);
}
.status-dot.critical {
  background: var(--critical);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--critical) 20%, transparent);
}

/* ---- Audit Tool ---- */
.audit-hero {
  padding: 64px 0 56px;
}
.audit-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .audit-hero-grid {
    grid-template-columns: 1fr;
  }
}
.audit-hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  text-wrap: balance;
}
.audit-hero .sub {
  max-width: 48ch;
  margin-top: 18px;
}
.audit-form {
  max-width: 520px;
  margin-top: 30px;
  display: flex;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: var(--shadow);
}
.audit-form input {
  flex: 1;
  border: none;
  background: none;
  font-family: "IBM Plex Sans";
  font-size: 0.98rem;
  color: var(--text);
  outline: none;
  min-width: 0;
}
.audit-form input::placeholder {
  color: var(--text-faint);
}
.audit-form .btn {
  flex: none;
}
@media (max-width: 560px) {
  .audit-form {
    flex-direction: column;
    border-radius: var(--radius-l);
    padding: 14px;
    gap: 12px;
  }
  .audit-form input {
    padding: 8px 10px;
  }
}
.audit-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-faint);
}
.audit-error {
  max-width: 520px;
  margin-top: 16px;
  background: color-mix(in srgb, var(--critical) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--critical) 35%, var(--border));
  color: var(--critical);
  border-radius: var(--radius-m);
  padding: 12px 18px;
  font-size: 0.88rem;
}

/* trust chips under the hero form */
.audit-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}
.audit-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.audit-trust-row span::before {
  content: "✓";
  color: var(--good);
  font-weight: 700;
}

/* example-result preview panel, right side of hero */
.audit-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 20px;
}
.audit-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.audit-preview-head .label {
  font-size: 0.8rem;
  color: var(--text-faint);
  font-family: "IBM Plex Mono";
}
.audit-preview-head .tag {
  font-family: "IBM Plex Mono";
  font-size: 0.68rem;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
}
.audit-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.audit-preview-tile {
  background: var(--surface-2);
  border-radius: var(--radius-s);
  padding: 12px 14px;
}
.audit-preview-tile .k {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-faint);
  margin-bottom: 5px;
}
.audit-preview-tile .v {
  font-family: "IBM Plex Mono";
  font-size: 0.92rem;
  font-weight: 500;
}
.audit-preview-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--text-faint);
  text-align: center;
}

/* "how it works" 3-step flow */
.audit-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 18px;
}
@media (max-width: 780px) {
  .audit-flow {
    grid-template-columns: 1fr;
  }
  .audit-flow-arrow {
    display: none;
  }
}
.audit-flow-step {
  text-align: center;
}
.audit-flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 0.92rem;
}
.audit-flow-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.audit-flow-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 28ch;
  margin: 0 auto;
}
.audit-flow-arrow {
  color: var(--text-faint);
  font-size: 1.2rem;
  padding-top: 8px;
}

.audit-results {
  max-width: 920px;
  margin: 0 auto;
}
.audit-target {
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.audit-section-title {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.1rem;
  margin: 40px 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.audit-section-title .spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  animation: audit-spin 0.8s linear infinite;
}
@keyframes audit-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .audit-section-title .spinner {
    animation: none;
  }
}

.audit-progress {
  margin-bottom: 32px;
}
.audit-progress-track {
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--border) 45%, transparent);
  overflow: hidden;
}
.audit-progress-fill {
  height: 100%;
  width: 2%;
  border-radius: 999px;
  background: repeating-linear-gradient(
    135deg,
    var(--accent) 0 10px,
    var(--accent-2) 10px 20px
  );
  background-size: 200% 100%;
  animation: audit-progress-stripes 1s linear infinite;
  transition: width 0.25s linear;
}
@keyframes audit-progress-stripes {
  to {
    background-position: -40px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .audit-progress-fill {
    animation: none;
  }
}
.audit-progress-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: "IBM Plex Mono";
  font-size: 0.8rem;
  color: var(--text-muted);
}

.audit-grade-panel {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 26px 30px;
  margin-bottom: 40px;
}
.audit-grade-circle {
  position: relative;
  width: 108px;
  height: 108px;
  flex: none;
}
.audit-grade-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.audit-grade-circle .track {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}
.audit-grade-circle .fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}
.audit-grade-circle.good .fill {
  stroke: var(--good);
}
.audit-grade-circle.warn .fill {
  stroke: var(--warn);
}
.audit-grade-circle.critical .fill {
  stroke: var(--critical);
}
.audit-grade-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.6rem;
}
.audit-grade-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
}
.audit-grade-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}
.audit-grade-info strong {
  color: var(--text);
}
.audit-reco-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--warn) 16%, transparent);
  color: var(--warn);
  font-size: 0.8rem;
  font-weight: 600;
}
@media (max-width: 560px) {
  .audit-grade-panel {
    flex-direction: column;
    text-align: center;
  }
}

.audit-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 780px) {
  .audit-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .audit-category-grid {
    grid-template-columns: 1fr;
  }
}
.audit-category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 14px 16px;
}
.audit-category-card .cat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.audit-category-card .cat-score {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.3rem;
}
.audit-category-card .cat-score.good {
  color: var(--good);
}
.audit-category-card .cat-score.warn {
  color: var(--warn);
}
.audit-category-card .cat-score.critical {
  color: var(--critical);
}
.audit-category-card .cat-score.pending {
  color: var(--text-faint);
  font-size: 0.95rem;
  font-weight: 500;
}

.audit-checks-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.audit-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
}
.audit-check-icon {
  flex: none;
  width: 18px;
  text-align: center;
  font-weight: 700;
}
.audit-check-icon.pass {
  color: var(--good);
}
.audit-check-icon.warning {
  color: var(--warn);
}
.audit-check-icon.fail,
.audit-check-icon.error {
  color: var(--critical);
}
.audit-check-icon.not_applicable {
  color: var(--text-faint);
}
.audit-check-body .check-label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1px;
}
.audit-check-body .evidence {
  color: var(--text-muted);
}
.audit-check-body .recommendation {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.audit-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 780px) {
  .audit-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .audit-tile-grid {
    grid-template-columns: 1fr;
  }
}
.audit-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 16px 18px;
}
.audit-tile-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.audit-tile-value {
  font-family: "IBM Plex Mono";
  font-size: 1rem;
  font-weight: 500;
}
.audit-tile-detail {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 4px;
}

.audit-score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 700px) {
  .audit-score-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.audit-score-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 20px;
  text-align: center;
}
.audit-score-num {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 2rem;
}
.audit-score-num.good {
  color: var(--good);
}
.audit-score-num.warn {
  color: var(--warn);
}
.audit-score-num.critical {
  color: var(--critical);
}
.audit-score-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.audit-vitals-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: "IBM Plex Mono";
  font-size: 0.85rem;
  color: var(--text-muted);
}
.audit-vitals-row strong {
  color: var(--text);
  font-weight: 500;
}

.audit-report-panel {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}
.audit-report-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
}
.audit-report-panel p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 8px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.audit-report-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 20px auto 0;
}
.audit-report-form input {
  flex: 1;
  min-width: 0;
  font-family: "IBM Plex Sans";
  font-size: 0.94rem;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
}
@media (max-width: 480px) {
  .audit-report-form {
    flex-direction: column;
  }
}
.site-name {
  font-size: 0.9rem;
  font-weight: 500;
}
.site-name span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-faint);
  font-family: "IBM Plex Mono";
  margin-top: 1px;
}
.site-metric {
  font-family: "IBM Plex Mono";
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.badge {
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge.good {
  color: var(--good);
  background: color-mix(in srgb, var(--good) 14%, transparent);
}
.badge.warn {
  color: var(--warn);
  background: color-mix(in srgb, var(--warn) 16%, transparent);
}
.panel-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
}

/* ---- sections ---- */
section {
  padding: 76px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
}
.section-head p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.page-header {
  padding: 56px 0 20px;
}
.page-header h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
}
.page-header p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 56ch;
  line-height: 1.6;
}

/* stat strip */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 820px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-num {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 2.1rem;
}
.stat-num .unit {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 700;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* pain / contrast section */
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 820px) {
  .contrast {
    grid-template-columns: 1fr;
  }
}
.contrast-card {
  border-radius: var(--radius-l);
  padding: 28px;
  border: 1px solid var(--border);
}
.contrast-card.old {
  background: var(--surface-2);
}
.contrast-card.new {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}
.contrast-card h3 {
  font-size: 1rem;
  font-weight: 700;
}
.contrast-card .tag {
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  color: var(--text-faint);
  display: block;
  margin-bottom: 10px;
}
.contrast-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contrast-card li {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.contrast-card.old li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--critical);
  font-weight: 700;
}
.contrast-card.new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-num {
  font-family: "IBM Plex Mono";
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.step h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* interactive vertical-tab stepper (homepage "how it works") */
.stepper {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .stepper {
    grid-template-columns: 1fr;
  }
}

.step-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-tab {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 18px 18px 18px 24px;
  position: relative;
  border-radius: var(--radius-m);
  transition: background 0.2s ease;
  font-family: inherit;
  color: inherit;
}
.step-tab:hover {
  background: var(--surface-2);
}
.step-tab.active {
  background: var(--surface);
  box-shadow: var(--shadow);
}
.rail {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  flex: none;
}
.rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--accent), var(--accent-2));
}
.step-tab-num {
  font-family: "IBM Plex Mono";
  font-size: 0.82rem;
  color: var(--text-faint);
  flex: none;
  padding-top: 2px;
  width: 22px;
}
.step-tab.active .step-tab-num {
  color: var(--accent);
}
.step-tab-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.step-tab.active .step-tab-body h3 {
  color: var(--text);
}
.step-tab-body p {
  font-size: 0.87rem;
  color: var(--text-faint);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    margin-top 0.3s ease;
}
.step-tab.active .step-tab-body p {
  max-height: 120px;
  opacity: 1;
  margin-top: 6px;
}
.step-media {
  position: relative;
}
.step-media-item {
  aspect-ratio: 4 / 3;
}
.step-media-item[hidden] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .rail-fill {
    transition: none !important;
  }
  .step-tab-body p {
    transition: none !important;
  }
}

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
}
@media (max-width: 820px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
.pillar {
  background: var(--surface);
  padding: 30px 26px;
}
.pillar-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--accent);
}
.pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.89rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* status showcase */
.showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .showcase {
    grid-template-columns: 1fr;
  }
}
.status-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 26px;
}
.status-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.status-mock-top .name {
  font-weight: 700;
  font-size: 0.98rem;
}
.status-pill {
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  padding: 4px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--good) 14%, transparent);
  color: var(--good);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.uptime-bar {
  display: flex;
  gap: 2px;
  height: 28px;
  margin: 16px 0 10px;
}
.uptime-bar span {
  flex: 1;
  border-radius: 2px;
  background: var(--good);
  opacity: 0.85;
}
.uptime-bar span:nth-child(23),
.uptime-bar span:nth-child(41) {
  background: var(--warn);
}
.uptime-bar span:nth-child(57) {
  background: var(--critical);
}
.status-mock-foot {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono";
  font-size: 0.74rem;
  color: var(--text-faint);
}

/* cta band */
.cta-band {
  border-radius: var(--radius-l);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  font-size: 0.98rem;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

/* logo strip */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.logo-ph {
  width: 96px;
  height: 28px;
  border: 1px dashed var(--text-faint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono";
  font-size: 0.66rem;
  color: var(--text-faint);
}

/* vertical/industry solution cards */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .vertical-grid {
    grid-template-columns: 1fr;
  }
}
.vertical-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 26px 24px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}
.vertical-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.vertical-icon-badge svg {
  width: 20px;
  height: 20px;
}
.vertical-tag {
  display: block;
  font-family: "Manrope";
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.vertical-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.vertical-card .link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* "Made for you" 3-up benefit row (solution pages) */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) {
  .trio-grid {
    grid-template-columns: 1fr;
  }
}
.trio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding-top: 14px;
  border-top: 2px solid var(--accent);
}
.trio-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* checklist used on solution pages */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
@media (max-width: 640px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}
.check-grid li {
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}

/* solutions index hub cards */
.solution-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .solution-index-grid {
    grid-template-columns: 1fr;
  }
}
.solution-index-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.solution-index-card:hover {
  transform: translateY(-2px);
}
.solution-index-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.solution-index-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.solution-index-card .link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
}

/* image placeholder block (for real photographic assets not yet available) */
.img-ph {
  background: repeating-linear-gradient(
    135deg,
    var(--surface-2),
    var(--surface-2) 10px,
    var(--surface) 10px,
    var(--surface) 20px
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-family: "IBM Plex Mono";
  font-size: 0.76rem;
  text-align: center;
  padding: 20px;
}

/* larger, labeled screenshot placeholder — swap the surrounding div's
   content for a real <img> once real product screenshots exist */
.img-ph-lg {
  background: repeating-linear-gradient(
    135deg,
    var(--surface-2),
    var(--surface-2) 10px,
    var(--surface) 10px,
    var(--surface) 20px
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 24px;
  width: 100%;
}
.img-ph-lg .ph-label {
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.img-ph-lg .ph-title {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* image (or image-placeholder) paired with a short text column, alternating sides */
.visual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.visual-block.reverse .visual-block-media {
  order: 2;
}
.visual-block.reverse .visual-block-text {
  order: 1;
}
@media (max-width: 900px) {
  .visual-block {
    grid-template-columns: 1fr;
  }
  .visual-block.reverse .visual-block-media,
  .visual-block.reverse .visual-block-text {
    order: 0;
  }
}
.visual-block-text h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.visual-block-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 48ch;
}
.visual-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visual-block-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.visual-block-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}

/* compact trust callout (passwordless/OTP login) */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px 28px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.trust-strip strong {
  color: var(--text);
}
.trust-strip .divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}
@media (max-width: 640px) {
  .trust-strip .divider {
    display: none;
  }
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ---- feature groups (features.html) ---- */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.jump-pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}
.jump-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.feature-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 34px 36px;
  scroll-margin-top: 88px;
}
@media (max-width: 640px) {
  .feature-panel {
    padding: 26px 22px;
  }
}
.feature-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.category-icon-badge {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-icon-badge svg {
  width: 22px;
  height: 22px;
}
.feature-panel-head h2 {
  font-size: 1.2rem;
  font-weight: 800;
}
.feature-panel-head .panel-tagline {
  font-family: "IBM Plex Mono";
  font-size: 0.76rem;
  color: var(--text-faint);
  display: block;
  margin-top: 3px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 36px;
}
@media (max-width: 720px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-item-icon-wrap {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item-icon {
  width: 17px;
  height: 17px;
  color: var(--accent);
}
.feature-item h3 {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* full-bleed tinted band, used to set the pricing section apart */
.band-tint {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* contained panel wrapper for the FAQ list */
.faq-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 8px 32px;
  max-width: 780px;
}
@media (max-width: 640px) {
  .faq-panel {
    padding: 4px 20px;
  }
}
.faq-panel .faq-list {
  max-width: none;
}

/* ---- pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 26px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: "IBM Plex Sans";
}
.price-name {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.1rem;
}
.price-tagline {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 6px;
  min-height: 34px;
}
.price-amount {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "IBM Plex Mono";
}
.price-amount .num {
  font-size: 2rem;
  font-weight: 500;
}
.price-amount .per {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.price-card .btn {
  margin-top: 22px;
}
.price-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}
.price-list.req li::before {
  content: "›";
  color: var(--accent);
  font-family: "IBM Plex Mono";
}
.price-list.req li {
  font-family: "IBM Plex Mono";
  font-size: 0.82rem;
}

/* ---- FAQ accordion ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.faq-q .plus {
  font-family: "IBM Plex Mono";
  color: var(--accent);
  font-size: 1.2rem;
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 64ch;
}

/* ---- contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: 34px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.field .hint {
  font-size: 0.76rem;
  color: var(--text-faint);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  font-family: "IBM Plex Sans";
  font-size: 0.94rem;
  padding: 11px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-item {
  display: flex;
  gap: 14px;
}
.info-icon {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  color: var(--accent);
}
.info-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.info-item a {
  color: var(--accent);
  font-weight: 600;
}

footer.site {
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 44px;
}
@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 30ch;
}
.footer-col h4 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-faint);
}
