/* ==========================================================================
   Jiggle Wiggle — Design Tokens & Base
   ========================================================================== */

:root {
  /* Brand — verified cyan / signal yellow / viral magenta, on dark charcoal */
  --violet:       #4E2EEF;  /* verified cyan — primary brand / CTA / Meme Marketing (flagship) */
  --violet-dim:   rgba(78, 46, 239, 0.18);
  --indigo:       #FF3D81;  /* viral magenta — Fanpage Ecosystem */
  --indigo-dim:   rgba(255, 61, 129, 0.24);
  --lavender:     #FFD23F;  /* signal yellow — Clipping Services */
  --lavender-dim: rgba(255, 210, 63, 0.20);
  --on-primary:   #FFFFFF;  /* text on top of --violet, both themes */

  /* Color — dark theme (default) */
  --bg:        #0E0E12;
  --bg-alt:    #17161F;
  --surface:   #1D1B27;
  --surface-2: #26232F;
  --border:    rgba(245, 244, 242, 0.10);
  --border-strong: rgba(245, 244, 242, 0.20);
  --header-bg: rgba(14, 14, 18, 0.78);

  --text:      #F5F4F2;
  --text-dim:  #A8A6B3;
  --text-faint:#726F7E;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.6rem, 1.4rem + 0.9vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.8rem + 1.4vw, 3rem);
  --step-4:  clamp(2.6rem, 2.1rem + 2.4vw, 4.2rem);
  --step-5:  clamp(3.2rem, 2.4rem + 3.6vw, 5.6rem);

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ==========================================================================
   Light theme
   Applied via [data-theme="light"] on <html> (set by the theme toggle in
   main.js). The prefers-color-scheme block below covers first paint before
   JS runs / for users who haven't made an explicit choice.
   ========================================================================== */

[data-theme="light"] {
  --bg:        #FAF5FD;
  --bg-alt:    #F2F0FA;
  --surface:   #FFFFFF;
  --surface-2: #F5F3FC;
  --border:    rgba(30, 20, 80, 0.10);
  --border-strong: rgba(30, 20, 80, 0.18);

  --text:      #16131F;
  --text-dim:  #55506B;
  --text-faint:#8A85A0;

  --violet-dim:   rgba(78, 46, 239, 0.10);
  --indigo:       #C41E5C; /* deepened magenta for AA contrast on white */
  --indigo-dim:   rgba(255, 61, 129, 0.10);
  --lavender:     #8A6508; /* deepened yellow for AA contrast on white */
  --lavender-dim: rgba(255, 210, 63, 0.16);
  --header-bg: rgba(250, 245, 253, 0.82);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --bg:        #FAF5FD;
    --bg-alt:    #F2F0FA;
    --surface:   #FFFFFF;
    --surface-2: #F5F3FC;
    --border:    rgba(30, 20, 80, 0.10);
    --border-strong: rgba(30, 20, 80, 0.18);

    --text:      #16131F;
    --text-dim:  #55506B;
    --text-faint:#8A85A0;

    --violet-dim:   rgba(78, 46, 239, 0.10);
    --indigo:       #C41E5C;
    --indigo-dim:   rgba(255, 61, 129, 0.10);
    --lavender:     #B8860B;
    --lavender-dim: rgba(255, 210, 63, 0.16);
    --header-bg: rgba(250, 245, 253, 0.82);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0; color: var(--text-dim); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 10vw, 120px) 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Eyebrow / labels
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.eyebrow.violet { color: var(--violet); }
.eyebrow.lavender { color: var(--lavender); }
.eyebrow.indigo { color: var(--indigo); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--violet);
  color: var(--on-primary);
}
.btn-primary:hover { background: #6347f2; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--violet); color: var(--violet); }
.btn-block { width: 100%; }

/* ==========================================================================
   Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: var(--step--1);
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 20px; }
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.theme-toggle:hover { border-color: var(--violet); color: var(--violet); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  width: 42px; height: 42px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-links { 
    position: fixed;
    top: 65px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 32px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   Trust bar / stat chips (signature: sticker board)
   ========================================================================== */

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.stat-chip {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stat-chip b { color: var(--text); font-weight: 700; }
.stat-chip:nth-child(1) { transform: rotate(-1.2deg); }
.stat-chip:nth-child(2) { transform: rotate(0.8deg); }
.stat-chip:nth-child(3) { transform: rotate(-0.6deg); }
.stat-chip:nth-child(4) { transform: rotate(1deg); }

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

.hero {
  padding-top: clamp(56px, 9vw, 96px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede {
  font-size: var(--step-1);
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 20px;
  display: block;
}
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--violet); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto 8px; }
}

/* Network graph signature visual */
.network-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.network-wrap svg { width: 100%; height: 100%; }
.node { fill: var(--surface-2); stroke: var(--border-strong); stroke-width: 1; }
.node.core { fill: var(--violet); stroke: none; }
.node.pulse { fill: var(--lavender); }
.node.trust { fill: var(--indigo); }
.edge { stroke: var(--border-strong); stroke-width: 1; fill: none; }
.edge.active { stroke: var(--violet); stroke-opacity: 0.5; }

.pulse-anim {
  animation: pulse 3.6s ease-in-out infinite;
  transform-origin: center;
}
.pulse-anim:nth-of-type(2n) { animation-delay: .6s; }
.pulse-anim:nth-of-type(3n) { animation-delay: 1.2s; }
@keyframes pulse {
  0%, 100% { opacity: .55; r: 5; }
  50% { opacity: 1; r: 7; }
}
.travel-dot {
  fill: var(--violet);
  offset-rotate: 0deg;
}

/* ==========================================================================
   Section headers
   ========================================================================== */

.section-head {
  max-width: 62ch;
  margin-bottom: 48px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: var(--step-0); max-width: 56ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Cards — service cards
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.service-card .icon-badge { margin-bottom: 0; }
.service-card .eyebrow { margin-bottom: 4px; }
.service-card h3 { font-size: var(--step-1); }
.service-card ul { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.service-card li {
  font-size: var(--step--1);
  color: var(--text-dim);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-card li::before {
  content: '';
  min-width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  margin-top: 8px;
}
.card-link {
  margin-top: auto;
  font-weight: 600;
  font-size: var(--step--1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
}
.service-card.accent-violet { border-top: 3px solid var(--violet); }
.service-card.accent-lavender { border-top: 3px solid var(--lavender); }
.service-card.accent-indigo { border-top: 3px solid var(--indigo); }
.card-link.violet { color: var(--violet); }
.card-link.lavender { color: var(--lavender); }
.card-link.indigo { color: var(--indigo); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* Icon badges — reusable icon chip used in service cards, icon blocks,
   steps, case tiles, and the contact section. */
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--violet-dim);
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge.lavender { background: var(--lavender-dim); color: var(--lavender); }
.icon-badge.indigo { background: var(--indigo-dim); color: var(--indigo); }
.icon-badge.sm { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 0; }
.icon-badge.sm svg { width: 17px; height: 17px; }

/* Icon blocks (What's included) */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .icon-grid { grid-template-columns: 1fr; } }
.icon-block {
  padding: 28px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.icon-block .num {
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: 0.8rem;
  margin-bottom: 14px;
  display: block;
}
.icon-block h4 { font-size: 1.05rem; margin-bottom: 10px; }
.icon-block p { font-size: var(--step--1); }

/* Steps (how it works) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 26px 22px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.step .icon-badge { margin-bottom: 14px; }
.step .step-index {
  font-family: var(--font-mono);
  color: var(--violet);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: var(--step--1); }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  background: var(--bg-alt);
}
.compare-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; }

/* Cross-sell / diff block */
.cross-sell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cross-sell .copy { max-width: 60ch; }
.cross-sell h3 { margin-bottom: 12px; font-size: var(--step-1); }

/* Case study band */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case-tile {
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.case-tile .icon-badge { margin-bottom: 16px; }
.case-tile .metric {
  font-family: var(--font-mono);
  font-size: var(--step-2);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.case-tile.violet .metric { color: var(--violet); }
.case-tile.lavender .metric { color: var(--lavender); }
.case-tile.indigo .metric { color: var(--indigo); }
.case-tile .campaign { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; display:block; }
.case-tile p { font-size: var(--step--1); }

/* Diff table for bots vs real */
.trust-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-0);
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); color: var(--text-faint); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--violet); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-a { padding-bottom: 22px; }
.faq-a p { font-size: var(--step--1); }

/* CTA band */
.cta-band {
  background: radial-gradient(120% 140% at 20% 0%, var(--violet-dim), transparent 60%), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 72px);
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lede { max-width: 50ch; margin: 0 auto 32px; color: var(--text-dim); font-size: var(--step-1); }

/* ==========================================================================
   Contact section / card (used on every page)
   ========================================================================== */

.contact-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-copy .eyebrow { margin-bottom: 18px; }
.contact-copy h2 { margin-bottom: 16px; }
.contact-copy p.lede { font-size: var(--step-0); max-width: 44ch; margin-bottom: 28px; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--step--1);
}
.contact-method .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
}
.contact-method .ico svg { width: 17px; height: 17px; }
.contact-method a:hover { color: var(--violet); }
.contact-method .label { color: var(--text-faint); display: block; font-size: 0.78rem; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}
.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
  border-color: transparent;
}
.form-group textarea { min-height: 110px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 520px) { .two-col { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--text-faint); }
.form-status {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--violet);
  display: none;
}
.form-status.show { display: block; }

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

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-faint); font-size: 0.85rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-faint); font-size: 0.8rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.footer-social a:hover { border-color: var(--violet); color: var(--violet); }
.footer-social svg { width: 16px; height: 16px; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.mt-64 { margin-top: 64px; }
.text-center { text-align: center; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 14px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
