/* ─────────────────────────────────────────────
   Kidora demo — global styles
   Brand tokens:
   --cream  #fdf8ee   (primary surface)
   --navy   #1a2d5a   (brand)
   --orange #f07d20   (accent)
   --yellow #e8c62a   (secondary accent)
   --teal   #20b8c8   (messages)
   --green  #2db54c   (payments)
   --red    #e84040   (incident)
   ───────────────────────────────────────────── */

:root {
  --cream: #fdf8ee;
  --cream-2: #f7eeda;
  --paper: #fffaf0;
  --navy: #1a2d5a;
  --navy-2: #243866;
  --navy-soft: #4a5a86;
  --orange: #f07d20;
  --yellow: #e8c62a;
  --teal: #20b8c8;
  --green: #2db54c;
  --red: #e84040;
  --ink: #1a2d5a;
  --ink-2: #3b4a73;
  --ink-3: #8088a1;
  --line: rgba(26, 45, 90, 0.10);
  --line-2: rgba(26, 45, 90, 0.18);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-script: "Caveat", "Plus Jakarta Sans", cursive;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #ece4d2;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Scale-to-fit outer wrapper */
.stage-fit {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ece4d2;
  overflow: hidden;
}
.stage-fit > .stage {
  width: 1360px;
  height: 900px;
  transform-origin: center center;
  flex-shrink: 0;
  position: relative;
}

button {
  font-family: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* ─────────────────────────────────────────────
   Stage — full viewport scene
   ───────────────────────────────────────────── */
.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(60% 50% at 50% 25%, #fdf8ee 0%, #f5ead0 50%, #ece4d2 100%);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(60, 40, 10, 0.18);
}

/* warm grain overlay — premium "physical paper" feel */
.stage::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(180, 140, 70, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(180, 140, 70, 0.06) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

/* subtle vignette */
.stage::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 50%, rgba(60,40,10,0.08) 100%);
}

.scene-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 460px 1fr;
  grid-template-rows: 76px 800px 44px;
  gap: 0;
}

/* ─────────────────────────────────────────────
   Cinema chrome — top progress rail
   ───────────────────────────────────────────── */
.top-rail {
  grid-column: 1 / 4;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding: 22px 36px 0;
  gap: 24px;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand-mark {
  display: flex;
  gap: 2px;
}
.kidora-blocks .blk {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.brand-mark .blk {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.now-playing {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
}
.now-playing .rec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-rec 1.6s ease-in-out infinite;
}
@keyframes pulse-rec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

.chapter-rail {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
}
.chapter-seg {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(26,45,90,0.10);
  overflow: hidden;
  position: relative;
}
.chapter-seg .fill {
  position: absolute; inset: 0;
  background: var(--seg-color, var(--navy));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 80ms linear;
}
.chapter-seg.done .fill { transform: scaleX(1); }
.chapter-seg.active .fill {
  background: var(--seg-color, var(--orange));
}

.skip-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 9px 14px;
  border-radius: 99px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.skip-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ─────────────────────────────────────────────
   Left/right cinema callouts
   ───────────────────────────────────────────── */
.left-col, .right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
  gap: 16px;
  z-index: 5;
  position: relative;
  grid-row: 2;
}
.left-col { grid-column: 1; align-items: flex-end; text-align: right; }
.right-col { grid-column: 3; align-items: flex-start; }

/* Center column has the phone */
.center-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
}

/* Time saved HUD */
.time-hud {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 18px 48px rgba(26,45,90,0.10), 0 2px 6px rgba(26,45,90,0.04);
  min-width: 260px;
  position: relative;
}
.time-hud .label {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.time-hud .label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(240,125,32,0.18);
}
.time-hud .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 78px;
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin: 8px 0 0;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 8px;
}
.time-hud .big .unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.time-hud .sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.4;
}
.time-hud .tick {
  position: absolute;
  top: 22px;
  right: -2px;
  transform: translateX(100%);
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 99px;
  margin-left: 10px;
  
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(240,125,32,0.4);
}
@keyframes tick-pop {
  0% { transform: translateX(100%) scale(0.4); opacity: 0; }
  20% { transform: translateX(100%) scale(1.18); opacity: 1; }
  40% { transform: translateX(100%) scale(1); }
  85% { transform: translateX(100%) scale(1); opacity: 1; }
  100% { transform: translateX(100%) scale(0.7); opacity: 0; }
}

/* Spotlight callouts (right side) */
.spotlight {
  background: var(--cream);
  border: 1.5px solid var(--navy);
  border-radius: 18px;
  padding: 18px 22px;
  max-width: 320px;
  position: relative;
  box-shadow: 4px 4px 0 0 var(--navy);
  font-family: var(--font-display);
  transform: rotate(-0.5deg);
}
@keyframes spotlight-in {
  from { opacity: 0; transform: translateY(8px) translateX(8px) rotate(-1deg); }
  to { opacity: 1; transform: translateY(0) translateX(0) rotate(-0.5deg); }
}
.spotlight .eyebrow {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.spotlight .body {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.32;
  color: var(--navy);
  font-weight: 600;
}
.spotlight .arrow {
  position: absolute;
  left: -34px;
  top: 50%;
  width: 36px;
  height: 2px;
  background: var(--navy);
}
.spotlight .arrow::before {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: 0; height: 0;
  border: 5px solid transparent;
  border-right-color: var(--navy);
}

/* Scene chip */
.scene-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  padding: 6px 12px 6px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(26,45,90,0.06);
}
.scene-chip .num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent, var(--navy));
  color: white;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ─────────────────────────────────────────────
   Bottom bar: caption + skip
   ───────────────────────────────────────────── */
.bottom-bar {
  grid-column: 1 / 4;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px 24px;
  z-index: 5;
  gap: 16px;
}

.bottom-caption {
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.bottom-caption .ico-eye {
  display: inline-flex;
}

/* ─────────────────────────────────────────────
   Phone chat — inside iOS frame
   ───────────────────────────────────────────── */
.chat-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 56px 16px 12px;
  background: rgba(253,248,238,0.92);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  gap: 12px;
  z-index: 4;
  height: 92px;
  box-sizing: border-box;
}
.chat-header .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  flex-shrink: 0;
}
.chat-header .who {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
}
.chat-header .who .name {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.1;
}
.chat-header .who .sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 2px;
  display: flex; align-items: center; gap: 5px;
}
.chat-header .who .sub::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(45,181,76,0.18);
}
.chat-header .menu-dots {
  margin-left: auto;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: 1px;
}

.chat-scroll {
  position: absolute;
  top: 92px;
  bottom: 84px;
  left: 0; right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 14px 80px;
  background: var(--cream);
}
.chat-scroll::-webkit-scrollbar { width: 0; display: none; }

.day-divider {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 4px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.day-divider::before, .day-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Bubble base */
.bubble-row {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
}
.bubble-row.left { justify-content: flex-start; }
.bubble-row.right { justify-content: flex-end; }

.bubble {
  max-width: 82%;
  padding: 10px 13px 9px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.38;
  font-family: var(--font-body);
  position: relative;
}
.bubble.sabrina {
  background: white;
  color: var(--navy);
  border-bottom-left-radius: 5px;
  box-shadow: 0 1px 3px rgba(26,45,90,0.06);
}
.bubble.owner {
  background: var(--navy);
  color: white;
  border-bottom-right-radius: 5px;
  box-shadow: 0 1px 4px rgba(26,45,90,0.18);
}
.bubble.parent {
  background: #e8f6e9;
  color: #163a1d;
  border-bottom-left-radius: 5px;
  box-shadow: 0 1px 3px rgba(26,45,90,0.05);
}
.bubble.staff {
  background: #e9f0fa;
  color: var(--navy);
  border-bottom-left-radius: 5px;
  box-shadow: 0 1px 3px rgba(26,45,90,0.05);
}
.bubble .meta-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 2px;
  color: inherit;
  opacity: 0.7;
}
.bubble .timestamp {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.55;
  margin-top: 2px;
  text-align: right;
}
.bubble .bullets {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  gap: 4px;
}
.bubble .bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}
.bubble .bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 2px white;
}
.bubble .bullets li.pending::before { background: var(--orange); }

.typing-dots {
  display: flex; gap: 4px;
  padding: 4px 2px;
}
.typing-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy-soft);
  animation: typing-bounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.typing-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* In-chat banner (cinema only) */
.chat-banner {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  padding: 14px 16px;
  margin: -12px -14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  
}
@keyframes banner-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.chat-banner .sun {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 40%, transparent 70%);
  position: relative;
  flex-shrink: 0;
}
.chat-banner .sun::before {
  content: "☀";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--cream);
}
.chat-banner .label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1px;
}
.chat-banner .title {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Action card — embedded card under a Sabrina message */
.action-card {
  background: white;
  border-radius: 16px;
  padding: 14px 14px;
  margin: 2px 0 8px;
  max-width: 88%;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(26,45,90,0.08), 0 0 0 1px var(--line);
  font-family: var(--font-display);
  /* removed:  */
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.action-card .ac-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, var(--navy));
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.action-card .ac-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent, var(--navy));
}
.action-card .ac-row {
  display: flex; align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--navy);
  gap: 10px;
}
.action-card .ac-row:first-of-type { border-top: none; padding-top: 2px; }
.action-card .ac-row.head {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  border-top: none;
  padding: 0 0 6px;
}
.action-card .ac-row .label { flex: 1; font-weight: 600; }
.action-card .ac-row .val { font-weight: 700; font-family: var(--font-mono); font-size: 13px; }
.action-card .ac-row .val.warn { color: var(--red); }
.action-card .ac-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1.5px dashed var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.action-card .ac-total .l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.action-card .ac-total .v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent, var(--navy));
  font-variant-numeric: tabular-nums;
}
.action-card .ac-foot {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.action-card .ac-foot .check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent, var(--green));
  color: white;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 900;
}

/* Roster checklist card */
.roster-row {
  display: flex; align-items: center;
  padding: 5px 0;
  font-size: 13px;
  gap: 8px;
  color: var(--navy);
}
.roster-row .name { flex: 1; font-weight: 600; }
.roster-row .status {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.roster-row .status.present { background: #ddf3df; color: #237b34; }
.roster-row .status.late { background: #ffeec9; color: #8a5b00; }
.roster-row .status.out { background: #fadbdb; color: #9d1f1f; }
.roster-row .status.unknown { background: #e8eaf1; color: var(--ink-2); }

/* Weekly card */
.weekly-stat {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.weekly-stat:first-of-type { border-top: none; padding-top: 2px;}
.weekly-stat .l { color: var(--ink-2); font-weight: 600; }
.weekly-stat .v {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}
.weekly-stat .v.good { color: var(--green); }
.weekly-stat .v.warn { color: var(--orange); }

/* Alert pill — proactive */
.alert-pill {
  background: white;
  border-left: 4px solid var(--accent, var(--orange));
  border-radius: 14px;
  padding: 12px 14px;
  margin: 2px 0 8px;
  max-width: 88%;
  align-self: flex-start;
  box-shadow: 0 2px 12px rgba(26,45,90,0.08);
  font-family: var(--font-body);
  /* removed:  */
}
.alert-pill .ap-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--accent, var(--orange));
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.alert-pill .ap-head .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent, var(--orange));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 13px;
}
.alert-pill .ap-body {
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.4;
}

/* Bilingual incident report — HERO */
.incident-hero {
  margin: 6px 0 8px;
  max-width: 96%;
  align-self: stretch;
  /* removed:  */
}
.incident-hero .ih-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.incident-hero .ih-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-rec 1.6s ease-in-out infinite;
}
.report-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 14px 12px;
  font-family: var(--font-display);
  position: relative;
  box-shadow: 0 4px 18px rgba(26,45,90,0.10), 0 0 0 1px var(--line);
  overflow: hidden;
}
.report-card.en {
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 21px,
      rgba(26,45,90,0.06) 21px,
      rgba(26,45,90,0.06) 22px
    ),
    var(--paper);
  margin-bottom: 8px;
}
.report-card.es {
  background: linear-gradient(180deg, #fff7e3 0%, #fdf8ee 100%);
}
.report-card .rc-head {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--navy);
  margin-bottom: 8px;
}
.report-card .rc-flag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.report-card .rc-flag .country {
  font-size: 14px; line-height: 1;
}
.report-card .rc-stamp {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 3px;
  padding: 2px 6px;
  transform: rotate(-4deg);
  text-transform: uppercase;
  opacity: 0.85;
}
.report-card .rc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.report-card .field {
  display: flex;
  font-size: 11.5px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.report-card .field .k {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 700;
  width: 84px;
  flex-shrink: 0;
  font-size: 9.5px;
  padding-top: 2px;
}
.report-card .field .v {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  flex: 1;
}
.report-card.es .rc-body {
  font-family: var(--font-body);
  font-size: 13px;
  color: #2a2a3d;
  line-height: 1.5;
  font-weight: 500;
}
.report-card.es .rc-body p { margin: 0 0 7px; }
.report-card .rc-sign {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-2);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.report-card .sig {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--navy);
  line-height: 0.9;
  flex: 1;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}
.report-card .sig-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

/* tear divider */
.tear-divider {
  height: 8px;
  margin: -4px 0 4px;
  background-image:
    linear-gradient(45deg, transparent 4px, var(--cream) 5px),
    linear-gradient(-45deg, transparent 4px, var(--cream) 5px);
  background-size: 8px 8px;
  background-position: 0 0, 4px 0;
  background-repeat: repeat-x;
  position: relative;
}

/* ─────────────────────────────────────────────
   Composer (bottom of phone)
   ───────────────────────────────────────────── */
.composer {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 12px 14px 28px;
  background: rgba(253,248,238,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  z-index: 4;
  transition: opacity 800ms ease, filter 800ms ease;
}
.composer.dim {
  opacity: 0.38;
  filter: saturate(0.6);
  pointer-events: none;
}
.composer-row {
  display: flex; align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  padding: 4px 4px 4px 16px;
  transition: border-color 200ms, box-shadow 200ms;
}
.composer-row:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,45,90,0.08);
}
.composer-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  padding: 8px 0;
  background: transparent;
}
.composer-input::placeholder { color: var(--ink-3); }
.composer-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 150ms;
}
.composer-btn:hover { transform: scale(1.04); }
.composer-btn:disabled { background: var(--ink-3); cursor: not-allowed; }
.composer-mic {
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}

.composer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(240,125,32, 0.5);
}
.composer.handoff .composer-glow {
  
}
@keyframes composer-pulse {
  0% { opacity: 0; box-shadow: 0 0 0 0 rgba(240,125,32, 0.6); }
  25% { opacity: 1; box-shadow: 0 0 0 14px rgba(240,125,32, 0.0); }
  50% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,198,42, 0.6); }
  75% { opacity: 1; box-shadow: 0 0 0 14px rgba(232,198,42, 0.0); }
  100% { opacity: 0; }
}

/* Suggestion chips inline in chat */
.chips-stack {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.chip-suggestion {
  background: white;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(26,45,90,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 180ms ease;
  /* removed:  */
  width: 100%;
}
@keyframes chip-in {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chip-suggestion .ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent, var(--cream-2));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chip-suggestion .lbl {
  flex: 1;
  line-height: 1.3;
}
.chip-suggestion:hover {
  border-color: var(--navy);
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,45,90,0.10);
}
.chip-suggestion:active { transform: scale(0.985); }

/* Primary "jump to the real app" chip — visually distinct from the canned chips */
.chip-realapp {
  margin-top: 4px;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
  box-shadow: 0 6px 18px rgba(26,45,90,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  transition: all 180ms ease;
}
.chip-realapp .lbl { flex: 1; line-height: 1.3; }
.chip-realapp:hover:not(:disabled) {
  background: var(--navy-2, #142348);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(26,45,90,0.26);
}
.chip-realapp:active:not(:disabled) { transform: scale(0.985); }
.chip-realapp:disabled { opacity: 0.7; cursor: wait; }

/* Handoff strip — appears in chat at end of cinema */
.handoff-strip {
  margin: 10px 0 8px;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  color: var(--navy);
  position: relative;
  overflow: hidden;
  font-family: var(--font-display);
  align-self: stretch;
  box-shadow: 0 8px 22px rgba(240,125,32, 0.25);
  /* removed:  */
}
.handoff-strip::before {
  content: "";
  position: absolute;
  right: -20px; top: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.handoff-strip .hs-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.handoff-strip .hs-num .unit {
  font-size: 16px;
  font-weight: 700;
  margin-left: 4px;
  opacity: 0.7;
}
.handoff-strip .hs-tagline {
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 4px;
  color: var(--navy);
}
.handoff-strip .hs-cta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.005em;
}

/* Free-mode pill (after handoff, on phone) */
.free-pill {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--line);
  padding: 4px 10px 4px 6px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 10px rgba(26,45,90,0.08);
  z-index: 10;
  white-space: nowrap;
}
.free-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(45,181,76,0.18);
}

/* ─────────────────────────────────────────────
   Cinema chrome fade-out (via .fading class)
   ───────────────────────────────────────────── */
.top-rail, .left-col, .right-col, .bottom-bar {
  transition: opacity 700ms ease, transform 700ms ease;
}
.top-rail.fading, .left-col.fading, .right-col.fading, .bottom-bar.fading {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

/* Free-mode sidebar (visible after handoff) */
.free-sidebar {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex; align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 14px 10px 10px;
  border-radius: 99px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(26,45,90,0.10);
  z-index: 6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease 300ms, transform 600ms ease 300ms;
}
.free-sidebar.visible {
  opacity: 1;
  transform: translateY(0);
}
.free-sidebar .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
.free-sidebar .text {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.3;
}
.free-sidebar .text b { color: var(--navy); font-weight: 800; }
.free-sidebar .restart {
  margin-left: 4px;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: var(--cream);
  transition: background 180ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
}
.free-sidebar .restart:hover { background: var(--navy); color: white; }

/* ─────────────────────────────────────────────
   PHONE / TABLET-PORTRAIT NATIVE SHELL
   Full-bleed chat, slim topbar, no iOS bezel.
   ───────────────────────────────────────────── */
.phone-shell {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  font-family: var(--font-body);
  overflow: hidden;
}

.phone-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 10px;
  padding-top: max(12px, env(safe-area-inset-top));
  background: white;
  border-bottom: 1px solid var(--line);
  z-index: 10;
  flex-shrink: 0;
}
.phone-topbar-brand {
  flex-shrink: 0;
  transform: scale(0.78);
  transform-origin: left center;
  margin-right: -16px;
}
.phone-topbar-saved {
  flex: 1;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.phone-topbar-saved b {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-right: 4px;
}
.phone-topbar-saved .unit {
  font-weight: 600;
  color: var(--ink-2);
  margin-left: 2px;
}
.phone-topbar-saved .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,125,32,0.2);
  flex-shrink: 0;
}
.phone-topbar-saved .tick-mini {
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: auto;
}
.phone-topbar-skip {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 6px 12px;
  background: white;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 180ms;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.phone-topbar-skip:hover { background: var(--navy); color: white; border-color: var(--navy); }

.phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.phone-restart {
  position: fixed;
  bottom: max(8px, env(safe-area-inset-bottom));
  right: 12px;
  z-index: 12;
}
.phone-restart .restart {
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-2);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 2px 8px rgba(26,45,90,0.08);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Native chat surface — flex-flow, not absolute */
.chat-header.native {
  position: relative;
  top: auto; left: auto; right: auto;
  padding: 14px 16px 12px;
  height: auto;
  min-height: 60px;
  background: white;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
  flex-shrink: 0;
}
.chat-scroll.native {
  position: relative;
  top: auto; bottom: auto; left: auto; right: auto;
  flex: 1;
  padding: 14px 14px 24px;
}
.composer.native {
  position: relative;
  bottom: auto; left: auto; right: auto;
  padding: 10px 12px max(12px, env(safe-area-inset-bottom));
  flex-shrink: 0;
}

/* Scene caption strip — thin row below chat-header, only in cinema */
.scene-caption-strip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: white;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.scene-caption-strip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent, var(--navy));
  flex-shrink: 0;
}
.scene-caption-strip .lbl {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Larger touch targets on phone */
.phone-shell .chip-suggestion {
  padding: 14px 16px;
  font-size: 15px;
}
.phone-shell .composer-btn {
  width: 40px; height: 40px;
}
.phone-shell .composer-input {
  font-size: 16px; /* prevent iOS auto-zoom on focus */
}

/* Make bubble text more comfortable on phone */
.phone-shell .bubble {
  font-size: 15px;
  max-width: 88%;
}

/* Lead form on phone — full sheet */
.phone-shell .lead-overlay {
  position: fixed;
}

/* Hide the inner free-pill in native mode (topbar shows mode instead) */
.phone-shell .free-pill { display: none; }
.lead-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.lead-overlay.open { pointer-events: auto; }
.lead-overlay .scrim {
  position: absolute;
  inset: 0;
  background: rgba(26,45,90,0.4);
  opacity: 0;
  transition: opacity 400ms ease;
  border-radius: 48px;
}
.lead-overlay.open .scrim { opacity: 1; }

.lead-sheet {
  position: relative;
  width: 100%;
  background: var(--cream);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 22px 20px 28px;
  font-family: var(--font-display);
  transform: translateY(100%);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -20px 60px rgba(26,45,90,0.2);
}
.lead-overlay.open .lead-sheet { transform: translateY(0); }

.lead-sheet .casita-wrap {
  display: flex; justify-content: center;
  margin-top: -6px;
  margin-bottom: 8px;
}
.lead-sheet .kidora-blocks {
  display: flex; gap: 4px;
  justify-content: center;
  margin: 6px 0 14px;
}
.lead-sheet .kidora-blocks .blk {
  width: 28px; height: 28px;
  border-radius: 6px;
  color: white;
  font-family: "Impact", "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  /* removed:  */
}
@keyframes block-wave {
  from { opacity: 0; transform: translateY(12px) scale(0.6); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-sheet h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  text-align: center;
  letter-spacing: -0.01em;
}
.lead-sheet .sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-2);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
}
.lead-sheet input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  background: white;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 180ms;
}
.lead-sheet input:focus { border-color: var(--navy); }
.lead-sheet input::placeholder { color: var(--ink-3); }
.lead-sheet .submit-row {
  display: flex; gap: 8px;
}
.lead-sheet .submit-row input { flex: 1; margin-bottom: 0; }
.lead-sheet .submit-btn {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
  flex-shrink: 0;
  transition: background 180ms;
}
.lead-sheet .submit-btn:hover { background: var(--navy-2); }
.lead-sheet .submit-btn:disabled { opacity: .55; cursor: not-allowed; }
.lead-sheet .lead-error {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #c93b3b;
  text-align: center;
}
.lead-sheet .social {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-2);
  text-align: center;
  display: flex;
  align-items: center; justify-content: center; gap: 6px;
}
.lead-sheet .social .avatars {
  display: flex;
}
.lead-sheet .social .avatars .av {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--cream);
  margin-left: -6px;
  background: var(--accent, var(--orange));
}
.lead-sheet .social .avatars .av:first-child { margin-left: 0; }
.lead-sheet .dismiss {
  display: block; width: 100%;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 3px;
}

.lead-thanks {
  text-align: center;
  padding: 20px 0 6px;
}
.lead-thanks .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
  animation: tick-pop 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lead-thanks h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}
.lead-thanks p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   Pre-roll overlay (initial play CTA)
   ───────────────────────────────────────────── */
.preroll {
  position: absolute;
  inset: 0;
  z-index: 50;
  background:
    radial-gradient(ellipse 100% 80% at 50% 35%, #fffcf2 0%, #fbf2d8 60%, #f3e6c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  overflow: hidden;
  transition: opacity 700ms ease, transform 700ms ease;
}
.preroll.gone { opacity: 0; transform: scale(1.04); pointer-events: none; }

.preroll-main {
  width: 100%;
  max-width: 640px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.preroll-wordmark {
  margin-bottom: 28px;
  opacity: 0.95;
}

.preroll-art {
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 28px rgba(60,40,10,0.10));
}

.preroll .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
  background: rgba(240,125,32,0.10);
  padding: 7px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.preroll .eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-rec 1.6s ease-in-out infinite;
}

.preroll h1 {
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.028em;
  margin: 0 0 22px;
  line-height: 1.05;
  text-wrap: balance;
}
.preroll h1 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.005em;
  font-size: 1.02em;
}

.preroll .lede {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 30px;
  line-height: 1.6;
  text-wrap: pretty;
}
.preroll .lede b {
  color: var(--navy);
  font-weight: 700;
}

.preroll .play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: white;
  border-radius: 99px;
  padding: 13px 22px 13px 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms, background 200ms;
  box-shadow: 0 14px 30px rgba(26,45,90,0.22);
}
.preroll .play:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(26,45,90,0.32);
  background: var(--navy-2);
}
.preroll .play:active { transform: scale(0.98); }

/* Phone shell preroll — tighter spacing */
.phone-shell .preroll-main { padding: 24px 22px; }
.phone-shell .preroll h1 { font-size: clamp(28px, 9vw, 40px); }
.phone-shell .preroll .lede { font-size: 14.5px; max-width: 480px; }
.phone-shell .preroll-art { margin-bottom: 18px; }
.phone-shell .preroll-wordmark { margin-bottom: 22px; }
