/* ============================================
   pawelrojek.dev — Design Tokens
   Brand: void / graphite / ember / frost
   (shared design language with appliedai.dev)
   Aesthetic: engineering schematic, control room
   ============================================ */

:root {
  --color-void: #09090B;
  --color-graphite: #161618;
  --color-panel: #0D0D0F;
  --color-ember: #E8613C;
  --color-ember-deep: #C24B2C;
  --color-frost: #F0EFEB;
  --color-zinc: #85858E;
  --color-terminal: #34D399;

  --font-space: 'Space Grotesk', sans-serif;
  --font-instrument: 'Instrument Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);
  --hairline: rgba(255, 255, 255, 0.04);

  --radius: 4px;
  --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-void);
  color: var(--color-frost);
  font-family: var(--font-space);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

/* Blueprint dot grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(240, 239, 235, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

main, .site-nav, .footer {
  position: relative;
  z-index: 1;
}

::selection {
  background: var(--color-ember);
  color: var(--color-void);
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-void); }
::-webkit-scrollbar-thumb { background: var(--color-graphite); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-zinc); }


/* ============================================
   Keyframes
   ============================================ */

@keyframes systemPulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 25px) scale(1.06); }
}

@keyframes cursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  scroll-margin-top: 4.5rem;
}

/* Crosshair tick where section rule meets margin */
.section::before {
  content: '+';
  position: absolute;
  top: -0.85rem;
  left: max(1rem, calc((100vw - 72rem) / 2 - 0.5rem));
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(240, 239, 235, 0.22);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

/* Blueprint rails */
.rails {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.rails-inner {
  max-width: 72rem;
  height: 100%;
  margin: 0 auto;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}

@media (min-width: 1280px) {
  .rails { display: block; }
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
}


/* ============================================
   Typography
   ============================================ */

h1 {
  font-family: var(--font-space);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 em, h2 em {
  font-family: var(--font-instrument);
  font-style: italic;
  font-weight: 400;
  color: var(--color-ember);
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-space);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 40rem;
}

h3 {
  font-family: var(--font-space);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-zinc);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-label::after {
  content: '';
  width: 3rem;
  height: 1px;
  background: var(--border-hover);
}

.label-no {
  color: var(--color-ember);
}

.text-link {
  color: var(--color-frost);
  border-bottom: 1px solid var(--color-ember);
  transition: color 0.25s var(--easing-smooth), border-color 0.25s var(--easing-smooth);
}

.text-link:hover {
  color: var(--color-ember);
}


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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--easing-smooth), border-color 0.4s var(--easing-smooth);
}

.site-nav.scrolled {
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-brand span {
  color: var(--color-ember);
}

.nav-links {
  display: none;
  gap: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-zinc);
}

.nav-links a {
  transition: color 0.25s var(--easing-smooth);
}

.nav-links a:hover {
  color: var(--color-frost);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-zinc);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-terminal);
  animation: systemPulse 2.4s infinite;
  flex-shrink: 0;
}


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

.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: 11rem 0 8rem; }
}

.hero-orb {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 97, 60, 0.22), transparent 60%);
  filter: blur(40px);
  animation: floatOrb 14s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.hero-copy h1 {
  margin: 1.4rem 0 1.5rem;
  max-width: 36rem;
}

.hero-sub {
  color: var(--color-zinc);
  max-width: 32rem;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-zinc);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  background: rgba(13, 13, 15, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Staggered entrance */
.hero-stagger {
  opacity: 0;
  animation: riseIn 0.7s var(--easing-smooth) forwards;
}

.hero-copy .hero-stagger:nth-child(1) { animation-delay: 0.05s; }
h1.hero-stagger { animation-delay: 0.15s; }
.hero-sub.hero-stagger { animation-delay: 0.27s; }
.hero-actions.hero-stagger { animation-delay: 0.39s; }
.hero-terminal.hero-stagger { animation-delay: 0.5s; }


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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--easing-spring),
              background 0.25s var(--easing-smooth),
              border-color 0.25s var(--easing-smooth),
              color 0.25s var(--easing-smooth);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-ember);
  color: var(--color-void);
  font-weight: 500;
}

.btn-primary:hover { background: var(--color-ember-deep); }

.btn-ghost {
  border-color: var(--border-hover);
  color: var(--color-frost);
}

.btn-ghost:hover {
  border-color: var(--color-ember);
  color: var(--color-ember);
}


/* ============================================
   Terminal card
   ============================================ */

.hero-terminal {
  background: var(--color-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: var(--color-graphite);
  border-bottom: 1px solid var(--border-subtle);
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.t-red { background: #FF5F57; }
.t-amber { background: #FEBC2E; }
.t-green { background: #28C840; }

.terminal-title {
  margin-left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--color-zinc);
}

.terminal-body {
  padding: 1.2rem 1.2rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.9;
}

.t-prompt { color: var(--color-terminal); }

.t-out { color: var(--color-zinc); }

.t-line { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.t-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.1em;
  background: var(--color-frost);
  vertical-align: text-bottom;
  animation: cursorBlink 1.1s step-end infinite;
}


/* ============================================
   About
   ============================================ */

.about-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.about-copy {
  color: var(--color-zinc);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(13, 13, 15, 0.5);
}

@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat:nth-child(2n) { border-right: none; }

@media (min-width: 768px) {
  .stat { border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid var(--border-subtle); }
  .stat:last-child { border-right: none; }
}

.stat-num {
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: var(--color-ember);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--color-zinc);
  margin-top: 0.3rem;
  line-height: 1.5;
}


/* ============================================
   Timeline
   ============================================ */

.timeline {
  list-style: none;
  margin-top: 3rem;
  border-left: 1px solid var(--border-subtle);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.8rem 2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

/* node marker */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-void);
  border: 2px solid var(--color-zinc);
  transition: border-color 0.3s var(--easing-smooth), background 0.3s var(--easing-smooth);
}

.timeline-item:hover::before {
  border-color: var(--color-ember);
  background: var(--color-ember);
}

.tl-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.tl-dates {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-zinc);
  letter-spacing: 0.06em;
}

.tl-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ember);
  border: 1px solid rgba(232, 97, 60, 0.4);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}

.tl-co { color: var(--color-ember); font-weight: 500; }

.tl-body p {
  color: var(--color-zinc);
  font-size: 0.95rem;
  max-width: 38rem;
  margin-top: 0.4rem;
}


/* ============================================
   Project cards
   ============================================ */

.cards-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--color-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.3s var(--easing-smooth), transform 0.3s var(--easing-spring);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-zinc);
}

.card-status {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
}

.card-status-live {
  color: var(--color-terminal);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.card-status-wip {
  color: var(--color-ember);
  border: 1px solid rgba(232, 97, 60, 0.4);
}

.card p {
  color: var(--color-zinc);
  font-size: 0.92rem;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-ember);
  transition: color 0.25s var(--easing-smooth);
}

.card-link:hover { color: var(--color-frost); }

.card-link-muted { color: var(--color-zinc); }


/* ============================================
   Stack
   ============================================ */

.stack-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
}

.stack-col {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: rgba(13, 13, 15, 0.5);
}

.stack-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-ember);
  margin-bottom: 1rem;
  font-weight: 500;
}

.stack-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stack-col li {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--color-zinc);
  padding-left: 1.1rem;
  position: relative;
}

.stack-col li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: rgba(232, 97, 60, 0.6);
  font-size: 0.7rem;
  top: 0.18em;
}


/* ============================================
   Contact
   ============================================ */

.section-contact {
  padding-bottom: 8rem;
}

.contact-sub {
  color: var(--color-zinc);
  max-width: 30rem;
  margin: 1.2rem 0 2.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-coords {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 3.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(240, 239, 235, 0.3);
  letter-spacing: 0.08em;
}


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

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-zinc);
}

.footer-sep { color: rgba(240, 239, 235, 0.2); }

.footer-mono { color: rgba(240, 239, 235, 0.3); }


/* ============================================
   Subpages (formflow.html, citychat.html)
   ============================================ */

.page-hero {
  position: relative;
  padding: 9rem 0 4.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero { padding: 11rem 0 6rem; }
}

.page-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-ember);
  margin-bottom: 1.2rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.page-sub {
  color: var(--color-zinc);
  max-width: 34rem;
  font-size: 1.1rem;
  margin-top: 1.4rem;
}

.page-sub em {
  font-family: var(--font-instrument);
  font-style: italic;
  color: var(--color-frost);
}

.page-kicker.hero-stagger { animation-delay: 0.05s; }
.page-hero h1.hero-stagger { animation-delay: 0.15s; }
.page-sub.hero-stagger { animation-delay: 0.27s; }

.prose {
  color: var(--color-zinc);
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.prose-mono {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: rgba(240, 239, 235, 0.45);
}

.prose-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-zinc);
  margin-top: 1rem;
}

/* At-a-glance grid (FormFlow) */
.glance-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(13, 13, 15, 0.5);
}

@media (min-width: 768px) {
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
}

.glance-item {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.glance-item:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .glance-item:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .glance-item:nth-last-child(-n+2) { border-bottom: none; }
}

.glance-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-ember);
}

.glance-value {
  font-size: 0.95rem;
  color: var(--color-frost);
}

/* Pipeline cards (FormFlow) */
.pipeline-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .pipeline-grid { grid-template-columns: repeat(3, 1fr); }
}

.pipeline-note {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--color-zinc);
}

.v-ok { color: var(--color-terminal); }
.v-warn { color: #FEBC2E; }
.v-bad { color: var(--color-ember); }

/* Feature list (FormFlow) */
.feature-list {
  margin-top: 3rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(13, 13, 15, 0.5);
}

.feature-row {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border-subtle);
}

.feature-row:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 15rem 1fr;
    gap: 2rem;
    align-items: baseline;
  }
}

.feature-key {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-ember);
  letter-spacing: 0.04em;
}

.feature-desc {
  color: var(--color-zinc);
  font-size: 0.95rem;
}

/* Pillars (CityChat) */
.pillars-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: rgba(13, 13, 15, 0.5);
}

.pillar-icon {
  display: block;
  font-size: 1.3rem;
  color: var(--color-ember);
  margin-bottom: 0.7rem;
}

.pillar p {
  color: var(--color-zinc);
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

/* Phone gallery (CityChat) */
.phones-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .phones-row { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .phones-row { grid-template-columns: repeat(5, 1fr); }
}

.phone-shot {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.phone-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s var(--easing-spring), border-color 0.3s var(--easing-smooth);
}

.phone-shot:hover img {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.phone-shot figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-zinc);
  text-align: center;
}


/* ============================================
   Scroll reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--easing-smooth), transform 0.7s var(--easing-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-stagger {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .hero-orb, .status-dot, .t-cursor { animation: none; }
}
