/* =============================================================
   FINGER GUN — ADVENTURE EDITION
   Firewatch warmth · Monkey Island charm · Campfire glow
   ============================================================= */

@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* ---------- Design Tokens ---------- */
:root {
  /* Sunset */
  --night: #08080f;
  --twilight: #1a1238;
  --dusk: #3a2060;
  --sunset-rose: #8a3450;
  --sunset-red: #c85030;
  --sunset-orange: #e08828;
  --amber: #d8a040;
  --campfire: #f0c050;
  --gold: #e8b830;

  /* Forest */
  --forest-deep: #0c140c;
  --forest-dark: #1a2f1a;
  --forest: #2d5a3d;
  --forest-light: #4a8060;
  --pine: #3d6b4f;

  /* Earth */
  --bark: #2a1e14;
  --leather: #6b4226;
  --earth: #8a6840;

  /* Mountains */
  --mountain-far: #4a2848;
  --mountain-near: #1e2a1e;

  /* Neutrals */
  --parchment: #f5edd0;
  --cream: #faf3e0;
  --warm-white: #fffaf0;
  --ink: #1c1410;
  --text: #2d2418;
  --text-muted: #7a6a58;
  --text-light: rgba(255, 250, 240, 0.85);

  /* Accent */
  --sky-blue: #4a90d9;

  /* Fonts */
  --font-display: "Lilita One", "Arial Black", cursive;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-warm-sm: 3px 3px 0 rgba(60, 40, 20, 0.15);
  --shadow-warm-md: 5px 5px 0 rgba(60, 40, 20, 0.12);
  --shadow-warm-lg: 8px 8px 0 rgba(60, 40, 20, 0.10);
  --shadow-glow: 0 4px 24px rgba(224, 136, 40, 0.18);

  /* Borders & Radius */
  --border: 2px solid rgba(42, 30, 20, 0.12);
  --border-strong: 3px solid var(--bark);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--sunset-orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--sunset-red);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================================
   HEADER & NAV
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.35s;
}

.site-header.scrolled {
  background: rgba(250, 243, 224, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30, 20, 10, 0.08);
  padding: 0.5rem 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--warm-white);
  transition: color 0.35s;
}

.site-header.scrolled .brand span {
  color: var(--ink);
}

/* Nav toggle (mobile hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: background 0.35s, transform 0.3s, opacity 0.3s;
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

/* Hamburger animation */
.site-header[data-open="true"] .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-open="true"] .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header[data-open="true"] .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s, opacity 0.25s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.site-header.scrolled .nav-links a {
  color: var(--text);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--sunset-orange);
  opacity: 1;
}

/* =============================================================
   HERO — ATMOSPHERIC SUNSET LANDSCAPE
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.hero-sky {
  position: absolute;
  inset: 0;
  background: url("background.png") center center / cover no-repeat;
  background-attachment: fixed;
}

/* Subtle dark overlay for text readability */
.hero-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 15, 0.35) 0%,
    rgba(8, 8, 15, 0.10) 40%,
    rgba(8, 8, 15, 0.05) 60%,
    rgba(8, 8, 15, 0.25) 100%
  );
  pointer-events: none;
}

/* Hide CSS landscape layers — replaced by background image */
.hero-mountains-far,
.hero-mountains-near,
.hero-trees {
  display: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14vh 1rem 34vh;
  max-width: 720px;
}

.hero-emblem {
  margin-bottom: 2rem;
}

.hero-emblem img {
  width: clamp(180px, 28vw, 300px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(232, 144, 48, 0.35));
  animation: warmGlow 5s ease-in-out infinite alternate;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--warm-white);
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(232, 144, 48, 0.15);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================================================
   MARQUEE STRIPS
   ============================================================= */
.marquee {
  overflow: hidden;
  border-top: 3px solid var(--bark);
  border-bottom: 3px solid var(--bark);
  padding: 0.55rem 0;
  background: var(--campfire);
  position: relative;
  z-index: 5;
}

.marquee-alt {
  background: var(--forest);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}

.marquee-alt .marquee-track {
  animation-direction: reverse;
  animation-duration: 28s;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 0.5rem;
  color: var(--bark);
}

.marquee-alt .marquee-track span {
  color: var(--cream);
}

/* =============================================================
   SECTIONS — SHARED
   ============================================================= */
.section {
  padding: 5rem 0;
}

.section-intro {
  max-width: 660px;
  margin-bottom: 3rem;
}

.section-intro p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sunset-orange);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ink);
  line-height: 1.2;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: url("stream.png") center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about .section-intro {
  background: rgba(255, 250, 240, 0.88);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.playbook-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.playbook-item {
  padding: 1.5rem;
  background: rgba(250, 243, 224, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.playbook-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-md);
}

.playbook-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.playbook-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  padding: 1.5rem;
  background: rgba(42, 30, 20, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--campfire);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 250, 240, 0.65);
  line-height: 1.35;
}

/* =============================================================
   PROJECTS
   ============================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  --card-accent: var(--sunset-orange);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--warm-white);
  border: var(--border);
  border-left: 5px solid var(--card-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-warm-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.project-card:nth-child(6n+1) { --card-accent: var(--sunset-orange); }
.project-card:nth-child(6n+2) { --card-accent: var(--forest); }
.project-card:nth-child(6n+3) { --card-accent: var(--amber); }
.project-card:nth-child(6n+4) { --card-accent: var(--sky-blue); }
.project-card:nth-child(6n+5) { --card-accent: var(--leather); }
.project-card:nth-child(6n+6) { --card-accent: var(--sunset-red); }

.project-card:hover {
  box-shadow: var(--shadow-warm-lg), var(--shadow-glow);
}

.tilt-card {
  will-change: transform;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}

.project-card.private {
  opacity: 0.8;
  border-left-color: var(--text-muted);
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.status-pill {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  border: 2px solid;
}

.status-pill.open {
  color: var(--forest);
  border-color: var(--forest);
  background: rgba(45, 90, 61, 0.08);
}

.status-pill.private-pill {
  color: var(--text-muted);
  border-color: var(--text-muted);
  background: rgba(122, 106, 88, 0.06);
}

.project-tags {
  display: flex;
  gap: 0.35rem;
}

.project-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(42, 30, 20, 0.05);
  padding: 0.12rem 0.45rem;
  border-radius: 12px;
}

.project-card h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.project-tagline {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sunset-orange);
  margin-bottom: 0.35rem;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.project-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--sunset-orange);
  transition: color 0.2s;
}

.project-card:hover .project-link {
  color: var(--sunset-red);
}

.project-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.project-link-secondary {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.project-link-secondary:hover {
  color: var(--sunset-orange);
}

/* =============================================================
   PROCESS / COLLAB
   ============================================================= */
.collab {
  background: url("trail.png") center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.collab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.collab > .container {
  position: relative;
  z-index: 1;
}

.collab .section-intro {
  background: rgba(255, 250, 240, 0.88);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.process-item {
  padding: 1.5rem;
  background: rgba(250, 243, 224, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  border: var(--border);
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-md);
}

.process-step {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sunset-orange);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.process-item p:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================================
   CTA
   ============================================================= */
.cta {
  padding: 4rem 0 5rem;
  background: url("climber.png") center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.cta > .container {
  position: relative;
  z-index: 1;
}

.cta-panel {
  background: rgba(42, 30, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-warm-lg);
}

.cta-panel .section-kicker {
  color: var(--campfire);
}

.cta-panel h2 {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.cta-panel > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cta-panel .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact-line {
  font-size: 0.88rem;
  color: rgba(255, 250, 240, 0.55);
  margin-bottom: 0.75rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--campfire);
  padding: 0.3rem 0.75rem;
  border: 2px solid rgba(240, 192, 80, 0.25);
  border-radius: 20px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.social-links a:hover {
  background: var(--campfire);
  color: var(--bark);
  border-color: var(--campfire);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.25s, border-color 0.25s;
  border: 2px solid transparent;
}

.button-primary {
  background: var(--sunset-orange);
  color: var(--warm-white);
  border-color: var(--sunset-orange);
  box-shadow: var(--shadow-warm-sm);
}

.button-primary:hover {
  background: var(--sunset-red);
  border-color: var(--sunset-red);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm-md);
}

.button-ghost {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255, 250, 240, 0.45);
}

.button-ghost:hover {
  background: rgba(255, 250, 240, 0.1);
  color: var(--warm-white);
  border-color: var(--warm-white);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--night);
  padding: 2rem 0;
  border-top: 3px solid rgba(42, 30, 20, 0.4);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer .brand span {
  color: rgba(255, 250, 240, 0.8);
}

.site-footer p {
  font-size: 0.82rem;
  color: rgba(255, 250, 240, 0.4);
}

.footer-shell > a:not(.brand) {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--campfire);
}

.footer-shell > a:not(.brand):hover {
  color: var(--sunset-orange);
}

/* =============================================================
   CLICK SPARKLE
   ============================================================= */
.click-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  font-size: 1.3rem;
  animation: sparkleUp 0.65s ease-out forwards;
  transform: translate(-50%, -50%);
  user-select: none;
}

/* =============================================================
   REVEAL ANIMATION
   ============================================================= */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* =============================================================
   KEYFRAMES
   ============================================================= */
@keyframes warmGlow {
  0% {
    filter: drop-shadow(0 0 30px rgba(232, 144, 48, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 55px rgba(232, 144, 48, 0.55));
  }
}

@keyframes twinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes sparkleUp {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -120%) scale(1.4) rotate(20deg);
  }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1020px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-content {
    padding: 12vh 1rem 30vh;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(250, 243, 224, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 3px solid rgba(42, 30, 20, 0.1);
    box-shadow: 0 8px 24px rgba(30, 20, 10, 0.1);
  }

  .site-header[data-open="true"] .nav-links {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(42, 30, 20, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text) !important;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: var(--sunset-orange) !important;
    opacity: 1;
  }

  /* Hero adjustments */
  .hero-content {
    padding: 16vh 1rem 28vh;
  }

  .hero-emblem img {
    width: clamp(150px, 40vw, 220px);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Section spacing */
  .section {
    padding: 3.5rem 0;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  /* Stats on mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA */
  .cta-panel {
    padding: 2.5rem 1.5rem;
  }

  /* Parallax disabled on mobile (unsupported on iOS) */
  .hero-sky,
  .about,
  .collab,
  .cta {
    background-attachment: scroll;
  }

  /* Footer */
  .footer-shell {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding: 18vh 1rem 26vh;
  }

  .hero-emblem img {
    width: 150px;
  }

  .hero .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero .hero-actions .button {
    text-align: center;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-item {
    padding: 1.2rem 0.8rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track span {
    font-size: 0.8rem;
  }

  .cta-panel .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-emblem img {
    filter: drop-shadow(0 0 40px rgba(232, 144, 48, 0.4));
  }

  .marquee-track {
    animation: none;
  }

  .hero-sky,
  .about,
  .collab,
  .cta {
    background-attachment: scroll;
  }
}
