/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ============================================
   DESIGN TOKENS (fallback for standalone use)
   ============================================ */
:root {
  --bg-base:        #0B0F14;
  --bg-surface:     #101826;
  --bg-raised:      #162033;

  --brand-red:      #c0392b;
  --brand-red-lite: #e74c3c;

  --gold:           #c9952a;
  --gold-lite:      #f0b84a;
  --gold-dim:       rgba(201,149,42,0.15);
  --gold-glow:      rgba(240,184,74,0.3);

  --cyan:           #00D9FF;
  --cyan-dim:       rgba(0,217,255,0.12);
  --cyan-glow:      rgba(0,217,255,0.25);

  --text-primary:   #E6EDF3;
  --text-secondary: #9DA7B3;
  --text-muted:     #6B7684;
  --border:         rgba(255,255,255,0.07);
  --border-gold:    rgba(201,149,42,0.25);

  --font-display:   'Inter', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --ease-smooth:    cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-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: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================
   AMBIENT LAYERS
   ============================================ */
#dust-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.5;
}
.grid-drift {
  position: fixed; inset: -100px; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,149,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 35s linear infinite; opacity: 0.5;
}
@keyframes gridDrift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(60px,60px); }
}
.gradient-drift {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,149,42,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(0,217,255,0.03) 0%, transparent 60%);
  animation: gradientDrift 30s ease-in-out infinite alternate;
}
@keyframes gradientDrift {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(2%,3%); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 12px var(--gold-glow); }
  50%      { box-shadow: 0 0 24px var(--gold-glow), 0 0 48px rgba(201,149,42,0.15); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes characterFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes haloBreath {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.12); }
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content { position: relative; z-index: 10; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 5.5rem 0; }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth); }
.reveal-right { opacity: 0; transform: translateX(24px);  transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.section-eyebrow {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); }
.section-headline {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section-sub { color: var(--text-secondary); font-size: 1rem; max-width: 520px; line-height: 1.7; }
.section-header { margin-bottom: 3.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 100%); color: var(--bg-base);
  padding: 1rem 1.8rem; border-radius: 14px;
  min-height: 54px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.98rem;
  border: 1px solid rgba(240,184,74,0.55); cursor: pointer; transition: all 0.25s var(--ease-smooth);
  animation: glowPulse 3.2s ease-in-out infinite;
  box-shadow: 0 18px 42px rgba(201,149,42,0.24), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-3px); box-shadow: 0 24px 54px rgba(201,149,42,0.32), 0 0 28px var(--gold-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  justify-content: center;
  background: rgba(255,255,255,0.03); color: var(--text-primary);
  padding: 1rem 1.6rem; border-radius: 14px;
  min-height: 54px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
  border: 1px solid rgba(0,217,255,0.3); cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}
.btn-secondary:hover { background: rgba(0,217,255,0.12); border-color: var(--cyan); transform: translateY(-3px); box-shadow: 0 0 20px var(--cyan-glow); }
.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(3px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem; display: flex; align-items: center;
  justify-content: space-between; transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled { background: rgba(11,15,20,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.nav-logo-fallback { display: none; align-items: center; gap: 0.75rem; }
.nav-logo-text {
  color: var(--brand-red);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: color 0.2s ease; position: relative; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--gold-lite); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.2s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: transparent; border: 1px solid var(--border-gold); color: var(--gold-lite); padding: 0.5rem 1.25rem; border-radius: 8px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.nav-cta:hover { background: var(--gold-dim); box-shadow: 0 0 16px var(--gold-glow); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; }

/* ============================================
   SCENE 1 — MAKER HERO
   ============================================ */
.maker-hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; overflow: hidden;
}
.maker-hero-bg {
  position: absolute; inset: 0;
  background: url('Images/problem-scene-hero.jpg') center 30% / cover no-repeat;
  filter: blur(2px) brightness(0.2); transform: scale(1.05); z-index: 0;
}
.maker-hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, transparent 20%, rgba(11,15,20,0.5) 100%),
    linear-gradient(to bottom, rgba(11,15,20,0.4) 0%, transparent 25%, transparent 70%, rgba(11,15,20,0.95) 100%);
  z-index: 1;
}
.maker-hero-content {
  position: relative; z-index: 10; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  padding-top: 6rem; display: grid;
  grid-template-columns: 1fr 1fr; align-items: center;
  gap: 4rem; min-height: 80vh;
}
.maker-hero-text { }
.maker-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--gold-lite); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.3s forwards;
}
.maker-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.maker-headline {
  font-family: var(--font-display); font-size: clamp(2.6rem,4.5vw,3.8rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.25rem;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.5s forwards;
}
.maker-headline .dim  { color: var(--text-secondary); }
.maker-headline .gold { color: var(--gold-lite); }
.maker-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 2rem; max-width: 440px;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.7s forwards;
}
.maker-meta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.9s forwards;
}
.maker-meta-tag {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--text-muted); letter-spacing: 0.06em;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 0.3rem 0.75rem; transition: all 0.2s ease;
}
.maker-meta-tag:hover { border-color: var(--border-gold); color: var(--gold); }

/* Character */
.maker-hero-character {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: characterFloat 5s ease-in-out 1.5s infinite;
}
.maker-halo {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,149,42,0.14) 0%, transparent 70%);
  border-radius: 50%; animation: haloBreath 5s ease-in-out infinite;
}
.maker-char-img {
  position: relative; z-index: 2; width: 450px; max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11,15,20,0.45);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
  opacity: 0;
  animation: makerEnter 0.8s var(--ease-smooth) 0.6s forwards;
  transform: translateY(0);
}
@keyframes makerEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ============================================
   SCENE 2 — MESSY → PLAYFUL → PRODUCTS
   ============================================ */
.process-section { background: var(--bg-surface); border-top: 1px solid var(--border); }
.process-flow {
  display: flex; align-items: stretch;
  gap: 0; max-width: 900px; margin: 0 auto;
}
.process-step {
  flex: 1; padding: 2.5rem 2rem; text-align: center;
  position: relative; background: var(--bg-raised);
  border: 1px solid var(--border); border-radius: 0;
  transition: all 0.3s var(--ease-smooth);
}
.process-step:first-child { border-radius: 14px 0 0 14px; }
.process-step:last-child  { border-radius: 0 14px 14px 0; }
.process-step:hover { background: var(--bg-raised); border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 20px var(--gold-glow); z-index: 2; }
.process-icon,
.philosophy-card-icon,
.human-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.process-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--gold-lite);
}
.process-icon svg,
.philosophy-card-icon svg,
.human-fact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.process-icon-problem {
  color: var(--brand-red-lite);
  background: rgba(231,76,60,0.12);
  border-color: rgba(231,76,60,0.22);
}
.process-icon-experiment {
  color: var(--cyan);
  background: var(--cyan-dim);
  border-color: rgba(0,217,255,0.2);
}
.process-icon-playful {
  color: var(--gold-lite);
  background: var(--gold-dim);
  border-color: rgba(240,184,74,0.22);
}
.process-icon-product {
  color: #9fe870;
  background: rgba(159,232,112,0.12);
  border-color: rgba(159,232,112,0.22);
}
.process-step:hover .process-icon { animation: iconBounce 0.5s var(--ease-spring); }
@keyframes iconBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}
.process-label {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 800; margin-bottom: 0.5rem;
}
.process-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; }
.process-connector {
  display: flex; align-items: center; padding: 0 0.25rem; z-index: 3;
  flex-shrink: 0;
}
.process-connector-inner {
  width: 32px; height: 32px; background: var(--bg-base);
  border: 1px solid var(--border-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.15); }
}

/* ============================================
   SCENE 3 — PHILOSOPHY CARDS
   ============================================ */
.philosophy-section { background: var(--bg-base); }
.philosophy-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.philosophy-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; text-align: center;
  transition: all 0.3s var(--ease-smooth); position: relative; overflow: hidden;
}
.philosophy-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.philosophy-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 24px var(--gold-glow); }
.philosophy-card:hover::before { opacity: 1; }
.philosophy-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--gold-lite);
}
.philosophy-card-icon-fast {
  color: var(--gold-lite);
  background: var(--gold-dim);
}
.philosophy-card-icon-playful {
  color: var(--cyan);
  background: var(--cyan-dim);
}
.philosophy-card-icon-solve {
  color: var(--brand-red-lite);
  background: rgba(231,76,60,0.12);
}
.philosophy-card-icon-iterate {
  color: #9fe870;
  background: rgba(159,232,112,0.12);
}
.philosophy-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.philosophy-card-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; position: relative; z-index: 1; }
.philosophy-card:hover .philosophy-card-icon { animation: iconBounce 0.5s var(--ease-spring); }

/* ============================================
   SCENE 4 — ORIGIN TIMELINE
   ============================================ */
.timeline-section {
  background: var(--bg-surface); border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
/* Vertical spine */
.timeline-spine {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--border-gold) 10%, var(--border-gold) 90%, transparent);
  transform: translateX(-50%);
}
/* Progress fill - draws down on scroll */
.timeline-spine-fill {
  position: absolute; left: 50%; top: 0;
  width: 1px; background: var(--gold);
  transform: translateX(-50%); height: 0;
  transition: height 0.1s linear;
  box-shadow: 0 0 6px var(--gold-glow);
}

.timeline-items { position: relative; max-width: 1000px; margin: 0 auto; }

.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; margin-bottom: 4rem; align-items: start;
}
/* Even items: image left, text right */
.timeline-item:nth-child(odd)  .timeline-img-col  { order: 1; }
.timeline-item:nth-child(odd)  .timeline-node-col { order: 2; }
.timeline-item:nth-child(odd)  .timeline-text-col { order: 3; }
/* Odd items: text left, image right */
.timeline-item:nth-child(even) .timeline-text-col { order: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-node-col { order: 2; }
.timeline-item:nth-child(even) .timeline-img-col  { order: 3; }

.timeline-node-col {
  display: flex; flex-direction: column; align-items: center; padding-top: 0.5rem;
}
.timeline-node {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-raised); border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.62rem; color: var(--gold);
  letter-spacing: 0.04em; font-weight: 600; flex-shrink: 0;
  transition: all 0.3s ease; position: relative; z-index: 2;
}
.timeline-item.visible .timeline-node {
  background: var(--gold-dim); border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.timeline-text-col { padding: 0 2rem; }
.timeline-year {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 800; margin-bottom: 0.6rem; line-height: 1.2;
}
.timeline-body {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75;
}
.timeline-body .highlight { color: var(--gold-lite); font-weight: 600; }

.timeline-img-col { padding: 0 2rem; }
.timeline-img {
  width: 100%; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.timeline-img:hover { border-color: var(--border-gold); transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px var(--gold-glow); }
.timeline-img img { width: 100%; display: block; object-fit: cover; max-height: 220px; }

/* Dark moment node — different colour */
.timeline-item.dark-moment .timeline-node { border-color: rgba(192,57,43,0.5); color: var(--brand-red-lite); }
.timeline-item.dark-moment.visible .timeline-node { background: rgba(192,57,43,0.1); border-color: var(--brand-red-lite); box-shadow: 0 0 16px rgba(192,57,43,0.3); }
.timeline-item.dark-moment .timeline-year { color: var(--brand-red-lite); }

/* Breakthrough node */
.timeline-item.breakthrough .timeline-node { border-color: var(--cyan); color: var(--cyan); }
.timeline-item.breakthrough.visible .timeline-node { background: var(--cyan-dim); border-color: var(--cyan); box-shadow: 0 0 16px var(--cyan-glow); }
.timeline-item.breakthrough .timeline-year { color: var(--cyan); }

/* ============================================
   SCENE 5 — HUMAN BEHIND IT
   ============================================ */
.human-section { background: var(--bg-base); border-top: 1px solid var(--border); }
.human-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.human-character { position: relative; display: flex; justify-content: center; }
.human-char-halo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,149,42,0.1) 0%, transparent 70%);
  border-radius: 50%; animation: haloBreath 6s ease-in-out infinite;
}
.human-char-img {
  position: relative; z-index: 2; width: 380px; max-width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7));
  animation: characterFloat 6s ease-in-out infinite; animation-delay: -2s;
}
.human-text { }
.human-quote {
  font-size: 1.35rem; font-weight: 600; line-height: 1.55;
  color: var(--text-primary); letter-spacing: -0.01em;
  margin-bottom: 1.75rem; position: relative; padding-left: 1.5rem;
}
.human-quote::before {
  content: ''; position: absolute; left: 0; top: 0.2em;
  width: 3px; height: calc(100% - 0.4em);
  background: linear-gradient(to bottom, var(--gold), var(--brand-red));
  border-radius: 2px;
}
.human-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.75rem;
}
.human-fact {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.25rem;
  transition: all 0.2s ease;
}
.human-fact:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.human-fact-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.6rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
}
.human-fact-icon-legal {
  color: var(--gold-lite);
  background: var(--gold-dim);
}
.human-fact-icon-location {
  color: var(--cyan);
  background: var(--cyan-dim);
}
.human-fact-icon-time {
  color: var(--brand-red-lite);
  background: rgba(231,76,60,0.12);
}
.human-fact-icon-goal {
  color: #9fe870;
  background: rgba(159,232,112,0.12);
}
.human-fact-label { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.human-fact-value { font-size: 0.88rem; color: var(--text-primary); font-weight: 500; }
.human-body { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }
.human-body p + p { margin-top: 1rem; }

/* ============================================
   SCENE 6 — CONNECT CTA
   ============================================ */
.connect-section {
  background: var(--bg-surface); border-top: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.connect-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,149,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.connect-inner { position: relative; z-index: 2; }
.connect-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--gold-lite); letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border-gold); border-radius: 100px;
  padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  animation: glowPulse 5s ease-in-out infinite;
}
.connect-actions {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.connect-channels {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.connect-channel {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.06em; display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 1rem;
  transition: all 0.2s ease; cursor: pointer;
}
.connect-channel:hover { border-color: var(--border-gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-base); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo-link { display: inline-block; margin-bottom: 1rem; }
.footer-logo-img { height: 60px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); }
.footer-logo-fallback { }
.footer-brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--brand-red); margin-bottom: 0.75rem; }
.footer-brand-tagline { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-brand-tagline .arrow { color: var(--brand-red); }
.footer-brand-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-lite); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-badge { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.footer-bottom-badge::before { content: '◆'; color: var(--gold); font-size: 0.4rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: repeat(2,1fr); }
  .human-layout { grid-template-columns: 1fr; }
  .human-character { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .maker-hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; gap: 2rem; min-height: 65vh; }
  .maker-hero-character { display: none; }
  .process-flow { flex-direction: column; max-width: 400px; }
  .process-step:first-child { border-radius: 14px 14px 0 0; }
  .process-step:last-child  { border-radius: 0 0 14px 14px; }
  .process-connector { transform: rotate(90deg); }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  /* Timeline collapses to single column */
  .timeline-spine, .timeline-spine-fill { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: 0.5rem; }
  .timeline-item:nth-child(odd)  .timeline-img-col,
  .timeline-item:nth-child(even) .timeline-img-col  { order: 4; grid-column: 2; }
  .timeline-item:nth-child(odd)  .timeline-node-col,
  .timeline-item:nth-child(even) .timeline-node-col { order: 1; grid-row: 1; }
  .timeline-item:nth-child(odd)  .timeline-text-col,
  .timeline-item:nth-child(even) .timeline-text-col { order: 2; grid-column: 2; text-align: left; }
  .timeline-img-col { padding: 0 0 0 0.5rem; }
  .timeline-text-col { padding: 0 0 0 0.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-padding { padding: 4rem 0; }
}
