/* Plan for game day — Ticket Tracker calm · guide-only travel */

.plan-page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4.5rem;
}

.plan-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.plan-title {
  margin: 0 0 0.5rem;
  font-family: var(--cc-display, "Sora", system-ui, sans-serif);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.plan-lede {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
}

.plan-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.15rem 1.1rem 1.25rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.plan-panel + .plan-panel,
.plan-how,
.plan-disclaimer-host {
  margin-top: 1.35rem;
}

.plan-form-note {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
}

.plan-form-status {
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
}

.plan-form-status--info {
  border-color: rgba(167, 139, 250, 0.35);
  color: rgba(220, 210, 255, 0.9);
}

.plan-form-status--warn {
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(251, 146, 60, 0.08);
  color: #fdba74;
}

.plan-input-summary h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: #fff;
}

.plan-summary-dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.plan-summary-dl div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.plan-summary-dl dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.plan-summary-dl dd {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.plan-summary-next {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.plan-summary-links {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.plan-summary-links a {
  color: #fff;
  text-underline-offset: 0.15em;
}

@media (max-width: 420px) {
  .plan-summary-dl div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.plan-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
  position: relative;
}

/* Airport typeahead */
.plan-origin-wrap {
  position: relative;
  width: 100%;
}

.plan-airport-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 40;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 14rem;
  overflow-y: auto;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 12, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.plan-airport-option {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  min-height: 44px;
  justify-content: center;
}

.plan-airport-option:hover,
.plan-airport-option.is-active {
  background: rgba(62, 240, 200, 0.12);
}

.plan-airport-code {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #3ef0c8;
  font-variant-numeric: tabular-nums;
}

.plan-airport-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.plan-airport-chip {
  margin: 0.15rem 0 0;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(62, 240, 200, 0.35);
  background: rgba(62, 240, 200, 0.08);
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

.plan-airport-chip .plan-airport-code {
  margin-right: 0.25rem;
}

.plan-summary-soft {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

.plan-summary-code {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #3ef0c8;
  font-variant-numeric: tabular-nums;
}

.plan-field label,
.plan-fieldset-legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.plan-field .hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}

.plan-field input,
.plan-field select,
.plan-field textarea {
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 1rem;
}

.plan-field input:focus-visible,
.plan-field select:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.plan-field input:disabled,
.plan-field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.plan-fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.plan-flex-grid {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

@media (min-width: 520px) {
  .plan-flex-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plan-flex-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.35;
}

.plan-flex-option:has(input:checked),
.plan-flex-option.is-selected {
  border-color: rgba(62, 240, 200, 0.55);
  background: rgba(62, 240, 200, 0.1);
}

.plan-flex-option input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.plan-flex-option strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.plan-flex-option span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}

.plan-advanced {
  margin: 0.25rem 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.plan-advanced summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.plan-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.plan-cta {
  width: 100%;
  min-height: 52px;
  margin-top: 0.35rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 750;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: #0a0a0c;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.plan-cta:hover:not(:disabled) {
  background: #f2f2f5;
}

.plan-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.plan-cta-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.4;
}

/* How this works */
.plan-how-title {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.65);
}

.plan-how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-how-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  align-items: start;
}

.plan-how-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #3ef0c8;
  border: 1px solid rgba(62, 240, 200, 0.35);
  background: rgba(62, 240, 200, 0.08);
}

.plan-how-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  color: #fff;
  font-weight: 700;
}

.plan-how-item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

/* Results shell (empty until step 3+) */
.plan-results {
  margin-top: 1.75rem;
}

.plan-results[hidden] {
  display: none !important;
}

.plan-results-empty {
  padding: 1.1rem 1rem;
  border-radius: 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.plan-results-body {
  margin-top: 0.5rem;
}

.plan-results-head {
  margin-bottom: 1rem;
  text-align: left;
}

.plan-results-route {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.plan-route-arrow {
  opacity: 0.45;
  margin: 0 0.25rem;
}

.plan-results-meta {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.plan-price-line {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.plan-flex-rerun {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.15rem;
}

.plan-flex-chip {
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

.plan-flex-chip.is-active {
  border-color: rgba(62, 240, 200, 0.55);
  background: rgba(62, 240, 200, 0.12);
  color: #3ef0c8;
}

.plan-section {
  margin: 0 0 1.35rem;
  text-align: left;
}

.plan-section-title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.7);
}

.plan-section-sub {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
}

.plan-flight-card {
  margin: 0 0 0.75rem;
  padding: 1rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
}

.plan-flight-card.is-primary {
  border-color: rgba(62, 240, 200, 0.35);
  box-shadow: 0 0 0 1px rgba(62, 240, 200, 0.08);
}

.plan-flight-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.plan-flight-label {
  font-weight: 750;
  color: #fff;
  font-size: 0.95rem;
}

.plan-flight-sample {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.plan-flight-sample strong {
  color: #3ef0c8;
}

.plan-flight-legs {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.plan-flight-dates {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: rgba(62, 240, 200, 0.9);
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}

.plan-flight-dates strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 650;
  margin-right: 0.15rem;
}

.plan-flight-why {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.plan-plan-warn {
  margin: 0 0 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  border: 1px solid rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.1);
  color: #fdba74;
}

.plan-flight-filters {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.plan-air-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.plan-air-btn {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 650;
}

.plan-air-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.plan-air-note {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}

.plan-hotel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.plan-hotel-card {
  padding: 0.9rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.plan-hotel-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem;
  align-items: baseline;
}

.plan-hotel-top h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.plan-hotel-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.75);
}

.plan-hotel-hood {
  margin: 0.25rem 0 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.plan-hotel-why {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.plan-hotel-note {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

.plan-hotel-book {
  display: inline-flex;
  margin-top: 0.65rem;
  min-height: 42px;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 240, 200, 0.45);
  color: #3ef0c8 !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 700;
}

.plan-hotels-empty {
  margin: 0;
  padding: 0.85rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.45;
}

.plan-also-links {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.plan-also-links a {
  color: #fff;
  text-underline-offset: 0.15em;
}

/* —— Shared plan disclaimer (all plan surfaces) —— */
.fs-plan-disclaimer {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  padding: 0.95rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
}

.fs-plan-disclaimer-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(62, 240, 200, 0.85);
}

.fs-plan-disclaimer p {
  margin: 0;
}

.fs-plan-disclaimer ul {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
}

.fs-plan-disclaimer li {
  margin: 0.25rem 0;
}

.fs-plan-disclaimer--compact {
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
}

.plan-foot-links {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.plan-foot-links a {
  color: #fff;
  text-underline-offset: 0.15em;
}

@media (max-width: 520px) {
  .plan-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
