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

:root {
  --wall: #E8E1D5;
  --navy: #0D1B3E;
  --yellow: #F5C430;
  --sticky: #F5E048;
  --orange: #E8783A;
  --green-dark: #243C2F;
  --paper: #FAFAF8;
  --paper-warm: #FBF7F0;
  --charcoal: #1A1A1A;
  --red: #C73B3B;
  --tape: rgba(210,195,172,0.72);
  --ink: #1E1E1E;
  --muted: #8A7E6E;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--wall);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: crosshair;
}

/* Wall texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(232,225,213,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30,30,30,0.08);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.nav-name {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-pill {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: var(--charcoal);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-pill:hover { opacity: 1; }
.nav-talk {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--yellow);
  padding: 9px 18px;
  border-radius: 2px;
  border: none;
  cursor: crosshair;
  transition: background 0.2s, transform 0.15s;
}
.nav-talk:hover { background: var(--charcoal); transform: rotate(-1deg); }

/* ============================================================
   LAYOUT
   ============================================================ */

.wall {
  position: relative;
  padding: 80px 20px 60px;
  z-index: 1;
}

.board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}

/* Floating annotations */
.annotation {
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.5;
  position: absolute;
  pointer-events: none;
  line-height: 1.3;
  z-index: 50;
}

/* ============================================================
   BASE CARD
   ============================================================ */

.card {
  position: relative;
  border-radius: 3px;
  padding: 28px 26px;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease;
  cursor: pointer;
  z-index: 10;
  box-shadow: 2px 4px 0 rgba(0,0,0,0.04), 5px 12px 28px rgba(0,0,0,0.13), 0 1px 3px rgba(0,0,0,0.07);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.card:hover {
  z-index: 50;
  box-shadow: 4px 8px 0 rgba(0,0,0,0.04), 12px 28px 50px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
}

/* ============================================================
   CARD DECORATIONS
   ============================================================ */

/* Tape */
.tape::before {
  content: '';
  position: absolute;
  width: 68px; height: 20px;
  background: var(--tape);
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  z-index: 20;
}
.tape-tl::before {
  left: 16px;
  transform: translateX(0) rotate(-12deg);
}
.tape-tr::before {
  left: auto; right: 16px;
  transform: translateX(0) rotate(8deg);
}
.tape-two::after {
  content: '';
  position: absolute;
  width: 56px; height: 18px;
  background: var(--tape);
  bottom: -9px;
  right: 24px;
  transform: rotate(6deg);
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Pin */
.pin::before {
  content: '';
  position: absolute;
  width: 15px; height: 15px;
  background: radial-gradient(circle at 38% 35%, #ffeeee 0%, #c73b3b 45%, #7a1515 100%);
  border-radius: 50%;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35), inset 0 1px 2px rgba(255,255,255,0.2);
  z-index: 20;
}
.pin-dark::before {
  background: radial-gradient(circle at 38% 35%, #ccc 0%, #444 45%, #111 100%);
}
.pin-gold::before {
  background: radial-gradient(circle at 38% 35%, #fff8cc 0%, var(--yellow) 45%, #a07010 100%);
}

/* Folded corner */
.folded::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  background: linear-gradient(225deg, rgba(0,0,0,0.12) 50%, transparent 50%);
  border-radius: 0 0 3px 0;
}

/* ============================================================
   TEXT TREATMENTS
   ============================================================ */

.highlight {
  background: rgba(245,196,48,0.55);
  display: inline;
  padding: 1px 3px;
}
.highlight-pink {
  background: rgba(232,120,90,0.3);
  display: inline;
  padding: 1px 3px;
}

.squiggle {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

/* ============================================================
   GRID PLACEMENT
   ============================================================ */

.c-identity   { grid-column: 1/5;  grid-row: 1/3; }
.c-ideas      { grid-column: 5/8;  grid-row: 1/2; }
.c-brand      { grid-column: 8/12; grid-row: 1/2; }
.c-ai         { grid-column: 12/13;grid-row: 1/3; }
.c-nancy      { grid-column: 1/4;  grid-row: 3/5; }
.c-quote      { grid-column: 4/8;  grid-row: 2/3; }
.c-investor   { grid-column: 8/10; grid-row: 2/3; }
.c-meta       { grid-column: 10/13;grid-row: 2/3; }
.c-content    { grid-column: 4/8;  grid-row: 3/4; }
.c-strategy   { grid-column: 8/11; grid-row: 3/4; }
.c-social     { grid-column: 4/7;  grid-row: 4/5; }
.c-cta        { grid-column: 7/13; grid-row: 4/5; }
.c-footer     { grid-column: 1/13; grid-row: 5/6; }

/* Card tilts */
.c-identity  { transform: rotate(-1.2deg); }
.c-identity:hover { transform: rotate(-0.4deg) translateY(-6px); }

.c-ideas     { transform: rotate(2.1deg) translateY(-8px); }
.c-ideas:hover { transform: rotate(1deg) translateY(-14px); }

.c-brand     { transform: rotate(-2.4deg) translateY(6px); }
.c-brand:hover { transform: rotate(-1deg) translateY(2px); }

.c-ai        { transform: rotate(1.8deg); }
.c-ai:hover  { transform: rotate(0.5deg) translateY(-8px); }

.c-nancy     { transform: rotate(-1.5deg) translateX(8px); }
.c-nancy:hover { transform: rotate(-0.4deg) translateY(-8px) translateX(8px); }

.c-quote     { transform: rotate(0.6deg) translateY(-10px); }
.c-quote:hover { transform: rotate(0.2deg) translateY(-16px); }

.c-investor  { transform: rotate(3.2deg) translateY(4px); }
.c-investor:hover { transform: rotate(1.5deg) translateY(-4px); }

.c-meta      { transform: rotate(-4.5deg) translateY(8px); }
.c-meta:hover { transform: rotate(-2deg) translateY(2px); }

.c-content   { transform: rotate(-1.8deg) translateY(4px); }
.c-content:hover { transform: rotate(-0.6deg) translateY(-4px); }

.c-strategy  { transform: rotate(2.8deg) translateY(-6px); }
.c-strategy:hover { transform: rotate(1deg) translateY(-12px); }

.c-social    { transform: rotate(-2.1deg) translateY(10px); }
.c-social:hover { transform: rotate(-0.8deg) translateY(4px); }

.c-cta       { transform: rotate(0.8deg) translateY(-4px); }
.c-cta:hover { transform: rotate(0.2deg) translateY(-10px); }

/* ============================================================
   CARD THEMES
   ============================================================ */

/* Identity — dark navy poster */
.card-identity {
  background: var(--navy);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.identity-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.identity-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(245,196,48,0.5);
  text-transform: uppercase;
}
.identity-year {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245,196,48,0.3);
}
.identity-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}
.identity-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.95;
  color: var(--yellow);
  letter-spacing: 0.02em;
  display: block;
}
.identity-sub {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: rgba(242,237,228,0.65);
  margin-top: 14px;
  line-height: 1.4;
}
.identity-ticker {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,196,48,0.2);
  padding-top: 12px;
  margin-top: auto;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: scroll-x 20s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,196,48,0.45);
  padding: 0 16px;
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ideas — yellow bold poster */
.card-ideas {
  background: var(--yellow);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ideas-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.ideas-sub {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(13,27,62,0.45);
  text-transform: uppercase;
  margin-top: auto;
}

/* Brand — white paper */
.card-brand {
  background: var(--paper);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.brand-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--charcoal);
}
.brand-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(30,30,30,0.6);
  margin-top: 12px;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s, opacity 0.3s, margin-top 0.2s;
}
.card.expanded .brand-body {
  max-height: 200px;
  opacity: 1;
}
.brand-cta {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: var(--orange);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* AI — dark green */
.card-ai {
  background: var(--green-dark);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ai-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.3);
}
.ai-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: #F2EDE4;
  margin-top: 20px;
}
.ai-body {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(242,237,228,0.5);
  font-weight: 300;
  margin-top: auto;
}

/* Nancy — warm white personal note */
.card-nancy {
  background: var(--paper-warm);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 100px;
  overflow: hidden;
}
.nancy-from {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nancy-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--charcoal);
  margin-top: 18px;
  flex: 1;
}
.nancy-sig {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--ink);
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1.5px solid rgba(30,30,30,0.1);
}
.nancy-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--navy);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.2s;
  cursor: crosshair;
}
.nancy-cta-link:hover { gap: 14px; }
.nancy-arrow-circle {
  width: 30px; height: 30px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.nancy-cta-link:hover .nancy-arrow-circle {
  background: var(--navy);
  color: var(--paper);
}

/* Quote — orange strip */
.card-quote {
  background: var(--orange);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  color: var(--paper);
}
.quote-attr {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
  margin-top: 16px;
}

/* Investor — yellow sticky */
.card-investor {
  background: var(--sticky);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.investor-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,27,62,0.45);
}
.investor-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1;
  color: var(--navy);
  margin-top: 12px;
}
.investor-note {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: rgba(13,27,62,0.6);
  line-height: 1.5;
  margin-top: auto;
}

/* Meta — white small note */
.card-meta {
  background: #FFFDF6;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(30,30,30,0.06);
}
.meta-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.45;
  color: var(--ink);
}
.meta-aside {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

/* Content — white paper with highlighter */
.card-content {
  background: var(--paper);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.content-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: var(--charcoal);
  margin-top: 12px;
}
.content-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(30,30,30,0.55);
  margin-top: 10px;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s, opacity 0.3s;
}
.card.expanded .content-body { max-height: 200px; opacity: 1; }

/* Strategy — bold black poster */
.card-strategy {
  background: var(--charcoal);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.strategy-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,196,48,0.45);
}
.strategy-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.9;
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin-top: 14px;
}
.strategy-body {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(250,250,248,0.45);
  font-weight: 300;
  margin-top: auto;
}

/* Social */
.card-social {
  background: #F2EDE4;
  border: 1.5px solid rgba(30,30,30,0.12);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.social-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: var(--orange);
}
.social-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: var(--charcoal);
  margin-top: 10px;
}
.social-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(30,30,30,0.55);
  margin-top: 10px;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s, opacity 0.3s;
}
.card.expanded .social-body { max-height: 200px; opacity: 1; }

/* CTA — full bleed */
.card-cta {
  background: var(--navy);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,196,48,0.45);
}
.cta-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  color: var(--paper);
  margin-top: 12px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.cta-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  padding: 12px 24px;
  border-radius: 2px;
  cursor: crosshair;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: var(--orange); color: var(--paper); transform: rotate(-1deg); }
.cta-note {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: rgba(242,237,228,0.4);
}

/* Footer strip */
.card-footer {
  background: transparent;
  box-shadow: none;
  border-top: 1px solid rgba(30,30,30,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  transform: none !important;
}
.card-footer:hover {
  box-shadow: none;
  transform: none !important;
}
.footer-note {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-email {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(30,30,30,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.footer-email:hover { color: var(--orange); border-color: var(--orange); }

/* ============================================================
   CARD TOGGLE INDICATOR
   ============================================================ */

.card-toggle {
  position: absolute;
  top: 18px; right: 18px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.35;
  transition: opacity 0.2s, transform 0.3s;
  pointer-events: none;
}
.card:hover .card-toggle { opacity: 0.8; }
.card.expanded .card-toggle { transform: rotate(45deg); opacity: 1; }

.card-identity .card-toggle { color: var(--yellow); border: 1px solid rgba(245,196,48,0.3); }
.card-ideas .card-toggle { color: var(--navy); border: 1px solid rgba(13,27,62,0.25); }
.card-brand .card-toggle { color: var(--charcoal); border: 1px solid rgba(30,30,30,0.2); }
.card-ai .card-toggle { color: #F2EDE4; border: 1px solid rgba(242,237,228,0.2); }
.card-nancy .card-toggle { color: var(--navy); border: 1px solid rgba(13,27,62,0.2); }
.card-quote .card-toggle { color: var(--paper); border: 1px solid rgba(250,250,248,0.3); }
.card-investor .card-toggle { color: var(--navy); border: 1px solid rgba(13,27,62,0.2); }
.card-meta .card-toggle { color: var(--ink); border: 1px solid rgba(30,30,30,0.15); }
.card-content .card-toggle { color: var(--charcoal); border: 1px solid rgba(30,30,30,0.18); }
.card-strategy .card-toggle { color: var(--yellow); border: 1px solid rgba(245,196,48,0.25); }
.card-social .card-toggle { color: var(--charcoal); border: 1px solid rgba(30,30,30,0.15); }
.card-cta .card-toggle { color: var(--yellow); border: 1px solid rgba(245,196,48,0.3); }

/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,15,10,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-paper {
  background: var(--paper-warm);
  border-radius: 4px;
  padding: 52px;
  max-width: 540px;
  width: 90%;
  position: relative;
  transform: rotate(-1.5deg) scale(0.93);
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 8px 16px 60px rgba(0,0,0,0.35);
}
.modal-paper::before {
  content: '';
  position: absolute;
  width: 80px; height: 22px;
  background: var(--tape);
  top: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  border-radius: 1px;
}
.modal-overlay.open .modal-paper { transform: rotate(-0.5deg) scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: none;
  border: 1px solid rgba(30,30,30,0.2);
  border-radius: 2px;
  padding: 5px 10px;
  cursor: crosshair;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.modal-close:hover { color: var(--red); border-color: var(--red); }
.modal-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.modal-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(30,30,30,0.65);
  font-weight: 300;
  margin-bottom: 28px;
}
.modal-action {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--yellow);
  border: none;
  padding: 13px 24px;
  border-radius: 2px;
  cursor: crosshair;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.modal-action:hover { background: var(--charcoal); transform: rotate(-1deg); }

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

.card {
  animation: card-appear 0.55s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes card-appear {
  from { opacity: 0; transform: translateY(24px) rotate(0deg); }
}

.c-identity  { animation-delay: 0.05s; }
.c-ideas     { animation-delay: 0.12s; }
.c-brand     { animation-delay: 0.18s; }
.c-ai        { animation-delay: 0.25s; }
.c-nancy     { animation-delay: 0.32s; }
.c-quote     { animation-delay: 0.38s; }
.c-investor  { animation-delay: 0.44s; }
.c-meta      { animation-delay: 0.50s; }
.c-content   { animation-delay: 0.56s; }
.c-strategy  { animation-delay: 0.62s; }
.c-social    { animation-delay: 0.68s; }
.c-cta       { animation-delay: 0.74s; }
.c-footer    { animation-delay: 0.80s; }

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

/* ---- Tablet landscape: 2-col grid ---- */
@media (max-width: 1100px) {
  .wall { padding: 72px 16px 48px; }

  .board {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .c-identity   { grid-column: 1/4; grid-row: 1/2; }
  .c-ideas      { grid-column: 4/7; grid-row: 1/2; }
  .c-brand      { grid-column: 1/4; grid-row: 2/3; }
  .c-ai         { grid-column: 4/7; grid-row: 2/3; }
  .c-nancy      { grid-column: 1/4; grid-row: 3/4; }
  .c-quote      { grid-column: 4/7; grid-row: 3/4; }
  .c-investor   { grid-column: 1/4; grid-row: 4/5; }
  .c-meta       { grid-column: 4/7; grid-row: 4/5; }
  .c-content    { grid-column: 1/4; grid-row: 5/6; }
  .c-strategy   { grid-column: 4/7; grid-row: 5/6; }
  .c-social     { grid-column: 1/4; grid-row: 6/7; }
  .c-cta        { grid-column: 4/7; grid-row: 6/7; }
  .c-footer     { grid-column: 1/7; grid-row: 7/8; }

  /* Flatten tilts — too jarring at smaller sizes */
  .c-identity, .c-identity:hover,
  .c-ideas, .c-ideas:hover,
  .c-brand, .c-brand:hover,
  .c-ai, .c-ai:hover,
  .c-nancy, .c-nancy:hover,
  .c-quote, .c-quote:hover,
  .c-investor, .c-investor:hover,
  .c-meta, .c-meta:hover,
  .c-content, .c-content:hover,
  .c-strategy, .c-strategy:hover,
  .c-social, .c-social:hover,
  .c-cta, .c-cta:hover {
    transform: none !important;
  }

  /* Reduce min-heights so cards don't tower */
  .card-identity { min-height: 300px; }
  .card-ai       { min-height: 240px; }
  .card-nancy    { min-height: 240px; }

  /* Hide all collage & floating accents */
  .collage-el,
  .board-accent { display: none; }
}

/* ---- Tablet portrait / large phone: 2 narrow cols ---- */
@media (max-width: 768px) {
  nav { padding: 12px 16px; }
  .nav-pill { display: none; }
  .nav-name { display: none; }
  .nav-talk { padding: 8px 14px; font-size: 9px; }

  .wall { padding: 64px 12px 40px; }

  .board {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* All cards span 1 col, stack naturally */
  .c-identity,
  .c-ideas,
  .c-brand,
  .c-ai,
  .c-nancy,
  .c-quote,
  .c-investor,
  .c-meta,
  .c-content,
  .c-strategy,
  .c-social,
  .c-cta  { grid-column: span 1; grid-row: auto; }

  /* Identity card spans full width — it's the hero */
  .c-identity { grid-column: 1 / -1; }

  /* CTA also full width */
  .c-cta { grid-column: 1 / -1; }

  .c-footer { grid-column: 1 / -1; }

  .card { padding: 22px 18px; }

  /* Typography scale-down */
  .identity-title  { font-size: 52px; }
  .ideas-headline  { font-size: 32px; }
  .strategy-headline { font-size: 36px; }
  .quote-text      { font-size: 20px; }
  .cta-headline    { font-size: 20px; }
  .nancy-text      { font-size: 18px; }

  /* Card min-heights */
  .card-identity { min-height: 280px; }
  .card-ai       { min-height: 200px; }
  .card-nancy    { min-height: 200px; }
  .card-ideas    { min-height: 180px; }
  .card-quote    { min-height: 160px; }
  .card-investor { min-height: 180px; }
  .card-meta     { min-height: 140px; }
  .card-content  { min-height: 160px; }
  .card-strategy { min-height: 180px; }
  .card-social   { min-height: 160px; }
  .card-cta      { min-height: 160px; }

  /* Ticker slightly smaller */
  .ticker-item { font-size: 8px; padding: 0 10px; }

  /* Modal full-width on mobile */
  .modal-paper { padding: 36px 28px; }
  .modal-title { font-size: 24px; }
  .modal-body  { font-size: 14px; }
}

/* ---- Small phone: single column ---- */
@media (max-width: 480px) {
  .wall { padding: 60px 10px 32px; }

  .board {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .c-identity,
  .c-ideas,
  .c-brand,
  .c-ai,
  .c-nancy,
  .c-quote,
  .c-investor,
  .c-meta,
  .c-content,
  .c-strategy,
  .c-social,
  .c-cta,
  .c-footer { grid-column: 1 / -1; grid-row: auto; }

  .card { padding: 20px 16px; border-radius: 4px; }

  .identity-title    { font-size: 48px; }
  .ideas-headline    { font-size: 34px; }
  .strategy-headline { font-size: 40px; }
  .quote-text        { font-size: 22px; }
  .cta-headline      { font-size: 22px; }
  .nancy-text        { font-size: 20px; }
  .brand-headline    { font-size: 20px; }
  .ai-headline       { font-size: 20px; }
  .content-headline  { font-size: 20px; }
  .social-headline   { font-size: 20px; }
  .investor-headline { font-size: 30px; }

  /* Show expanded body text without click on mobile */
  .brand-body,
  .content-body,
  .social-body {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }

  /* CTA button full width */
  .cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-btn { width: 100%; text-align: center; }

  /* Footer stacks */
  .card-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Modal */
  .modal-paper { padding: 28px 20px; width: 95%; }
  .modal-title { font-size: 22px; }
  .modal-body  { font-size: 13px; margin-bottom: 20px; }
  .modal-action { font-size: 10px; padding: 11px 18px; }

  /* Disable parallax cursor effect on touch */
  body { cursor: auto; }
  .nav-talk, .cta-btn { cursor: pointer; }
}

/* ============================================================
   COLLAGE ELEMENTS
   ============================================================ */

/* Base */
.collage-el {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 30;
}

/* ---- Identity — megaphone bleeds out bottom-right, large & dramatic ---- */
.el-megaphone-hand {
  width: 220px;
  bottom: 36px;
  right: -30px;
  transform: rotate(8deg);
  filter: drop-shadow(3px 6px 10px rgba(0,0,0,0.4));
  z-index: 40;
}

/* ---- Ideas — lightbulb sketch top-right corner, slightly over edge ---- */
.el-lightbulb-sketch {
  width: 88px;
  top: -16px;
  right: 16px;
  transform: rotate(10deg);
  opacity: 0.9;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.15));
}

/* ---- Brand — mouth+pink bubble bottom-right ---- */
.el-mouth-bubble {
  width: 160px;
  bottom: 10px;
  right: 10px;
  transform: rotate(-4deg);
  filter: drop-shadow(1px 3px 6px rgba(0,0,0,0.15));
}

/* ---- Investor — figures+door bottom, walking out ---- */
.el-figures-door {
  width: 130px;
  bottom: -8px;
  right: 12px;
  transform: rotate(-3deg);
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.2));
}

/* ---- Nancy — hands arch sits at very bottom of card ---- */
.el-hands-arch {
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
  opacity: 0.85;
  filter: drop-shadow(0px -2px 6px rgba(0,0,0,0.1));
  border-radius: 0 0 3px 3px;
}

/* ---- Content — 3 arrows centered, upper half of card ---- */
.el-arrows-content {
  width: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%) rotate(-2deg);
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.12));
}

/* ---- Meta & Strategy — CSS starburst + pointing hand ---- */
.el-starburst {
  width: 140px;
  height: 140px;
  bottom: -10px;
  right: -10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 16-point yellow starburst via clip-path */
.el-starburst::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  clip-path: polygon(
    50% 0%, 56% 18%, 65% 7%, 66% 26%,
    79% 19%, 75% 37%, 91% 35%, 82% 50%,
    100% 53%, 87% 63%, 99% 71%, 83% 74%,
    91% 87%, 74% 84%, 74% 100%, 62% 90%,
    50% 100%, 44% 82%, 35% 93%, 34% 74%,
    21% 81%, 25% 63%, 9% 65%, 18% 50%,
    0% 47%, 13% 37%, 1% 29%, 18% 28%,
    10% 13%, 27% 19%, 26% 2%, 38% 14%
  );
  filter: drop-shadow(2px 3px 6px rgba(0,0,0,0.25));
}

.el-starburst-hand {
  position: relative;
  width: 90px;
  z-index: 2;
  transform: rotate(-15deg) translateY(-5px);
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.2));
}

/* Strategy starburst — larger, bleeds right edge */
.el-starburst-strategy {
  width: 200px;
  height: 200px;
  bottom: -20px;
  right: -40px;
}

.el-starburst-strategy .el-starburst-hand {
  width: 130px;
}

