/* Migrated Tonight and Radar legacy foundation, 2026-07-29. Current route-owner rules follow. */

.radar-venue-list{
  display:grid;
  gap:8px;
}

.radar-venue-card{
  display:grid;
  grid-template-columns:52px minmax(0,1fr) minmax(150px,220px) 58px 12px;
  align-items:center;
  gap:12px;
  min-width:0;
  padding:12px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 5px 18px rgba(0,0,0,.045);
}

.radar-venue-thumb{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  overflow:hidden;
  border-radius:12px;
  background:#080808 center/cover no-repeat;
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.radar-venue-copy{
  display:grid;
  gap:2px;
  min-width:0;
}

.radar-venue-copy strong{
  overflow:hidden;
  color:#1d1d1f;
  font-size:15px;
  line-height:1.15;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.radar-venue-meta{
  display:flex;
  align-items:center;
  gap:5px;
  min-width:0;
  overflow:hidden;
}

.radar-venue-meta em,
.radar-venue-meta small{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.radar-venue-meta em{
  flex:0 1 auto;
  color:#74747b;
  font-size:9px;
  font-style:normal;
}

.radar-venue-meta small{
  flex:none;
  color:var(--radar-color);
  font-size:10px;
  font-weight:700;
}

.radar-venue-meta small::before{
  content:"·";
  margin-right:5px;
  color:#aaaab0;
}

.radar-state{
  color:var(--radar-color);
  font-size:13px;
  text-align:right;
}

.radar-arrow{
  color:#1d1d1f;
  font-size:22px;
  font-style:normal;
}


.radar-page{
  display:grid;
  gap:16px;
  padding-top:28px;
}

.radar-page-count{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.radar-page-count strong{
  font-size:14px;
}

.radar-page-count span{
  color:var(--muted);
  font-size:11px;
}

.night-mode .radar-venue-card{
  background:#1d1d1d;
  box-shadow:none;
}

.night-mode .radar-venue-copy strong{
  color:#fff;
}

.night-mode .radar-venue-copy em{
  color:#888;
}

.night-mode .radar-arrow{
  color:#d8d8d8;
}

.night-mode .radar-page-count strong{
  color:#fff;
}

.day-mode .radar-venue-copy small{
  color:var(--radar-color);
}

.day-mode .radar-venue-copy em{
  color:#74747b;
}

@media (max-width:600px){
.radar-venue-card{
    grid-template-columns:46px minmax(0,1fr) auto 10px;
    gap:9px;
    padding:11px;
  }

.radar-venue-thumb{
    grid-row:1 / span 2;
    width:46px;
    height:46px;
    border-radius:10px;
  }

.radar-venue-copy{
    grid-column:2;
  }

.radar-state{
    grid-column:3;
    grid-row:1;
    font-size:11px;
  }

.radar-arrow{
    grid-column:4;
    grid-row:1 / span 2;
  }
}

.tonight-page{
  --tonight-surface:#111;
  --tonight-card:#1d1d1d;
  --tonight-copy:#f5f5f3;
  --tonight-muted:#8d8b87;
  --tonight-line:rgba(255,255,255,.09);
  background:#000;
  color:var(--tonight-copy);
}

.tonight-page section{
  max-width:760px;
}


.topbar-fade ~ .tonight-page .tonight-hero{
  padding-top:150px;
}

.tonight-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.tonight-title-row h1{
  margin:0;
  font-size:clamp(38px,8vw,58px);
  font-weight:760;
  line-height:.98;
  letter-spacing:-.055em;
}

.tonight-title-row p{
  margin:13px 0 0;
  color:var(--tonight-muted);
  font-size:14px;
}

.tonight-flow{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:5px;
  padding:6px;
  border-radius:20px;
  background:#171717;
}

.tonight-flow::before{
  content:none;
}

.tonight-phase{
  position:relative;
  display:grid;
  align-content:center;
  justify-items:center;
  gap:6px;
  min-width:0;
  min-height:86px;
  padding:10px 5px;
  border:0;
  border-radius:15px;
  background:transparent;
  font:inherit;
  text-align:center;
  cursor:pointer;
}

.tonight-phase-dot{
  width:6px;
  height:6px;
  border:0;
  border-radius:50%;
  background:#666;
  box-shadow:none;
}

.tonight-phase time{
  margin:0;
  color:#c4c4c4;
  font-size:11px;
  font-weight:850;
  line-height:1;
  white-space:nowrap;
}

.tonight-phase strong{
  color:#f1f1f1;
  font-size:13px;
  line-height:1.1;
}

.tonight-phase small{
  color:#929292;
  font-size:9px;
  line-height:1.2;
}

.tonight-events{
  padding-top:26px;
  padding-bottom:54px;
}

.tonight-events-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.tonight-events-head .eyebrow{
  margin-bottom:7px;
}

.tonight-events-head h2{
  margin:0;
  font-size:25px;
  line-height:1;
}

.tonight-events-head>span{
  color:var(--tonight-muted);
  font-size:11px;
}

.tonight-event-list{
  overflow:hidden;
  border:0;
  border-radius:22px;
  background:var(--tonight-card);
}

.tonight-event{
  display:grid;
  grid-template-columns:68px minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  min-height:94px;
  padding:12px 15px 12px 12px;
}

.tonight-event + .tonight-event{
  border-top:1px solid var(--tonight-line);
}

.tonight-event-poster{
  display:grid;
  place-items:center;
  width:68px;
  height:68px;
  border-radius:13px;
  background:color-mix(in srgb,var(--accent) 13%,#171717) center/cover no-repeat;
  color:var(--accent);
  font-size:13px;
  font-weight:850;
}

.tonight-event-copy{
  display:grid;
  gap:3px;
  min-width:0;
}

.tonight-event-copy>strong,
.tonight-event-copy>span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tonight-event-copy>strong{
  color:var(--tonight-copy);
  font-size:16px;
  line-height:1.15;
}

.tonight-preview-label{
  display:inline-block;
  margin-left:5px;
  padding:3px 5px;
  border-radius:5px;
  font-size:7px;
  font-style:normal;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  vertical-align:2px;
}

.tonight-event-copy>span{
  color:#c2c0bc;
  font-size:12px;
}

.tonight-event-copy small{
  color:var(--tonight-muted);
  font-size:10px;
}

.tonight-event-copy small i{
  font-style:normal;
}

.tonight-event-time{
  display:inline-block;
  margin-left:7px;
  padding-left:8px;
  border-left:1px solid var(--tonight-line);
  color:var(--tonight-copy);
  font-size:10px;
  font-weight:800;
}

.tonight-event-side{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.tonight-event-time-block{
  display:grid;
  justify-items:end;
  gap:3px;
}

.tonight-event-time-block small{
  color:var(--tonight-muted);
  font-size:7px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1;
  white-space:nowrap;
}

.tonight-event-side time{
  color:#ff633f;
  font-size:11px;
  font-weight:850;
  line-height:1.15;
  white-space:nowrap;
}

.tonight-event-side b{
  color:#73716d;
  font-size:23px;
  font-weight:400;
}

.tonight-event.is-filtered{
  display:none;
}

.day-mode .tonight-page{
  --tonight-surface:#f5f5f7;
  --tonight-card:#fff;
  --tonight-copy:#1d1d1f;
  --tonight-muted:#77736c;
  --tonight-line:rgba(29,29,31,.09);
  color:var(--tonight-copy);
}

.day-mode .tonight-event-copy>span{
  color:#55534f;
}

.day-mode .tonight-phase time{
  color:#c4c4c4;
}

.day-mode .tonight-phase strong{
  color:#f1f1f1;
}

.day-mode .tonight-phase small{
  color:#929292;
}

@media (max-width:719px){

.topbar-fade ~ .tonight-page .tonight-hero{
    padding-top:116px;
  }

.tonight-title-row h1{
    font-size:38px;
  }

.tonight-flow{
    margin-top:36px;
  }

.tonight-phase{
    min-height:72px;
    padding:8px 2px;
  }

.tonight-phase small{
    display:none;
  }

.tonight-event{
    grid-template-columns:60px minmax(0,1fr) auto;
    gap:12px;
    min-height:84px;
    padding:11px 13px 11px 11px;
  }

.tonight-event-poster{
    width:60px;
    height:60px;
    border-radius:11px;
  }
}

.tonight-event-poster,
.radar-venue-thumb{
  border-radius:var(--image-radius);
}

.tonight-event-list,
.radar-venue-list{
  border-radius:var(--surface-radius);
}

.radar-page,
.tonight-events{
  border-radius:var(--section-radius);
}

.tonight-event-list,
.radar-venue-card,
.radar-venue-list,
.radar-page,
.tonight-events,
.day-mode .radar-page,
.day-mode .tonight-events{
  box-shadow:none;
}

.tonight-page > section{
  padding-top:var(--space-section);
  padding-bottom:var(--space-section);
}

.radar-venue-copy strong,
.tonight-event-copy strong{
  font-size:15px;
  line-height:1.25;
}

.radar-venue-meta,
.tonight-event-copy span{
  font-size:var(--type-sm);
}

@media (min-width:720px){
.radar-page,
.tonight-events{
    width:min(calc(100% - 48px),860px);
  }
}

@media (min-width:1024px){
.radar-page,
.tonight-events{
    width:min(calc(100% - 64px),960px);
  }
}

@media (min-width:720px){
.tonight-hero h1{
    font-size:clamp(36px,4.5vw,50px);
  }
}

.tonight-count-picker .tonight-count-number{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  overflow:hidden;
  border:1px solid var(--account-border);
  border-radius:14px;
  background:var(--account-field);
  color:var(--account-text);
}

.tonight-count-picker .tonight-count-number > span{
  min-width:0;
  min-height:0;
  border:0;
  background:transparent;
  padding-left:15px;
  font-size:22px;
}

.tonight-count-picker .tonight-count-number input{
  width:100%;
  min-height:52px;
  border:0;
  background:transparent;
  color:var(--account-text);
  font-size:22px;
  font-weight:850;
  outline:0;
}

@media (max-width:719px){
.tonight-count-picker .tonight-count-number{
    grid-column:1/-1;
  }
}

.day-mode .tonight-page{
  background:var(--luca-day-paper) ;
}

.day-mode .tonight-events,
.day-mode .radar-page{
  border:0;
}

.day-mode .tonight-events,
.day-mode .radar-page{
  border-radius:22px;
  background:var(--luca-day-card);
  box-shadow:none;
}

.day-mode .tonight-event,
.day-mode .tonight-event-list,
.day-mode .radar-page .radar-venue-list,
.day-mode .radar-page .radar-venue-card,
.day-mode .radar-page .radar-venue-card:nth-child(odd),
.day-mode .radar-page .radar-venue-card + .radar-venue-card{
  border:0;
  box-shadow:none;
}

.day-mode .radar-page .radar-venue-card + .radar-venue-card{
  border-top:0;
}

@media (min-width:720px){
.day-mode .tonight-hero{
    min-height:0;
    padding-top:32px;
    padding-bottom:16px;
    background:transparent;
  }

.day-mode .topbar-fade ~ .tonight-page .tonight-hero,
.day-mode .topbar-overlay ~ .tonight-page .tonight-hero{
    padding-top:96px;
  }

.day-mode .tonight-hero .tonight-title-row > div > p{
    margin-top:8px;
  }
}

.radar-page-head h1{
  font-size:clamp(34px,5vw,46px);
  line-height:1;
}

.tonight-hero{
  padding-top:76px;
  padding-bottom:24px;
}

.tonight-hero .eyebrow{
  margin-bottom:7px;
}

.tonight-hero h1{
  font-size:clamp(34px,5vw,46px);
  line-height:1;
}

.tonight-title-row > div > p{
  margin-top:10px;
  font-size:14px;
  line-height:1.35;
}

@media (max-width:719px){
.radar-page-head h1{
    font-size:32px;
  }

.tonight-hero{
    padding-top:calc(72px + env(safe-area-inset-top));
    padding-bottom:18px;
  }

.tonight-hero h1{
    font-size:32px;
  }

.tonight-title-row > div > p{
    margin-top:8px;
    font-size:12px;
    line-height:1.35;
  }
}

.tonight-event{
  transition:transform .18s ease, opacity .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.tonight-event:active{
  transform:scale(.97);
}

@media (prefers-reduced-motion:reduce){
.tonight-event{
    transition:none;
    animation:none;
  }
}

/* Tonight and Radar migration owner, 2026-07-27: #tonight and #radar. */
.tonight-route-page .tonight-events  {
  width:min(calc(100% - 32px),728px);
  margin-top:24px;
  margin-bottom:40px;
  background:
    linear-gradient(145deg,rgba(255,107,61,.16),rgba(255,107,61,.035) 48%,rgba(255,255,255,.015)),
    #101010;
}
body.day-mode .tonight-route-page .tonight-events  {
  background:#fff;
}
.tonight-route-page .tonight-event-list  {
  box-shadow:none;
}
.tonight-route-page .eyebrow,
.tonight-route-page .tonight-event-copy small i  {
  color:#ff633f;
}
.tonight-route-page .tonight-preview-label  {
  background:rgba(255,99,63,.12);
  color:#d94a2b;
}
.tonight-route-page .tonight-event:hover  {
  background:rgba(255,255,255,.035);
}
body.day-mode .tonight-route-page .tonight-event:hover  {
  background:rgba(29,29,31,.035);
}
.tonight-route-page .tonight-event:hover .tonight-event-side b  {
  color:#aaa9a6;
}
body.day-mode .tonight-route-page .tonight-event:hover .tonight-event-side b  {
  color:#55555a;
}
.tonight-route-page .tonight-event:focus-visible  {
  outline:2px solid #ff633f;
  outline-offset:-2px;
}
.tonight-route-page .tonight-flow  {
  width:100%;
  margin:0 0 24px;
}
body.night-mode .tonight-route-page .tonight-flow  {
  background:#171717;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}
body.day-mode .tonight-route-page .tonight-flow  {
  background:#fff;
}
.tonight-route-page .tonight-phase,
.tonight-route-page .tonight-phase.is-past,
.tonight-route-page .tonight-phase.is-empty,
.tonight-route-page .tonight-phase:disabled  {
  cursor:pointer;
  pointer-events:auto;
}
.tonight-route-page .tonight-phase,
body.day-mode .tonight-route-page .tonight-phase  {
  background:transparent;
}
.tonight-route-page .tonight-phase.is-past:not(.is-active),
.tonight-route-page .tonight-phase.is-empty:not(.is-active),
body.day-mode .tonight-route-page .tonight-phase.is-past:not(.is-active),
body.day-mode .tonight-route-page .tonight-phase.is-empty:not(.is-active)  {
  opacity:.72;
}
.tonight-route-page .tonight-phase.is-active,
body.day-mode .tonight-route-page .tonight-phase.is-active  {
  opacity:1;
  background:#ff633f;
  box-shadow:0 7px 17px rgba(255,99,63,.24);
}
.tonight-route-page .tonight-phase.is-active .tonight-phase-dot,
body.day-mode .tonight-route-page .tonight-phase.is-active .tonight-phase-dot  {
  background:#fff;
  box-shadow:none;
}
.tonight-route-page .tonight-phase.is-active time,
.tonight-route-page .tonight-phase.is-active strong,
body.day-mode .tonight-route-page .tonight-phase.is-active time,
body.day-mode .tonight-route-page .tonight-phase.is-active strong  {
  color:#fff;
}
.tonight-route-page .tonight-phase:not(.is-active) strong,
body.day-mode .tonight-route-page .tonight-phase:not(.is-active) strong  {
  color:#77777d;
}
body.night-mode .tonight-route-page .tonight-phase small  {
  color:#c6c6cc;
}
body.night-mode .tonight-route-page .tonight-phase.is-active small,
body.day-mode .tonight-route-page .tonight-phase.is-active small  {
  color:rgba(255,255,255,.92);
}
body.day-mode .tonight-route-page .tonight-phase small  {
  color:#69696f;
}

.radar-route-page,
body.day-mode .radar-route-page,
body.night-mode .radar-route-page  {
  width:calc(100% - 32px);
  margin-top:24px;
  margin-bottom:40px;
  background:
    radial-gradient(circle at 88% 6%,rgba(104,76,255,.11),transparent 30%),
    linear-gradient(180deg,#f4f1ff 0%,#f7f5ff 38%,#faf9ff 100%);
  box-shadow:none;
}
body.night-mode .radar-route-page  {
  background:
    radial-gradient(circle at 88% 6%,rgba(104,76,255,.17),transparent 30%),
    linear-gradient(180deg,#181522 0%,#121018 42%,#0d0c10 100%);
}
.radar-route-page .radar-quiet  {
  --radar-color:#00ff09;
}
.radar-route-page .radar-normal  {
  --radar-color:#b8d30b;
}
.radar-route-page .radar-busy  {
  --radar-color:#ffb31a;
}
.radar-route-page .radar-packed  {
  --radar-color:#ff5a36;
}
.radar-route-page .radar-queue  {
  --radar-color:#99143f;
}
.radar-route-page .radar-unavailable  {
  --radar-color:#77787b;
}
.radar-route-page .radar-venue-list,
body.day-mode .radar-route-page .radar-venue-list,
body.night-mode .radar-route-page .radar-venue-list  {
  display:grid;
  gap:8px;
  padding:8px;
  overflow:hidden;
  background:transparent;
}
.radar-route-page .radar-venue-card,
.radar-route-page .radar-venue-card:nth-child(odd),
.radar-route-page .radar-venue-card + .radar-venue-card,
body.day-mode .radar-route-page .radar-venue-card  {
  min-width:0;
  overflow:hidden;
  border:0;
  border-radius:14px;
  background:#fff;
  box-shadow:none;
}
.radar-route-page .radar-venue-copy strong  {
  display:block;
  max-width:100%;
  overflow:hidden;
  color:#1d1d1f;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.radar-route-page .radar-venue-copy em  {
  color:#74747b;
}
.radar-route-page .radar-venue-meta small  {
  color:#111;
  font-weight:800;
}
.radar-route-page .radar-arrow  {
  color:#55555b;
}
.radar-route-page .radar-page-count  {
  color:#2f2b3b;
}
body.night-mode .radar-route-page .radar-venue-card,
body.night-mode .radar-route-page .radar-venue-card:nth-child(odd),
body.night-mode .radar-route-page .radar-venue-card + .radar-venue-card  {
  background:#201d29;
}
body.night-mode .radar-route-page .radar-venue-copy strong  {
  color:#f4f2f8;
}
body.night-mode .radar-route-page .radar-venue-copy em  {
  color:#97919f;
}
body.night-mode .radar-route-page .radar-venue-meta small  {
  color:#fff;
}
body.night-mode .radar-route-page .radar-arrow,
body.night-mode .radar-route-page .radar-page-count  {
  color:#c9c3d2;
}
@media (max-width:719px)  {
  .tonight-route-page .tonight-events,
  .radar-route-page  {
    padding:48px 16px;
  }
  .tonight-route-page .tonight-flow  {
    margin-bottom:20px;
  }
  .radar-route-page .radar-venue-card,
  .radar-route-page .radar-venue-card + .radar-venue-card  {
    grid-template-columns:42px minmax(0,1fr) auto 9px;
    grid-template-rows:42px 49px;
    min-height:116px;
    padding:10px;
    gap:5px 8px;
    align-items:center;
  }
  .radar-route-page .radar-venue-thumb  {
    grid-column:1;
    grid-row:1;
    width:42px;
    height:42px;
    align-self:center;
  }
  .radar-route-page .radar-venue-copy  {
    grid-column:2;
    grid-row:1;
    min-width:0;
    align-self:center;
  }
  .radar-route-page .radar-state  {
    grid-column:3;
    grid-row:1;
    align-self:center;
  }
  .radar-route-page .radar-arrow  {
    grid-column:4;
    grid-row:1;
    align-self:center;
  }
  .radar-route-page .radar-meter-wrap  {
    grid-column:1 / 5;
    grid-row:2;
    width:100%;
    min-width:0;
    overflow:hidden;
  }
  .radar-route-page .radar-hours,
  .radar-route-page .radar-hour  {
    height:49px;
    min-width:0;
  }
  .radar-route-page .radar-venue-list  {
    grid-template-columns:1fr;
  }
}
@media (min-width:720px)  {
  .tonight-route-page .tonight-events  {
    width:min(calc(100% - 48px),760px);
    max-width:760px;
    padding-right:20px;
    padding-left:20px;
  }
  .radar-route-page,
  body.day-mode .radar-route-page,
  body.night-mode .radar-route-page  {
    width:min(calc(100% - 60px),1280px);
    max-width:none;
    padding-right:20px;
    padding-left:20px;
  }
  .radar-route-page .radar-venue-list  {
    grid-template-columns:repeat(2,minmax(0,1fr));
    align-content:start;
  }
  .radar-route-page .radar-venue-card  {
    grid-template-columns:38px minmax(0,1fr) auto 9px;
    grid-template-rows:38px auto;
    align-items:center;
    gap:6px 9px;
    min-height:76px;
    padding:14px 12px;
  }
  .radar-route-page .radar-venue-thumb  {
    grid-column:1;
    grid-row:1;
    width:38px;
    height:38px;
    align-self:center;
  }
  .radar-route-page .radar-venue-copy  {
    grid-column:2;
    grid-row:1;
    align-self:center;
  }
  .radar-route-page .radar-state  {
    grid-column:3;
    grid-row:1;
    align-self:center;
  }
  .radar-route-page .radar-arrow  {
    grid-column:4;
    grid-row:1;
    align-self:center;
  }
  .radar-route-page .radar-meter-wrap  {
    grid-column:1 / 5;
    grid-row:2;
  }
  .radar-route-page .radar-venue-copy strong  {
    font-size:14px;
    line-height:1.15;
  }
}
@media (min-width:1024px)  {
  .radar-route-page .radar-venue-list  {
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
