/* ============================================================
   THE ₹2 LAKH FILE: light "case-file" investigation
   Satire-forward. Self-contained (system fonts, no CDNs).
   Typography kept: system sans + serif + system monospace.
   ============================================================ */

:root {
  /* paper / ink */
  --bg:        #F5F2EA;
  --bg-alt:    #EEEADF;
  --paper:     #FFFFFF;
  --ink:       #1B1810;
  --ink-soft:  #3F3C33;
  --mute:      #6E6A5E;
  --faint:     #8A8578;
  --line:      #DDD6C6;
  --line-soft: #ECE7DA;

  /* signal */
  --red:       #BE3115;
  --red-deep:  #98230C;
  --red-tint:  rgba(190,49,21,.08);
  --amber:     #B26B14;
  --amber-br:  #E08A24;
  --blue:      #2f6df0;   /* the "blue screen" motif */
  --ok:        #3f7d3f;

  --maxw: 1240px;
  --radius: 20px;
  --radius-s: 12px;
  --shadow-card: 0 1px 3px rgba(27,24,16,.04), 0 22px 44px -32px rgba(27,24,16,.30);
  --shadow-lg:   0 2px 6px rgba(27,24,16,.05), 0 34px 66px -40px rgba(27,24,16,.5);
  --ease: cubic-bezier(.22,.7,.25,1);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", "Segoe UI Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
::selection { background: var(--red); color: var(--bg); }

/* ---------- primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 960px; }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--tight { padding: clamp(52px, 7vw, 90px) 0; }
.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); }
.center { text-align: center; }
.tnum { font-variant-numeric: tabular-nums; }

/* section kicker: 01 · THE CASE */
.kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.kicker .n { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; color: var(--red); font-weight: 600; }
.kicker .bar { width: 30px; height: 1px; background: var(--red); opacity: .5; }
.kicker .t { font-family: var(--mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); }

h1,h2,h3,h4 { margin: 0; font-family: var(--sans); font-weight: 800; letter-spacing: -.025em; line-height: 1.03; }
.h-sec { font-size: clamp(32px, 4.8vw, 60px); }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; color: var(--ink-soft); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.redact { background: #2A251A; color: transparent; border-radius: 3px; padding: 0 .35em; user-select: none;
  letter-spacing: -.5px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }

/* label chip */
.exlabel { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--bg);
  background: var(--red); padding: 4px 8px; border-radius: 5px; display: inline-block; }

.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px;
  letter-spacing: .06em; padding: 12px 18px; border-radius: 100px; border: 1px solid transparent; cursor: pointer;
  transition: transform .16s var(--ease), background .2s, border-color .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: #000; color: var(--bg); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn--ghost:hover { border-color: var(--mute); }

/* ============================================================ NAV */
.scanbar { position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--amber-br)); z-index: 300; transition: width .1s linear; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; justify-content: center;
  border-bottom: 1px solid transparent; transition: background .35s var(--ease), border-color .35s var(--ease); }
.nav.scrolled { background: rgba(245,242,234,.85); backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px); border-bottom-color: var(--line); }
.nav__in { width: 100%; max-width: 1360px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 22px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px rgba(190,49,21,.16); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 3px rgba(190,49,21,.16);} 50%{ box-shadow: 0 0 0 7px rgba(190,49,21,0);} }
.brand__name { display: block; font-weight: 800; font-size: 28.5px; letter-spacing: -.02em; line-height: 1.15; white-space: nowrap; }
.brand__name .sry { color: var(--red); }
.brand__name .br { color: var(--ink); }
.brand small { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em; color: var(--faint); margin-top: 5px; line-height: 1.4; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 3px; overflow-x: auto; scrollbar-width: none; }
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute); white-space: nowrap; padding: 8px 9px; border-radius: 7px; transition: color .2s, background .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); background: rgba(0,0,0,.04); }
.nav__links a.warn { color: var(--red); font-weight: 600; }
.nav__status { display: flex; align-items: center; gap: 8px; flex: none; }
.nav__status .s { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--red); font-weight: 600; white-space: nowrap; }
.nav__burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }
@media (max-width: 1080px){
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); flex-direction: column;
    align-items: stretch; gap: 2px; padding: 84px 16px 24px; overflow-y: auto; background: rgba(245,242,234,.98);
    backdrop-filter: blur(18px); border-left: 1px solid var(--line); transform: translateX(102%); transition: transform .34s var(--ease); }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 13px; padding: 13px 12px; }
  .nav__burger { display: block; z-index: 201; }
  .nav__status .s { display: none; }
}

/* ============================================================ HERO (satire) */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 156px 24px 70px; overflow: hidden; }

/* ============================================================ ROAST TICKER (under nav) */
.rmarquee { position: fixed; left: 0; right: 0; top: var(--navh, 66px); z-index: 199; overflow: hidden;
  background: var(--ink); border-top: 1px solid rgba(0,0,0,.25); box-shadow: 0 10px 22px -16px rgba(0,0,0,.5); }
.rmarquee__track { display: flex; align-items: center; width: max-content; white-space: nowrap; will-change: transform;
  animation: rticker 46s linear infinite; }
.rmarquee:hover .rmarquee__track { animation-play-state: paused; }
.rmarquee__track span { font-family: var(--mono); font-size: 12px; letter-spacing: .05em; color: var(--bg); padding: 8px 0; }
.rmarquee__track b { color: var(--amber-br); padding: 0 20px; font-size: 10px; font-weight: 700; }
@keyframes rticker { to { transform: translateX(-50%); } }
.hero__grid { position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(27,24,16,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(27,24,16,.04) 1px, transparent 1px);
  background-size: 64px 64px; -webkit-mask-image: radial-gradient(circle at 50% 38%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 38%, #000, transparent 72%); }
.hero__glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(110% 80% at 50% 118%, rgba(190,49,21,.09), transparent 60%); }
/* faint blue "dead screen" bleed behind hero, tying to the failure */
.hero__blue { position:absolute; inset:0; pointer-events:none; opacity:.5;
  background: radial-gradient(60% 40% at 82% 8%, rgba(47,109,240,.10), transparent 60%); }
.hero__in { position: relative; max-width: 1040px; animation: fadeup 1s var(--ease) both; }
@keyframes fadeup { from{ opacity:0; transform: translateY(26px);} to{ opacity:1; transform:none;} }

.stars { display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px; border: 1px solid var(--line);
  border-radius: 100px; background: rgba(255,255,255,.6); margin-bottom: 28px; }
.stars span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; color: var(--red); }

.hero h1 { font-size: clamp(44px, 9vw, 118px); line-height: .95; letter-spacing: -.04em; }
.hero h1 .l1 { display: block; color: var(--ink); font-size: clamp(20px, 3.4vw, 40px); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 10px; }
.hero h1 .strike { position: relative; color: var(--mute); font-weight: 800; margin-right: .25em; white-space: nowrap; }
.hero h1 .strike::after { content: ""; position: absolute; left: -2%; right: -2%; top: 52%; height: .09em;
  background: var(--red); transform: scaleX(0); transform-origin: left; animation: strike 1s var(--ease) .5s forwards; }
@keyframes strike { to { transform: scaleX(1); } }
.hero h1 .denied { color: var(--red); font-weight: 800; }
.hero__sub { font-family: var(--serif); font-size: clamp(17px, 1.9vw, 23px); line-height: 1.5; color: var(--ink-soft);
  max-width: 720px; margin: 30px auto 0; }
.hero__sub b { color: var(--ink); font-weight: 600; }

/* satirical stat counters */
.counters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0; margin: 46px auto 0;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow-card); max-width: 940px; }
.counter { flex: 1 1 180px; padding: 20px 18px; border-right: 1px solid var(--line-soft); }
.counter:last-child { border-right: 0; }
.counter .v { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.03em; color: var(--red); line-height: 1; }
.counter .v.ink { color: var(--ink); }
.counter .k { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-top: 10px; line-height: 1.5; }
@media (max-width: 720px){ .counter { flex-basis: 50%; border-bottom: 1px solid var(--line-soft); } }

.infinity { margin-top: 26px; }
.infinity .v { font-size: clamp(40px, 6vw, 64px); font-weight: 800; color: var(--red); line-height: 1; }
.infinity .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); margin-top: 8px; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }

.scrolldown { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: var(--faint); animation: float 2.6s ease-in-out infinite; }
.scrolldown span { font-family: var(--mono); font-size: 9px; letter-spacing: .24em; }
.scrolldown i { width: 1px; height: 32px; background: linear-gradient(var(--faint), transparent); }
@keyframes float { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* floating tip-jar joke */
.tipjar { position: fixed; right: 18px; bottom: 18px; z-index: 150; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 100px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: var(--ink); }
.tipjar .t b { color: var(--red); }
.tipjar .rip { font-size: 9px; letter-spacing: .1em; color: var(--bg); background: var(--red); padding: 2px 6px; border-radius: 5px; }
@media (max-width: 620px){ .tipjar { display: none; } }

/* ============================================================ reveal */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; } .rv.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .rv { opacity:1; transform:none; transition:none; } }

/* ============================================================ EXHIBIT A big artifact */
.artifact { position: relative; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #111; box-shadow: var(--shadow-lg); }
.artifact img { width: 100%; height: auto; }
.artifact__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(20px, 3vw, 40px);
  background: linear-gradient(transparent, rgba(10,9,6,.5) 40%, rgba(10,9,6,.92));
  display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; }
.artifact__cap .ex { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--amber-br); margin-bottom: 10px; }
.artifact__cap h3 { color: #F5F2EA; font-size: clamp(22px, 3vw, 40px); font-weight: 700; letter-spacing: -.02em; line-height: 1.06; }
.artifact__cap .meta { font-family: var(--mono); font-size: 11px; line-height: 1.9; letter-spacing: .06em; color: #D9CFBE; text-align: right; }
.artifact__note { font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--faint); margin: 14px 4px 0; line-height: 1.7; }
.artifact__note b { color: var(--ink); font-weight: 600; }

/* ============================================================ CASE grid + file card */
.case-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 68px); align-items: start; }
@media (max-width: 900px){ .case-grid { grid-template-columns: 1fr; } }
.case-copy p { font-size: clamp(16px,1.35vw,19px); line-height: 1.72; color: var(--ink-soft); margin: 0 0 18px; }
.case-copy p b { color: var(--ink); font-weight: 650; }
.case-copy em { color: var(--red); font-style: italic; }

.filecard { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 24px 24px 12px;
  position: sticky; top: 84px; box-shadow: var(--shadow-card); }
.filecard__hd { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; margin-bottom: 4px; border-bottom: 1px solid var(--line-soft); }
.filecard__hd .l { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--red); font-weight: 600; }
.filecard__hd .r { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; color: var(--faint); }
.frow { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.frow:last-child { border-bottom: 0; }
.frow .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); }
.frow .v { font-size: 13.5px; font-weight: 650; color: var(--ink); text-align: right; }
.frow .v.red { color: var(--red); }
.badge-denied { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--bg); background: var(--red); padding: 3px 9px; border-radius: 5px; }

/* ============================================================ TIMELINE */
.tl { position: relative; padding-left: 44px; margin-top: 52px; }
.tl__spine { position: absolute; left: 13px; top: 8px; bottom: 8px; width: 2px; background: var(--line); border-radius: 2px; }
.tl__fill { position: absolute; left: 13px; top: 8px; width: 2px; height: 0; background: var(--red); box-shadow: 0 0 12px rgba(190,49,21,.4); border-radius: 2px; }
.tl-node { position: relative; padding: 0 0 38px; }
.tl-node:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -37px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg-alt);
  border: 2px solid #C9C0AD; transition: background .3s, border-color .3s, box-shadow .3s; }
.tl-node.in .tl-dot { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px rgba(190,49,21,.14); }
.tl-node.hot .tl-dot { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 5px rgba(190,49,21,.2); }
.tl-date { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--red); font-weight: 500; margin-bottom: 6px; }
.tl-h { font-size: 19px; font-weight: 750; letter-spacing: -.01em; color: var(--ink); margin-bottom: 5px; }
.tl-b { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.tl-b em { color: var(--ink); font-style: normal; font-weight: 600; }

/* ============================================================ EVIDENCE cards */
.evgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.evcard { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.evcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0d0d10 center/cover no-repeat; cursor: zoom-in; }
.evcard__media::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: inherit;
  background-size: cover; background-position: center; filter: blur(26px) brightness(.7) saturate(1.15); transform: scale(1.3); }
.evcard__media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--ease); }
.evcard:hover .evcard__media img { transform: scale(1.04); }
.evcard__media .exlabel { position: absolute; top: 12px; left: 12px; z-index: 2; }
.evcard__body { padding: 18px 20px 22px; }
.evcard__body h4 { font-size: 17px; font-weight: 750; letter-spacing: -.01em; margin-bottom: 10px; }
.evcard__sn { font-family: var(--mono); font-size: 11px; letter-spacing: .02em; line-height: 1.85; color: var(--mute); }
.evcard__sn .s { color: var(--ink); font-weight: 600; }
.evcard__sn .x { color: var(--red); font-weight: 600; }

/* compare slider */
.cmp-hd { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.cmp-hd .l { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--red); font-weight: 600; }
.cmp-hd .r { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--faint); }
.cmp { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  cursor: ew-resize; touch-action: none; user-select: none; background: #0d0d10; box-shadow: var(--shadow-lg); }
.cmp img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.cmp > img { object-position: center; }
.cmp__top { position: absolute; inset: 0; z-index: 2; clip-path: inset(0 50% 0 0); }
.cmp__top img { object-position: left top; }
.cmp__tag { position: absolute; z-index: 3; bottom: 14px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; color: #fff;
  background: rgba(17,15,10,.62); padding: 5px 9px; border-radius: 6px; backdrop-filter: blur(6px); }
.cmp__tag.l { left: 14px; } .cmp__tag.r { right: 14px; }
.cmp__handle { position: absolute; z-index: 4; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,.95); transform: translateX(-1px); }
.cmp__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 17px; box-shadow: 0 4px 18px rgba(0,0,0,.4); cursor: ew-resize; }

/* logical gap + email exhibit */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 820px){ .two { grid-template-columns: 1fr; } }
.gap-card { background: var(--paper); border: 1px solid rgba(190,49,21,.35); border-radius: 18px; padding: 30px;
  display: flex; flex-direction: column; justify-content: center; box-shadow: 0 1px 3px rgba(27,24,16,.04), 0 20px 40px -30px rgba(190,49,21,.35); }
.gap-card .l { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--red); font-weight: 600; margin-bottom: 14px; }
.gap-card h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 12px; }
.gap-card p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.gap-card em { color: var(--red); font-style: italic; font-weight: 600; }

.email-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-card); }
.email-card__hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.email-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; }
.email-strip img { height: 190px; width: auto; border-radius: 8px; border: 1px solid var(--line-soft); flex: none; background: #fff; cursor: zoom-in; }
.email-quote { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line-soft); }
.email-quote .q { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.45; color: var(--ink); }
.email-quote .c { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--faint); margin-top: 10px; }

/* ============================================================ WHERE'S THE DAMAGE chips */
.wheres { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.wchip { position: relative; font-family: var(--mono); font-size: 12px; letter-spacing: .02em; color: var(--ink-soft);
  border: 1px solid var(--line); background: var(--paper); border-radius: 100px; padding: 11px 16px; }
.wchip::after { content: "NOT FOUND"; position: absolute; top: -8px; right: -6px; font-family: var(--mono); font-size: 8px;
  letter-spacing: .1em; color: var(--red); background: var(--bg); border: 1px solid rgba(190,49,21,.4); padding: 2px 5px; border-radius: 5px;
  opacity: 0; transform: scale(.7); transition: .3s var(--ease); }
.wchip.flag::after { opacity: 1; transform: none; }

/* ============================================================ GLOSSARY (satire) */
.gloss { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 16px; }
.def { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-card); transition: transform .2s var(--ease); }
.def:hover { transform: translateY(-3px); }
.def .term { font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.def .pos { font-family: var(--serif); font-style: italic; color: var(--mute); font-size: 14px; margin-left: 6px; font-weight: 400; }
.def .say { font-size: 15px; line-height: 1.62; color: var(--ink-soft); margin-top: 10px; }
.def .say b { color: var(--red); font-weight: 650; }

/* ============================================================ BINGO */
.bingo { max-width: 720px; margin: 0 auto; }
.bingo__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.cell { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); cursor: pointer;
  display: grid; place-items: center; text-align: center; padding: 8px; font-size: 10.5px; line-height: 1.28; font-weight: 600;
  color: var(--ink-soft); transition: background .18s, color .18s, transform .12s, border-color .18s; user-select: none; }
.cell:hover { border-color: var(--red); }
.cell.free { background: var(--ink); color: var(--bg); font-family: var(--mono); letter-spacing: .04em; cursor: default; }
.cell.marked { background: var(--red); color: var(--bg); border-color: var(--red); transform: scale(.96); }
.cell.marked::before { content: "✕ "; }
.bingo__foot { text-align: center; margin-top: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--mute); }
.bingo__foot b { color: var(--red); }
@media (max-width: 560px){ .cell { font-size: 8.5px; border-radius: 7px; } }

/* ============================================================ SLOGANS / ROAST */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--bg-alt);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: scrollx 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); font-weight: 600; padding: 0 30px; white-space: nowrap; letter-spacing: -.01em; }
.marquee__track .d { color: var(--red); margin: 0 2px; }
@keyframes scrollx { to { transform: translateX(-50%); } }

.slogans { columns: 3; column-gap: 16px; }
@media (max-width: 900px){ .slogans { columns: 2; } }
@media (max-width: 580px){ .slogans { columns: 1; } }
.slogan { break-inside: avoid; margin: 0 0 16px; padding: 24px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--paper); box-shadow: var(--shadow-card); }
.slogan .q { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }
.slogan .q b { color: var(--red); font-weight: 600; }
.slogan .c { font-size: 13.5px; color: var(--mute); margin-top: 10px; line-height: 1.5; }

.roastlines { display: grid; gap: 14px; margin-top: 22px; }
.roastline { display: flex; gap: 15px; align-items: flex-start; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow-card); }
.roastline .ic { font-size: 20px; line-height: 1.2; }
.roastline p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.roastline p b { color: var(--ink); font-weight: 650; }

/* ============================================================ FESTIVAL banner */
.festival { border-radius: 24px; padding: clamp(34px, 6vw, 68px); text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(190,49,21,.3); background: radial-gradient(90% 130% at 50% -20%, rgba(190,49,21,.1), transparent 60%), var(--paper); box-shadow: var(--shadow-card); }
.festival .l { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--red); margin-bottom: 16px; }
.festival h3 { font-size: clamp(28px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; max-width: 20ch; margin: 0 auto 16px; }
.festival h3 .hl { color: var(--red); }
.festival p { font-family: var(--serif); font-size: clamp(17px, 2vw, 22px); color: var(--ink-soft); max-width: 60ch; margin: 0 auto; line-height: 1.5; }
.festival .fine { font-family: var(--mono); font-size: 11px; letter-spacing: .03em; color: var(--faint); margin-top: 22px; line-height: 1.7; }

/* ============================================================ FIQ accordion */
.fiq { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow-card); }
.fiq__item { border-bottom: 1px solid var(--line-soft); }
.fiq__item:last-child { border-bottom: 0; }
.fiq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; font-family: var(--sans); font-size: clamp(16px,1.8vw,19px); font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.fiq__q .plus { font-family: var(--mono); color: var(--red); flex: none; transition: transform .25s; }
.fiq__item.open .fiq__q .plus { transform: rotate(45deg); }
.fiq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.fiq__a .inner { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.fiq__a .inner .stamp { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--red); border: 1px dashed rgba(190,49,21,.5);
  border-radius: 6px; padding: 4px 8px; display: inline-block; margin-top: 6px; transform: rotate(-2deg); }

/* ============================================================ REVIEWS + cases */
.stars-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.stars-row .big { font-size: clamp(40px,6vw,64px); font-weight: 800; color: var(--red); letter-spacing: -.03em; }
.stars-row .st { font-size: 22px; color: var(--amber-br); letter-spacing: 2px; }
.stars-row .st .dim { color: var(--line); }
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; margin-top: 30px; }
.casecard { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 8px; }
.casecard .st { color: var(--amber-br); font-size: 15px; letter-spacing: 2px; }
.casecard h4 { font-size: 16px; font-weight: 750; letter-spacing: -.01em; }
.casecard p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.casecard .src { margin-top: auto; padding-top: 12px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: var(--faint); }

/* ============================================================ AWARDS */
.awards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; }
.award { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; text-align: center; box-shadow: var(--shadow-card); transition: transform .2s var(--ease); }
.award:hover { transform: translateY(-4px); }
.award .tro { font-size: 40px; }
.award h4 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin: 12px 0 6px; }
.award p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--mute); }

/* ============================================================ AWARENESS */
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 14px; }
.check { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow-card); }
.check .box { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(63,125,63,.12); border: 1px solid rgba(63,125,63,.4); color: var(--ok); display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.check .h { font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.check .s { color: var(--ink-soft); font-size: 13.5px; margin-top: 3px; line-height: 1.5; }

/* ============================================================ OPEN LETTER / CLOSING */
.letter { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: clamp(30px, 5vw, 58px); box-shadow: var(--shadow-card); max-width: 820px; margin: 0 auto; }
.letter .to { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--red); margin-bottom: 20px; }
.letter p { font-family: var(--serif); font-size: clamp(17px,1.7vw,20px); line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; }
.letter p b { color: var(--ink); font-weight: 600; }
.letter .sign { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--mute); margin-top: 24px; }

.closing { text-align: center; padding: clamp(80px, 14vw, 168px) 0; }
.closing .bigq { font-family: var(--serif); font-size: clamp(30px, 6vw, 76px); line-height: 1.05; letter-spacing: -.02em; font-weight: 600; max-width: 20ch; margin: 0 auto; }
.closing .bigq em { color: var(--red); font-style: normal; }
.closing .sub { color: var(--ink-soft); font-size: 18px; margin-top: 26px; }

/* ============================================================ FOOTER */
.footer { border-top: 1px solid var(--line); padding: 56px 0 72px; background: var(--bg-alt); }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px){ .footer .cols { grid-template-columns: 1fr; } }
.footer h5 { font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer li, .footer p { font-size: 13.5px; color: var(--ink-soft); }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--red); }
.disclaimer { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; line-height: 1.8; color: var(--faint); max-width: 92ch; }

/* ============================================================ LIGHTBOX */
.lb { position: fixed; inset: 0; z-index: 400; display: none; place-items: center; padding: 5vh 5vw; background: rgba(20,16,10,.9); backdrop-filter: blur(8px); }
.lb.open { display: grid; }
.lb img { max-width: 100%; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb__cap { position: absolute; bottom: 3.5vh; left: 0; right: 0; text-align: center; color: #E9E3D5; font-family: var(--mono); font-size: 12px; padding: 0 20px; }
.lb__x { position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.3); color: #fff; font-size: 20px; cursor: pointer; }

/* ============================================================ HOVER ZOOM (magnifier) */
.hz { position: relative; overflow: hidden; cursor: zoom-in; }
.hz img { transition: transform .3s var(--ease); will-change: transform; transform-origin: center; }
.hz.zooming img { transition: transform .07s linear; }
/* neutralise the default card image scale so JS controls the zoom */
.evcard:hover .evcard__media.hz img { transform: none; }
.hz-plus { position: absolute; top: 12px; right: 12px; z-index: 4; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(27,24,16,.72); color: #fff; display: grid; place-items: center; font-size: 24px; line-height: 0;
  font-weight: 300; opacity: 0; transform: scale(.7); pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: 0 2px 10px rgba(0,0,0,.35); }
.hz:hover .hz-plus { opacity: 1; transform: none; }
.hz.zooming .hz-plus { opacity: 0; }
@media (hover: none) { .hz { cursor: default; } .hz-plus { display: none; } }

/* ============================================================ EXHIBIT A · PROGRESSION CASCADE */
.cascade { display: flex; align-items: stretch; justify-content: center; gap: 8px; }
.cascade__item { flex: 1 1 0; min-width: 0; position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); transform: rotate(var(--r, 0deg));
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.cascade__item:hover { transform: rotate(0deg) translateY(-6px); box-shadow: var(--shadow-lg); z-index: 3; }
.cascade__item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; background: #111; }
.cascade__stamp { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em; color: #fff; background: var(--red); padding: 4px 8px; border-radius: 5px; }
.cascade__item figcaption { padding: 12px 14px 14px; font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); }
.cascade__arrow { flex: 0 0 auto; align-self: center; font-family: var(--mono); font-size: 26px; color: var(--red); font-weight: 700; }
@media (max-width: 720px){
  .cascade { flex-direction: column; gap: 4px; }
  .cascade__item { width: 100%; transform: none; }
  .cascade__item img { aspect-ratio: 16/10; object-position: center; }
  .cascade__arrow { transform: rotate(90deg); padding: 2px 0; }
}

/* ============================================================ SLOGAN BANDS (distributed roast) */
.slgband { text-align: center; padding: clamp(34px, 6vw, 64px) 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: radial-gradient(80% 130% at 50% 0%, rgba(190,49,21,.05), transparent 60%), var(--bg-alt); }
.slgband .q { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 4.2vw, 46px); line-height: 1.08;
  letter-spacing: -.02em; max-width: 24ch; margin: 0 auto; color: var(--ink); }
.slgband .q b { color: var(--red); font-weight: 600; }
.slgband .c { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); margin-top: 14px; }
.slgband.diwali { background: radial-gradient(90% 150% at 50% -10%, rgba(224,138,36,.17), transparent 60%), var(--paper); border-color: rgba(224,138,36,.45); }
.slgband.diwali .q b { color: var(--amber-br); }

/* ============================================================ SERVICE CENTRE ROAST */
.mismatch { border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px 14px; background: var(--bg); }
.mm-k { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--faint); margin-bottom: 6px; }
.mm-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.mm-tag { font-family: var(--mono); font-size: 9px; letter-spacing: .05em; padding: 3px 6px; border-radius: 4px; white-space: nowrap; }
.mm-tag.ok { background: rgba(63,125,63,.14); color: var(--ok); }
.mm-tag.bad { background: var(--red-tint); color: var(--red); }
.mm-x { font-family: var(--mono); font-size: 9px; font-weight: 700; color: var(--red); border: 1px solid rgba(190,49,21,.5); border-radius: 4px; padding: 2px 5px; margin-left: auto; }
.callout { margin-top: 22px; border: 1px solid rgba(190,49,21,.35); border-radius: 18px; padding: clamp(24px, 4vw, 40px);
  background: radial-gradient(120% 110% at 0 0, rgba(190,49,21,.06), transparent 60%), var(--paper); box-shadow: var(--shadow-card); }
.callout p { font-family: var(--serif); font-size: clamp(18px, 2.1vw, 24px); line-height: 1.5; color: var(--ink); margin: 0 0 14px; }
.callout p:last-of-type { margin-bottom: 0; }
.callout p b { color: var(--red); font-weight: 600; }
.callout .fine { font-family: var(--mono); font-size: 10.5px; letter-spacing: .03em; color: var(--faint); margin-top: 18px; line-height: 1.7; }

/* ============================================================ QUESTION THEIR JUDGMENT */
.judgebox { margin-top: 24px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow-card); }
.judgebox__hd { padding: 16px 22px; border-bottom: 1px solid var(--line-soft); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--red); font-weight: 600; background: var(--red-tint); }
.judge-q { padding: 20px 22px; border-bottom: 1px solid var(--line-soft); font-family: var(--serif); font-size: clamp(16.5px, 1.9vw, 19.5px); line-height: 1.5; color: var(--ink); display: flex; gap: 14px; }
.judge-q:last-child { border-bottom: 0; }
.judge-q b { color: var(--red); font-weight: 600; }
.judge-q .qm { flex: none; font-family: var(--sans); font-weight: 800; color: var(--line); font-size: 22px; line-height: 1.1; }
