/* ==========================================================
   ADAM AQIL — PORTFOLIO
   Design tokens: dark instrument-panel aesthetic.
   Display: Space Grotesk · Body: Inter · Data/mono: JetBrains Mono
   Accent inherited from the AuTron brand (electric violet),
   paired with a sky-blue (aviation) and an amber (sunsets /
   nostalgia, ties to the photography + the quote).
   ========================================================== */

:root {
  --bg-0: #07070b;
  --bg-1: #0c0c13;
  --bg-2: #131320;
  --bg-3: #191928;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.055);

  --violet: #7a5cff;
  --violet-dim: #6c45ff;
  --violet-glow: rgba(122, 92, 255, 0.35);
  --sky: #4fc7ff;
  --amber: #ff9d5c;

  --text-0: #f5f4fa;
  --text-1: #b7b4c8;
  --text-2: #7d7a92;

  --ok: #47dba0;
  --warn: #ffbb4d;
  --off: #837fa0;
  --danger: #ff7272;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
@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; }
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(122, 92, 255, 0.14), transparent 60%),
    radial-gradient(50rem 35rem at -10% 20%, rgba(79, 199, 255, 0.08), transparent 60%),
    radial-gradient(40rem 30rem at 50% 100%, rgba(255, 157, 92, 0.06), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

::selection { background: var(--violet-glow); color: #fff; }

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 8px var(--sky);
}

section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { section { padding: 72px 0; } }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--text-1); margin-top: 14px; font-size: 1.05rem; }

/* ---------- glass panel primitive ---------- */
.panel {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--violet), #9b7bff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--violet-glow);
}
.btn-ghost { background: var(--glass); color: var(--text-0); }
.btn-ghost:hover { border-color: var(--sky); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; }
.nav-logo span { color: var(--sky); }
.nav-links { display: flex; gap: 28px; font-size: 0.92rem; color: var(--text-1); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text-0); }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  width: 40px; height: 40px; color: var(--text-0); cursor: pointer;
}
@media (max-width: 780px) {
  .nav-links { position: fixed; top: 62px; left: 16px; right: 16px; flex-direction: column; gap: 2px;
    background: rgba(12,12,19,0.97); border: 1px solid var(--border); border-radius: var(--radius-m);
    padding: 10px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.25s var(--ease); }
  .nav-links a { display: block; padding: 12px 14px; border-radius: 8px; }
  .nav-links a:hover { background: var(--glass); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.boot-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 22px;
  min-height: 1.4em;
}
.boot-line .cursor { color: var(--sky); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  background: linear-gradient(135deg, #fff 40%, var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title {
  font-family: var(--font-mono);
  color: var(--text-1);
  font-size: clamp(0.85rem, 1.6vw, 1.02rem);
  margin-top: 18px;
  letter-spacing: 0.01em;
}
.hero-tagline { margin-top: 20px; font-size: 1.15rem; color: var(--text-1); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-panel {
  padding: 26px;
  position: relative;
}
.hud-row { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-2); margin-bottom: 18px; letter-spacing: 0.06em; }
.hud-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); display: inline-block; margin-right: 6px; }
.hero-quote {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--text-0);
}
.hero-quote .mark { color: var(--violet); font-size: 1.6rem; line-height: 0; vertical-align: -0.28em; }
.hero-quote-by { margin-top: 16px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--sky); }
.hero-stats { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-stat { text-align: center; padding: 12px 4px; border-radius: var(--radius-s); background: rgba(255,255,255,0.03); }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.hero-stat span { font-size: 0.68rem; color: var(--text-2); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-2);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .line { width: 1px; height: 26px; background: linear-gradient(var(--text-2), transparent); animation: dropline 1.8s ease-in-out infinite; }
@keyframes dropline { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy p { color: var(--text-1); font-size: 1.03rem; margin: 0 0 18px; }
.about-copy strong { color: var(--text-0); }
.about-closing { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-0); margin-top: 28px; }
.about-closing span { display: block; }

.about-side { position: sticky; top: 100px; align-self: start; }
.origin-card { padding: 24px; }
.origin-card h4 { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 12px; }
.origin-card p { color: var(--text-1); font-size: 0.94rem; }

/* ============================================================
   JOURNEY (timeline)
   ============================================================ */
.timeline { position: relative; margin-top: 20px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(var(--violet), var(--sky), transparent); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -28px; top: 4px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg-0); border: 2px solid var(--sky);
}
.tl-item.now::before { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(255,157,92,0.15); }
.tl-item h4 { font-size: 1.08rem; margin-bottom: 6px; }
.tl-item p { color: var(--text-1); font-size: 0.96rem; max-width: 62ch; }

/* ============================================================
   SKILLS
   ============================================================ */
.skills-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.skill-chip {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-1);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.skill-chip:hover { border-color: var(--violet); color: var(--text-0); transform: translateY(-2px); }
.skills-note { margin-top: 22px; color: var(--text-2); font-size: 0.88rem; max-width: 60ch; }

/* ============================================================
   SETUP
   ============================================================ */
.setup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .setup-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .setup-grid { grid-template-columns: 1fr; } }
.setup-card { padding: 22px; }
.setup-card .tag { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sky); }
.setup-card h4 { margin-top: 10px; font-size: 1.08rem; }
.setup-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.setup-card li { font-size: 0.86rem; color: var(--text-1); font-family: var(--font-mono); }
.setup-note { margin-top: 24px; color: var(--text-2); font-size: 0.92rem; max-width: 64ch; }

/* ============================================================
   PHOTOGRAPHY
   ============================================================ */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
.photo-grid .ph:nth-child(4n+1) { grid-row: span 2; }
.photo-grid .ph:nth-child(6n+3) { grid-column: span 2; }
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .photo-grid { grid-template-columns: 1fr; } .photo-grid .ph:nth-child(6n+3) { grid-column: span 1; } }

.ph {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ph-fill { position: absolute; inset: 0; }
.ph-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.75);
  text-align: center; padding: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}
.ph-label b { font-family: var(--font-display); font-size: 0.85rem; color: rgba(255,255,255,0.92); font-weight: 500; }
.photo-note { margin-top: 26px; color: var(--text-2); font-size: 0.9rem; max-width: 62ch; }

/* ============================================================
   HOBBIES
   ============================================================ */
.hobby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .hobby-grid { grid-template-columns: repeat(2, 1fr); } }
.hobby-card { padding: 22px 18px; text-align: center; transition: transform 0.25s var(--ease), border-color 0.25s; }
.hobby-card:hover { transform: translateY(-4px); border-color: var(--violet); }
.hobby-card svg { width: 26px; height: 26px; color: var(--sky); margin-bottom: 12px; }
.hobby-card span { display: block; font-size: 0.92rem; color: var(--text-1); }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 8px; }
.projects-count { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-2); }
.projects-count b { color: var(--sky); }

.featured-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0 60px; }
@media (max-width: 980px) { .featured-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .featured-strip { grid-template-columns: 1fr; } }

.feature-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--violet-glow);
  background: linear-gradient(160deg, rgba(122,92,255,0.09), rgba(255,255,255,0.03));
}
@media (max-width: 900px) { .feature-card { grid-template-columns: 1fr; } }
.feature-card .fc-copy { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.feature-card .fc-copy .eyebrow { margin-bottom: 10px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-1); font-size: 0.96rem; margin-bottom: 20px; }
.feature-card .fc-tech { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.feature-card .fc-preview { min-height: 260px; }

.filters-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 30px 0 8px; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--glass);
  flex: 1 1 220px; min-width: 180px;
}
.search-box input {
  background: none; border: none; outline: none; color: var(--text-0);
  font-family: var(--font-body); font-size: 0.92rem; width: 100%;
}
.search-box svg { width: 16px; height: 16px; color: var(--text-2); flex-shrink: 0; }

.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-btn {
  font-family: var(--font-mono); font-size: 0.78rem;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent; color: var(--text-2);
  cursor: pointer; transition: all 0.2s;
}
.chip-btn:hover { color: var(--text-0); border-color: var(--text-2); }
.chip-btn.active { background: var(--violet); border-color: var(--violet); color: #fff; }
.filter-divider { width: 1px; height: 20px; background: var(--border); margin: 0 4px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.card-desc, .card-meta span, .tech-tag, .status-pill, .setup-card li, .skill-chip, .hero-title, .hero-tagline, .about-copy p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.preview-bar { min-width: 0; }
.preview-bar .url { min-width: 0; flex: 1 1 auto; }
.card-meta { min-width: 0; }
.card-meta span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fc-copy, .fc-preview, .feature-card { min-width: 0; }
.projects-grid, .featured-strip, .setup-grid, .photo-grid, .hobby-grid, .building-grid, .hero-grid, .about-grid {
  min-width: 0;
}
.projects-grid > *, .featured-strip > *, .setup-grid > *, .photo-grid > *, .hobby-grid > *, .building-grid > * {
  min-width: 0;
}
.card:hover { transform: translateY(-3px); border-color: var(--border-soft); }

/* browser-chrome preview */
.preview {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.preview-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-mono); font-size: 0.66rem; color: var(--text-2);
}
.preview-bar .dots { display: flex; gap: 4px; margin-right: 6px; }
.preview-bar .dots i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.preview-bar .dots i:nth-child(1) { background: #ff6a5f; }
.preview-bar .dots i:nth-child(2) { background: #ffbd4c; }
.preview-bar .dots i:nth-child(3) { background: #42c95a; }
.preview-bar .url { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.preview-body { position: relative; height: calc(100% - 30px); }
.preview-body iframe { width: 100%; height: 100%; border: 0; display: block; }
.preview-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--ph-gradient, linear-gradient(135deg, #1a1a2e, #12121c));
}
.preview-placeholder .glyph { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.55); text-align: center; padding: 0 16px; }
.preview-visit {
  position: absolute; top: 8px; right: 8px;
  font-family: var(--font-mono); font-size: 0.68rem;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(7,7,11,0.72); border: 1px solid var(--border);
  color: var(--text-0); backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 5px;
  z-index: 2;
}
.preview-visit:hover { border-color: var(--sky); }
.load-btn {
  font-family: var(--font-mono); font-size: 0.74rem;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.05); color: var(--text-0);
  cursor: pointer;
}
.load-btn:hover { border-color: var(--violet); }

.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.card-top h4 { font-size: 1.02rem; }
.status-pill {
  font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap; flex-shrink: 0;
  border: 1px solid var(--border);
}
.status-active { color: var(--ok); border-color: rgba(71,219,160,0.35); }
.status-indevelopment, .status-experimental { color: var(--warn); border-color: rgba(255,187,77,0.35); }
.status-archived, .status-activearchived { color: var(--off); border-color: rgba(131,127,160,0.35); }
.status-discontinued { color: var(--danger); border-color: rgba(255,114,114,0.35); }

.card-desc { color: var(--text-1); font-size: 0.88rem; flex: 1; }
.card-meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-2); margin-top: 4px; }
.card-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag { font-family: var(--font-mono); font-size: 0.64rem; padding: 3px 8px; border-radius: 6px; background: rgba(255,255,255,0.04); color: var(--text-2); }
.card.origin { border-color: var(--amber); }
.origin-flag { font-family: var(--font-mono); font-size: 0.64rem; color: var(--amber); }

.no-results { text-align: center; padding: 60px 20px; color: var(--text-2); font-family: var(--font-mono); font-size: 0.9rem; display: none; }

/* Currently building */
.building-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
@media (max-width: 900px) { .building-grid { grid-template-columns: 1fr; } }
.building-card { padding: 22px; }
.building-card .pulse { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.68rem; color: var(--ok); text-transform: uppercase; letter-spacing: 0.06em; }
.building-card .pulse::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 6px var(--ok); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.building-card h4 { margin-top: 12px; font-size: 1.1rem; }
.building-card p { color: var(--text-1); font-size: 0.88rem; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 70px 0 40px; border-top: 1px solid var(--border-soft); margin-top: 60px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand h3 { font-size: 1.3rem; }
.footer-brand p { color: var(--text-1); margin-top: 8px; max-width: 34ch; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-1);
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--violet); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-quote { margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--border-soft); font-family: var(--font-display); font-size: 1.1rem; color: var(--text-1); max-width: 60ch; }
.footer-quote span { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--sky); }
.footer-bottom { margin-top: 40px; font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-2); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
