/* ============================================================
   nickporter.dev — design system
   Apple restraint × Stripe energy
   ============================================================ */

:root {
  /* Palette */
  --ink:        #0a0d14;
  --ink-soft:   #3c4257;
  --ink-mute:   #6b7085;
  --paper:      #fbfbfd;
  --surface:    #ffffff;
  --hairline:   rgba(10, 13, 20, 0.08);
  --hairline-strong: rgba(10, 13, 20, 0.14);

  --indigo:     #635bff;
  --indigo-deep:#0a2540;
  --cyan:       #00d4ff;
  --coral:      #ff5996;

  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono: "SF Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --section-gap: clamp(7rem, 14vw, 11rem);
  --edge: clamp(1.25rem, 5vw, 3rem);
  --content-w: 1060px;

  --radius-lg: 24px;
  --radius-md: 18px;

  --shadow-card: 0 1px 2px rgba(10, 13, 20, 0.04), 0 8px 24px rgba(10, 13, 20, 0.05);
  --shadow-lift: 0 2px 4px rgba(10, 13, 20, 0.05), 0 18px 44px rgba(10, 37, 64, 0.12);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(99, 91, 255, 0.18); }

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

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

.wrap {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(251, 251, 253, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(251, 251, 253, 0.85);
}

.nav-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--edge);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mark {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-mark .tld { color: var(--indigo); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--surface) !important;
  background: var(--ink);
  padding: 7px 16px;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}

.nav-cta:hover {
  background: var(--indigo);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .nav-links li:not(.nav-cta-item) { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding-top: clamp(9rem, 20vh, 13rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

/* Aurora — one soft gradient field, top of page only */
.hero-aurora {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 140vw;
  max-width: 1800px;
  aspect-ratio: 16 / 9;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(38% 45% at 28% 36%, rgba(99, 91, 255, 0.14), transparent 70%),
    radial-gradient(32% 40% at 62% 28%, rgba(0, 212, 255, 0.10), transparent 70%),
    radial-gradient(30% 38% at 78% 52%, rgba(255, 89, 150, 0.07), transparent 70%);
  filter: blur(40px);
  animation: aurora-drift 24s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
  from { transform: translateX(-52%) translateY(0) rotate(-1.5deg); }
  to   { transform: translateX(-48%) translateY(3%) rotate(1.5deg); }
}

/* Faint blueprint grid behind hero */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(65% 65% at 50% 30%, rgba(0,0,0,0.5), transparent 78%);
  -webkit-mask-image: radial-gradient(65% 65% at 50% 30%, rgba(0,0,0,0.5), transparent 78%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -6px;
  box-shadow: 0 0 0 1px var(--hairline-strong);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 2.2rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #33c27f;
  box-shadow: 0 0 0 3px rgba(51, 194, 127, 0.18);
}

.hero h1 {
  font-size: clamp(2.3rem, 4.1vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 650;
}

.hero h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero h1 .grad {
  background: linear-gradient(96deg, var(--indigo) 8%, #9066ff 45%, var(--coral) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34rem;
  font-weight: 400;
}

.hero-sub a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--hairline-strong);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.hero-sub a:hover { color: var(--indigo); border-bottom-color: var(--indigo); }

.hero-meta {
  margin-top: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.4rem;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  list-style: none;
}

.hero-meta li { display: flex; align-items: center; gap: 8px; }

.hero-meta .k { color: rgba(10, 13, 20, 0.35); }

/* ---------- Hero visual: abstract iOS payment sheet ---------- */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.sheet {
  width: min(320px, 100%);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  padding: 14px 18px 18px;
  box-shadow:
    0 0 0 1px var(--hairline),
    0 24px 60px rgba(10, 37, 64, 0.16);
  transform: rotate(2deg);
  animation: sheet-float 7s ease-in-out infinite;
}

@keyframes sheet-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-9px); }
}

.sheet-grabber {
  width: 36px; height: 4px;
  border-radius: 100px;
  background: rgba(10, 13, 20, 0.12);
  margin: 0 auto 14px;
}

.sheet-merchant {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sheet-merchant-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
}

.sheet-amount {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.sheet-applepay {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 560;
  padding: 11px 0;
  border-radius: 12px;
}

.sheet-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 11px;
  color: rgba(10, 13, 20, 0.4);
  white-space: nowrap;
}

.sheet-or::before,
.sheet-or::after {
  content: "";
  height: 1px;
  width: 100%;
  background: var(--hairline);
}

.sheet-field {
  border: 1px solid var(--hairline-strong);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sheet-field-label {
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(10, 13, 20, 0.4);
}

.sheet-field-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}

.sheet-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.sheet-pay {
  margin-top: 14px;
  background: var(--indigo);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 560;
  padding: 11px 0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(99, 91, 255, 0.35);
}

.sheet-chip {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-mute);
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

/* Scroll cue */
.hero-scroll {
  margin-top: clamp(3rem, 8vh, 5.5rem);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  transition: color 0.25s ease;
}

.hero-scroll:hover { color: var(--ink); }

.hero-scroll svg { animation: cue-bob 2.4s ease-in-out infinite; }

@keyframes cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================================
   Sections
   ============================================================ */

.section { padding-top: var(--section-gap); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--indigo);
  letter-spacing: 0.08em;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.03em;
  font-weight: 640;
  line-height: 1.1;
}

.section-head .hint {
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-mute);
  display: none;
}

@media (min-width: 720px) {
  .section-head .hint { display: block; }
}

/* ============================================================
   Work — editorial timeline rows
   ============================================================ */

.work-list {
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2.6rem 0.75rem;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.35s ease;
}

/* Gradient hairline that draws in on hover */
.work-row::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.work-row:hover::after { transform: scaleX(1); }

.work-when {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
  padding-top: 0.35rem;
}

.work-when .loc {
  display: block;
  margin-top: 6px;
  color: rgba(10, 13, 20, 0.35);
}

.work-body { min-width: 0; }

.work-title {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.work-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--hairline);
  object-fit: cover;
}

.work-logo--pad {
  background: var(--surface);
  padding: 7px;
  object-fit: contain;
}

.work-title h3 {
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.work-role {
  font-size: 13.5px;
  color: var(--ink-mute);
  font-weight: 500;
  background: rgba(10, 13, 20, 0.045);
  padding: 3px 11px;
  border-radius: 100px;
}

.work-desc {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 16px;
}

.work-points {
  margin-top: 0.9rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 40rem;
}

.work-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 15px;
  color: var(--ink-mute);
}

.work-points li::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
}

.work-points a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.work-points a:hover { color: var(--indigo); border-bottom-color: var(--indigo); }

@media (max-width: 680px) {
  .work-row { grid-template-columns: 1fr; gap: 1rem; padding: 2.2rem 0.25rem; }
  .work-when { display: flex; gap: 1rem; padding-top: 0; }
  .work-when .loc { margin-top: 0; }
}

/* ============================================================
   Apps — showcase cards
   ============================================================ */

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 880px) { .apps-grid { grid-template-columns: 1fr; } }

.app-card {
  --mx: 50%;
  --my: 0%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(99, 91, 255, 0.28);
}

/* Cursor-tracked glow (Stripe-style) */
.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(340px circle at var(--mx) var(--my), rgba(99, 91, 255, 0.07), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.app-card:hover::before { opacity: 1; }

.app-card-icon {
  width: 62px; height: 62px;
  border-radius: 15px;
  box-shadow:
    0 0 0 1px var(--hairline),
    0 6px 16px rgba(10, 13, 20, 0.10);
  margin-bottom: 1.4rem;
  transition: transform 0.45s var(--ease-out);
}

.app-card:hover .app-card-icon { transform: scale(1.05) rotate(-2deg); }

.app-card h3 {
  font-size: 1.22rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-card h3 .arrow {
  color: var(--ink-mute);
  transition: transform 0.35s var(--ease-out), color 0.35s ease;
}

.app-card:hover h3 .arrow {
  transform: translate(3px, -3px);
  color: var(--indigo);
}

.app-card p {
  margin-top: 0.6rem;
  font-size: 15px;
  color: var(--ink-mute);
  flex: 1;
}

.app-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.app-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 3px 10px;
  border-radius: 100px;
}

.apps-foot {
  margin-top: 1.75rem;
  font-size: 14px;
  color: var(--ink-mute);
}

.apps-foot a {
  color: var(--ink-soft);
  font-weight: 500;
  border-bottom: 1px solid var(--hairline-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.apps-foot a:hover { color: var(--indigo); border-bottom-color: var(--indigo); }

/* ============================================================
   About — editorial split
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(-1.2deg);
  box-shadow: var(--shadow-lift);
  transition: transform 0.6s var(--ease-out);
}

.about-photo-frame:hover { transform: rotate(0deg) scale(1.01); }

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(99, 91, 255, 0.10), transparent 45%);
  pointer-events: none;
}

.about-copy .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
}

.about-copy .lede em {
  font-style: italic;
  background: linear-gradient(96deg, var(--indigo), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-copy p + p { margin-top: 1.4rem; }

.about-copy .body {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 36rem;
}

.about-copy .body a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--hairline-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.about-copy .body a:hover { color: var(--indigo); border-bottom-color: var(--indigo); }

/* ============================================================
   Contact / Footer
   ============================================================ */

.footer {
  margin-top: var(--section-gap);
  position: relative;
  background: var(--indigo-deep);
  color: #f6f9fc;
  overflow: hidden;
}

/* Gradient hairline across the top of the footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo) 25%, var(--cyan) 55%, var(--coral) 80%, transparent);
}

.footer-glow {
  position: absolute;
  bottom: -55%;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  max-width: 1500px;
  aspect-ratio: 3 / 1;
  background:
    radial-gradient(45% 60% at 35% 60%, rgba(99, 91, 255, 0.28), transparent 70%),
    radial-gradient(40% 55% at 68% 55%, rgba(0, 212, 255, 0.14), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) var(--edge) 3rem;
}

.footer-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(246, 249, 252, 0.5);
  margin-bottom: 1.4rem;
}

.footer h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  font-weight: 640;
  line-height: 1.08;
  max-width: 18ch;
}

.footer h2 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.footer-actions {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f6f9fc;
  color: var(--indigo-deep);
  font-weight: 560;
  font-size: 15.5px;
  padding: 13px 26px;
  border-radius: 100px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.footer-mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(246, 249, 252, 0.22);
  color: rgba(246, 249, 252, 0.75);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.35s var(--ease-out);
}

.footer-social:hover {
  border-color: rgba(246, 249, 252, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.footer-base {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(246, 249, 252, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(246, 249, 252, 0.45);
}

.footer-base .mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
