/* Dawn Patrol — pre-dawn athletic direction.
   Deep pre-dawn navy, one sunrise-gradient signature (coral→amber),
   Big Shoulders Display (condensed, signage-athletic) + Hanken Grotesk. */

:root {
  --bg: #0b0f18;
  --bg-2: #0e131e;
  --surface: #141a27;
  --surface-2: #1a2131;
  --surface-3: #212a3d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ecf0f8;
  --muted: #8b95ab;
  --faint: #5b6479;
  --coral: #ff6a45;
  --amber: #ffb64a;
  --sky: #6ba1ff;
  --mint: #4fd1a5;
  --violet: #a98cff;
  --sunrise: linear-gradient(90deg, #ff6a45 0%, #ff8a3d 45%, #ffb64a 100%);

  --maxw: 640px;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;

  --f-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --f-body: "Hanken Grotesk", system-ui, sans-serif;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }

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

::selection { background: rgba(255, 138, 61, 0.3); }

/* ---------- Layout shell ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-4); }

/* ---------- Top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand .word {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }

.id-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.18s, background 0.18s;
}
.id-chip:hover { border-color: var(--border-strong); background: var(--surface-3); }
.id-chip .avatar { width: 26px; height: 26px; font-size: 11px; }
.id-chip .join-label { color: var(--amber); }

/* ---------- Avatars ---------- */
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #0b0f18;
  text-transform: uppercase;
  user-select: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(255, 138, 61, 0.28) 0%, rgba(255, 138, 61, 0) 55%),
    radial-gradient(80% 60% at 50% 120%, rgba(255, 182, 74, 0.35) 0%, rgba(255, 182, 74, 0) 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4) 120px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
  font-size: clamp(52px, 12vw, 108px);
  margin: 0 0 var(--sp-4);
}
.hero h1 .glow {
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto var(--sp-6);
  line-height: 1.5;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--sunrise);
  color: #1a0f08;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 122, 60, 0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255, 122, 60, 0.45); }
.hero-cta:active { transform: translateY(0); }

.stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  margin-top: var(--sp-7);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--text);
}
.stat .lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 6px;
}

/* Skyline silhouette at hero base */
.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 130px;
  z-index: 1;
  display: block;
  color: var(--bg);
}

/* ---------- Feed section ---------- */
.feed-section { padding: var(--sp-7) 0 var(--sp-8); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 30px;
  margin: 0;
}
.section-head .sub { color: var(--faint); font-size: 13px; font-weight: 600; }

/* Composer */
.composer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.composer-top { display: flex; gap: var(--sp-3); }
.composer textarea {
  flex: 1;
  background: transparent;
  border: none;
  resize: none;
  color: var(--text);
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  padding: 8px 0 0;
  min-height: 52px;
  outline: none;
}
.composer textarea::placeholder { color: var(--faint); }

.name-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px dashed var(--border);
}
.name-row label { font-size: 13px; font-weight: 600; color: var(--muted); }
.name-input {
  flex: 1;
  max-width: 220px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 7px 11px;
  outline: none;
}
.name-input:focus { border-color: var(--amber); }
.name-msg { font-size: 12px; font-weight: 600; }
.name-msg.err { color: var(--coral); }

.type-picker { display: flex; gap: 6px; flex-wrap: wrap; }
.type-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.16s;
}
.type-chip:hover { border-color: var(--border-strong); color: var(--text); }
.type-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.type-chip[aria-pressed="true"] { color: var(--text); border-color: transparent; }
.type-chip[data-type="route"][aria-pressed="true"] { background: rgba(79, 209, 165, 0.16); border-color: rgba(79, 209, 165, 0.4); }
.type-chip[data-type="race"][aria-pressed="true"] { background: rgba(255, 106, 69, 0.16); border-color: rgba(255, 106, 69, 0.4); }
.type-chip[data-type="photo"][aria-pressed="true"] { background: rgba(255, 182, 74, 0.16); border-color: rgba(255, 182, 74, 0.4); }
.type-chip[data-type="chat"][aria-pressed="true"] { background: rgba(107, 161, 255, 0.16); border-color: rgba(107, 161, 255, 0.4); }

.composer-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: var(--r-sm);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.16s;
}
.icon-btn:hover { color: var(--text); border-color: var(--border-strong); }
.icon-btn svg { width: 16px; height: 16px; }
.char-count { margin-left: auto; font-size: 12px; color: var(--faint); font-variant-numeric: tabular-nums; }
.char-count.warn { color: var(--amber); }
.char-count.over { color: var(--coral); }

.btn-post {
  background: var(--sunrise);
  color: #1a0f08;
  border: none;
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.16s, opacity 0.16s;
}
.btn-post:hover { transform: translateY(-1px); }
.btn-post:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.attach-preview {
  position: relative;
  margin-top: var(--sp-3);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.attach-preview img { width: 100%; max-height: 340px; object-fit: cover; }
.attach-remove {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(11, 15, 24, 0.8); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 16px; line-height: 1;
  display: grid; place-items: center;
}
.attach-remove:hover { background: rgba(255, 106, 69, 0.85); }

/* Filter tabs */
.filters {
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-4);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filters::-webkit-scrollbar { display: none; }
.filter-tab {
  flex: none;
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.16s;
  position: relative;
}
.filter-tab:hover { color: var(--text); background: var(--surface); }
.filter-tab[aria-selected="true"] { color: var(--text); background: var(--surface-2); }

/* ---------- Post card ---------- */
.post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
  transition: border-color 0.18s;
}
.post:hover { border-color: var(--border-strong); }
.post-head { display: flex; align-items: center; gap: var(--sp-3); }
.post-head .who { min-width: 0; }
.post-head .name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.post-head .name:hover { text-decoration: underline; }
.post-head .meta { font-size: 12.5px; color: var(--faint); display: flex; align-items: center; gap: 6px; }
.post-head .meta .dot-sep { opacity: 0.5; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.badge.route { color: var(--mint); background: rgba(79, 209, 165, 0.12); }
.badge.route .dot { background: var(--mint); }
.badge.race { color: var(--coral); background: rgba(255, 106, 69, 0.12); }
.badge.race .dot { background: var(--coral); }
.badge.photo { color: var(--amber); background: rgba(255, 182, 74, 0.12); }
.badge.photo .dot { background: var(--amber); }
.badge.chat { color: var(--sky); background: rgba(107, 161, 255, 0.12); }
.badge.chat .dot { background: var(--sky); }

.post-menu { margin-left: auto; position: relative; }
.post-menu .kebab {
  background: transparent; border: none; color: var(--faint);
  width: 30px; height: 30px; border-radius: 50%; font-size: 18px; line-height: 1;
  display: grid; place-items: center; transition: all 0.16s;
}
.post-menu .kebab:hover { color: var(--text); background: var(--surface-2); }
.menu-pop {
  position: absolute; right: 0; top: 34px; z-index: 10;
  background: var(--surface-3); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); padding: 5px; min-width: 140px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.menu-pop button {
  display: block; width: 100%; text-align: left;
  background: transparent; border: none; color: var(--text);
  padding: 8px 10px; border-radius: 6px; font-size: 13px; font-weight: 600;
}
.menu-pop button:hover { background: var(--surface-2); }
.menu-pop button.danger { color: var(--coral); }

.post-body {
  margin: var(--sp-3) 0 0;
  font-size: 16px;
  line-height: 1.58;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.post-body a { color: var(--amber); }

.post-media {
  margin-top: var(--sp-3);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.post-media img { width: 100%; max-height: 520px; object-fit: cover; cursor: zoom-in; }

.post-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.act {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.16s;
  font-variant-numeric: tabular-nums;
}
.act svg { width: 17px; height: 17px; transition: transform 0.16s; }
.act:hover { background: var(--surface-2); color: var(--text); }
.act.like[aria-pressed="true"] { color: var(--coral); }
.act.like[aria-pressed="true"] svg { fill: var(--coral); transform: scale(1.05); }
.act.like:active svg { transform: scale(1.3); }
.act.comment:hover { color: var(--sky); }

/* Comments */
.comments {
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.comment { display: flex; gap: 10px; padding: 8px 0; }
.comment .avatar { width: 30px; height: 30px; font-size: 12px; }
.comment .c-body { min-width: 0; }
.comment .c-name { font-weight: 700; font-size: 13px; }
.comment .c-name .c-time { font-weight: 500; color: var(--faint); font-size: 11.5px; margin-left: 6px; }
.comment .c-text { font-size: 14px; line-height: 1.5; word-wrap: break-word; overflow-wrap: anywhere; }
.comment-form { display: flex; gap: 10px; align-items: flex-start; margin-top: var(--sp-2); }
.comment-form input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 9px 15px;
  outline: none;
}
.comment-form input:focus { border-color: var(--border-strong); }
.comment-form button {
  background: var(--surface-3); border: 1px solid var(--border);
  color: var(--text); font-weight: 700; font-size: 13px;
  border-radius: 999px; padding: 9px 16px; transition: all 0.16s;
}
.comment-form button:hover { border-color: var(--amber); color: var(--amber); }

/* Empty / loading states */
.feed-msg {
  text-align: center;
  padding: var(--sp-7) var(--sp-4);
  color: var(--faint);
}
.feed-msg .big { font-family: var(--f-display); font-size: 26px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.skeleton {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.skeleton .line { height: 12px; border-radius: 6px; background: linear-gradient(90deg, var(--surface-2), var(--surface-3), var(--surface-2)); background-size: 200% 100%; animation: shimmer 1.3s infinite; margin: 8px 0; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---------- About band ---------- */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--sp-8) 0;
}
.about-grid {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-7); align-items: center;
}
.about h2 {
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: clamp(32px, 5vw, 46px); line-height: 0.98; margin: 0 0 var(--sp-4);
}
.about p { color: var(--muted); font-size: 16px; margin: 0 0 var(--sp-4); }
.about .facts { list-style: none; padding: 0; margin: 0; }
.about .facts li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.about .facts li:last-child { border-bottom: none; }
.about .facts .k { color: var(--amber); font-weight: 700; min-width: 92px; }
.about-photo {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--sp-7) 0 var(--sp-6);
  background: var(--bg);
}
.footer-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: var(--sp-5); justify-content: space-between; align-items: flex-start;
}
.footer .brand .word { font-size: 22px; }
.footer .tag { color: var(--faint); font-size: 13px; margin-top: 10px; max-width: 34ch; }
.footer nav { display: flex; flex-direction: column; gap: 8px; }
.footer nav a { color: var(--muted); font-size: 14px; font-weight: 600; }
.footer nav a:hover { color: var(--text); text-decoration: none; }
.footer nav .head { color: var(--faint); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px; }
.colophon {
  max-width: 860px; margin: var(--sp-6) auto 0; padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  color: var(--faint); font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 9, 14, 0.94);
  display: grid; place-items: center; padding: var(--sp-5);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: var(--r); object-fit: contain; }
.lightbox .close {
  position: absolute; top: 20px; right: 24px; background: transparent; border: none;
  color: var(--text); font-size: 30px; line-height: 1;
}

/* ---------- Profile modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6, 9, 14, 0.7); backdrop-filter: blur(4px);
  display: grid; place-items: start center; padding: var(--sp-6) var(--sp-4);
  opacity: 0; pointer-events: none; transition: opacity 0.2s; overflow-y: auto;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 560px;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); overflow: hidden;
  transform: translateY(10px); transition: transform 0.22s;
}
.modal-scrim.open .modal { transform: translateY(0); }
.profile-head {
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255, 138, 61, 0.16), transparent 60%),
    var(--surface-2);
  display: flex; gap: var(--sp-4); align-items: center; position: relative;
}
.profile-head .avatar { width: 62px; height: 62px; font-size: 24px; }
.profile-head h3 { font-family: var(--f-display); font-weight: 700; font-size: 26px; margin: 0; text-transform: uppercase; letter-spacing: 0.02em; }
.profile-head .p-stats { color: var(--muted); font-size: 13px; margin-top: 3px; }
.modal .close {
  position: absolute; top: 12px; right: 12px; background: transparent; border: none;
  color: var(--muted); font-size: 24px; line-height: 1; width: 34px; height: 34px; border-radius: 50%;
}
.modal .close:hover { color: var(--text); background: var(--surface-3); }
.profile-posts { padding: var(--sp-4); max-height: 60vh; overflow-y: auto; }
.mini-post { padding: 12px 0; border-bottom: 1px solid var(--border); }
.mini-post:last-child { border-bottom: none; }
.mini-post .mp-meta { font-size: 12px; color: var(--faint); margin-bottom: 5px; display: flex; gap: 8px; align-items: center; }
.mini-post .mp-text { font-size: 14.5px; line-height: 1.5; }
.mini-post img { margin-top: 8px; border-radius: 10px; max-height: 200px; width: 100%; object-fit: cover; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--surface-3); border: 1px solid var(--border-strong);
  color: var(--text); padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { border-color: rgba(255, 106, 69, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .about-photo { order: -1; }
  .hero-inner { padding: var(--sp-7) var(--sp-4) 96px; }
  .stats { gap: var(--sp-5); }
  .stat .num { font-size: 32px; }
  .footer-inner { gap: var(--sp-5); }
}

@media (max-width: 440px) {
  .stats { gap: var(--sp-4) var(--sp-6); }
  .composer-bar { flex-wrap: wrap; }
  .char-count { order: 3; width: 100%; text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
