/* ═══════════════════════════════════════════════
   WHYJOINJAMISON.DAVIDTPHUNG.COM
   Cinematic Campaign Site — 1000X Build
   David T. Phung · Design Manager · Jamison Properties LP
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ink:     #060A10;
  --navy:    #0A1628;
  --mid:     #0F2040;
  --steel:   #1A3358;
  --gold:    #C8922A;
  --gold2:   #E0AA44;
  --amber:   #F2C96E;
  --cream:   #F5F0E8;
  --white:   #FDFAF5;
  --mist:    rgba(200,146,42,0.08);
  --stroke:  rgba(200,146,42,0.18);
  --stroke2: rgba(253,250,245,0.08);
  --g04:     rgba(200,146,42,.04);
  --g10:     rgba(200,146,42,.10);
  --g20:     rgba(200,146,42,.20);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Barlow', 'Barlow Condensed', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ── CUSTOM CURSOR ── */
#cur, #curR {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
}
#cur {
  width: 6px; height: 6px;
  background: var(--gold);
  mix-blend-mode: screen;
}
#curR {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,146,42,0.5);
  opacity: .45;
  transition: width .28s cubic-bezier(.25,.1,.25,1), height .28s cubic-bezier(.25,.1,.25,1), opacity .2s;
  mix-blend-mode: screen;
}
body:has(a:hover) #curR,
body:has(button:hover) #curR,
body:has(.btn-primary:hover) #curR,
body:has(.btn-ghost:hover) #curR {
  width: 56px; height: 56px; opacity: .2;
}

/* ── SCAN LINE ── */
.scan-line {
  position: fixed;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,146,42,0.1) 30%, rgba(200,146,42,0.15) 50%, rgba(200,146,42,0.1) 70%, transparent 95%);
  animation: scanMove 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 9997;
}
@keyframes scanMove {
  0%   { top: -1%; opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 1; }
  100% { top: 101%; opacity: 0; }
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,10,16,.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--g20);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(6,10,16,.97);
  box-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-seal {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; color: var(--gold);
  letter-spacing: .06em;
  flex-shrink: 0;
}
.nav-name {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(253,250,245,.5);
}
.nav-name strong {
  display: block; color: var(--white);
  font-weight: 500; font-size: 11px;
}
nav ul {
  display: flex; gap: 34px; list-style: none;
}
nav a {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(253,250,245,.4);
  text-decoration: none;
  transition: color .2s;
}
nav a:hover { color: var(--gold2); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform .3s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 56px 110px;
  overflow: hidden;
}

/* Blueprint grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 72px 72px; }
}

/* Radial gold glow */
.hero-atm {
  position: absolute;
  width: 1100px; height: 1100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.07) 0%, transparent 65%);
  top: 50%; left: 45%; transform: translate(-50%,-50%);
  animation: atmPulse 8s ease-in-out infinite;
}
@keyframes atmPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(-50%,-50%) scale(1.12); }
}

/* Vertical accent line */
.hero::before {
  content: ''; position: absolute; top: 0; right: 260px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  opacity: .1;
}

/* Giant background text */
.hero-bg-text {
  position: absolute; right: -40px; bottom: -60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32vw; line-height: 1;
  color: rgba(200,146,42,.025);
  letter-spacing: -.03em;
  pointer-events: none; user-select: none;
}

.hero-content { position: relative; z-index: 2; max-width: 1100px; }

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 30px;
  opacity: 0; animation: riseIn .7s ease .3s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 48px; height: 1px;
  background: var(--gold); display: block;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 168px);
  line-height: .9; letter-spacing: .01em;
  color: var(--white);
  opacity: 0; animation: riseIn .9s ease .5s forwards;
}
.hero-h1 .gold { color: var(--gold2); }
.hero-h1 .stroke {
  -webkit-text-stroke: 1.5px rgba(253,250,245,.22);
  color: transparent;
}

.hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(16px, 1.9vw, 22px);
  font-style: italic;
  color: rgba(253,250,245,.6);
  max-width: 600px; line-height: 1.65;
  margin: 32px 0 50px;
  opacity: 0; animation: riseIn .9s ease .72s forwards;
}

.hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0; animation: riseIn .9s ease .9s forwards;
}
.chip {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid var(--g20);
  color: rgba(229,184,74,.8);
  background: var(--g04);
  transition: border-color .2s, background .2s;
}
.chip:hover {
  border-color: var(--gold);
  background: var(--g10);
}

.hero-btns {
  display: flex; gap: 18px;
  opacity: 0; animation: riseIn .9s ease 1.08s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--gold); color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background .2s, transform .2s;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  border: 1px solid var(--g20);
  color: rgba(253,250,245,.55);
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: grid; grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--g20);
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hstat {
  padding: 26px 40px;
  border-right: 1px solid var(--g20);
  background: rgba(6,10,16,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hstat:last-child { border-right: none; }
.hstat-v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; color: var(--gold2);
  line-height: 1; margin-bottom: 5px;
}
.hstat-l {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253,250,245,.3);
}

/* Scroll hint */
.scroll-hint {
  position: absolute; right: 36px; bottom: 140px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(253,250,245,.2);
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.scroll-hint::after {
  content: '';
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(200,146,42,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%     { opacity: 1; transform: scaleY(1.3); }
}

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.t-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: .18em;
  color: var(--ink);
  padding: 0 48px;
  display: flex; align-items: center; gap: 24px;
}
.t-item::before {
  content: '\2605'; font-size: 10px; opacity: .4;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   SHARED SECTION PRIMITIVES
═══════════════════════════════════ */
.section { position: relative; z-index: 1; }
.pad { padding: 110px 56px; }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold); display: block; flex-shrink: 0;
}

.sh {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .92; color: var(--white);
  margin-bottom: 60px; letter-spacing: .01em;
}
.sh .gold { color: var(--gold2); }
.sh .stroke {
  -webkit-text-stroke: 1px rgba(253,250,245,.18);
  color: transparent;
}

/* ═══════════════════════════════════
   JOB MATCH
═══════════════════════════════════ */
.match-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--g20);
  border: 1px solid var(--g20);
}
.mc {
  background: var(--ink);
  padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.mc:hover { background: var(--navy); }
.mc::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--gold);
  transition: height .45s ease;
}
.mc:hover::before { height: 100%; }
.mc-n {
  position: absolute; bottom: 14px; right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px; color: rgba(200,146,42,.05);
  line-height: 1; pointer-events: none;
}
.mc-req {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid var(--g20);
  display: inline-block;
}
.mc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: .02em;
  color: var(--white); margin-bottom: 14px;
  line-height: 1;
}
.mc-proof {
  font-size: 14px; color: rgba(253,250,245,.58);
  line-height: 1.75; margin-bottom: 18px;
}
.mc-cite {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold); opacity: .65;
}

/* ═══════════════════════════════════
   DECLARATION + POSTER
═══════════════════════════════════ */
.declaration {
  background: var(--navy);
  border-top: 1px solid var(--g20);
  border-bottom: 1px solid var(--g20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.decl-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(16px,1.7vw,20px);
  font-style: italic;
  color: rgba(253,250,245,.68);
  line-height: 1.8;
  max-width: 500px;
  border-left: 3px solid var(--gold);
  padding-left: 32px;
  margin-bottom: 48px;
}
.decl-list { list-style: none; }
.decl-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,146,42,.08);
  font-size: 15px; color: rgba(253,250,245,.6);
  line-height: 1.5;
}
.decl-list li::before {
  content: '\2192'; color: var(--gold);
  font-size: 12px; flex-shrink: 0;
}
.decl-list strong { color: var(--white); font-weight: 600; }

.poster {
  background: linear-gradient(155deg, var(--steel), var(--mid));
  border: 1px solid var(--g20);
  padding: 60px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.poster::before {
  content: 'DTP'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px; color: rgba(200,146,42,.035);
  letter-spacing: -.04em; pointer-events: none;
}
.poster-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.poster-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 76px; line-height: .92;
  color: var(--white); margin-bottom: 8px;
}
.poster-role {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px; font-style: italic;
  color: var(--gold2); margin-bottom: 36px;
}
.poster-div {
  width: 56px; height: 2px;
  background: var(--gold);
  margin: 0 auto 36px;
}
.poster-cred {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253,250,245,.35);
  line-height: 2.8;
}
.poster-cred span { color: var(--gold2); }
.poster-seal {
  margin: 36px auto 0;
  width: 82px; height: 82px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: .12em;
  color: var(--gold); text-align: center;
  line-height: 1.4;
  position: relative;
}
.poster-seal::before {
  content: ''; position: absolute; inset: 5px;
  border: 1px dashed rgba(200,146,42,.25);
  border-radius: 50%;
  animation: sealSpin 20s linear infinite;
}
@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════
   PILLARS
═══════════════════════════════════ */
.pillars-bg {
  background: var(--navy);
  border-top: 1px solid var(--g20);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--g20);
  border: 1px solid var(--g20);
}
.pil {
  background: var(--navy);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.pil:hover { background: var(--mid); }
.pil::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.pil:hover::after { transform: scaleX(1); }
.pil-n {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 86px; color: rgba(200,146,42,.05);
  line-height: 1; pointer-events: none;
}
.pil-icon { font-size: 22px; margin-bottom: 18px; }
.pil-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: .02em;
  color: var(--white); margin-bottom: 14px;
  line-height: 1;
}
.pil-body {
  font-size: 14px; color: rgba(253,250,245,.55);
  line-height: 1.78;
}
.pil-proof {
  margin-top: 18px;
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold); opacity: .65;
}

/* ═══════════════════════════════════
   WORK SAMPLES
═══════════════════════════════════ */
.work-bg {
  background: var(--ink);
  border-top: 1px solid var(--g20);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--g20);
  border: 1px solid var(--g20);
}
.wc {
  background: var(--ink);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.wc:hover { background: var(--navy); }
.wc.featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--mid);
}
.wc::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s ease;
}
.wc:hover::before, .wc.featured::before { transform: scaleY(1); }

.w-idx {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.w-cat {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--g20);
  color: rgba(253,250,245,.35);
  margin-bottom: 18px;
}
.w-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: .02em;
  color: var(--white); line-height: 1;
  margin-bottom: 18px;
}
.w-org {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,250,245,.3);
  margin-bottom: 18px;
}
.w-desc {
  font-size: 14px; color: rgba(253,250,245,.58);
  line-height: 1.78; margin-bottom: 28px;
}
.w-metrics {
  display: flex; gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--g20);
}
.wm-v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: var(--gold2);
  line-height: 1; margin-bottom: 4px;
}
.wm-l {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253,250,245,.28);
}

.wfr {
  border-left: 1px solid var(--g20);
  padding-left: 60px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.wfr-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(200,146,42,.12);
  border: 1px solid var(--g20);
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold2); margin-bottom: 26px;
}
.wfr-hd {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .14em;
  color: rgba(253,250,245,.3);
  margin-bottom: 8px; margin-top: 22px;
}
.wfr-hd:first-of-type { margin-top: 0; }
.wfr-body {
  font-size: 13px; color: rgba(253,250,245,.58);
  line-height: 1.78;
}

/* ═══════════════════════════════════
   EXPERIENCE
═══════════════════════════════════ */
.exp-sec {
  background: var(--navy);
  border-top: 1px solid var(--g20);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
}
.exp-body {
  font-size: 15px; color: rgba(253,250,245,.5);
  line-height: 1.85; margin-top: 24px;
}
.gruen-box {
  margin-top: 40px; padding: 28px;
  border: 1px solid var(--g20);
  background: rgba(200,146,42,.05);
}
.gruen-hd {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.gruen-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 13.5px; font-style: italic;
  color: rgba(253,250,245,.6); line-height: 1.72;
}
.timeline {
  position: relative; padding-left: 44px;
}
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,146,42,.08));
}
.tl {
  position: relative; margin-bottom: 56px;
  opacity: 0; transform: translateX(-16px);
  transition: opacity .55s ease, transform .55s ease;
}
.tl.vis { opacity: 1; transform: translateX(0); }
.tl::before {
  content: ''; position: absolute;
  left: -48px; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--navy);
}
.tl.hot::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,146,42,.2);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(200,146,42,.2); }
  50%     { box-shadow: 0 0 0 8px rgba(200,146,42,.08); }
}
.tl-p {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.tl-r {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: .02em;
  color: var(--white); margin-bottom: 2px;
}
.tl-o {
  font-size: 13px; color: rgba(253,250,245,.38);
  margin-bottom: 10px; font-style: italic;
}
.tl-d {
  font-size: 13.5px; color: rgba(253,250,245,.58);
  line-height: 1.75; max-width: 580px;
}
.tl-pill {
  display: inline-block; margin-top: 10px;
  padding: 4px 12px;
  background: rgba(200,146,42,.1);
  border: 1px solid var(--g20);
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
}

/* ═══════════════════════════════════
   1055 FEATURE
═══════════════════════════════════ */
.feature-sec {
  border-top: 1px solid var(--g20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.feat-l {
  padding: 90px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--g20);
  background: var(--mid);
}
.feat-r {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--ink));
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 60px;
}
.feat-bg {
  position: absolute; bottom: -30px; right: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px; color: rgba(200,146,42,.04);
  line-height: 1; pointer-events: none;
}
.feat-body {
  font-size: 16px; color: rgba(253,250,245,.62);
  line-height: 1.85; max-width: 480px; margin-bottom: 44px;
}
.feat-q {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px; font-style: italic;
  color: rgba(253,250,245,.82);
  line-height: 1.65;
  padding: 28px 28px 28px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(200,146,42,.05);
}
.feat-stats {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--g20);
}
.fs {
  background: rgba(10,22,40,.8);
  padding: 30px 22px; text-align: center;
}
.fs-v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--gold2);
  line-height: 1; margin-bottom: 5px;
}
.fs-l {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,250,245,.28);
}
.feat-qb {
  position: relative; z-index: 1;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px; font-style: italic;
  color: rgba(253,250,245,.65);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  line-height: 1.62;
}

/* ═══════════════════════════════════
   PANEL
═══════════════════════════════════ */
.panel-bg {
  background: var(--ink);
  border-top: 1px solid var(--g20);
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--g20);
  border: 1px solid var(--g20);
}
.pcard {
  background: var(--ink);
  padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.pcard:hover { background: var(--navy); }
.pcard::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.pcard:hover::after { transform: scaleX(1); }
.pc-role {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.pc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: .02em;
  color: var(--white); margin-bottom: 18px;
  line-height: 1;
}
.pc-msg {
  font-size: 12.5px; color: rgba(253,250,245,.52);
  line-height: 1.78; font-style: italic;
  margin-bottom: 18px;
}
.pc-focus {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold); opacity: .62;
  line-height: 2;
}

/* ═══════════════════════════════════
   CTA
═══════════════════════════════════ */
.cta-sec {
  background: var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  border-top: 4px solid rgba(8,12,18,.15);
}
.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 116px);
  line-height: .88; color: var(--ink);
}
.cta-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px; font-style: italic;
  color: rgba(8,12,18,.55);
  margin-top: 22px; line-height: 1.62;
}
.cta-row {
  display: flex; align-items: baseline;
  gap: 20px; padding: 14px 0;
  border-bottom: 1px solid rgba(8,12,18,.1);
}
.cta-k {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(8,12,18,.38);
  min-width: 110px;
}
.cta-v {
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: var(--ink); letter-spacing: .04em;
}
.cta-v.big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: .02em;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  padding: 26px 56px;
  background: var(--ink);
  border-top: 1px solid var(--g20);
  display: flex; justify-content: space-between;
  align-items: center;
}
.f-l {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,250,245,.18);
}
.f-r {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .68s ease, transform .68s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

.sc {
  opacity: 0; transform: translateY(22px);
  transition: opacity .52s ease, transform .52s ease;
}
.sc.vis { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   RESPONSIVE — TABLET (< 1100px)
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .pad { padding: 80px 36px; }
  nav { padding: 0 36px; }

  .hero { padding: 120px 36px 100px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .hstat:nth-child(4), .hstat:nth-child(5) { display: none; }

  .match-grid { grid-template-columns: 1fr; }
  .declaration { grid-template-columns: 1fr; gap: 56px; }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .wc.featured { grid-template-columns: 1fr; }
  .wfr { border-left: none; padding-left: 0; padding-top: 36px; border-top: 1px solid var(--g20); margin-top: 12px; }
  .exp-sec { grid-template-columns: 1fr; gap: 56px; }
  .feature-sec { grid-template-columns: 1fr; }
  .feat-l { border-right: none; border-bottom: 1px solid var(--g20); }
  .panel-grid { grid-template-columns: repeat(2,1fr); }
  .cta-sec { grid-template-columns: 1fr; gap: 44px; }
  .scroll-hint { display: none; }
  .hero::before { display: none; }
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
═══════════════════════════════════ */
@media (max-width: 768px) {
  body { cursor: auto; }
  #cur, #curR { display: none; }
  .scan-line { display: none; }

  .pad { padding: 64px 24px; }
  nav { padding: 0 20px; height: 60px; }
  nav ul { display: none; }
  nav ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(6,10,16,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--g20);
  }
  .nav-toggle { display: flex; }
  .nav-cta { text-align: center; }

  .hero {
    padding: 100px 24px 80px;
    min-height: auto;
  }
  .hero-h1 { font-size: clamp(56px, 16vw, 100px); }
  .hero-sub { font-size: 15px; margin: 24px 0 36px; }
  .hero-chips { gap: 8px; margin-bottom: 36px; }
  .chip { font-size: 8px; padding: 5px 10px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; padding: 14px 28px; }
  .hero-stats {
    position: relative;
    grid-template-columns: repeat(3,1fr);
  }
  .hstat { padding: 18px 16px; }
  .hstat-v { font-size: 26px; }
  .hstat:nth-child(4), .hstat:nth-child(5) { display: none; }
  .hero-bg-text { font-size: 50vw; }
  .hero-atm { width: 600px; height: 600px; }

  .sh { font-size: clamp(40px, 10vw, 64px); margin-bottom: 40px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }

  .feat-r { padding: 36px 24px; }
  .feat-bg { font-size: 120px; }
  .feat-stats { grid-template-columns: repeat(3,1fr); }
  .fs { padding: 20px 12px; }
  .fs-v { font-size: 28px; }

  .poster-name { font-size: 52px; }
  .poster::before { font-size: 160px; }

  .timeline { padding-left: 32px; }
  .tl::before { left: -36px; }

  .cta-h { font-size: clamp(44px, 12vw, 72px); }
  .cta-row { flex-direction: column; gap: 4px; }
  .cta-k { min-width: auto; }

  footer { flex-direction: column; gap: 10px; text-align: center; padding: 20px 24px; }
}

/* ═══════════════════════════════════
   RESPONSIVE — SMALL MOBILE (< 420px)
═══════════════════════════════════ */
@media (max-width: 420px) {
  .pad { padding: 52px 18px; }
  .hero { padding: 90px 18px 60px; }
  .hero-h1 { font-size: 52px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hstat:nth-child(3) { display: none; }
  .feat-stats { grid-template-columns: repeat(2,1fr); }
  .mc { padding: 36px 28px; }
  .pil { padding: 40px 28px; }
  .wc { padding: 36px 24px; }
  .pcard { padding: 32px 24px; }
}

/* ═══════════════════════════════════
   PRINT
═══════════════════════════════════ */
@media print {
  * { color-adjust: exact; -webkit-print-color-adjust: exact; }
  body {
    background: #fff; color: #111;
    cursor: auto; font-size: 11pt;
  }
  body::after, #cur, #curR, .scan-line,
  .hero-grid, .hero-atm, .hero-bg-text,
  .scroll-hint, .ticker, nav { display: none !important; }

  .animate-in, .reveal, .stagger, .sc, .tl {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero {
    min-height: auto;
    padding: 40px 30px;
  }
  .hero-h1, .hero-eyebrow, .hero-sub,
  .hero-chips, .hero-btns, .hero-stats {
    opacity: 1 !important;
    animation: none !important;
  }
  .hero-stats { position: relative; }

  section { padding: 30px; break-inside: avoid; }
  .pad { padding: 30px; }
  .sh { font-size: 28pt; }
  .hero-h1 { font-size: 48pt; }

  .match-grid, .pillars-grid, .work-grid, .panel-grid {
    background: #ddd;
  }
  .mc, .pil, .wc, .pcard, .fs {
    background: #fff;
  }
  .declaration { background: #f5f5f5; }
  .pillars-bg { background: #f5f5f5; }
  .exp-sec { background: #f5f5f5; }
  .feature-sec { background: #fff; }
  .panel-bg { background: #fff; }
  .cta-sec { background: #f0e6d0; }

  .poster { background: #eee; }
  .poster::before { display: none; }

  .hero-h1 .gold, .sh .gold, .mc-req, .eyebrow,
  .pc-role, .mc-cite, .pil-proof, .w-idx {
    color: #8B6914 !important;
  }
  .hero-h1 .stroke {
    -webkit-text-stroke: 1px #aaa;
    color: transparent;
  }
  .hstat-v, .fs-v, .wm-v, .poster-role {
    color: #8B6914 !important;
  }
  .mc-proof, .pil-body, .w-desc, .pc-msg,
  .feat-body, .tl-d, .exp-body, .gruen-body,
  .decl-list li, .decl-quote {
    color: #333 !important;
  }
  .btn-primary { background: #8B6914; }
  .btn-ghost { border-color: #8B6914; color: #8B6914; }

  footer { border-top: 1px solid #ddd; background: #fff; }
  .f-l, .f-r { color: #666 !important; }

  a { text-decoration: none; }
}
