/* PAE Nutricar Cartagena — PWA prototype */

:root {
  --red: #EC4F4F;
  --red-deep: #D03A3A;
  --red-soft: #FDECEC;
  --red-tint: #FFF5F5;
  --green: #4FA85F;
  --green-soft: #E8F5EA;
  --yellow: #F5C04F;
  --yellow-soft: #FEF6E0;

  --ink: #1F1A17;
  --ink-2: #4A4340;
  --ink-3: #8A817C;
  --ink-4: #BDB5B0;
  --line: #ECE6E1;
  --line-2: #F5F0EB;

  --bg: #FBF7F4;
  --card: #FFFFFF;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-sm: 0 1px 2px rgba(31,26,23,.04), 0 2px 6px rgba(31,26,23,.04);
  --shadow-md: 0 4px 14px rgba(31,26,23,.06), 0 12px 30px rgba(31,26,23,.06);
  --shadow-lg: 0 10px 30px rgba(236,79,79,.18), 0 30px 60px rgba(31,26,23,.10);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #f0ebe6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }

/* ==== App container inside iPhone ==== */
.app {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
  /* iPhone status bar (~54px) and home indicator (~34px) safe areas */
  padding-top: 54px;
  padding-bottom: 34px;
}

/* Children of .screen that fill it must be flex columns themselves */
.screen > .today,
.screen > .history,
.screen > .welcome,
.screen > .detail,
.screen > .login {
  flex: 1;
  min-height: 0;
}

.screen-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.screen-scroll::-webkit-scrollbar { width: 0; }

/* ==== Typography ==== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}
.h1 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin: 0; }
.h2 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; margin: 0; }
.h3 { font-size: 17px; font-weight: 700; letter-spacing: -.005em; line-height: 1.25; margin: 0; }
.body { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0; }
.small { font-size: 13px; line-height: 1.45; color: var(--ink-3); margin: 0; }
.tiny { font-size: 11px; letter-spacing: .04em; color: var(--ink-3); margin: 0; }

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(236,79,79,.32);
}
.btn-primary:hover { background: var(--red-deep); }
.btn-primary:disabled {
  background: var(--ink-4);
  box-shadow: none;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
}
.btn-soft {
  background: var(--red-soft);
  color: var(--red-deep);
}

.btn-block { width: 100%; }

/* ==== Login screen ==== */
.login {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  background:
    radial-gradient(circle at 80% -10%, rgba(236,79,79,.10), transparent 55%),
    radial-gradient(circle at -10% 100%, rgba(245,192,79,.14), transparent 50%),
    var(--bg);
}

.login-logo {
  margin-top: 8px;
  width: 56px;
  height: 56px;
  align-self: flex-start;
}
.login-logo img { width: 100%; height: 100%; object-fit: contain; }

.login-hero {
  margin-top: 18px;
}
.login-hero .h1 { font-size: 26px; }
.login-hero .body { margin-top: 8px; max-width: 90%; font-size: 14px; }

.field {
  margin-top: 20px;
}
.field-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  display: block;
}

.input,
.select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.input::placeholder { color: var(--ink-4); }
.input:focus, .select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(236,79,79,.12); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select { padding-right: 48px; }

.login-foot {
  padding: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.login-foot .btn { width: 100%; }
.login-foot .small { text-align: center; }

/* ==== Welcome / video screen ==== */
.welcome {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.welcome-top {
  padding: 8px 22px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.welcome-top img { width: 36px; height: 36px; }
.welcome-top .name { font-weight: 700; font-size: 14px; }
.welcome-top .role { font-size: 11px; color: var(--ink-3); }

.video-card {
  margin: 14px 22px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
  position: relative;
  box-shadow: var(--shadow-md);
}
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.welcome-body {
  padding: 22px 22px 0;
}
.welcome-body .h2 { margin-bottom: 8px; }
.welcome-body .body { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.welcome-foot {
  padding: 18px 22px 24px;
  background: linear-gradient(to top, var(--bg) 80%, transparent);
}

/* ==== Plato del día (Today) ==== */
.today {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.app-header {
  padding: 12px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg);
}
.app-header .greet { min-width: 0; flex: 1; }
.app-header .greet .small { color: var(--ink-3); font-size: 12px; line-height: 1.2; }
.app-header .greet .name { font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.2; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red-deep);
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}

.date-pill {
  margin: 0 20px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  align-self: flex-start;
  width: fit-content;
}
.date-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.today-eyebrow {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.today-eyebrow .h1 { font-size: 22px; }

.dish-hero {
  margin: 12px 20px 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 11;
  background: #ddd;
  box-shadow: var(--shadow-md);
}
.dish-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dish-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 45%, transparent 70%);
}
.dish-hero .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dish-hero .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.dish-hero .title-block {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: #fff;
}
.dish-hero .title-block .meal-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.dish-hero .title-block .name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}

/* Composition / macros */
.composition {
  margin: 14px 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.macro {
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px 10px;
  border: 1px solid var(--line);
  min-width: 0;
}
.macro .label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.macro .val {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 2px;
  color: var(--ink);
  line-height: 1.15;
}
.macro .val small {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  margin-left: 2px;
}
.macro .item {
  font-size: 11.5px;
  color: var(--ink-2);
  margin-top: 1px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.macro.accent-red    { background: var(--red-soft);    border-color: transparent; }
.macro.accent-red    .label, .macro.accent-red    .val small { color: var(--red-deep); }
.macro.accent-green  { background: var(--green-soft);  border-color: transparent; }
.macro.accent-green  .label, .macro.accent-green  .val small { color: var(--green); }
.macro.accent-yellow { background: var(--yellow-soft); border-color: transparent; }
.macro.accent-yellow .label, .macro.accent-yellow .val small { color: #B07A00; }

/* Balance card */
.balance {
  margin: 12px 20px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 14px 14px;
}
.balance-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.balance-head .h3 { font-size: 14px; }
.balance-head .pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 9px;
  border-radius: 999px;
}

.balance-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bar-row {
  display: grid;
  grid-template-columns: 76px 1fr 36px;
  align-items: center;
  gap: 8px;
}
.bar-row .bname { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.bar-row .btrack {
  height: 8px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.bar-row .bfill {
  height: 100%;
  border-radius: 999px;
  transition: width .8s cubic-bezier(.2,.7,.2,1);
}
.bar-row .bval { font-size: 12px; font-weight: 700; color: var(--ink-3); text-align: right; }

/* Ingredients card */
.ingredients {
  margin: 14px 20px 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.ingredients .h3 { font-size: 15px; margin-bottom: 10px; }
.ing-list { display: flex; flex-direction: column; gap: 10px; }
.ing-list .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.ing-list .row .name { color: var(--ink); }
.ing-list .row .qty { color: var(--ink-3); font-weight: 600; font-size: 13px; }

/* History CTA */
.history-cta {
  margin: 14px 20px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FF6B6B, #EC4F4F);
  color: #fff;
  padding: 14px 14px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(236,79,79,.28);
  position: relative;
  overflow: hidden;
}
.history-cta::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.10);
  border-radius: 50%;
}
.history-cta .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  flex-shrink: 0;
  z-index: 1;
}
.history-cta .copy { flex: 1; z-index: 1; min-width:0; }
.history-cta .copy .t1 { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; font-weight: 700; }
.history-cta .copy .t2 { font-size: 14px; font-weight: 700; letter-spacing: -.005em; line-height: 1.2; margin-top: 2px; }
.history-cta .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  z-index: 1;
  flex-shrink: 0;
}

/* ==== Bottom tab bar ==== */
.tabbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 18px 4px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 0;
  color: var(--ink-3);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.tab.active { color: var(--red); }
.tab svg { display: block; }

/* ==== History screen ==== */
.history {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.history-top {
  padding: 8px 20px 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
}
.history-top .titles .h2 { font-size: 18px; }
.history-top .titles .small { font-size: 12px; }

.layout-toggle {
  margin: 8px 20px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  position: relative;
}
.layout-toggle button {
  height: 36px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: color .2s;
}
.layout-toggle button.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 10px rgba(236,79,79,.25);
}

/* Grid layout */
.grid-layout {
  padding: 4px 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.grid-cell {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: #ccc;
  cursor: pointer;
  transition: transform .15s;
}
.grid-cell:active { transform: scale(.97); }
.grid-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.grid-cell .gtag {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.grid-cell .gname {
  position: absolute;
  left: 8px; right: 8px; bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

/* List layout */
.list-layout {
  padding: 4px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.list-row:active { transform: scale(.99); }
.list-row .thumb {
  width: 64px; height: 64px;
  border-radius: 13px;
  overflow: hidden;
  background: #eee;
}
.list-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-row .meta .day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.list-row .meta .dn { font-size: 14px; font-weight: 700; line-height: 1.25; color: var(--ink); }
.list-row .meta .dt { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.list-row .chev {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red-deep);
  display: grid; place-items: center;
}

/* Calendar layout */
.cal-layout {
  padding: 4px 20px 24px;
}
.cal-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 12px;
}
.cal-month .name { font-size: 14px; font-weight: 700; }
.cal-month .nav {
  display: flex; gap: 6px;
}
.cal-month .nav button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
  padding: 4px 0;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: var(--line-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
}
.cal-day.empty { background: transparent; cursor: default; }
.cal-day.weekend { background: transparent; color: var(--ink-4); }
.cal-day.has-meal {
  color: #fff;
  font-weight: 700;
}
.cal-day.has-meal img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cal-day.has-meal .num {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  font-size: 13px;
}
.cal-day.has-meal::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,.05));
}
.cal-day.today {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

/* Detail screen */
.detail {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.detail-hero {
  position: relative;
  aspect-ratio: 4/4.2;
  background: #ddd;
  overflow: hidden;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-hero .grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, transparent 30%, transparent 60%, rgba(0,0,0,.55) 100%);
}
.detail-hero .back {
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.detail-hero .day-tag {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-hero .title {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  color: #fff;
}
.detail-hero .title .meal { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; font-weight: 700; }
.detail-hero .title .h1 { font-size: 26px; margin-top: 4px; }

.detail-body {
  padding: 18px 20px 28px;
}

/* Toasts */
.toast {
  position: absolute;
  left: 20px; right: 20px;
  bottom: 90px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  z-index: 50;
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Screen transitions */
.screen-enter {
  animation: screenEnter .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes screenEnter {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.screen-fade {
  animation: fadeIn .3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Stage outside iPhone */
.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(236,79,79,.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245,192,79,.10), transparent 50%),
    #ECE5DD;
  gap: 12px;
}
.stage-title {
  text-align: center;
  font-family: var(--font);
  color: var(--ink-2);
}
.stage-title .name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--ink);
}
.stage-title .sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}
