/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #08090c;
  --bg-alt:     #0b0d12;
  --surface:    #121420;
  --surface-2:  #191c29;
  --border:     rgba(255, 255, 255, 0.08);
  --border-2:   rgba(255, 255, 255, 0.14);

  --text-1: #f3f4f8;
  --text-2: #9498ac;
  --text-3: #565c72;

  /* Mac */
  --violet:        #a78bfa;
  --violet-dim:    rgba(167, 139, 250, 0.10);
  --violet-border: rgba(167, 139, 250, 0.32);
  --violet-glow:   rgba(167, 139, 250, 0.30);

  /* CLI */
  --cyan:        #38e6d4;
  --cyan-dim:    rgba(56, 230, 212, 0.10);
  --cyan-border: rgba(56, 230, 212, 0.32);
  --cyan-glow:   rgba(56, 230, 212, 0.30);

  /* Jarvis / Web */
  --amber:        #f5a623;
  --amber-dim:    rgba(245, 166, 35, 0.10);
  --amber-border: rgba(245, 166, 35, 0.32);
  --amber-glow:   rgba(245, 166, 35, 0.30);

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --r-sm: 7px;
  --r-md: 14px;
  --r-lg: 22px;

  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--bg); }
::-webkit-scrollbar-thumb    { background: var(--text-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-2); }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
code { font-family: var(--font-mono); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.label.c-violet { color: var(--violet); }
.label.c-cyan   { color: var(--cyan); }
.label.c-amber  { color: var(--amber); }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 300;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--violet) 0%, var(--cyan) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-pill {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.87rem;
  color: var(--text-2);
  transition: color var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links a:hover { color: var(--text-1); }
.nav-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.nav-dot.violet { background: var(--violet); }
.nav-dot.cyan   { background: var(--cyan); }
.nav-dot.amber  { background: var(--amber); }

.nav-gh {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text-1) !important;
  font-weight: 500 !important;
  font-family: var(--font-mono);
  font-size: 0.78rem !important;
  padding: 0.42rem 0.95rem;
  border-radius: var(--r-sm);
  transition: border-color var(--ease), background var(--ease);
}
.nav-gh:hover { border-color: var(--text-3); background: var(--surface-2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--ease);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 299;
  background: rgba(8, 9, 12, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; color: var(--text-2); display: flex; align-items: center; gap: 0.6rem; }
.mobile-nav a:hover { color: var(--text-1); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.hero-glow-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(167,139,250,0.14) 0%, transparent 70%);
  top: -180px; right: -160px;
}
.hero-glow-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(56,230,212,0.10) 0%, transparent 70%);
  bottom: -160px; left: -140px;
}
.hero-glow-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  top: 30%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.4rem 1.05rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--cyan-glow); }
  50%      { opacity: 0.5; box-shadow: 0 0 8px 4px var(--cyan-glow); }
}

.hero-title {
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 1.5rem;
}
.hero-title .grad {
  background: linear-gradient(120deg, var(--violet) 0%, var(--cyan) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 2.6rem;
  line-height: 1.9;
  font-weight: 300;
}
.hero-desc strong { color: var(--text-1); font-weight: 500; }

.hero-jumps {
  display: grid;
  gap: 0.8rem;
}

.jump-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.jump-card:hover { transform: translateX(4px); }
.jump-card.violet:hover { border-color: var(--violet-border); background: var(--violet-dim); }
.jump-card.cyan:hover   { border-color: var(--cyan-border); background: var(--cyan-dim); }
.jump-card.amber:hover  { border-color: var(--amber-border); background: var(--amber-dim); }

.jump-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  object-fit: cover;
}
.jump-text { flex: 1; min-width: 0; }
.jump-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-1);
}
.jump-sub {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.15rem;
}
.jump-arrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform var(--ease), color var(--ease);
}
.jump-card:hover .jump-arrow { transform: translateX(3px); }
.jump-card.violet:hover .jump-arrow { color: var(--violet); }
.jump-card.cyan:hover .jump-arrow   { color: var(--cyan); }
.jump-card.amber:hover .jump-arrow  { color: var(--amber); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-hub-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(56,230,212,0.22) 0%, rgba(167,139,250,0.12) 45%, transparent 72%);
  filter: blur(50px);
  border-radius: 50%;
}
.hero-hub-img {
  position: relative;
  width: min(360px, 80%);
  animation: levitate 7s ease-in-out infinite;
}
@keyframes levitate {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (max-width: 980px) { .hero-visual { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 1.7rem;
  border-radius: var(--r-sm);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-violet { background: var(--violet); color: #0a0710; }
.btn-violet:hover { background: #bda4fb; box-shadow: 0 10px 32px var(--violet-glow); }
.btn-cyan { background: var(--cyan); color: #04211d; }
.btn-cyan:hover { background: #63efe0; box-shadow: 0 10px 32px var(--cyan-glow); }
.btn-amber { background: var(--amber); color: #201200; }
.btn-amber:hover { background: #ffbc4d; box-shadow: 0 10px 32px var(--amber-glow); }

.btn-primary { background: var(--text-1); color: var(--bg); }
.btn-primary:hover { background: #fff; box-shadow: 0 10px 32px rgba(255, 255, 255, 0.12); }
.btn-primary:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--text-3); background: var(--surface); }

.btn-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.25;
}
.btn-sub small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 2rem 0; }

/* ============================================================
   PRODUCT SECTION HEADERS
   ============================================================ */
.product-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: center;
  margin-bottom: 1.6rem;
}
.product-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-2);
  padding: 8px;
  background: var(--surface);
}
.product-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
}
.product-meta span { display: inline-flex; align-items: center; }
.product-meta .sep { opacity: 0.4; margin: 0 0.1rem; }
.product-meta .ver {
  color: var(--text-1);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 9px;
  border-radius: 100px;
}

#mac .product-meta .ver { border-color: var(--violet-border); color: var(--violet); }
#cli .product-meta .ver { border-color: var(--cyan-border); color: var(--cyan); }
#web .product-meta .ver { border-color: var(--amber-border); color: var(--amber); }

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
#mac { background: var(--bg-alt); }
#cli { background: var(--bg); }
#web { background: var(--bg-alt); }

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) { .section-split { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.fc {
  background: var(--bg);
  padding: 2rem 1.8rem;
  transition: background var(--ease);
}
#mac .fc, #web .fc { background: var(--bg-alt); }
.fc:hover { background: var(--surface); }

.fc-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.fc-desc {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   CODE / TERMINAL PANELS
   ============================================================ */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(0,0,0,0.5);
}
.panel-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.3rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.panel-dots { display: flex; gap: 6px; }
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot:nth-child(1) { background: #ff5f57; }
.panel-dot:nth-child(2) { background: #ffbd2e; }
.panel-dot:nth-child(3) { background: #28ca42; }
.panel-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
}
.panel-body {
  padding: 1.4rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 2;
}
.panel-body .p { color: var(--text-3); user-select: none; }
.panel-body .c { color: var(--text-1); }
.panel-body .cmt { color: var(--text-3); }
#mac .panel-body .c   { color: var(--violet); }
#cli .panel-body .c   { color: var(--cyan); }
#web .panel-body .c   { color: var(--amber); }
.panel-body .ok { color: #4ade80; }

/* ============================================================
   SCREENSHOT SHOWCASE (Jarvis)
   ============================================================ */
.tabs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.46rem 1.1rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--ease);
  letter-spacing: 0.03em;
}
.tab:hover { border-color: var(--text-3); color: var(--text-2); }
.tab.on { background: var(--amber-dim); border-color: var(--amber-border); color: var(--amber); }

.shot-wrap { position: relative; overflow: hidden; line-height: 0; }
.shot-img { width: 100%; transition: opacity 0.3s ease; }
.shot-img.fading { opacity: 0; }

.shot-caption { display: flex; gap: 1.1rem; align-items: flex-start; margin-top: 1.6rem; }
.cap-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--surface-2);
  flex-shrink: 0;
}
.cap-text h3 { font-size: 1rem; font-weight: 600; color: var(--text-1); margin-bottom: 0.3rem; }
.cap-text p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   STEPS (Jarvis quick start)
   ============================================================ */
.steps { display: grid; gap: 1.6rem; margin-top: 2.2rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--bg-alt);
  border: 2px solid var(--amber-border);
  flex-shrink: 0;
}
.step-title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.step-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; margin-bottom: 0.8rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: grid;
  gap: 1.3rem;
  max-width: 560px;
  margin-top: 2.5rem;
}

/* Honeypot: hidden from sighted users and keyboard/tab order, but still
   present in the DOM for bots that fill in every field blindly. */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group { display: grid; gap: 0.55rem; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  transition: border-color var(--ease), background var(--ease);
}
.form-group textarea { resize: vertical; line-height: 1.6; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-2);
  background: var(--surface-2);
}

/* ALTCHA widget theming — pinned to the site's permanent dark palette
   rather than the visitor's OS color-scheme (this site has no light mode). */
#contact altcha-widget {
  --altcha-color-base: var(--surface);
  --altcha-color-base-content: var(--text-1);
  --altcha-color-border: var(--border);
  --altcha-border-color: var(--border);
  --altcha-color-neutral: var(--border-2);
  --altcha-color-neutral-content: var(--text-2);
  --altcha-color-primary: var(--text-1);
  --altcha-color-primary-content: var(--bg);
  --altcha-color-success: #4ade80;
  --altcha-color-success-content: #04211d;
  --altcha-color-error: #f87171;
  --altcha-color-error-content: #2a0a0a;
  --altcha-border-radius: var(--r-sm);
  --altcha-max-width: 100%;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-status { font-size: 0.86rem; }
.form-status.ok  { color: #4ade80; }
.form-status.err { color: #f87171; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(120deg, var(--violet), var(--cyan), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  display: inline-block;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-3); max-width: 300px; line-height: 1.75; }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-2); transition: color var(--ease); }
.footer-links a:hover { color: var(--text-1); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.03em;
}
.footer-copy a { color: var(--text-2); }
.footer-copy a:hover { color: var(--text-1); }

/* ============================================================
   MISC
   ============================================================ */
.ico { width: 15px; height: 15px; fill: currentColor; vertical-align: middle; display: inline-block; }
.dl-icon { flex-shrink: 0; }
