/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --accent: #C9943A;
  --accent-dim: #A67A2E;
  --accent-light: #F0D4A0;
  --accent-border: #C9A85C;

  --dark: #0D1117;
  --dark-2: #161B22;
  --dark-3: #21262D;

  --text: #1F2937;
  --text-2: #5C4A30;
  --muted: #9C8A72;
  --border: #DDD0B5;
  --bg: #F7EDD8;
  --bg-alt: #EFE0C4;
  --bg-code: rgb(13, 17, 23, 0.7);

  --radius: 6px;
  --radius-lg: 12px;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --max-w: 1100px;
  --docs-sidebar: 220px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--dark);
  /* canvas colour = nav dark, so overscroll reveals nav extension */
}

body {
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.7);
  border-bottom: 1px solid var(--dark-3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.header-nav a {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  color: #9CA3AF;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.header-nav a:hover {
  color: var(--accent);
  background: rgba(201, 148, 58, 0.08);
}

.header-nav a.active {
  color: var(--accent);
  background: rgba(201, 148, 58, 0.1);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 2rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay — background and masking handled by the inner SVG rect (cross-browser) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* above video (z-index:0) */
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 148, 58, 0.12), transparent 70%);
  pointer-events: none;
}

/* SVG that holds the mask definition — fills overlay so % coords resolve correctly */
.hero-mask-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Font styling for the SVG mask text — viewport units work via CSS on SVG elements */
.hero-mask-text {
  font-size: clamp(3.5rem, 18vw, 11rem);
  font-weight: 900;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.05em;
}

/* Hero content sits above the overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 148, 58, 0.12);
  border: 1px solid rgba(201, 148, 58, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: clamp(5.5rem, 17vw, 11rem);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #9CA3AF;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #9CA3AF;
  border: 1px solid #374151;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-install {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 0.6rem 1rem 0.6rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #E2E8F0;
  margin: 0 auto;
  max-width: 440px;
}

.hero-install .prompt {
  color: var(--accent);
  user-select: none;
}

.hero-install .copy-btn {
  background: var(--dark-3);
  border: none;
  color: #9CA3AF;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font);
  transition: all 0.15s;
  margin-left: auto;
}

.hero-install .copy-btn:hover {
  background: #374151;
  color: #FFFFFF;
}

/* ─── Section shared ─────────────────────────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ─── Features grid ──────────────────────────────────────────────────────── */
.features {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}

.page-video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  /* above html canvas; sections at z-index:1 cover it outside the hero */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  border: 1px solid rgba(201, 148, 58, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(201, 148, 58, 0.12);
}

.feature-card {
  background: rgba(239, 224, 196, 0.5);
  padding: 2rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: #FDF6EC;
  border: 1px solid #E8D5B0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── How it works ───────────────────────────────────────────────────────── */
.how-it-works {
  position: relative;
  z-index: 1;
  background: rgba(247, 237, 216, 0.82);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--dark);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ─── Code example section ───────────────────────────────────────────────── */
.code-section {
  position: relative;
  z-index: 1;
  background: rgba(13, 17, 23, 0.65);
}

.code-section .section-title {
  color: #FFFFFF;
}

.code-section .section-sub {
  color: #9CA3AF;
}

.code-section .section-label {}

.code-tabs {
  margin-top: 2.5rem;
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.code-tab-bar {
  display: flex;
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-3);
  padding: 0 1rem;
  gap: 0.25rem;
}

.code-tab-bar button {
  background: none;
  border: none;
  color: #9CA3AF;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}

.code-tab-bar button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.code-pane {
  display: none;
  background: var(--bg-code);
}

.code-pane.active {
  display: block;
}

.code-pane pre {
  padding: 1.5rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
  color: #E2E8F0;
  margin: 0;
}

/* Syntax colors */
.tok-kw {
  color: #FF7B72;
}

/* keywords */
.tok-str {
  color: #A5D6FF;
}

/* strings */
.tok-cm {
  color: #8B949E;
  font-style: italic;
}

/* comments */
.tok-fn {
  color: #D2A8FF;
}

/* functions */
.tok-id {
  color: #79C0FF;
}

/* identifiers */
.tok-num {
  color: #F0883E;
}

/* numbers */
.tok-op {
  color: #FF7B72;
}

/* operators */
.tok-y {
  color: #C9943A;
}

/* yaml keys */
.tok-ys {
  color: #A5D6FF;
}

/* yaml strings */

/* ─── CTA section ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem;
  background: rgba(239, 224, 196, 0.82);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ─── Docs layout ────────────────────────────────────────────────────────── */
.docs-main {
  position: relative;
  z-index: 1;
  background: rgba(247, 237, 216, 0.7);
}

.docs-layout {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: calc(100vh - 56px - 160px);
  padding: 0 1.5rem;
}

.docs-sidebar {
  width: var(--docs-sidebar);
  flex-shrink: 0;
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.docs-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.docs-sidebar nav a {
  display: block;
  padding: 0.4rem 0.6rem;
  font-size: 0.875rem;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.docs-sidebar nav a:hover {
  color: var(--accent);
  background: var(--bg-alt);
}

.docs-sidebar nav a.active {
  color: var(--accent-dim);
  background: var(--accent-light);
  font-weight: 600;
}

.docs-sidebar .nav-section {
  display: contents;
}

.docs-sidebar .nav-children {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.15rem;
}

.docs-sidebar .nav-children a {
  padding: 0.2rem 0.6rem 0.2rem 1.1rem;
  font-size: 0.81rem;
  color: var(--muted);
  border-left: 2px solid var(--border);
  margin-left: 0.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: color 0.15s, border-color 0.15s;
}

.docs-sidebar .nav-children a:hover {
  color: var(--accent);
  border-left-color: var(--accent-border);
}

.docs-sidebar .nav-children a.active {
  color: var(--accent-dim);
  font-weight: 500;
  border-left-color: var(--accent);
  background: transparent;
}

.docs-content {
  flex: 1;
  min-width: 0;
  padding: 2.5rem 0 3rem 2.5rem;
}

/* ─── Prose (docs / default pages) ──────────────────────────────────────── */
.prose h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.prose .page-intro {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 2.5rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.25rem;
}

.prose li::marker {
  color: var(--accent);
}

.prose a {
  color: var(--accent);
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  font-weight: 700;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: var(--text);
}

.prose pre {
  background: var(--bg-code);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.25rem 0;
}

.prose pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #E2E8F0;
}

.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-2);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
}

.prose th {
  background: var(--bg-alt);
  font-weight: 600;
}

/* ─── Plugin / Theme cards ───────────────────────────────────────────────── */
.library-header {
  position: relative;
  z-index: 1;
  background: rgba(13, 17, 23, 0.82);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.library-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.library-header p {
  color: #9CA3AF;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.library-body {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: rgba(247, 237, 216, 0.88);
}

.library-publish-cta {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.library-publish-cta p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.library-publish-cta code {
  background: var(--bg-alt);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--fg);
}

.library-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.library-filter label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--bg);
  cursor: pointer;
}

.package-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 16px rgba(201, 148, 58, 0.08);
}

.package-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.package-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.package-scope {
  color: var(--muted);
  font-weight: 400;
}

.package-version {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  color: var(--text-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.package-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.package-install {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-2);
}

.package-install .pi-cmd {
  color: var(--accent);
  margin-right: 0.2rem;
}

.package-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.package-links a {
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.package-links a:hover {
  text-decoration: underline;
}

/* ─── Empty state ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 1.5rem;
  grid-column: 1 / -1;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-2);
  max-width: 400px;
  margin: 0 auto 2rem;
  font-size: 0.925rem;
}

.empty-state code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* ─── Loading skeleton ───────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sk-line {
  height: 1rem;
}

.sk-short {
  width: 40%;
}

.sk-medium {
  width: 70%;
}

.sk-full {
  width: 100%;
}

/* ─── Default page (non-docs) ────────────────────────────────────────────── */
.page-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(13, 17, 23, 0.92);
  border-top: 1px solid var(--dark-3);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-right: auto;
}

.footer-wordmark {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: #6B7280;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: #6B7280;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-copy {
  width: 100%;
  font-size: 0.8rem;
  color: #4B5563;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--dark-3);
}

.footer-copy a {
  color: #4B5563;
  transition: color 0.15s;
}

.footer-copy a:hover {
  color: var(--accent);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .docs-layout {
    flex-direction: column;
    padding: 0 1rem;
  }

  .docs-sidebar {
    width: 100%;
    position: static;
    height: auto;
    padding: 1.25rem 0 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .docs-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .docs-content {
    padding: 1.75rem 0 2rem;
  }

  .hero {
    padding: 3.5rem 1rem 3rem;
  }

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

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

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

  .footer-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}