/* ═══════════════════════════════════════════════════════
   HANGAR 5 — WHY IT MATTERS PAGE STYLES
   Shared base styles are in hangar5.css
═══════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────── */
.wim-hero {
  background: var(--bg-dark);
  padding-top: 66px;
  position: relative;
  overflow: hidden;
}
.wim-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(215,255,17,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,255,17,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}
.wim-hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(215,255,17,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.wim-hero-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 100px 48px 140px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.wim-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--key); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.5s 0.1s forwards;
}
.wim-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--key); }
.wim-hero h1 {
  font-family: var(--fh);
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.94;
  color: #fff; max-width: 820px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.wim-hero h1 em { font-style: normal; color: var(--key); }
.wim-hero h1 .dim { color: rgba(255,255,255,0.22); }
.wim-hero-sub {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.38);
  font-weight: 300; max-width: 540px; margin-top: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.34s forwards;
}

/* ── FAILURE MODES ───────────────────────────────────── */
#failure {
  background: var(--bg-dark2);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.failure-header {
  max-width: var(--max); margin: 0 auto;
  padding: 0 48px 56px;
}
.failure-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.failure-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 36px 44px;
  position: relative; overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}
.failure-card:first-child { border-radius: 12px 0 0 12px; }
.failure-card:last-child  { border-radius: 0 12px 12px 0; }
.failure-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(215,255,17,0.12);
}
.failure-num {
  font-family: var(--fh);
  font-size: 100px; font-weight: 800; letter-spacing: -0.06em; line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 12px; right: 20px;
  user-select: none; pointer-events: none;
}
.failure-icon {
  width: 44px; height: 44px;
  background: rgba(215,255,17,0.08);
  border: 1px solid rgba(215,255,17,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.failure-icon svg { width: 22px; height: 22px; }
.failure-card h3 {
  font-family: var(--fh);
  font-size: 22px; font-weight: 800; letter-spacing: -0.025em; color: #fff;
  margin-bottom: 14px; line-height: 1.1;
}
.failure-card p {
  font-size: 16px; line-height: 1.72; color: rgba(255,255,255,0.42);
  font-weight: 300;
}
.failure-card p strong { color: rgba(255,255,255,0.75); font-weight: 600; }

/* ── THE BROKEN PLAYBOOK ─────────────────────────────── */
#playbook {
  background: var(--bg-light);
  padding: 96px 0;
  border-top: 1px solid var(--border-l);
}
.playbook-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.playbook-copy h2 {
  font-family: var(--fh);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--text-dark); margin-bottom: 24px;
}
.playbook-copy h2 em { font-style: normal; color: var(--key-d); }
.playbook-copy p {
  font-size: 16px; line-height: 1.78; color: var(--text-mid);
  font-weight: 300; margin-bottom: 18px;
}
.playbook-copy p:last-child { margin-bottom: 0; }
.playbook-copy strong { color: var(--text-dark); font-weight: 600; }

.playbook-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border-l);
  border-radius: 12px; overflow: hidden;
}
.playbook-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-l);
  display: flex; align-items: flex-start; gap: 16px;
}
.playbook-item:last-child { border-bottom: none; }
.playbook-x {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.playbook-x svg { width: 10px; height: 10px; }
.playbook-item-text { font-size: 16px; line-height: 1.6; color: var(--text-mid); font-weight: 300; }
.playbook-item-text strong { color: var(--text-dark); font-weight: 600; display: block; margin-bottom: 2px; }

/* ── MANIFESTO ───────────────────────────────────────── */
#manifesto {
  background: var(--bg-dark2);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
#manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(215,255,17,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 48px;
  position: relative; z-index: 1;
}

/* ── label ── */
.mf-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--key); margin-bottom: 36px;
}
.mf-label::before { content: ''; width: 22px; height: 1px; background: var(--key); }

/* ── lede — large opening ── */
.mf-lede { margin-bottom: 20px; }
.mf-lede p {
  font-family: var(--fh);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.18;
  color: rgba(255,255,255,0.85); margin: 0;
}
.mf-lede p em { font-style: normal; color: var(--key); }

/* ── body paragraphs ── */
.mf-body { margin-bottom: 0; }
.mf-body p {
  font-size: 16px; line-height: 1.78;
  color: rgba(255,255,255,0.38); font-weight: 300; margin-bottom: 14px;
}
.mf-body p:last-child { margin-bottom: 0; }
.mf-body.mf-center { text-align: center; }

/* ── rule ── */
.mf-rule { height: 1px; background: rgba(255,255,255,0.07); margin: 52px 0; }

/* ── callout — pull quote ── */
.mf-callout {
  font-family: var(--fh);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.3;
  color: rgba(255,255,255,0.65); margin-bottom: 32px;
}
.mf-callout em { font-style: normal; color: var(--key); }

/* ── issues list ── */
.mf-issues {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 36px;
}
.mf-issue {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 14px 16px 14px 38px;
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.35); font-weight: 300;
  position: relative;
}
.mf-issue::before {
  content: '×';
  position: absolute; left: 14px; top: 13px;
  font-size: 14px; color: rgba(220,60,60,0.55); font-weight: 700; line-height: 1;
}

/* ── core statement ── */
.mf-statement { text-align: center; margin-bottom: 0; }
.mf-statement > p:not(.mf-statement-sub) {
  font-family: var(--fh);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.18;
  color: rgba(255,255,255,0.85); margin-bottom: 18px;
}
.mf-statement > p:not(.mf-statement-sub) em { font-style: normal; color: var(--key); }
.mf-statement-sub {
  font-size: 16px; line-height: 1.72;
  color: rgba(255,255,255,0.38); font-weight: 300; margin: 0;
}

/* ── principle list ── */
.manifesto-principles {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 44px;
}
.mf-principle {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 24px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mf-num {
  font-family: var(--fh);
  font-size: 36px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(215,255,17,0.5);
  padding-top: 4px;
}
.mf-content {
   align-content: center;  
}
.mf-content p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5; color: rgba(255,255,255,0.72);
  font-weight: 400; margin: 0;
}
.mf-content p em { font-style: normal; color: var(--key); font-weight: 600; }

/* ── closer ── */
.mf-closer { text-align: center; }
.mf-closer p {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.22;
  color: rgba(255,255,255,0.75); margin: 0;
}
.mf-closer p em { font-style: normal; color: var(--key); }
.mf-dim { color: rgba(255,255,255,0.25); }

/* ── final statement ── */
.mf-final { text-align: center; }
.mf-final p {
  font-family: var(--fh);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.3;
  color: rgba(255,255,255,0.55); margin: 0;
}
.mf-final p em { font-style: normal; color: var(--key); }

/* ── PROOF STRIP ─────────────────────────────────────── */
#proof-strip {
  background: var(--key);
  padding: 0;
}
.proof-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.proof-item {
  padding: 52px 44px;
  border-right: 1px solid rgba(0,0,0,0.1);
  position: relative;
}
.proof-item:last-child { border-right: none; }
.proof-claim {
  font-family: var(--fh);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  color: #111; margin-bottom: 10px;
}
.proof-sub {
  font-size: 16px; color: rgba(0,0,0,0.5); font-weight: 400; line-height: 1.55;
}

/* ── BELIEF SECTION ──────────────────────────────────── */
#belief {
  background: var(--bg-dark2);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.belief-inner {
  max-width: 860px; margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.belief-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--key); margin-bottom: 40px;
}
.belief-label::before,
.belief-label::after { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--key); }
.belief-statement {
  font-family: var(--fh);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.06;
  color: #fff; margin-bottom: 40px;
}
.belief-statement em { font-style: normal; color: var(--key); }
.belief-body {
  font-size: 16px; line-height: 1.78; color: rgba(255,255,255,0.4);
  font-weight: 300; max-width: 600px; margin: 0 auto 56px;
}

/* ── NOT / BUT CONTRAST ──────────────────────────────── */
.not-but-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  border-radius: 12px; overflow: hidden;
}
.nb-col {
  padding: 40px 44px;
}
.nb-col.not-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px 0 0 12px;
}
.nb-col.but-col {
  background: rgba(215,255,17,0.06);
  border: 1px solid rgba(215,255,17,0.14);
  border-radius: 0 12px 12px 0;
}
.nb-label {
  font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.not-col .nb-label { color: rgba(255,255,255,0.25); }
.but-col .nb-label { color: var(--key); }
.nb-label::before {
  content: ''; display: inline-block; width: 14px; height: 1px;
}
.not-col .nb-label::before { background: rgba(255,255,255,0.25); }
.but-col .nb-label::before { background: var(--key); }
.nb-items { display: flex; flex-direction: column; gap: 16px; }
.nb-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; line-height: 1.6; font-weight: 300;
}
.not-col .nb-item { color: rgba(255,255,255,0.35); }
.but-col .nb-item { color: rgba(255,255,255,0.7); }
.nb-dot {
  flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; margin-top: 10px;
}
.not-col .nb-dot { background: rgba(255,255,255,0.18); }
.but-col .nb-dot { background: var(--key); }

/* ── CTA ─────────────────────────────────────────────── */
#wim-cta {
  background: var(--bg-dark);
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
#wim-cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(215,255,17,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wim-cta-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto; padding: 0 48px;
}
#wim-cta h2 {
  font-family: var(--fh);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.02;
  color: #fff; margin-bottom: 18px;
}
#wim-cta h2 em { font-style: normal; color: var(--key); }
#wim-cta p {
  font-size: 16px; color: rgba(255,255,255,0.38); font-weight: 300;
  line-height: 1.7; margin-bottom: 40px;
}
.wim-cta-btns {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.vis { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .wim-hero-inner  { padding: 80px 24px 120px; }
  .failure-header  { padding: 0 24px 44px; }
  .failure-grid    { grid-template-columns: 1fr; gap: 12px; padding: 0 24px; }
  .failure-card    { border-radius: 12px !important; }
  .playbook-inner  { grid-template-columns: 1fr; gap: 44px; padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }
  .mf-issues       { grid-template-columns: 1fr; }
  .mf-principle    { grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; }
  .proof-inner     { grid-template-columns: 1fr; }
  .proof-item      { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 36px 28px; }
  .proof-item:last-child { border-bottom: none; }
  .belief-inner    { padding: 0 24px; }
  .not-but-grid    { grid-template-columns: 1fr; padding: 0 24px; gap: 12px; }
  .nb-col.not-col  { border-radius: 12px !important; }
  .nb-col.but-col  { border-radius: 12px !important; }
  .wim-cta-inner   { padding: 0 24px; }
}

@media (max-width: 640px) {
  .wim-hero-inner  { padding: 56px 20px 80px; }
  .wim-hero h1     { font-size: clamp(32px, 9vw, 48px); }
  .wim-hero-sub    { font-size: 16px; }
  #failure         { padding: 64px 0; }
  #playbook        { padding: 64px 0; }
  #manifesto       { padding: 72px 0; }
  .mf-rule         { margin: 36px 0; }
  #belief          { padding: 64px 0; }
  .nb-col          { padding: 28px 24px; }
  #wim-cta         { padding: 72px 0; }
  .wim-cta-btns    { flex-direction: column; align-items: stretch; }
  .wim-cta-btns a  { text-align: center; }
}
