/* ==========================================================
   BANANA AIRLINES · Cronograma Steam Page
   Aesthetic: vintage tropical airline poster + boarding-pass
   ========================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colors */
  --banana:        #F5C518;
  --banana-soft:   #FFE783;
  --banana-deep:   #C9A20A;
  --cream:         #F4EDD7;
  --cream-deep:    #ECE0BC;
  --paper:         #FBF6E4;
  --palm:          #2C5530;
  --palm-light:    #6B9362;
  --palm-soft:     #B5CFA8;
  --sky:           #5B9BC4;
  --sky-soft:      #BCD8E8;
  --sky-deep:      #2F6F95;
  --coral:         #D94B3E;
  --coral-deep:    #A82F24;
  --pink:          #E8829F;
  --ink:           #1A1A1F;
  --ink-soft:      #4A4A52;

  /* Status */
  --status-pending-bg:   #ECE0BC;
  --status-pending-text: #6B5E33;
  --status-pending-line: #B6A271;

  --status-progress-bg:   #FFE783;
  --status-progress-text: #6B4E04;
  --status-progress-line: #C9A20A;

  --status-done-bg:   #C7DEB7;
  --status-done-text: #234826;
  --status-done-line: #6B9362;

  /* Owners */
  --ow-v: var(--coral);
  --ow-j: var(--sky-deep);
  --ow-f: var(--palm);
  --ow-l: var(--banana-deep);

  /* Type */
  --font-display: "Stardos Stencil", "Bowlby One", Impact, sans-serif;
  --font-chunk:   "Bowlby One", system-ui, sans-serif;
  --font-mono:    "DM Mono", ui-monospace, "Courier New", monospace;
  --font-body:    "Fraunces", Georgia, serif;

  /* Layout */
  --maxw: 1180px;
  --section-pad-y: clamp(4rem, 9vw, 7rem);
  --section-pad-x: clamp(1.25rem, 4vw, 3rem);
  --radius: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 80% -10%, rgba(245, 197, 24, 0.18), transparent 55%),
    radial-gradient(ellipse at 0% 20%, rgba(232, 130, 159, 0.10), transparent 50%),
    radial-gradient(ellipse at 50% 110%, rgba(91, 155, 196, 0.10), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; margin: 0; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--banana); color: var(--ink); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Departure ticker ---------- */
.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  gap: 1.75rem;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  animation: tickerScroll 38s linear infinite;
}
.ticker__item b {
  color: var(--banana);
  margin-right: 0.4rem;
  font-weight: 500;
}
.ticker__sep { color: var(--coral); opacity: 0.8; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(4rem, 10vw, 8rem) var(--section-pad-x) clamp(3rem, 7vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0 60px,
      rgba(44, 85, 48, 0.025) 60px 61px
    );
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  text-align: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 0.4rem;
}
.hero__kicker-rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--ink);
}

/* ----- Wordmark ----- */
.wordmark {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.88;
}

.wordmark__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wordmark__word {
  font-size: clamp(3.4rem, 14vw, 11rem);
  letter-spacing: 0.045em;
  color: var(--ink);
  text-shadow:
    -3px 2px 0 rgba(217, 75, 62, 0.65),
    3px -2px 0 rgba(91, 155, 196, 0.55);
  position: relative;
  /* slight transformation for friendslop kilter */
  transform: rotate(-0.5deg);
}

.wordmark__row:nth-child(3) .wordmark__word {
  transform: rotate(0.4deg);
}

.wordmark__row--mid {
  margin: clamp(0.4rem, 1vw, 0.8rem) 0;
  gap: 1rem;
}
.wordmark__star {
  color: var(--coral);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
}
.wordmark__plate {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1.2vw, 0.95rem);
  letter-spacing: 0.32em;
  color: var(--ink);
  background: var(--banana);
  padding: 0.45rem 1rem 0.35rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
}

.hero__tag {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 38ch;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-style: italic;
  font-family: var(--font-body);
  color: var(--ink);
}
.hero__tag em { font-style: italic; color: var(--coral); }
.hero__tag strong {
  font-style: normal;
  background: var(--banana-soft);
  padding: 0 0.3rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ----- Hero CTA (luggage tag) ----- */
.hero__cta {
  display: inline-block;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-decoration: none;
  color: var(--ink);
  transform: rotate(-2.4deg);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.hero__cta:hover { transform: rotate(-1deg) translateY(-3px); }

.hero__cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  background: var(--cream);
  padding: 0.85rem 1.4rem 0.85rem 2.1rem;
  border: 2px solid var(--ink);
  border-radius: 4px 16px 16px 4px;
  box-shadow: 4px 4px 0 var(--coral);
  font-family: var(--font-chunk);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
.hero__cta-hole {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

/* ----- Hero decorations ----- */
.hero__palm {
  position: absolute;
  bottom: -2rem;
  width: clamp(120px, 14vw, 200px);
  z-index: 1;
  opacity: 0.85;
  filter: drop-shadow(2px 4px 0 rgba(26, 26, 31, 0.15));
}
.hero__palm--left  { left: -1rem; transform: rotate(-8deg); }
.hero__palm--right { right: -1rem; transform: scaleX(-1) rotate(-8deg); }

.hero__banana {
  position: absolute;
  top: 12%;
  right: 9%;
  width: clamp(60px, 7vw, 110px);
  z-index: 2;
  transform: rotate(22deg);
  filter: drop-shadow(3px 4px 0 rgba(26, 26, 31, 0.18));
  animation: floatBanana 7s ease-in-out infinite;
}
@keyframes floatBanana {
  0%, 100% { transform: rotate(22deg) translateY(0); }
  50%      { transform: rotate(18deg) translateY(-12px); }
}

.hero__plane {
  position: absolute;
  top: 18%;
  left: 7%;
  width: clamp(80px, 9vw, 150px);
  z-index: 2;
  transform: rotate(-12deg);
  filter: drop-shadow(3px 5px 0 rgba(26, 26, 31, 0.18));
  animation: floatPlane 8s ease-in-out infinite;
}
@keyframes floatPlane {
  0%, 100% { transform: rotate(-12deg) translate(0, 0); }
  50%      { transform: rotate(-15deg) translate(10px, -8px); }
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
  position: relative;
  padding: var(--section-pad-y) var(--section-pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}

.section + .section {
  border-top: 2px dashed var(--ink);
}
.section + .section::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.section__num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--banana);
  padding: 0.35rem 0.7rem 0.25rem;
  letter-spacing: 0.15em;
  border-radius: 3px;
}
.section__title {
  font-family: var(--font-chunk);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.005em;
  margin: 0;
  line-height: 0.95;
  color: var(--ink);
}
.section__rule {
  flex: 1;
  height: 2px;
  background:
    repeating-linear-gradient(
      to right,
      var(--ink) 0 8px,
      transparent 8px 14px
    );
  margin-top: 0.4rem;
}
.section__nameplate {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--coral);
  text-transform: uppercase;
  border: 2px solid var(--coral);
  padding: 0.3rem 0.7rem 0.2rem;
  border-radius: 3px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

/* ============================================
   ROUTE / ITINERARIO (horizontal milestones)
   ============================================ */
.route__intro {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.2rem);
  max-width: 52ch;
}

.route__rail {
  position: relative;
  padding: 1.4rem 1rem 1.6rem;
  background:
    repeating-linear-gradient(135deg,
      transparent 0 18px,
      rgba(91, 155, 196, 0.05) 18px 36px),
    var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
}

.route__stops {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  gap: 0.6rem 0.45rem;
  position: relative;
  align-items: center;
  justify-items: center;
}

.route__stops::before {
  /* dotted route line behind dots row */
  content: '';
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  justify-self: stretch;
  height: 3px;
  background-image:
    repeating-linear-gradient(to right,
      var(--ink) 0 9px,
      transparent 9px 16px);
  z-index: 0;
  margin: 0 -0.4rem;
}

.stop {
  display: grid;
  grid-column: span 1;
  grid-row: 1 / span 4;
  grid-template-rows: subgrid;
  align-items: center;
  justify-items: center;
  text-align: center;
  position: relative;
  gap: 0;
}

.stop__date {
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  white-space: nowrap;
}

.stop__dot {
  grid-row: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  position: relative;
  z-index: 2;
}

.stop__label {
  grid-row: 3;
  font-family: var(--font-chunk);
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-top: 0.45rem;
  padding: 0 0.15rem;
}

.stop__sub {
  grid-row: 4;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--ink-soft);
  max-width: 14ch;
  margin-top: 0.2rem;
}

/* Current ("HOY") */
.stop--now .stop__dot {
  background: var(--coral);
  box-shadow:
    0 0 0 4px rgba(217, 75, 62, 0.18),
    2px 2px 0 var(--ink);
  animation: pulseNow 2.4s ease-in-out infinite;
}
.stop--now .stop__label { color: var(--coral); }
@keyframes pulseNow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(217, 75, 62, 0.18), 2px 2px 0 var(--ink); }
  50%      { box-shadow: 0 0 0 10px rgba(217, 75, 62, 0.04), 2px 2px 0 var(--ink); }
}

/* Big milestones — shared base */
.stop--ready .stop__dot,
.stop--launch .stop__dot,
.stop--lock .stop__dot,
.stop--fest .stop__dot {
  width: 56px;
  height: 56px;
  border-width: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stop--ready .stop__dot svg,
.stop--launch .stop__dot svg,
.stop--lock .stop__dot svg,
.stop--fest .stop__dot svg {
  width: 30px;
  height: auto;
  display: block;
}
.stop--ready .stop__date,
.stop--launch .stop__date,
.stop--lock .stop__date,
.stop--fest .stop__date {
  padding: 0.2rem 0.55rem 0.15rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.stop--ready .stop__label,
.stop--launch .stop__label,
.stop--lock .stop__label,
.stop--fest .stop__label {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stop--ready .stop__sub,
.stop--launch .stop__sub,
.stop--lock .stop__sub,
.stop--fest .stop__sub {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Página interna (Jun 1) — sky / stamp */
.stop--ready .stop__dot {
  width: 64px;
  height: 64px;
  background: var(--sky-soft);
  border-width: 3px;
  box-shadow:
    0 0 0 5px rgba(91, 155, 196, 0.20),
    4px 4px 0 var(--sky-deep);
  transform: rotate(-6deg);
}
.stop--ready .stop__dot svg { width: 38px; }
.stop--ready .stop__date {
  background: var(--sky-soft);
  color: var(--ink);
}
.stop--ready .stop__label {
  color: var(--sky-deep);
}

/* Despegue (Jul 1) — banana */
.stop--launch .stop__dot {
  background: var(--banana);
  box-shadow:
    0 0 0 5px rgba(217, 75, 62, 0.22),
    4px 4px 0 var(--coral);
}
.stop--launch .stop__date {
  background: var(--banana);
  color: var(--ink);
}
.stop--launch .stop__label {
  color: var(--coral);
}

/* Demo lock (Sep 19) — palm */
.stop--lock .stop__dot {
  background: var(--palm-light);
  box-shadow:
    0 0 0 5px rgba(44, 85, 48, 0.22),
    4px 4px 0 var(--palm);
}
.stop--lock .stop__date {
  background: var(--palm-light);
  color: var(--ink);
}
.stop--lock .stop__label {
  color: var(--palm);
}

/* Next Fest (Oct 19) — coral pink */
.stop--fest .stop__dot {
  background: var(--pink);
  box-shadow:
    0 0 0 5px rgba(217, 75, 62, 0.30),
    4px 4px 0 var(--coral);
}
.stop--fest .stop__date {
  background: var(--pink);
  color: var(--ink);
}
.stop--fest .stop__label {
  color: var(--coral-deep);
}

/* Mobile / vertical layout */
@media (max-width: 760px) {
  .route__rail { padding: 1rem 0.8rem 1.2rem; }

  .route__stops {
    grid-template-columns: 70px 28px 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    grid-auto-flow: row;
    gap: 0.3rem 0.9rem;
    align-items: start;
    justify-items: stretch;
    text-align: left;
  }
  .route__stops::before {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: stretch;
    justify-self: center;
    width: 3px;
    height: auto;
    background-image:
      repeating-linear-gradient(to bottom,
        var(--ink) 0 9px,
        transparent 9px 16px);
    margin: 0.6rem 0;
  }

  .stop {
    grid-column: 1 / -1;
    grid-row: auto / span 1;
    grid-template-columns: 70px 28px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: start;
    text-align: left;
    column-gap: 0.9rem;
    row-gap: 0.05rem;
    padding: 0.5rem 0;
  }
  .stop__date {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    text-align: right;
  }
  .stop__dot {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    margin: 0;
  }
  .stop__label {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    text-align: left;
    padding: 0;
  }
  .stop__sub {
    grid-column: 3;
    grid-row: 2;
    margin-top: 0;
    max-width: none;
  }

  .stop--ready .stop__dot,
  .stop--launch .stop__dot,
  .stop--lock .stop__dot,
  .stop--fest .stop__dot {
    width: 44px;
    height: 44px;
  }
  .stop--ready .stop__dot { width: 50px; height: 50px; }
  .stop--ready .stop__dot svg { width: 30px; }
  .stop--launch .stop__dot svg,
  .stop--lock .stop__dot svg,
  .stop--fest .stop__dot svg { width: 24px; }
}

/* ============================================
   PITCH
   ============================================ */
.pitch__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.pitch__lead {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  margin-top: 0;
  color: var(--ink);
  font-weight: 400;
}
.pitch__lead em { color: var(--coral); font-style: italic; }

.dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.85;
  margin: 0.15rem 0.5rem 0 0;
  color: var(--coral);
  text-shadow:
    -2px 1px 0 var(--ink);
}

.pitch__para {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.pitch__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem 0.32rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.chip b { color: var(--ink); font-weight: 500; }
.chip--alert {
  background: var(--coral);
  color: var(--cream);
}
.chip--alert b { color: var(--cream); }
.chip--ghost {
  background: transparent;
  border-style: dashed;
}

.pitch__stamp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pitch__stamp svg {
  width: 100%;
  max-width: 240px;
  transform: rotate(-9deg);
  filter: drop-shadow(2px 3px 0 rgba(217, 75, 62, 0.2));
}

/* ============================================
   CREW
   ============================================ */
.crew__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 2vw, 1.6rem);
}
@media (max-width: 1080px) {
  .crew__grid { grid-template-columns: repeat(2, 1fr); }
}

.crew-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.crew-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.crew-card--v { background: linear-gradient(180deg, #FCE3DF 0%, var(--paper) 35%); }
.crew-card--j { background: linear-gradient(180deg, #DDEAF4 0%, var(--paper) 35%); }
.crew-card--f { background: linear-gradient(180deg, #D6E5CF 0%, var(--paper) 35%); }
.crew-card--l { background: linear-gradient(180deg, #FCEFB7 0%, var(--paper) 35%); }

.crew-card__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.crew-card__owner {
  width: 54px;
  height: 54px;
  font-size: 1.7rem;
  font-family: var(--font-chunk);
  flex-shrink: 0;
}
.crew-card__role {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.crew-card__name {
  margin: 0.15rem 0 0;
  font-family: var(--font-chunk);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.crew-card__manifest {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  border-top: 1px dashed var(--ink-soft);
  padding-top: 1rem;
  font-size: 0.85rem;
}
.crew-card__manifest dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  align-self: center;
}
.crew-card__manifest dd {
  margin: 0;
  font-family: var(--font-mono);
  color: var(--ink);
  text-align: right;
}

.crew-card__stamp {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--coral);
  border: 2px solid var(--coral);
  padding: 0.35rem 0.5rem 0.25rem;
  border-radius: 3px;
  transform: rotate(-9deg);
  background: rgba(244, 237, 215, 0.5);
}
.crew-card__stamp span:last-child {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  margin-top: 0.05rem;
}

.crew-card__perf {
  position: absolute;
  left: 0; right: 0;
  bottom: 32%;
  height: 4px;
  background-image: radial-gradient(circle, var(--ink) 1.2px, transparent 1.6px);
  background-size: 6px 4px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.4;
}

.crew__note {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  text-align: center;
}

/* ============================================
   GOAL / DESTINO
   ============================================ */
.goal__board {
  background: var(--ink);
  color: var(--banana);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--coral);
  border: 2px solid var(--ink);
}
.goal__board::before {
  /* faint pattern */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(245, 197, 24, 0.07) 1.5px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
}

.goal__date {
  font-family: var(--font-mono);
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1rem, 3vw, 1.8rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 4px;
  border: 3px solid var(--banana);
  box-shadow: 0 0 0 5px var(--ink);
  position: relative;
  z-index: 2;
}
.goal__date-month {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.08em;
  color: var(--coral);
}
.goal__date-day {
  font-family: var(--font-chunk);
  font-size: clamp(4.5rem, 13vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.goal__date-year {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.goal__copy {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--cream);
  max-width: 32rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
}
.goal__copy strong {
  color: var(--banana);
  font-weight: 600;
}

.goal__route {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.goal__route-end {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.goal__route-end--arrival { text-align: right; }
.goal__route-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--palm-light);
  text-transform: uppercase;
}
.goal__route-value {
  font-family: var(--font-chunk);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
.goal__route-line { width: 100%; }
.goal__route-line svg { width: 100%; height: 30px; }

.goal__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}
.goal__chips .chip {
  background: transparent;
  border-color: var(--banana);
  color: var(--banana);
  border-style: dashed;
}
.goal__chips .chip b { color: var(--banana); }

/* ============================================
   PLAN / TIMELINE
   ============================================ */
.plan__intro {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.plan__intro .ow { width: 24px; height: 24px; font-size: 0.78rem; }

.month {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.month__banner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 3px;
  margin-bottom: 1.4rem;
  background: var(--banana);
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}
.month__banner--jun { background: var(--sky-soft); }
.month__banner--jul { background: #FCE3DF; }
.month__banner--ago { background: #D6E5CF; }
.month__banner--sep { background: var(--banana-soft); }
.month__banner--oct {
  background: var(--coral);
  color: var(--cream);
}
.month__banner--oct .month__name,
.month__banner--oct .month__sub,
.month__banner--oct .month__count { color: var(--cream); }
.month__banner--oct .month__count { border-color: var(--cream); }
.month__name {
  font-family: var(--font-chunk);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.month__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  flex: 1;
}
.month__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0.2rem 0.6rem 0.15rem;
  border-radius: 2px;
}

/* ----- Boarding pass ----- */
.pass {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 130px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pass:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.pass::after {
  /* perforated divider line between main and stub */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 130px;
  width: 4px;
  background-image: radial-gradient(circle, var(--ink) 1.3px, transparent 1.8px);
  background-size: 4px 11px;
  background-repeat: repeat-y;
  background-position: center;
  pointer-events: none;
}

.pass__main {
  padding: 1.4rem 1.4rem 1.5rem;
}

.pass__row--top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  border-bottom: 1.5px dashed var(--ink-soft);
  padding-bottom: 0.7rem;
}
.pass__code {
  background: var(--ink);
  color: var(--banana);
  padding: 0.2rem 0.55rem 0.15rem;
  border-radius: 2px;
}
.pass__range {
  color: var(--ink);
  font-weight: 500;
}
.pass__pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem 0.18rem;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.pass__pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.pass.status-pending  .pass__pill { color: var(--status-pending-text);  background: var(--status-pending-bg); }
.pass.status-pending  .pass__pill::after { content: 'Por embarcar'; }
.pass.status-progress .pass__pill { color: var(--status-progress-text); background: var(--status-progress-bg); }
.pass.status-progress .pass__pill::after { content: 'En vuelo'; }
.pass.status-done     .pass__pill { color: var(--status-done-text);     background: var(--status-done-bg); }
.pass.status-done     .pass__pill::after { content: 'Aterrizado'; }

.pass__title {
  margin: 1rem 0 0.3rem;
  font-family: var(--font-chunk);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pass__sub {
  margin: 0 0 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
}

.pass__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.deliverable {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.deliverable:hover { transform: translateX(3px); }

.deliv__check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  position: relative;
  flex-shrink: 0;
}
.deliv__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
}
.deliv__owners {
  display: inline-flex;
  gap: 0.25rem;
}

.deliverable.status-pending  { background: var(--paper); }
.deliverable.status-progress { background: var(--banana-soft); }
.deliverable.status-progress .deliv__check { background: var(--banana); border-color: var(--ink); }
.deliverable.status-progress .deliv__check::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.6); opacity: 0.6; }
}
.deliverable.status-done {
  background: var(--status-done-bg);
}
.deliverable.status-done .deliv__check { background: var(--palm); border-color: var(--palm); }
.deliverable.status-done .deliv__check::after {
  content: '';
  width: 12px; height: 7px;
  border-left: 2.5px solid var(--cream);
  border-bottom: 2.5px solid var(--cream);
  transform: rotate(-45deg) translate(1px, -2px);
}
.deliverable.status-done .deliv__text { text-decoration: line-through; opacity: 0.7; }

.deliverable--milestone {
  background: var(--banana-soft) !important;
  border-color: var(--coral);
  border-width: 2px;
  position: relative;
}
.deliverable--milestone::before {
  content: '✦';
  position: absolute;
  left: -10px;
  top: -9px;
  background: var(--coral);
  color: var(--cream);
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  border: 2px solid var(--ink);
}

/* Stub */
.pass__stub {
  background: var(--banana);
  border-left: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 1rem 0.5rem;
  text-align: center;
  position: relative;
}
.pass__stub-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.pass__stub-num {
  font-family: var(--font-chunk);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pass__stub-month {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--coral);
}
.pass__stub-foot {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* ----- Milestone variants ----- */
.pass--milestone {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(217, 75, 62, 0.04) 14px 28px),
    var(--paper);
  border-color: var(--coral);
}
.pass--milestone .pass__stub--milestone { background: var(--coral); }
.pass--milestone .pass__stub--milestone .pass__stub-num,
.pass--milestone .pass__stub--milestone .pass__stub-month { color: var(--cream); }
.pass--milestone .pass__stub--milestone .pass__stub-label,
.pass--milestone .pass__stub--milestone .pass__stub-foot { color: var(--banana); }

.pass--launch {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(91, 155, 196, 0.06) 14px 28px),
    var(--paper);
  border-color: var(--sky-deep);
}
.pass--launch .pass__stub--launch { background: var(--sky-deep); }
.pass--launch .pass__stub--launch .pass__stub-num,
.pass--launch .pass__stub--launch .pass__stub-month { color: var(--cream); }
.pass--launch .pass__stub--launch .pass__stub-label,
.pass--launch .pass__stub--launch .pass__stub-foot { color: var(--banana); }

.pass__milestone-stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--coral);
  border: 2px solid var(--coral);
  padding: 0.25rem 0.6rem 0.18rem;
  border-radius: 3px;
  transform: rotate(-7deg);
  background: rgba(244, 237, 215, 0.7);
  z-index: 5;
  pointer-events: none;
}
.pass__milestone-stamp--launch {
  color: var(--sky-deep);
  border-color: var(--sky-deep);
  transform: rotate(-4deg);
}

/* ----- Owner badges ----- */
.ow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--font-chunk);
  font-size: 0.78rem;
  color: var(--cream);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  letter-spacing: 0;
  line-height: 1;
}
.ow--v { background: var(--ow-v); }
.ow--j { background: var(--ow-j); }
.ow--f { background: var(--ow-f); }
.ow--l { background: var(--ow-l); }
.ow.inline {
  width: 22px; height: 22px;
  font-size: 0.7rem;
  margin: 0 1px;
  vertical-align: -5px;
}

/* Toggleable owner buttons (rendered by JS inside .deliv__owners) */
button.ow {
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-family: var(--font-chunk);
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 0.15s ease, transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
button.ow:hover { transform: scale(1.12); }
button.ow:active { transform: scale(0.95); }
button.ow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.ow.is-on { opacity: 1; }
.ow.is-off,
.ow.is-off.ow--v,
.ow.is-off.ow--j,
.ow.is-off.ow--f,
.ow.is-off.ow--l {
  background: transparent;
  color: var(--ink-soft);
  border-style: dashed;
  border-color: var(--ink-soft);
  opacity: 0.45;
}
.ow.is-off:hover {
  opacity: 0.85;
  border-color: var(--ink);
  color: var(--ink);
}
.deliv__owners {
  gap: 0.3rem;
}

/* ============================================
   MANIFIESTO DE CARGA
   ============================================ */
.manifest__intro {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.manifest__warn {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  padding: 0.2rem 0.55rem 0.15rem;
  border-radius: 2px;
}

.manifest__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(91, 155, 196, 0.10) 39px 40px),
    var(--paper);
  padding: 1.2rem 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
}

.manifest-item {
  display: grid;
  grid-template-columns: 50px 32px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.7rem;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  background: var(--cream);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.manifest-item:hover { transform: translateX(4px); }

.manifest-item__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  border-right: 1.5px dashed var(--ink-soft);
  padding-right: 0.7rem;
}
.manifest-item__check {
  width: 24px; height: 24px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.manifest-item__name {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.3;
}
.manifest-item__pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem 0.18rem;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  white-space: nowrap;
}

.manifest-item.status-pending  { background: var(--cream); }
.manifest-item.status-pending  .manifest-item__pill { color: var(--status-pending-text);  background: var(--status-pending-bg); }
.manifest-item.status-pending  .manifest-item__pill::after { content: 'Por embarcar'; }

.manifest-item.status-progress { background: var(--banana-soft); }
.manifest-item.status-progress .manifest-item__pill { color: var(--status-progress-text); background: var(--banana); }
.manifest-item.status-progress .manifest-item__pill::after { content: 'En vuelo'; }
.manifest-item.status-progress .manifest-item__check::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

.manifest-item.status-done { background: var(--status-done-bg); }
.manifest-item.status-done .manifest-item__pill { color: var(--status-done-text); background: var(--palm-soft); }
.manifest-item.status-done .manifest-item__pill::after { content: 'Aterrizado'; }
.manifest-item.status-done .manifest-item__check { background: var(--palm); border-color: var(--palm); }
.manifest-item.status-done .manifest-item__check::after {
  content: '';
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--cream);
  border-bottom: 2.5px solid var(--cream);
  transform: rotate(-45deg) translate(1px, -2px);
}
.manifest-item.status-done .manifest-item__name { text-decoration: line-through; opacity: 0.7; }

/* ============================================
   RISKS
   ============================================ */
.risks__card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: 6px 6px 0 var(--coral);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0 16px,
      rgba(217, 75, 62, 0.04) 16px 32px);
}
.risks__stamp {
  position: absolute;
  top: -12px;
  right: clamp(1rem, 4vw, 3rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--coral);
  background: var(--paper);
  border: 3px double var(--coral);
  padding: 0.45rem 0.9rem 0.35rem;
  border-radius: 3px;
  transform: rotate(4deg);
  line-height: 1.05;
}
.risks__lead {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  max-width: 50ch;
}
.risks__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 1.2rem;
}
.risks__list li {
  position: relative;
  padding: 0.7rem 0.8rem 0.7rem 2rem;
  border-left: 3px solid var(--coral);
  background: rgba(244, 237, 215, 0.6);
  font-size: 1rem;
  line-height: 1.45;
}
.risks__list li::before {
  content: '?';
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  font-family: var(--font-display);
  color: var(--coral);
  font-size: 1.4rem;
  line-height: 1;
}
.risks__list li b { color: var(--ink); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem var(--section-pad-x);
  margin-top: 4rem;
  border-top: 2px solid var(--ink);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer__col--right { text-align: right; }
.footer__col--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__line {
  margin: 0;
  font-family: var(--font-chunk);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--banana);
}
.footer__small {
  margin: 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
}
.footer__sig {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.32em;
  border: 2px solid var(--banana);
  padding: 0.5rem 0.9rem 0.4rem;
  color: var(--banana);
  border-radius: 2px;
  transform: rotate(-2deg);
}
.footer__date {
  margin: 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--banana);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.section, .pass {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.is-visible, .pass.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .section, .pass {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__banana, .hero__plane { animation: none; }
  .ticker__track { animation: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 880px) {
  .pitch__grid { grid-template-columns: 1fr; }
  .pitch__stamp { order: -1; }
  .pitch__stamp svg { max-width: 180px; }
  .crew__grid { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__col--right { text-align: center; }
}

@media (max-width: 720px) {
  .ticker__track { font-size: 0.7rem; }
  .pass {
    grid-template-columns: 1fr;
  }
  .pass::after {
    /* horizontal perforation */
    top: auto;
    right: 0;
    bottom: 88px;
    left: 0;
    width: auto;
    height: 4px;
    background-image: radial-gradient(circle, var(--ink) 1.3px, transparent 1.8px);
    background-size: 11px 4px;
    background-repeat: repeat-x;
  }
  .pass__stub {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0.9rem;
    height: 88px;
    gap: 0.5rem 1rem;
  }
  .pass__stub-num { font-size: 2rem; }
  .pass__milestone-stamp { top: 8px; left: 8px; }

  .manifest-item {
    grid-template-columns: auto auto 1fr;
    gap: 0.55rem;
  }
  .manifest-item__pill {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 0.3rem;
  }
  .manifest-item__num { padding-right: 0.4rem; }

  .goal__route {
    grid-template-columns: 1fr;
  }
  .goal__route-end, .goal__route-end--arrival { text-align: center; }
  .goal__route-line { transform: rotate(90deg); margin: 0.5rem 0; }

  .section__head {
    flex-wrap: wrap;
  }
  .section__rule { order: 4; flex-basis: 100%; }
  .section__nameplate { margin-left: auto; }

  .hero__palm { display: none; }
}

@media (max-width: 460px) {
  .wordmark__plate { font-size: 0.65rem; padding: 0.35rem 0.7rem 0.3rem; }
  .goal__date {
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
  }
  .month__banner { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .month__count { align-self: flex-start; }
  .pass__row--top { font-size: 0.7rem; }
}
