@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;900&family=Inter:wght@400;500;600&display=swap');

body {
  margin: 0;
  background: #1C3159;
}
.switcher {
	background: rgb(255, 189, 97);
}
.switcher > p {
  display: flex;
  justify-content: center; /* Horizontally centers content */
  align-items: center;     /* Vertically centers content */
  margin: 0;               /* Removes default browser margins */
}
.switcher > p a {
  color: #1C3159;
  font-family: 'Inter';
}

.switcher > p > a:visited, 
.switcher > p > a:hover {
  color: #101c35;
}
.fare-board {
  background: #1C3159;
  padding: 64px 24px 72px;
}

.fare-board .logo {
  display: block;
  margin: 0 auto 24px;
  height: 96px;
}

.fare-board h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F8F6F1;
  text-align: center;
  margin: 0 0 8px;
}

.fare-board p.lede {
  font-family: 'Inter', sans-serif;
  color: #B9C2D4;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.currency-form {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.currency-form label {
  color: #B9C2D4;
  font-size: 0.85rem;
  margin-right: 8px;
}

.currency-form select {
  background: #1F2E4F;
  color: #F8F6F1;
  border: 1px solid #3A4A6B;
  padding: 6px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

.tickets {
  display: flex;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.ticket {
  background: #F8F6F1;
  border: 1px solid #E3DDCC;
  width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ticket--pro {
  border-color: #1F6E63;
  border-width: 2px;
}

.ticket--current {
  background: #EDEAE1;
  opacity: 0.75;
}

.ticket--current .plan-name,
.ticket--current .ticket-manifest li {
  color: #6B7385;
}

.ticket--current .price.free {
  color: #6B7385;
}

.ticket-flag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #3DA89A, #1F6E63);
  color: #F8F6F1;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
}

.ticket-route {
  padding: 28px 24px 20px;
}

.ticket-route .plan-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: #16233F;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.ticket-route .plan-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #6B7385;
  margin: 0 0 20px;
}

.ticket-route .price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #E0A845, #C97D2E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ticket-route .price.free {
  background: none;
  -webkit-text-fill-color: unset;
  color: #16233F;
}

.ticket-perforation {
  border-top: 2px dashed #E3DDCC;
}

.ticket-manifest {
  padding: 20px 24px;
  list-style: none;
  margin: 0;
  flex-grow: 1;
}

.ticket-manifest li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #16233F;
  padding: 6px 0;
  border-bottom: 1px solid #EFEAE0;
}

.ticket-manifest li:last-child {
  border-bottom: none;
}

.ticket-cta {
  padding: 20px 24px 28px;
}

.ticket-cta button {
  width: 100%;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.ticket-cta .btn-primary {
  background: linear-gradient(135deg, #E0A845, #C97D2E);
  color: #16233F;
}

.ticket-cta .btn-outline {
  background: transparent;
  color: #16233F;
  border: 1.5px solid #16233F;
}

.ticket-cta .btn-current {
  background: #DAD5C8;
  color: #8B917D;
  cursor: not-allowed;
}

.disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #5C6684;
  text-align: center;
  max-width: 480px;
  margin: 40px auto 0;
  line-height: 1.5;
}

.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.status-card {
  background: #F8F6F1;
  padding: 48px 40px;
  max-width: 420px;
  text-align: center;
}

.status-card h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #16233F;
  margin: 0 0 16px;
}

.status-message {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #5C6684;
  line-height: 1.5;
  margin: 0 0 28px;
}

.status-cta {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}