/*  tier-signup.css
    Purpose        Styles the public “Pricing / Tier Sign-up” page:
                     • overview intro copy
                     • billing-cycle toggle (monthly ↔ annual)
                     • responsive, flexbox-based tier cards
                     • price badges, feature check-list, CTA buttons
                     • dark-theme default colours

    Load-order     After the site-wide theme sheet, before any animation libs, e.g.:

       <link rel="stylesheet" href="css/tier-signup.css">


    Last updated   31 Jul 2025
*/


h1 {
  text-align: center;
}

/* billing toggle */
.billing-toggle {
  text-align: center;
  margin: 20px 0;
}
.billing-toggle label {
  margin: 0 1rem;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
}
.billing-toggle input {
  margin-right: 0.3rem;
}

/* by default show monthly only */
.price.annual { display: none; }

/* when annual-billing is on .tiers-container, swap */
.tiers-container.annual-billing .price.annual {
  display: block;
}
.tiers-container.annual-billing .price.monthly {
  display: none;
}

/* ensure "$49/mo" etc. stays on one line */
.tier-box .price.monthly {
  display: inline-block;
  min-width: 140px;
  white-space: nowrap;
}

/* Intro section */
.signup-overview {
  max-width: 800px;
  margin: 40px auto;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.signup-overview p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Page container */
.signup-page-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Tiers layout */
.tiers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Tier cards */
.tier-box {
  background-color: #2c3e50;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.tier-box h2 {
  font-size: 2rem;
  margin-top: 0;
  text-align: center;
  margin-bottom: -10px;
}


/* Pricing */
.tier-box .price {
  text-align: center;
  font-size: 1.2rem !important;
  font-weight: normal;
  margin: 10px 0 15px;
}
.tier-box .price span {
  display: inline;     /* override any previous block setting */
  white-space: nowrap; /* keep “/ month” from wrapping */
  font-size: 1rem;
  font-weight: normal;
  color: #ddd;
}
/* ensure "$19/mo" and "$49/mo" stay on one line */
.tier-box .price.monthly {
  display: inline-block;
  min-width: 140px;
  white-space: nowrap;
}

p.price {
    font-size: 26px !important;
}

/* Feature list */
.tier-box ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px;
}
.tier-box ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}
.tier-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4EA1D3;
}

/* Call-to-action button */
.signup-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 10px 0;
  background-color: #4EA1D3;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none
}
.signup-btn:hover {
  background-color: #3a81a1;
}
