/* Teleprompter Page */
.tp-main {
  padding: 0 0 4rem;
  display: grid;
  gap: 2.5rem;
}

.tp-hero {
  background: linear-gradient(135deg, #122a58 0%, #1f4586 52%, #2a5daa 100%);
  color: #ffffff;
  border-radius: 0;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 2rem;
  box-shadow:
    0 24px 46px rgba(12, 34, 75, 0.26),
    0 0 28px rgba(46, 94, 170, 0.22);
}

.tp-main > .tp-section {
  margin: 0 6vw;
}

.tp-eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.76);
}

.tp-hero h1 {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.13;
  font-size: clamp(2rem, 3vw, 3rem);
}

.tp-lead {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 62ch;
}

.tp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', system-ui, sans-serif;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.tp-btn:hover {
  transform: translateY(-2px);
}

.tp-btn-primary {
  background: #ffffff;
  color: #0c224b;
  box-shadow: 0 14px 26px rgba(6, 20, 46, 0.25);
}

.tp-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.tp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.tp-hero-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 32px rgba(6, 20, 46, 0.25);
  background: #ffffff;
}

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

.tp-section {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(13, 26, 54, 0.1);
  box-shadow:
    0 12px 24px rgba(6, 26, 59, 0.06),
    0 0 28px rgba(46, 94, 170, 0.22);
  padding: 2rem;
}

.tp-section-head {
  max-width: 84ch;
}

.tp-section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--muted);
}

.tp-section-head h2 {
  margin: 0.55rem 0 0.8rem;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.tp-section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tp-version-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.tp-version-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, #2f63b1 0%, #2a57a0 52%, #1d437f 100%);
  border: 1px solid rgba(138, 186, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(170, 203, 255, 0.2),
    0 16px 28px rgba(7, 24, 56, 0.2);
}

.tp-version-card.is-featured {
  background: linear-gradient(180deg, #3b74c8 0%, #2f63b2 50%, #214f95 100%);
  border-color: rgba(168, 209, 255, 0.52);
}

.tp-version-head {
  padding: 1.15rem 1.15rem 1rem;
  text-align: center;
  position: relative;
}

.tp-version-head::after {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  border-bottom: 1px solid rgba(166, 205, 255, 0.2);
}

.tp-version-head h3 {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.tp-version-head p {
  margin: 0.7rem 0 0;
  color: rgba(236, 245, 255, 0.9);
  font-size: 0.95rem;
}

.tp-feature-list {
  margin: 0;
  padding: 1.25rem 1.15rem 1.2rem;
  list-style: none;
  display: grid;
  gap: 0.66rem;
  flex: 1;
}

.tp-feature-list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(238, 247, 255, 0.96);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.4;
}

.tp-feature-list li strong {
  color: #ffffff;
  font-weight: 600;
}

.tp-feature-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.tp-feature-list li.is-included::before {
  content: '✓';
  color: #68dc7b;
}

.tp-feature-list li.is-unavailable::before {
  content: '✕';
  color: #ff5f61;
}

.tp-feature-list li.is-addon::before {
  content: '•';
  color: #ffd77a;
  font-size: 1.4rem;
  line-height: 0.9;
}

.tp-version-footer {
  padding: 1.15rem;
  position: relative;
}

.tp-version-footer::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 0;
  border-top: 1px solid rgba(166, 205, 255, 0.2);
}

.tp-version-price {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
}

.tp-version-price span {
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.95;
}

.tp-version-btn {
  margin-top: 0.95rem;
  display: block;
  text-align: center;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  color: #0f2e64;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  background: linear-gradient(180deg, #e4efff 0%, #c9dcff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tp-version-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.tp-version-btn.is-featured {
  background: linear-gradient(180deg, #2d79eb 0%, #1f5dd4 100%);
  color: #ffffff;
  box-shadow: 0 10px 16px rgba(12, 38, 88, 0.32);
}

.tp-section-detail {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.tp-detail-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.tp-detail-card {
  border-radius: 16px;
  border: 1px solid rgba(13, 26, 54, 0.1);
  background: #ffffff;
  padding: 1.2rem;
}

.tp-detail-card h3 {
  margin: 0 0 0.45rem;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--navy);
  font-size: 1.08rem;
}

.tp-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tp-bottom-cta {
  margin-top: 1.35rem;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(46, 94, 170, 0.2);
  background: linear-gradient(145deg, rgba(46, 94, 170, 0.08), rgba(93, 134, 202, 0.08));
}

.tp-bottom-cta h3 {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--navy);
}

.tp-bottom-cta p {
  margin: 0.6rem 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .tp-main {
    padding: 0 0 3.5rem;
  }

  .tp-hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .tp-main > .tp-section {
    margin: 0 5vw;
  }

  .tp-hero-shot {
    max-width: 680px;
  }

  .tp-version-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 720px) {
  .tp-main {
    padding: 0 0 3rem;
    gap: 1.8rem;
  }

  .tp-hero {
    padding: 1.35rem;
    border-radius: 0;
  }

  .tp-main > .tp-section {
    margin: 0 5vw;
  }

  .tp-lead {
    margin-bottom: 1.2rem;
  }

  .tp-section {
    padding: 1.3rem;
    border-radius: 16px;
  }

  .tp-version-grid {
    grid-template-columns: 1fr;
  }

  .tp-detail-grid {
    grid-template-columns: 1fr;
  }
}
