* {
  box-sizing: border-box;
}

html {
  margin: 0;
  background: #edf1f6;
  color: #162033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  width: min(100%, 470px);
  margin: 0 auto;
  background: #f6f8fb;
  min-height: 100vh;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(20, 30, 50, .05), 0 20px 80px rgba(20, 30, 50, .15);
}

.hero-visual {
  position: relative;
  width: 100%;
  background: #fff;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* Transparent click area over the green Buy Metro Ticket button in the image */
.hotspot {
  position: absolute;
  left: 9.2%;
  right: 9.2%;
  bottom: 3.0%;
  height: 6.1%;
  border: 0;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
}

.hotspot:active {
  background: rgba(255, 255, 255, .08);
}

.ticket-options {
  display: grid;
  gap: 12px;
  padding: 16px 17px 24px;
  background: #f6f8fb;
}

.ticket-options article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(23, 37, 65, .06);
}

.ticket-options b,
.ticket-options span {
  display: block;
}

.ticket-options b {
  font-size: 17px;
  letter-spacing: -.02em;
}

.ticket-options span {
  margin-top: 3px;
  color: #687385;
  font-size: 13px;
}

.ticket-options button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #2fbd68;
  color: #fff;
  font-weight: 850;
  font-size: 15px;
  cursor: pointer;
}

.seo-text {
  padding: 0 22px 34px;
  background: #f6f8fb;
}

.seo-text h1 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.seo-text p {
  margin: 0 0 12px;
  color: #3a4659;
  line-height: 1.55;
  font-size: 14px;
}

.seo-text .disclaimer {
  color: #687385;
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(15, 25, 45, .56);
  z-index: 999;
}

.modal.is-visible {
  display: flex;
}

.modal-card {
  width: min(100%, 410px);
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: #f0f3f7;
  border-radius: 99px;
  font-size: 24px;
  cursor: pointer;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.modal-card p {
  color: #687385;
  line-height: 1.5;
}

.modal-card .small {
  font-size: 13px;
}

.close-modal-bottom {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 15px;
  background: #2fbd68;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  cursor: pointer;
}

@media (min-width: 700px) {
  body {
    padding: 26px 0;
  }

  .page {
    border-radius: 34px;
  }
}
