/* ================================================================
   piex.dev — Dark Terminal Aesthetic
   Design tokens, resets, and typography
   ================================================================ */

:root {
  --bg: #0a0e14;
  --bg-elevated: #11171e;
  --bg-card: #161d27;
  --border: #252c36;
  --border-hover: #3a424e;
  --text: #dae0e7;
  --text-muted: #738290;
  --green: #3ecf5e;
  --green-dim: #23863a;
  --cyan: #39d0d8;
  --blue: #5a9eff;
  --red: #f5534b;
  --amber: #db9d2a;
  --mono: "JetBrains Mono", "SF Mono", "Fira Code", ui-monospace, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 10px;
  --max: 1120px;
  --shadow-glow: 0 0 0 1px rgba(62, 207, 94, 0.18);
}

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

::selection {
  background: rgba(62, 207, 94, 0.28);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23252c36' stroke-width='0.4' opacity='0.18'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 55% at 50% -15%, rgba(62, 207, 94, 0.10), transparent),
    radial-gradient(ellipse 50% 35% at 90% 5%, rgba(90, 158, 255, 0.06), transparent);
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #5de3e9; text-decoration: none; }

code, .mono, pre { font-family: var(--mono); }

pre {
  margin: 0;
  padding: clamp(0.8rem, 2vw, 1.05rem) clamp(0.9rem, 2vw, 1.25rem);
  background: #0b1119;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  max-width: 100%;
  font-size: clamp(0.72rem, 1.2vw, 0.81rem);
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
}

pre .prompt { color: var(--green); user-select: none; }
pre .comment { color: var(--text-muted); }

/* ---- header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10, 14, 20, 0.82);
  border-bottom: 1px solid var(--border);
  /* positioning context for absolute mobile menu */
  width: 100%;
}

.nav-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #1a7f32, var(--green));
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 0.75rem; font-weight: 800;
  color: #0a0e14;
  box-shadow: 0 0 12px rgba(62, 207, 94, 0.25);
}

/* ---- lang switch ---- */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  margin-left: 0.25rem;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--sans);
  transition: color 0.15s, background 0.15s;
}
.lang-switch button.active {
  background: var(--green-dim);
  color: #fff;
}
.lang-switch button:not(.active):hover { color: var(--text); }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.89rem;
}
.nav-links a {
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---- hero ---- */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 2rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-badge .dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}
.hero-badge span.s1 { color: var(--green); }

.hero h1 {
  font-size: clamp(1.7rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 auto 1rem;
  font-weight: 800;
  white-space: nowrap;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: clamp(0.98rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
  padding: 0 0.5rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.lead code {
  white-space: normal;
  word-break: break-all;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1.5px); }
.btn-primary {
  background: var(--green);
  color: #0a0e14;
  box-shadow: 0 4px 18px rgba(62, 207, 94, 0.25);
}
.btn-primary:hover { background: #4ddb6e; box-shadow: 0 6px 24px rgba(62, 207, 94, 0.35); }
.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg-elevated); }

.hero-terminal {
  margin: 0 auto;
  max-width: 540px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: 0 28px 56px rgba(0,0,0,0.40), var(--shadow-glow);
  text-align: left;
  transition: box-shadow 0.3s;
}
.hero-terminal:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(62,207,94,0.28); }

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  font-size: 0.74rem;
  color: var(--text-muted);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: var(--red); }
.dot-y { background: var(--amber); }
.dot-g { background: var(--green); }

/* ---- stats ---- */

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 1.5rem 1rem;
  margin: 0 auto;
  max-width: var(--max);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-family: var(--mono);
  color: var(--green);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ---- sections ---- */

section {
  padding: 4.25rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
/* Keep a real top inset so titles never sit flush on section-alt borders,
   but don't fully double-count previous section's bottom padding. */
section + section {
  padding-top: 3.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-divider {
  width: 48px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-dim), var(--cyan));
  margin: 0.85rem auto 0;
}

.section-desc {
  color: var(--text-muted);
  margin: 0.85rem 0 0;
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
}

/* ---- section backgrounds ---- */

.section-alt {
  /* full-bleed band: background spans viewport, content stays centered */
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-left: max(1.25rem, calc((100% - var(--max)) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100% - var(--max)) / 2 + 1.25rem));
}

/* ---- principles ---- */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.card {
  padding: 1.3rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--green-dim);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.card-icon { font-size: 1.4rem; display: block; margin-bottom: 0.5rem; }
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  color: var(--green);
}
.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-note {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}
.why-note a { color: var(--green); font-weight: 600; }
.why-note a:hover { text-decoration: underline; }

/* ---- packages ---- */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.pkg-card {
  padding: 1.3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.pkg-card:hover {
  border-color: var(--green-dim);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1.5px);
}

.pkg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.pkg-name {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--cyan);
}
.pkg-tag {
  font-size: 0.66rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  white-space: nowrap;
  font-family: var(--mono);
}
.pkg-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
}
.pkg-install {
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: var(--bg);
  border-radius: 6px;
  color: var(--text);
  border: 1px solid var(--border);
  overflow-x: auto;
  cursor: pointer;
  user-select: all;
  position: relative;
  transition: border-color 0.2s;
  -webkit-user-select: all;
  word-break: break-all;
}
.pkg-install:hover { border-color: var(--green-dim); }
.pkg-install::after {
  content: attr(data-copy-hint);
  position: absolute;
  right: 0.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: var(--text-muted);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  background: linear-gradient(270deg, var(--bg) 60%, transparent);
  padding-left: 2rem;
  font-family: var(--sans);
}
.pkg-install:hover::after { opacity: 1; }
.pkg-install .copied-hint {
  position: absolute;
  right: 0.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: var(--green);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  font-family: var(--sans);
}
.pkg-install .copied-hint.show { opacity: 1; }

.pkg-link {
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-muted);
  width: fit-content;
}
.pkg-link:hover { color: var(--cyan); }


/* ---- blog ---- */

.blog-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.blog-card {
  padding: 1.4rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.blog-card:hover {
  border-color: var(--green-dim);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1.5px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
}

.blog-tag {
  font-size: 0.64rem;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  background: var(--bg);
  color: var(--green);
  border: 1px solid var(--green-dim);
  font-family: var(--mono);
  font-weight: 600;
}

.blog-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}
.blog-title a {
  color: var(--text);
}
.blog-title a:hover {
  color: var(--cyan);
}

.blog-excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
/* ---- install ---- */

.install-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.install-item {
  padding: 1.25rem 1.3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.install-item h3 {
  margin: 0 0 0.75rem;
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.install-item h3 .inst-badge {
  font-size: 0.62rem;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  background: var(--green-dim);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.install-item pre { font-size: 0.76rem; }

/* ---- docs ---- */

.docs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
}
.docs-list li a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1.05rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.docs-list li a:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(90, 158, 255, 0.15);
  transform: translateY(-1px);
}
.docs-list .doc-title { font-weight: 600; }
.docs-list .doc-sub { font-size: 0.83rem; color: var(--text-muted); }

/* ---- footer ---- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 2rem;
  background: var(--bg-elevated);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  font-weight: 600;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer-col a {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---- animations ---- */

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.anim-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  animation: anim-fade-fallback 0.01s 1.2s forwards;
}
.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes anim-fade-fallback {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .anim-fade {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */

/* tablet */
@media (max-width: 900px) {
  .hero { padding: 3rem 1rem 1.5rem; }
  section { padding: 3.5rem 1rem; }
  section + section { padding-top: 2.75rem; }

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

/* phone */
@media (max-width: 640px) {
  .nav-inner { padding: 0.55rem 0.9rem; }

  .nav-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 100%; left: 0; right: 0;
    width: 100%;
    background: rgba(10, 14, 20, 0.97);
    backdrop-filter: blur(14px);
    padding: 0.55rem 0.75rem 0.7rem;
    border-bottom: 1px solid var(--border);
    gap: 0.35rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    font-size: 0.88rem;
    min-height: 0;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .lang-switch {
    margin-left: auto;
    margin-top: 0;
    align-self: center;
  }
  .lang-switch button {
    min-height: 0;
    padding: 0.3rem 0.55rem;
  }
  .hero {
    padding: 2rem 1rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero h1 {
    white-space: normal;
    font-size: clamp(1.25rem, 6.2vw, 1.55rem);
    line-height: 1.25;
    max-width: 100%;
    padding: 0 0.15rem;
  }

  .lead {
    font-size: 0.92rem;
    padding: 0;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-terminal {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
  }

  .hero-terminal pre {
    font-size: 0.68rem;
    padding: 0.7rem 0.75rem;
    white-space: pre;
  }

  .terminal-bar {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
  }
  .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
    min-height: 48px;
  }

  /* 2x2 stats — avoid 4-col crush on ~390px */
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.5rem;
    padding: 1.25rem 0.25rem 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .stat { min-width: 0; }
  .stat-num { font-size: 1.45rem; }
  .stat-label {
    font-size: 0.72rem;
    line-height: 1.3;
    padding: 0 0.2rem;
  }

  section {
    padding: 2.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  section + section { padding-top: 2.25rem; }

  .section-alt {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-desc {
    padding: 0 0.25rem;
  }

  .principles,
  .packages-grid,
  .install-block,
  .docs-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pkg-card,
  .card,
  .install-item {
    padding: 1.1rem;
    min-width: 0;
  }

  .pkg-install {
    font-size: 0.68rem;
    padding: 0.55rem 0.55rem;
  }
  /* hide copy hint on touch — cluttered on narrow cards */
  .pkg-install::after { display: none; }

  /* compact 3-col footer — avoid tall single-column stack */
  .site-footer {
    padding: 1.75rem 1rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem 0.75rem;
    max-width: none;
    margin-bottom: 1.1rem;
    text-align: left;
  }
  .footer-col h4 {
    font-size: 0.66rem;
    margin-bottom: 0.45rem;
  }
  .footer-col ul {
    gap: 0.35rem;
  }
  .footer-col a {
    font-size: 0.8rem;
  }
  .footer-bottom {
    font-size: 0.72rem;
    padding-top: 1rem;
    line-height: 1.55;
  }
}

