/* ── Yazan Azaizeh — dark engineering × futuristic-alive ── */
:root {
  --bg: #04060b;
  --panel: #0a101c;
  --panel-2: #0d1524;
  --line: rgba(120, 170, 255, 0.10);
  --text: #e6edf7;
  --muted: #8b98ad;
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.12);
  --glow: 0 0 24px rgba(34, 211, 238, 0.45);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --gutter: clamp(32px, 8vw, 110px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: page-in .5s ease both;
}
@keyframes page-in { from { opacity: 0 } to { opacity: 1 } }

.mono { font-family: var(--font-mono); }
.accent { color: var(--accent); }
.glow { text-shadow: var(--glow); }

/* canvas + glow */
#field { position: fixed; inset: 0; z-index: -1; opacity: 0.9; }
.cursor-glow {
  position: fixed; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.07), transparent 65%);
  pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
  left: 50vw; top: 30vh;
}

/* ── custom cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 200;
  border-radius: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .25s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); box-shadow: var(--glow); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(34,211,238,.55);
  transition: opacity .25s, width .2s, height .2s, border-color .2s, background .2s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px; border-color: var(--accent);
  background: rgba(34,211,238,.08);
}
body.cursor-hover .cursor-dot { background: #fff; }
@media (pointer: fine) {
  body.cursor-on, body.cursor-on a, body.cursor-on button,
  body.cursor-on input, body.cursor-on textarea, body.cursor-on label,
  body.cursor-on .card, body.cursor-on .hero-toggle { cursor: none; }
}

/* ── nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(24px, 4vw, 56px);
  background: rgba(4, 6, 11, 0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 1.15rem; font-weight: 600; color: var(--text); text-decoration: none; letter-spacing: .04em; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .92rem;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .25s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; box-shadow: var(--glow); }
.nav-network { color: var(--accent) !important; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
  background: var(--panel);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: var(--glow); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

/* ── scroll progress ── */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #7dd3fc);
  z-index: 60; box-shadow: var(--glow);
}

/* ── hero (home) ── */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 130px var(--gutter) 40px; position: relative; z-index: 1;
}
.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.kicker { color: var(--accent); font-size: .82rem; letter-spacing: .08em; margin-bottom: 26px; }
.kicker .sep { color: var(--muted); }
h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.06; font-weight: 700; letter-spacing: -0.02em;
}
.sub { color: var(--muted); font-size: 1.15rem; max-width: 560px; margin-top: 24px; }
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero-b-wrap { display: none; }
body.hero-b .hero-a { display: none; }
body.hero-b .hero-b-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.terminal {
  background: #070c16; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 0 60px rgba(34,211,238,0.07), 0 20px 60px rgba(0,0,0,.5);
  overflow: hidden;
}
.term-bar {
  display: flex; align-items: center; gap: 7px; padding: 10px 14px;
  border-bottom: 1px solid var(--line); background: var(--panel);
}
.term-bar i { width: 11px; height: 11px; border-radius: 50%; background: #24304a; }
.term-bar i:first-child { background: #ff5f57; } .term-bar i:nth-child(2) { background: #febc2e; } .term-bar i:nth-child(3) { background: #28c840; }
.term-bar span { font-size: .72rem; color: var(--muted); margin-left: 8px; }
#term-body {
  padding: 18px 18px 22px; font-size: .84rem; line-height: 1.75;
  color: #b7e9f4; min-height: 240px; white-space: pre-wrap;
}
#term-body .prompt { color: var(--accent); }
#term-body .out { color: var(--muted); }
#term-body .caret { display: inline-block; width: 8px; background: var(--accent); animation: pulse 1s infinite; }

/* ── ticker ── */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; background: rgba(10,16,28,.5); position: relative; z-index: 1;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em;
  color: var(--muted); padding: 12px 0;
}
.ticker b { color: var(--accent); font-weight: 500; padding: 0 18px; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── buttons ── */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 8px;
  font-size: .95rem; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
  font-family: var(--font-display);
}
.btn-primary {
  background: var(--accent); color: #04121a;
  box-shadow: 0 0 26px rgba(34,211,238,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(34,211,238,0.55); }
.btn-ghost {
  border-color: var(--line); color: var(--muted); background: transparent; font-size: .85rem;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn.disabled { opacity: .45; cursor: default; }

/* ── sections & page headers ── */
.section {
  max-width: 1280px; margin: 0 auto; padding: 100px var(--gutter) 30px;
  position: relative; z-index: 1;
}
.sect-label { color: var(--accent); font-size: .78rem; letter-spacing: .14em; margin-bottom: 14px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.01em; margin-bottom: 34px; }
.page-head { padding-top: 160px; }
.page-head .crumb { color: var(--muted); font-size: .78rem; letter-spacing: .12em; margin-bottom: 18px; }
.page-head .crumb b { color: var(--accent); font-weight: 500; }
.page-head h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.page-head .sub { font-size: 1.12rem; max-width: 640px; }
.lead-link { color: var(--accent); text-decoration: none; font-family: var(--font-mono); font-size: .85rem; }
.lead-link:hover { text-shadow: var(--glow); }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* about teaser + grids */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.about-body p, .prose p { color: var(--muted); margin-bottom: 18px; font-size: 1.06rem; }
.about-body strong, .prose strong { color: var(--text); }
.about-body em, .prose em { color: var(--accent); font-style: normal; }
.stat-row { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.stat {
  border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px;
  background: var(--panel); display: flex; flex-direction: column; gap: 4px; min-width: 150px;
}
.stat-n { font-size: 1.25rem; font-weight: 600; }
.stat-l { font-size: .72rem; color: var(--muted); letter-spacing: .05em; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  transition: transform .2s, border-color .2s, box-shadow .25s;
  text-decoration: none; color: inherit; display: block;
}
.card:hover {
  transform: translateY(-5px); border-color: rgba(34,211,238,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 30px rgba(34,211,238,.08);
}
.card-top { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); margin-bottom: 16px; letter-spacing: .06em; }
.tag { color: var(--accent); }
.tag.live { animation: pulse 2.2s infinite; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }
.card-foot { margin-top: 18px; font-size: .72rem; color: var(--accent); opacity: .8; }

/* work detail blocks */
.project {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  padding: 54px 0; border-top: 1px solid var(--line);
}
.project:last-of-type { border-bottom: 1px solid var(--line); }
.project-meta { display: flex; flex-direction: column; gap: 10px; }
.project-meta .p-name { font-size: 1.35rem; font-weight: 700; }
.project-meta .p-role { font-family: var(--font-mono); font-size: .74rem; color: var(--accent); letter-spacing: .08em; }
.project-meta .p-stage { font-family: var(--font-mono); font-size: .7rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; width: max-content; }
.project-body p { color: var(--muted); font-size: 1.02rem; margin-bottom: 16px; max-width: 680px; }
.project-body strong { color: var(--text); }
.p-points { list-style: none; margin: 6px 0 0; }
.p-points li {
  color: var(--muted); font-size: .96rem; padding: 8px 0 8px 26px; position: relative;
}
.p-points li::before {
  content: "▸"; position: absolute; left: 2px; color: var(--accent);
}

/* theses */
.theses { display: flex; flex-direction: column; }
.thesis {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: baseline;
  padding: 26px 4px; border-top: 1px solid var(--line);
}
.thesis:last-child { border-bottom: 1px solid var(--line); }
.thesis p { color: var(--muted); font-size: 1.08rem; max-width: 720px; }
.thesis strong { color: var(--text); }

/* about page: timeline */
.timeline { position: relative; margin: 20px 0 10px; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(34,211,238,.06));
}
.tl-item { position: relative; padding: 0 0 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -31px; top: 7px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--accent);
  box-shadow: var(--glow);
}
.tl-item.future::before { border-color: var(--muted); box-shadow: none; opacity: .7; }
.tl-when { font-family: var(--font-mono); font-size: .74rem; color: var(--accent); letter-spacing: .1em; }
.tl-item.future .tl-when { color: var(--muted); }
.tl-what { font-size: 1.08rem; margin-top: 4px; }
.tl-what strong { color: var(--text); }
.tl-what { color: var(--muted); max-width: 640px; }

/* about page: principles */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle {
  border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  background: var(--panel);
}
.principle .mono { color: var(--accent); font-size: .74rem; letter-spacing: .1em; }
.principle h3 { margin: 10px 0 8px; font-size: 1.12rem; }
.principle p { color: var(--muted); font-size: .93rem; }

/* facts strip */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 800px; }
.fact {
  display: flex; gap: 14px; align-items: baseline; border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; background: var(--panel);
}
.fact .mono { color: var(--accent); font-size: .72rem; letter-spacing: .08em; white-space: nowrap; }
.fact p { color: var(--muted); font-size: .93rem; }

/* network */
.network-pitch { color: var(--muted); font-size: 1.1rem; max-width: 680px; margin-bottom: 44px; }
.members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 54px; }
.member, .member-slot {
  border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: var(--panel);
}
.member h4 { font-size: 1.05rem; margin-bottom: 4px; }
.member .m-building { color: var(--muted); font-size: .9rem; }
.member a { color: var(--accent); font-size: .78rem; text-decoration: none; }
.member-slot {
  border-style: dashed; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .78rem; min-height: 110px; opacity: .75;
}
.member-slot span { text-align: center; }

.bar-list { list-style: none; max-width: 680px; margin-bottom: 50px; }
.bar-list li {
  padding: 16px 0 16px 34px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 1.02rem; position: relative;
}
.bar-list li:last-child { border-bottom: 1px solid var(--line); }
.bar-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.bar-list strong { color: var(--text); }

.join {
  border: 1px solid rgba(34,211,238,.25); border-radius: 16px; padding: 34px;
  background: linear-gradient(160deg, rgba(34,211,238,.05), transparent 55%), var(--panel);
  box-shadow: 0 0 60px rgba(34,211,238,.06);
  max-width: 720px;
}
.join h3 { color: var(--accent); margin-bottom: 22px; font-size: 1.05rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form label { display: flex; flex-direction: column; gap: 7px; font-size: .8rem; color: var(--muted); margin-bottom: 16px; font-family: var(--font-mono); }
input, textarea {
  background: #060b14; border: 1px solid var(--line); border-radius: 8px;
  color: var(--text); padding: 12px 14px; font-size: .95rem; font-family: var(--font-display);
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.join-note { font-size: .72rem; color: var(--muted); margin-top: 14px; }

/* application fee panel */
.step-tag {
  display: inline-block; border: 1px solid rgba(34,211,238,.4); border-radius: 5px;
  padding: 2px 9px; font-size: .66rem; letter-spacing: .12em; color: var(--accent);
  margin-right: 12px; vertical-align: 2px;
}
.fee-panel { margin-top: 22px; }
.fee-row { display: flex; gap: 34px; align-items: flex-start; }
.fee-price {
  font-size: 3.4rem; font-weight: 600; color: var(--accent); line-height: 1;
  text-shadow: var(--glow); padding-top: 6px;
}
.fee-price span { display: block; font-size: .72rem; color: var(--muted); text-shadow: none; letter-spacing: .2em; margin-top: 6px; }
.fee-copy p:first-child { color: var(--muted); font-size: .98rem; margin-bottom: 18px; }
.fee-copy strong { color: var(--text); }
.fee-copy .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }
@media (max-width: 900px) { .fee-row { flex-direction: column; gap: 18px; } }

/* ── photo scan-frames ── */
.photo-frame {
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
  padding: 10px; max-width: 460px;
}
.ph-img { position: relative; overflow: hidden; border-radius: 7px; }
.ph-img img {
  display: block; width: 100%; height: auto;
  filter: grayscale(.85) contrast(1.06) brightness(.92);
  transition: filter .45s ease, transform .45s ease;
}
.ph-img::before { /* cyan duotone tint */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(34,211,238,.22), rgba(4,6,11,.30));
  mix-blend-mode: overlay; transition: opacity .45s;
}
.ph-img::after { /* scanlines */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(4,6,11,.28) 0 1px, transparent 1px 4px);
  opacity: .5; transition: opacity .45s;
}
.ph-corner { position: absolute; width: 16px; height: 16px; z-index: 3; pointer-events: none; }
.ph-corner.tl { top: 6px; left: 6px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.ph-corner.br { bottom: 6px; right: 6px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.photo-frame:hover .ph-img img { filter: none; transform: scale(1.02); }
.photo-frame:hover .ph-img::before, .photo-frame:hover .ph-img::after { opacity: 0; }
.photo-frame:hover { border-color: rgba(34,211,238,.4); box-shadow: 0 0 40px rgba(34,211,238,.08); }
.ph-meta {
  display: flex; justify-content: space-between; gap: 10px; padding: 10px 4px 2px;
  font-family: var(--font-mono); font-size: .68rem; color: var(--muted); letter-spacing: .05em;
}
.ph-meta b { color: var(--accent); font-weight: 500; }
.ph-fallback {
  display: none; min-height: 220px; border: 1px dashed var(--line); border-radius: 7px;
  align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-mono); font-size: .74rem; color: var(--muted); padding: 20px;
}
.photo-frame.missing .ph-img { display: none; }
.photo-frame.missing .ph-fallback { display: flex; }

/* ── route-cmd: command-line navigation ── */
.route-cmd {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #070c16; padding: 16px 20px; margin-top: 26px;
  text-decoration: none; font-size: .88rem; color: var(--muted);
  transition: border-color .25s, box-shadow .25s; overflow: hidden; position: relative;
}
.route-cmd .rc-prompt { color: var(--accent); }
.route-cmd .rc-text { color: var(--text); white-space: nowrap; }
.route-cmd .rc-text b { color: var(--accent); font-weight: 500; }
.route-cmd .rc-caret {
  width: 8px; height: 15px; background: var(--accent); display: inline-block;
  animation: pulse 1.1s infinite;
}
.route-cmd .rc-chevrons {
  flex: 1; overflow: hidden; white-space: nowrap; color: rgba(34,211,238,.25);
  letter-spacing: .3em; font-size: .8rem; user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.route-cmd .rc-chevrons span { display: inline-block; animation: chev 2.6s linear infinite; }
@keyframes chev { from { transform: translateX(-28%) } to { transform: translateX(0) } }
.route-cmd .rc-go {
  border: 1px solid var(--line); border-radius: 6px; padding: 5px 11px;
  font-size: .7rem; color: var(--muted); letter-spacing: .08em; white-space: nowrap;
  transition: color .25s, border-color .25s, box-shadow .25s;
}
.route-cmd:hover { border-color: rgba(34,211,238,.5); box-shadow: 0 0 34px rgba(34,211,238,.1); }
.route-cmd:hover .rc-chevrons { color: rgba(34,211,238,.6); }
.route-cmd:hover .rc-chevrons span { animation-duration: .9s; }
.route-cmd:hover .rc-go { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 14px rgba(34,211,238,.25); }
.route-cmd.running .rc-caret { animation: none; }

/* ── redaction ── */
.redact {
  background: #26314a; color: transparent; border-radius: 3px; padding: 0 6px;
  user-select: none; letter-spacing: .02em; cursor: help;
  transition: background .2s;
}
.redact:hover { background: #2f3d5c; }

/* photo layout grids */
.head-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 54px; align-items: center; }
.split-photo { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.split-photo .prose { max-width: 680px; }
.project-body .photo-frame { margin-top: 22px; }

/* teaser rows (home) */
.teaser {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  margin-bottom: 34px; flex-wrap: wrap;
}
.teaser h2 { margin-bottom: 0; }

/* footer contact */
.footer-cta {
  max-width: 1280px; margin: 90px auto 0; padding: 70px var(--gutter) 60px;
  border-top: 1px solid var(--line); position: relative; z-index: 1;
}
.footer-cta h2 { margin-bottom: 12px; }
.contact-line { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; max-width: 560px; }
.contact-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer {
  max-width: 1280px; margin: 40px auto 0; padding: 26px var(--gutter) 34px;
  border-top: 1px solid var(--line);
  display: flex; gap: 14px; align-items: center; justify-content: center;
  color: var(--muted); font-size: .76rem; position: relative; z-index: 1;
}

/* hero toggle */
.hero-toggle {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  background: var(--panel); color: var(--muted); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; font-size: .74rem; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.hero-toggle:hover { color: var(--accent); border-color: var(--accent); }
.hero-toggle b { color: var(--accent); }

/* ── responsive ── */
@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .8rem; }
  .nav .chip { display: none; }
  .about-grid, .cards, .members, .principles, .facts,
  .head-grid, .split-photo,
  body.hero-b .hero-b-wrap { grid-template-columns: 1fr; }
  .route-cmd .rc-chevrons { display: none; }
  .route-cmd { justify-content: space-between; }
  .photo-frame { max-width: 100%; }
  .project { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .thesis { grid-template-columns: 56px 1fr; }
  .page-head { padding-top: 130px; }
}

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