/* SPEC §11.3 — Google Inbox travel bundles: white cards on light grey,
   Roboto, coloured circular type glyphs, elevation-1 shadows. Colour is
   load-bearing; dandelion yellow appears in the wordmark only. */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #f1f3f4; --card: #ffffff; --text: #202124; --muted: #5f6368;
  --flight: #4285f4; --hotel: #f4a825; --car: #0f9d58; --rail: #9c27b0;
  --restaurant: #e91e63; --activity: #00acc1; --other: #757575;
  --shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}
body {
  font-family: Roboto, system-ui, sans-serif; background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='330' height='360'%3E%3Cg stroke='%23d4d9de' stroke-width='1.3' fill='none' stroke-linecap='round'%3E%3Cg transform='translate(45 40) rotate(-15) scale(1.0)'%3E%3Cpath d='M-3 10 C -2 6.5 -1 3.5 1 0'/%3E%3Cline x1='1' y1='0' x2='-4' y2='-4'/%3E%3Cline x1='1' y1='0' x2='-1' y2='-6'/%3E%3Cline x1='1' y1='0' x2='3' y2='-6'/%3E%3Cline x1='1' y1='0' x2='6' y2='-3'/%3E%3C/g%3E%3Cg transform='translate(210 125) rotate(22) scale(0.75)'%3E%3Cpath d='M-3 10 C -2 6.5 -1 3.5 1 0'/%3E%3Cline x1='1' y1='0' x2='-4' y2='-4'/%3E%3Cline x1='1' y1='0' x2='-1' y2='-6'/%3E%3Cline x1='1' y1='0' x2='3' y2='-6'/%3E%3Cline x1='1' y1='0' x2='6' y2='-3'/%3E%3C/g%3E%3Cg transform='translate(120 225) rotate(-32) scale(0.9)'%3E%3Cpath d='M-3 10 C -2 6.5 -1 3.5 1 0'/%3E%3Cline x1='1' y1='0' x2='-4' y2='-4'/%3E%3Cline x1='1' y1='0' x2='-1' y2='-6'/%3E%3Cline x1='1' y1='0' x2='3' y2='-6'/%3E%3Cline x1='1' y1='0' x2='6' y2='-3'/%3E%3C/g%3E%3Cg transform='translate(280 305) rotate(10) scale(0.65)'%3E%3Cpath d='M-3 10 C -2 6.5 -1 3.5 1 0'/%3E%3Cline x1='1' y1='0' x2='-4' y2='-4'/%3E%3Cline x1='1' y1='0' x2='-1' y2='-6'/%3E%3Cline x1='1' y1='0' x2='3' y2='-6'/%3E%3Cline x1='1' y1='0' x2='6' y2='-3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 40px;
}
.appbar {
  background: #fff; height: 56px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 16px; box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 5;
  padding-top: env(safe-area-inset-top);
}
.brand { display: flex; align-items: center; gap: 10px; }
.wordmark { font-family: "Google Sans", Roboto, sans-serif; font-size: 20px; color: var(--muted); letter-spacing: .2px; }
.signout { border: none; background: none; color: var(--muted); font: 500 13px Roboto; cursor: pointer; }

#main { max-width: 680px; margin: 0 auto; padding: 12px; }
.center { text-align: center; padding: 96px 24px; }
.tagline { font-size: 20px; color: var(--text); margin-bottom: 20px; }
.sub { color: var(--muted); font-size: 14px; }
.gbtn {
  font: 500 15px Roboto; color: #fff; background: #1a73e8; border: none;
  padding: 12px 28px; border-radius: 24px; cursor: pointer; box-shadow: var(--shadow);
}

.year { font: 500 13px Roboto; color: var(--muted); letter-spacing: 1px; margin: 20px 8px 8px; }
.card {
  background: var(--card); border-radius: 12px; box-shadow: var(--shadow);
  margin-bottom: 12px; overflow: hidden;
}
.card-head { display: flex; align-items: center; gap: 14px; padding: 14px 16px; cursor: pointer; }
.glyph {
  width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 19px; flex: none;
}
.g-flight { background: var(--flight); } .g-hotel { background: var(--hotel); }
.g-car { background: var(--car); } .g-rail { background: var(--rail); }
.g-restaurant { background: var(--restaurant); } .g-activity { background: var(--activity); }
.g-other { background: var(--other); }
.card-title { flex: 1; min-width: 0; }
.card-title .name { font: 500 16px Roboto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-title .dates { color: var(--muted); font-size: 13px; margin-top: 2px; }
.context { color: var(--muted); font-size: 12px; font-style: italic; }
.chev { color: var(--muted); transition: transform .15s; }
.card.open .chev { transform: rotate(180deg); }

.card-body { display: none; border-top: 1px solid #eceff1; }
.card.open .card-body { display: block; }
.row { display: flex; gap: 14px; padding: 12px 16px; border-bottom: 1px solid #f5f7f8; }
.row:last-child { border-bottom: none; }
.row .info { flex: 1; min-width: 0; }
.row .primary { font-size: 14px; font-weight: 500; }
.row .secondary { color: var(--muted); font-size: 13px; margin-top: 2px; }
.row .chips { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  background: #f1f3f4; border-radius: 6px; padding: 2px 8px;
  font: 500 12px Roboto; color: var(--muted); letter-spacing: .3px;
}
.chip.code { font-family: "Roboto Mono", monospace; }
.row.cancelled .primary, .row.cancelled .secondary { text-decoration: line-through; opacity: .55; }
.badge-cancel { color: #d93025; font: 500 11px Roboto; margin-left: 6px; }

.section-label {
  font: 500 13px Roboto; color: var(--muted); margin: 20px 8px 8px;
  cursor: pointer; user-select: none;
}

a.chip.maps { color: #1a73e8; text-decoration: none; background: #e8f0fe; }
.chip.tzchange { background: #fef7e0; color: #b06000; }

.row[data-res] { cursor: pointer; }
.details { margin-top: 10px; }
.detail-loading { color: var(--muted); font-size: 13px; padding: 4px 0; }
.detail-grid {
  display: grid; grid-template-columns: minmax(96px, auto) 1fr;
  gap: 4px 14px; background: #fafafa; border-radius: 8px; padding: 10px 12px;
}
.detail-grid .dt { color: var(--muted); font-size: 12px; padding-top: 1px; }
.detail-grid .dd { font-size: 13px; word-break: break-word; }
.attachments { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.attachment {
  border: 1px solid #dadce0; background: #fff; border-radius: 16px;
  padding: 6px 12px; font: 500 13px Roboto; color: #1a73e8; cursor: pointer;
}
.attachment:disabled { opacity: .5; }
.chip.duration { background: #e8f0fe; color: #1a56b8; font-weight: 700; }

a.card-head { text-decoration: none; color: inherit; }
.back { display: inline-block; color: var(--muted); text-decoration: none; font: 500 13px Roboto; margin: 8px 0; }
.trip-title { font: 500 22px "Google Sans", Roboto; margin: 4px 8px 2px; }
.trip-sub { color: var(--muted); font-size: 13px; margin: 0 8px 12px; }
.share-box { background: var(--card); border-radius: 12px; box-shadow: var(--shadow); padding: 12px 16px; margin-bottom: 12px; }
.share-head { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.grant { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-top: 1px solid #f1f3f4; }
.grant-status { color: var(--muted); }
.grant-status.pending { color: #b06000; }
.grant-status.approved { color: #0f9d58; }
.share-new { display: flex; flex-direction: column; gap: 8px; }
.radio { font-size: 13px; display: flex; gap: 8px; align-items: center; }
.share-input { border: 1px solid #dadce0; border-radius: 8px; padding: 8px 10px; font: 400 13px Roboto; }
.gbtn.small { padding: 8px 16px; font-size: 13px; align-self: flex-start; }
.pending-row { display: flex; align-items: center; gap: 10px; padding: 12px 16px; }
.pending-row .info { flex: 1; }
.attachment.danger { color: #d93025; }
.receipt { color: var(--muted); font-size: 12px; text-align: center; margin: 16px 0; }

.appbar-actions { display: flex; gap: 14px; align-items: center; }

#toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 80px);
  background: #202124; color: #fff; border-radius: 8px; padding: 12px 16px;
  font: 400 14px Roboto; display: flex; gap: 16px; align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3); transition: transform .2s; z-index: 20;
}
#toast.show { transform: translate(-50%, 0); }
#toast button { border: none; background: none; color: #8ab4f8; font: 500 14px Roboto; cursor: pointer; }
.row-actions { display: flex; gap: 10px; margin-top: 10px; align-items: center; flex-wrap: wrap; }
.trip-actions { display: flex; gap: 10px; margin: 0 8px 12px; align-items: center; flex-wrap: wrap; }
.trip-actions .share-input { max-width: 220px; }
.add-road { margin: 20px 0; }
#rename-form { display: flex; gap: 8px; margin: 0 8px 8px; }
.trip-title .attachment { border: none; padding: 2px 6px; font-size: 14px; }

.onboard { text-align: center; padding: 56px 20px; }
.onboard .tagline { margin-bottom: 10px; }
.addr-box {
  display: flex; gap: 10px; align-items: center; justify-content: center;
  flex-wrap: wrap; margin: 18px 0;
}
.addr {
  font: 500 17px "Roboto Mono", monospace; background: #fff; border-radius: 10px;
  padding: 10px 16px; box-shadow: var(--shadow); word-break: break-all;
}
.onboard-steps {
  text-align: left; display: inline-block; margin: 6px auto 14px;
  color: var(--muted); font-size: 14px; line-height: 1.9; padding-left: 22px;
}

.glyph.avatar { font: 500 18px "Google Sans", Roboto; }

.admin-gear { display: inline-flex; align-items: center; padding: 6px; color: var(--muted); }
.admin-gear:hover { color: var(--text); }
.stage-badge {
  display: inline-block; color: #fff; border-radius: 6px; padding: 1px 8px;
  font: 500 11px Roboto; letter-spacing: .4px; margin-right: 6px; vertical-align: 1px;
}

.owner-chip { background: #ede7f6; color: #5e35b1; }
.household-box { margin-top: 20px; }

.view-toggle .attachment.active { background: #e8f0fe; color: #1a56b8; border-color: #1a73e8; }
.cal { background: var(--card); border-radius: 12px; box-shadow: var(--shadow); padding: 10px; }
.cal-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cal-month { font: 500 15px "Google Sans", Roboto; flex: 1; text-align: center; }
.cal-dows { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; color: var(--muted); font-size: 11px; margin-bottom: 2px; }
.cal-week { display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: minmax(18px, auto); border-top: 1px solid #f1f3f4; min-height: 72px; position: relative; }
.cal-cell { grid-row: 1; font-size: 12px; padding: 3px 4px; }
.cal-cell.dim { background: #fafafa; }
.cal-daynum.today { background: #1a73e8; color: #fff; border-radius: 50%; padding: 2px 6px; }
.cal-bar {
  color: #fff; font: 500 11px Roboto; border-radius: 6px; padding: 1px 6px;
  margin: 1px 2px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  text-decoration: none; align-self: start;
}
.agenda-day { margin-bottom: 8px; }
.agenda-header { font: 500 13px Roboto; color: var(--muted); padding: 8px 0 4px; border-bottom: 1px solid #f1f3f4; }
.agenda-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.agenda-time { font: 500 13px "Roboto Mono", monospace; color: var(--muted); min-width: 72px; }
.agenda-glyph { width: 26px; height: 26px; font-size: 13px; }
/* sub-trip emoji circles are 36px; pull both sides in so their centers
   line up with the 26px reservation glyphs in the agenda column */
.trip-emoji.agenda-glyph { margin-left: -5px; margin-right: -5px; }
.agenda-label { font-size: 14px; }

.contact-chip { background: #e8f0fe; color: #1a56b8; border: none; cursor: pointer; font: 500 12px Roboto; }
.contact-row { display: flex; gap: 8px; align-items: center; }
.contact-row .share-input { flex: 1 1 100px; min-width: 0; }
.contact-row .contact-name { flex: 0 1 150px; }
.contact-row .secondary { flex: 1 1 120px; min-width: 0; word-break: break-all; }
.contact-row .attachment, .contact-row .gbtn { flex: none; }

.card-body.agenda { padding: 4px 16px 12px; }

.hh-row { flex-wrap: wrap; }
.hh-row .hh-mail { flex: 1 1 210px; min-width: 0; max-width: 340px; }
.hh-row .hh-access { max-width: 170px; }

.hh-row { flex-wrap: wrap; }
.hh-row .hh-mail { flex: 1 1 210px; min-width: 0; max-width: 340px; }
.hh-row .hh-access { max-width: 180px; }

.boundary-chip { background: #f1f3f4; color: #5f6368; }

.trip-emoji {
  width: 44px; height: 44px; border-radius: 50%; background: #f1f3f4;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex: none;
}
.type-pile { display: flex; flex: none; }
.type-pile .glyph.mini { width: 24px; height: 24px; font-size: 12px; margin-left: -6px; border: 2px solid #fff; }
.type-pile .glyph.mini:first-child { margin-left: 0; }

.trip-emoji.small { width: 36px; height: 36px; font-size: 18px; }
a.segment-row { text-decoration: none; color: inherit; background: #fafbfc; border-radius: 10px; margin: 4px 0; }
a.segment-row .chev { color: var(--muted); }

.admin-row { cursor: pointer; }
.review-line { color: #b06000; font-size: 12px; }

.open-trip { white-space: nowrap; }

a.attachment { text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.open-trip {
  border: 1px solid #dadce0; background: #fff; border-radius: 16px;
  padding: 6px 12px; font: 500 13px Roboto; color: #1a73e8;
}

.connector {
  display: flex; align-items: center; gap: 6px;
  width: fit-content; margin: 6px auto; padding: 5px 12px;
  background: #f1f3f4; border-radius: 14px;
  color: var(--muted); font: 500 12px Roboto; text-decoration: none;
}
.connector:hover { background: #e8f0fe; color: #1a56b8; }
.connector-emoji { font-size: 15px; }

.agenda-tz-wrap {
  display: inline-flex; align-items: center; gap: 5px; background: #f1f3f4;
  border-radius: 16px; padding: 4px 10px; font-size: 12px; color: var(--muted);
}
.agenda-tz {
  border: none; background: transparent; font: 500 12px Roboto; color: #1a56b8;
  max-width: 150px; outline: none; cursor: pointer;
}

.agenda-header.with-tz { display: flex; justify-content: space-between; align-items: center; }
.seed-art { display: block; margin: 0 auto 10px; }

.status-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border-radius: 12px;
  border-left: 4px solid #f4b400;
  padding: 14px 16px; margin: 4px 0 14px; box-shadow: var(--shadow);
}
.status-emoji { font-size: 26px; }
.status-line1 { font: 500 15px Roboto; }
.status-line2 { color: var(--muted); font-size: 13px; margin-top: 2px; }

.card.current { border-left: 4px solid #f4b400; }

.connector + .row { border-top: 1px solid #f1f3f4; }

.status-card {
  gap: 10px; padding: 9px 14px; margin: 2px 0 12px;
  box-shadow: none; border: 1px solid #eceff1; border-left: 4px solid #f4b400;
  border-radius: 10px;
}
.status-emoji { font-size: 19px; }
.status-line1 { font-size: 13.5px; }
.status-line2 { font-size: 12px; }
.badge {
  background: #d93025; color: #fff; border-radius: 10px; padding: 0 6px;
  font: 500 11px Roboto;
}

.panel { padding: 16px 18px; margin-bottom: 14px; }
.panel-title { font: 500 15px "Google Sans", Roboto; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.panel .pending-row { padding: 10px 0; border-top: 1px solid #f1f3f4; }
.panel .grant { border-top: 1px solid #f1f3f4; padding: 8px 0; }
.panel .grant:first-of-type { border-top: none; }

.privacy-pill { margin-left: auto; }
.privacy-pill.active { background: #fce8e6; border-color: #f4c7c3; }

.privacy-pill { display: inline-flex; align-items: center; gap: 6px; }
.privacy-pill svg { flex: none; }

a.brand { text-decoration: none; cursor: pointer; }


.matrix { display: flex; flex-direction: column; gap: 6px; margin: 6px 0; }
.matrix-grid { display: flex; flex-direction: column; gap: 5px; }
.matrix-main { font-weight: 500; }
.matrix-sub { margin-left: 26px; color: var(--muted); font-size: 12.5px; }
.coowner-line span { display: flex; flex-direction: column; }
.coowner-line small { color: var(--muted); font-size: 12px; font-weight: 400; }
.hh-row { border-top: 1px solid #f1f3f4; padding: 10px 0; }
.hh-head { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; }

#offline-banner {
  background: #fef7e0; color: #b06000; border-bottom: 1px solid #f4e4b0;
  text-align: center; font: 500 13px Roboto; padding: 7px 12px;
  position: sticky; top: 56px; z-index: 4;
}
body.offline .manage-panel .gbtn, body.offline #manage-panel button.gbtn { opacity: .5; pointer-events: none; }

.addr-chip {
  border: none; cursor: pointer; background: #f1f3f4; color: var(--muted);
  max-width: 100%; white-space: normal; text-align: left; line-height: 1.35;
}
.addr-chip:active { background: #e8f0fe; }
.signup-form { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; width: min(320px, 90vw); }
.signup-form .share-input { width: 100%; box-sizing: border-box; font-size: 15px; }
.alias-claim { display: flex; align-items: center; gap: 6px; }
.alias-claim .share-input { flex: 1; min-width: 0; }
.alias-suffix { color: var(--muted); font-size: 14px; white-space: nowrap; }
#signup-err { color: #c5221f; min-height: 18px; margin: 0; }
.quota-input { width: 76px; flex: none; }
.hint { color: var(--muted); font-size: 12px; line-height: 1.5; margin-top: 4px; }
.seed-loader { overflow: visible; animation: seed-fly 1s steps(8, end) infinite; }
@keyframes seed-fly {
  0% { transform: translate(0, 0) rotate(-6deg) scale(1); opacity: 1; }
  45% { transform: translate(6px, -7px) rotate(8deg) scale(1); opacity: 1; }
  70% { transform: translate(16px, -20px) rotate(16deg) scale(0.7); opacity: 0.8; }
  100% { transform: translate(34px, -44px) rotate(26deg) scale(0.35); opacity: 0; }
}
.compose-box { display: flex; gap: 8px; margin: 4px 0 14px; }
.compose-box[hidden] { display: none; }
.compose-box .share-input { flex: 1; min-width: 0; font-size: 15px; padding: 10px 14px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); border: none; }
.compose-preview-card { border: 1.5px dashed #dadce0; margin-bottom: 14px; }
.placeholder-row { opacity: 0.85; }
.placeholder-row .glyph { background: repeating-linear-gradient(45deg, #9aa0a6, #9aa0a6 4px, #b9bfc6 4px, #b9bfc6 8px) !important; }
.placeholder-chip { background: #fef7e0; color: #b06000; border: 1px dashed #f4b400; }
.compose-joins { margin: 8px 0 2px; font-weight: 500; }
.compose-question { margin-top: 8px; padding: 10px 14px; background: #e8f0fe; color: #1a56b8; border-radius: 14px 14px 14px 4px; font-size: 14px; width: fit-content; max-width: 100%; }
.compose-loading { align-items: center; border-bottom: none; }
.compose-loading .secondary { word-break: break-word; }
.compose-loading-glyph { background: #fef7e0 !important; display: flex; align-items: center; justify-content: center; overflow: visible; }
.compose-loading-glyph .seed-loader { width: 26px; height: 24px; }
.compose-loading-card { margin-bottom: 14px; }
.status-sub { margin: -10px 0 14px 18px; }
.status-sub .status-card {
  margin: 0; border-radius: 0 0 10px 10px; border-top: none;
  padding: 6px 12px; gap: 8px;
}
.status-sub .status-emoji { font-size: 15px; }
.status-sub .status-line1 { font-size: 12.5px; font-weight: 500; }
.status-sub .status-line2 { font-size: 11.5px; margin-top: 1px; }
.compose-open {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px 12px; border-radius: 18px; line-height: 1;
}
.compose-open .plus { font-size: 15px; font-weight: 500; }
.compose-open-label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  transition: max-width .22s ease, margin-left .22s ease;
}
.compose-open:hover .compose-open-label, .compose-open:focus-visible .compose-open-label,
.compose-open.open .compose-open-label { max-width: 64px; margin-left: 6px; }
.sub-row { align-items: center; }
.sub-glyph { position: relative; z-index: 1; }
.sub-head {
  flex: 1; min-width: 0; text-align: left; border: none; background: #f8f9fa;
  border-radius: 12px; padding: 9px 12px 9px 14px; cursor: pointer;
  display: flex; align-items: center; gap: 10px; font: inherit;
  transition: margin .18s ease, padding .18s ease, background .18s ease;
}
/* hover: the pill grows leftward to wrap the trip icon and puffs up a
   little vertically; text stays put and rows below don't shift */
.sub-row:hover .sub-head {
  background: #f1f3f4;
  margin: -3px 0 -3px -50px;
  padding: 12px 12px 12px 64px;
}
.sub-head { text-decoration: none; color: inherit; }
.sub-head .agenda-label b { font-weight: 500; }
.sub-go { margin-left: 2px; color: var(--muted); font-size: 14px; }
.sub-count {
  margin-left: auto; background: #e8eaed; color: var(--muted);
  border-radius: 10px; padding: 1px 8px; font: 500 11px Roboto;
}

#syncbar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 99;
  background: linear-gradient(90deg, transparent, #f4b400, transparent);
  background-size: 40% 100%; background-repeat: no-repeat;
  animation: syncslide 1.1s linear infinite; pointer-events: none;
}
@keyframes syncslide {
  0% { background-position: -60% 0; }
  100% { background-position: 160% 0; }
}
html, body { touch-action: pan-x pan-y; }

/* Card chat bar + details CTA (2026-09-06) */
.details-cta {
  align-self: flex-start; flex: none; margin-top: 4px;
  border: none; background: none; padding: 4px 0 4px 8px;
  font: 500 12px Roboto; color: #1a73e8; cursor: pointer;
  display: inline-flex; align-items: center; gap: 3px; white-space: nowrap;
}
.details-cta .chev { color: inherit; font-size: 10px; }
.row.open .details-cta .chev { transform: rotate(180deg); }
.card-chat { display: flex; gap: 8px; margin-top: 12px; }
.card-chat .share-input { flex: 1; min-width: 0; }
.card-chat-reply { margin-top: 6px; }

/* Homes (SPEC v14): quiet cards + settings rows */
.home-card { opacity: .82; }
.home-card .card-head { background: #fafbfc; }
.home-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.home-row .home-city { flex: 1 1 110px; min-width: 0; }
.home-row .home-airports { flex: 1 1 130px; min-width: 0; }
.home-row .home-primary { display: inline-flex; align-items: center; gap: 4px; margin: 0; }

/* Signup flow rendered inline as a home tab (2026-09-10) */
.signup-inline .tagline { font: 500 16px "Google Sans", Roboto, sans-serif; margin: 0 0 6px; }
.signup-inline .sub { color: var(--muted); font-size: 13px; margin: 0 0 10px; }

/* Calendar carousel (2026-09-16): neighbour month rides in beside the current */
.cal-viewport { position: relative; overflow: hidden; }
.cal-track { position: relative; will-change: transform; }
.cal-pane.cal-prev, .cal-pane.cal-next { position: absolute; top: 0; width: 100%; }
.cal-pane.cal-prev { left: -100%; }
.cal-pane.cal-next { left: 100%; }
