/* ============================================================
   HEWCORE — Global Stylesheet
   ============================================================ */

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

:root {
  --black:  #0a0a0a;
  --white:  #f4f2ee;
  --orange: #fc6703;
  --gray:   #888880;
  --border: rgba(255,255,255,0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  120px;

  --transition:      0.2s ease;
  --transition-slow: 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0;
  letter-spacing: 0.05em;
}

main {
  flex: 1;
}

/* ============================================================
   NAV
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-item::after {
  content: '';
  display: block;
  height: 1px;
  margin-top: 4px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  background: var(--orange);
  transform-origin: left;
}
.nav-item:hover { color: var(--white); }
.nav-item:hover::after { transform: scaleX(1); }
.nav-item.active { color: var(--white); }
.nav-item.active::after { transform: scaleX(1); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: none; padding: 4px;
  position: relative; z-index: 200;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px 48px;
  transform: translateY(-100%);
  opacity: 0; visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s ease;
}
.nav-drawer.open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer-links { list-style: none; display: flex; flex-direction: column; }
.drawer-links li {
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateX(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-drawer.open .drawer-links li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.10s; }
.nav-drawer.open .drawer-links li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.16s; }
.nav-drawer.open .drawer-links li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.22s; }
.nav-drawer.open .drawer-links li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }
.nav-drawer.open .drawer-links li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.34s; }
.drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 36px; letter-spacing: 0.04em;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.drawer-links a:hover, .drawer-links a.active { color: var(--white); }
.drawer-links a .arrow {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--orange); opacity: 0; transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.drawer-links a:hover .arrow, .drawer-links a.active .arrow { opacity: 1; transform: translateX(0); }
.drawer-footer {
  margin-top: 40px; display: flex; align-items: center;
  justify-content: space-between; opacity: 0; transition: opacity 0.3s ease;
}
.nav-drawer.open .drawer-footer { opacity: 1; transition-delay: 0.4s; }
.drawer-footer-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; color: var(--gray); text-transform: uppercase;
}
.drawer-footer-ig {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; color: var(--gray); text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
}
.drawer-footer-ig:hover { color: var(--orange); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 98; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   PAGE HEADER (shared across inner pages)
   ============================================================ */

.page-header {
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.page-title .outline {
  -webkit-text-stroke: 1px rgba(244,242,238,0.2);
  color: transparent;
}
.page-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 380px;
  align-self: end;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.page-desc em {
  font-style: normal;
  color: var(--white);
}

/* ============================================================
   SECTION LABEL (shared)
   ============================================================ */

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--orange);
  opacity: 0.4;
  display: inline-block;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.10s; }
.reveal-d3 { transition-delay: 0.15s; }
.reveal-d4 { transition-delay: 0.20s; }
.reveal-d5 { transition-delay: 0.25s; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

/* ============================================================
   HOME — HERO
   ============================================================ */

.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(252,103,3,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(252,103,3,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  margin: auto 0;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding-top: 80px;
}
.hero-intro {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin: auto 0;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  color: var(--orange);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(244,242,238,0.25);
  color: transparent;
}
.hero-sub {
  font-family: var(--font-body);
  color: var(--gray);
  font-size: 15px;
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-sub em {
  color: var(--white);
  font-style: normal;
  font-weight: 400;
}
.hero-ticker {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-ticker .ticker {
  font-family: var(--font-mono);
  color: var(--gray);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.ticker.highlight { color: var(--orange); }

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   HOME — BULLET MARQUEE
   ============================================================ */

.bullet-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(252,103,3,0.03);
  display: flex;
}
.bullet-track {
  display: flex;
  flex-shrink: 0;
  animation: marquee 28s linear infinite;
}
.bullet-item {
  font-family: var(--font-mono);
  color: var(--gray);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.bullet-item .dot {
  color: var(--orange);
  margin-right: 40px;
}

/* ============================================================
   HOME — DIVISIONS
   ============================================================ */

.divisions {
  padding: 120px 48px;
}
.divisions > .section-label {
  margin-bottom: 64px;
}
.divisions a,
.divisions a * {
  text-decoration: none;
  color: inherit;
}

.division-card {
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
a .division-card { display: grid; }
.division-card:hover { border-color: rgba(252,103,3,0.3); }
.division-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(252,103,3,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.division-card:hover::before { opacity: 1; }

.division-info {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}
.division-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.division-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
.division-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}
.division-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 48px;
}
.division-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s;
}
.division-cta::after { content: '→'; transition: transform 0.3s; }
.division-card:hover .division-cta { gap: 20px; }

.division-visual {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
}
.division-specs { display: flex; flex-direction: column; gap: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.spec-val {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.spec-val.highlight { color: var(--orange); }

/* ============================================================
   HOME — ABOUT
   ============================================================ */

.about {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.about-title .outline {
  -webkit-text-stroke: 1px rgba(244,242,238,0.2);
  color: transparent;
  display: block;
}
.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}
.about-body + .about-body { margin-top: 20px; }
.about-body em { color: var(--white); font-style: normal; }
.about-body strong { color: var(--white); font-weight: 400; }

/* ============================================================
   TEAM PAGE
   ============================================================ */

.page-header.team-header::before {
  content: 'TEAM';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}

.team-section {
  padding: 0 48px 120px;
}
.team-section > .section-label {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.member {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.member::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 100% at 30% 50%, rgba(252,103,3,0.04) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.member:hover::before { opacity: 1; }

.member-index {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}
.member:hover .member-index { color: rgba(252,103,3,0.2); }

.member-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.member-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}
.member-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
  max-width: 340px;
  transition: color 0.3s;
}
.member:hover .member-bio { color: rgba(244,242,238,0.7); }

.member-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid;
  justify-self: end;
  white-space: nowrap;
}
.member-badge.executive { color: var(--orange); border-color: rgba(252,103,3,0.3); }
.member-badge.executive::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
.member-badge.authorized { color: var(--white); border-color: var(--border); }
.member-badge.advisory   { color: var(--gray);  border-color: rgba(136,136,128,0.2); }

.org-strip {
  margin-top: 80px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.org-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(252,103,3,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.org-cell {
  background: var(--black);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.org-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.org-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
}
.org-entity {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--orange);
}

/* ============================================================
   UPDATES PAGE
   ============================================================ */

.page-header.updates-header::before {
  content: 'LOG';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  line-height: 1;
}

.updates-section {
  padding: 0 48px 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.updates-sidebar {
  position: sticky;
  top: 120px;
  padding-top: 64px;
}
.sidebar-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--orange);
  opacity: 0.3;
  display: inline-block;
}
.sidebar-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-stat:first-child { border-top: 1px solid var(--border); }
.sidebar-stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.sidebar-stat-val.orange { color: var(--orange); }
.sidebar-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
}

.timeline { padding-top: 64px; }
.timeline > .section-label {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.entry-upcoming {
  padding: 48px 0 48px 24px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.entry-upcoming::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  opacity: 0.4;
}
.entry {
  padding: 40px 0 40px 24px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.entry::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 1px;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
}
.entry:hover::before { background: rgba(252,103,3,0.3); width: 2px; }

.entry-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  padding-top: 6px;
  padding-left: 24px;
  line-height: 1.6;
}
.entry-date .year {
  display: block;
  font-size: 9px;
  color: rgba(136,136,128,0.5);
}
.entry-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.entry-tag.upcoming { color: var(--orange); }
.entry-tag.upcoming::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
.entry-tag.complete { color: #65cf50; }
.entry-tag.complete::before { content: '✓'; font-size: 8px; }
.entry-tag.milestone { color: var(--gray); }
.entry-tag.milestone::before { content: '◆'; font-size: 7px; }

.entry-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.entry-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
  max-width: 480px;
}

.timeline-end {
  padding-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.timeline-end-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--black);
}
.timeline-end-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.page-header.contact-header::before {
  content: 'TOUCH';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}

.contact-section {
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
}
.contact-card {
  background: var(--black);
  padding: 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.contact-card + .contact-card {
  border-left: none;
}
.contact-card:hover { background: #0f0f0f; border-color: rgba(252,103,3,0.2); }
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.3s;
}
.contact-card:hover::before { background: rgba(252,103,3,0.4); }

.card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-label::after {
  content: '';
  flex: 1; max-width: 40px;
  height: 1px; background: var(--orange); opacity: 0.3;
  display: inline-block;
}
.card-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.card-roles {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.card-role-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--gray);
}
.contact-fields {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.contact-field {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-field:first-child { border-top: 1px solid var(--border); }
.field-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 80px;
  padding-top: 2px;
}
.field-val {
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}
.field-val a {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.field-val a:hover { color: var(--orange); }
.field-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */

.legal-content {
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 120px;
}
.toc-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-label::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--orange); opacity: 0.4;
  display: inline-block;
}
.toc-links {
  display: flex; flex-direction: column; gap: 0; list-style: none;
}
.toc-links a {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding 0.2s;
  position: relative;
}
.toc-links a:first-child { border-top: 1px solid var(--border); }
.toc-links a:hover { color: var(--white); }
.toc-links a.active {
  color: var(--orange);
  padding-left: 12px;
}
.toc-links a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 12px;
  background: var(--orange);
}

.legal-body { display: flex; flex-direction: column; gap: 64px; }
.legal-placeholder {
  padding: 48px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; text-align: center;
  position: relative; overflow: hidden;
}
.legal-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(252,103,3,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.placeholder-icon {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(252,103,3,0.15);
  line-height: 1;
}
.placeholder-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}
.placeholder-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--white);
}
.placeholder-desc {
  font-size: 13px; font-weight: 300;
  color: var(--gray); line-height: 1.7; max-width: 420px;
}
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-margin-top: 120px;
}
.legal-section-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.legal-section-label::after {
  content: ''; width: 40px; height: 1px;
  background: var(--orange); opacity: 0.4; display: inline-block;
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.03em; color: var(--white);
}
.legal-section p {
  font-size: 14px; font-weight: 300;
  color: var(--gray); line-height: 1.85;
}
.legal-section p em { font-style: normal; color: var(--white); }

/* ============================================================
   LIQUID MACRO PAGE
   ============================================================ */

.nav-left { display: flex; align-items: center; gap: 20px; }
.nav-parent {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; color: var(--gray);
  text-decoration: none; text-transform: uppercase; transition: color 0.2s;
}
.nav-parent:hover { color: var(--white); }
.nav-divider { font-family: var(--font-mono); font-size: 10px; color: var(--border); }
.nav-brand { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.15em; color: var(--white); }

.lm-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.lm-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(252,103,3,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(252,103,3,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.lm-hero-wordmark {
  position: absolute; top: 32%; left: 48px;
  transform: translateY(-60%);
  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 260px);
  line-height: 0.88; letter-spacing: 0.02em;
  pointer-events: none; user-select: none;
  z-index: 1;
  display: flex;
  gap: clamp(12px, 1vw, 30px);
}
.lm-hero-wordmark .line-solid  { color: rgba(244,242,238,0.12); display: block;}
.lm-hero-wordmark .line-outline { -webkit-text-stroke: 2px rgba(244, 242, 238, 0.158); color: transparent;  }

/* Emblem — placeholder for Liquid Macro mark/logo */
.lm-emblem {
  height: clamp(50px, 10.5vw, 182px);
  display: flex;
  margin-top: clamp(1px, 0.5vw, 12px);
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.23);
}
.lm-hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.lm-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 24px;
}
.lm-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s ease infinite;
}
.lm-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92; letter-spacing: 0.02em;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s ease 0.5s forwards;
}
.lm-hero-title .outline { -webkit-text-stroke: 1px rgba(244,242,238,0.3); color: transparent; }
.lm-hero-sub {
  font-size: 14px; font-weight: 300; color: var(--gray);
  line-height: 1.75; max-width: 380px;
  opacity: 0; animation: fadeUp 0.9s ease 0.7s forwards;
}
.lm-hero-sub em { font-style: normal; color: var(--white); }
.lm-hero-right {
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; animation: fadeUp 0.9s ease 0.8s forwards;
}
.lm-hero-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.lm-hero-stat:first-child { border-top: 1px solid var(--border); }
.lm-hero-stat-key {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
}
.lm-hero-stat-val { font-family: var(--font-mono); font-size: 12px; color: var(--white); letter-spacing: 0.05em; }
.lm-hero-stat-val.accent { color: var(--orange); }

.lm-section { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.section-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px;
}
.section-count {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; color: var(--border); text-transform: uppercase;
}

.specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.spec-cell {
  background: var(--black); padding: 36px 40px; transition: background 0.3s;
}
.spec-cell:hover { background: #0f0f0f; }
.spec-cell-key {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 12px;
}
.spec-cell-val {
  font-family: var(--font-display); font-size: 32px;
  letter-spacing: 0.02em; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.spec-cell-val.accent { color: var(--orange); }
.spec-cell-note { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--gray); }

.roadmap { display: flex; flex-direction: column; gap: 0; }
.roadmap-item {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 32px; align-items: center;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.roadmap-item:first-child { border-top: 1px solid var(--border); }
.roadmap-num {
  font-family: var(--font-display); font-size: 40px;
  color: rgba(255,255,255,0.06); line-height: 1; transition: color 0.3s;
}
.roadmap-item:hover .roadmap-num { color: rgba(252,103,3,0.2); }
.roadmap-title {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: 0.02em; color: var(--white); margin-bottom: 4px;
}
.roadmap-desc { font-size: 12px; font-weight: 300; color: var(--gray); line-height: 1.6; }
.roadmap-badge {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid; white-space: nowrap;
}
.roadmap-badge.done   { color: #65cf50; border-color: rgba(101,207,80,0.25); }
.roadmap-badge.active { color: var(--orange); border-color: rgba(252,103,3,0.3); }
.roadmap-badge.next   { color: var(--gray); border-color: var(--border); }

.lm-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.overview-body { font-size: 15px; font-weight: 300; color: var(--gray); line-height: 1.85; }
.overview-body em { font-style: normal; color: var(--white); }
.overview-body p + p { margin-top: 20px; }
.overview-details { display: flex; flex-direction: column; gap: 0; }
.overview-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.overview-row:first-child { border-top: 1px solid var(--border); }
.overview-key {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); min-width: 100px; padding-top: 2px;
}
.overview-val { font-size: 13px; font-weight: 300; color: var(--white); text-align: right; line-height: 1.5; }

.parent-strip {
  padding: 60px 48px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.parent-strip-left {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
}
.parent-strip-right { display: flex; align-items: center; gap: 16px; }
.parent-strip-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.1em; color: var(--white); }
.parent-strip-link {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.parent-strip-link:hover { gap: 14px; }
.parent-strip-link::after { content: '→'; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .member { grid-template-columns: 80px 1fr 1fr auto; gap: 24px; }
}

@media (max-width: 768px) {
  nav { padding: 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .page-header { padding: 140px 24px 60px; grid-template-columns: 1fr; }

  .hero { padding: 0 24px; }
  .hero-title { font-size: 72px; }
  .hero-ticker { display: none; }
  .hero-bottom { display: none; }

  .bullet-wrap { }
  .bullet-track { }

  .divisions { padding: 80px 24px; }
  .division-card { grid-template-columns: 1fr; }
  .division-info { border-right: none; border-bottom: 1px solid var(--border); }

  .about { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }

  .team-section { padding: 0 24px 80px; }
  .member { grid-template-columns: 48px 1fr; grid-template-rows: auto auto auto; gap: 16px; }
  .member-bio { grid-column: 2; }
  .member-badge { grid-column: 2; justify-self: start; }
  .org-strip { grid-template-columns: 1fr; }

  .updates-section { padding: 0 24px 80px; grid-template-columns: 1fr; gap: 0; }
  .updates-sidebar { position: static; padding-top: 40px; }
  .entry, .entry-upcoming { grid-template-columns: 100px 1fr; gap: 20px; }

  .contact-section { padding: 40px 24px 80px; grid-template-columns: 1fr; }
  .contact-card { padding: 40px 24px; }

  .legal-content { padding: 40px 24px 80px; grid-template-columns: 1fr; }
  .legal-toc { position: static; }

  .lm-hero { padding: 0 24px 60px; min-height: auto; padding-top: 140px; }
  .lm-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .lm-hero-wordmark { display: none; }
  .lm-section { padding: 60px 24px; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .lm-overview { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-item { grid-template-columns: 32px 1fr auto; gap: 16px; }
  .parent-strip { flex-direction: column; gap: 20px; padding: 40px 24px; }

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

@media (max-width: 480px) {
  .specs-grid { grid-template-columns: 1fr; }
  .org-strip { padding: 24px; }
}