
:root {
  --bg: #020308;
  --bg-alt: #050814;
  --bg-section: radial-gradient(circle at top center, #071018, #020308 70%);
  --accent: #28f09c;
  --accent-soft: #18b875;
  --accent-strong: #19ff8f;
  --text-main: #f7f8fc;
  --text-muted: #9aa4c0;
  --border-subtle: rgba(255,255,255,0.06);
  --card-radius: 20px;
  --shadow-soft: 0 22px 55px rgba(0,0,0,0.8);
  --shadow-glow: 0 0 24px rgba(40, 240, 156, 0.6);
  --nav-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top center, #0b1f16 0, #03040a 45%, #000000 100%);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2.4rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.96), rgba(0,0,0,0.82), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo {
  width: 56px;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-main);
  opacity: 0.82;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease-out, opacity .18s ease-out, transform .18s ease-out;
}

.nav a:hover {
  opacity: 1;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.nav-cta {
  padding-inline: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(40, 240, 156, 0.5);
  background: radial-gradient(circle at top, rgba(40,240,156,0.18), rgba(0,0,0,0.9));
}

main {
  padding-top: 2.4rem;
}

.hero {
  padding: 3.6rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.4fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.3rem);
  line-height: 1.07;
  margin: 0 0 1rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: var(--text-muted);
  max-width: 33rem;
  font-size: 0.98rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.2rem;
  font-size: 0.92rem;
}

.hero-highlights li + li {
  margin-top: 0.2rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.hero-phone {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(40,240,156,0.28), rgba(5,8,15,0.98));
  border-radius: 26px;
  padding: 1.6rem 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.24rem 0.76rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.28);
  margin-bottom: 0.8rem;
}

.hero-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.hero-bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-bundle {
  background: rgba(0,0,0,0.5);
  border-radius: 18px;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-bundle h3 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
}

.hero-bundle .price span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-bundle .price {
  margin: 0;
}

.hero-bundle .small {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.tiny {
  font-size: 0.73rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out, color .18s ease-out;
}

.btn.primary {
  background: radial-gradient(circle at top left, var(--accent-strong), var(--accent-soft));
  color: #020305;
  box-shadow: 0 14px 32px rgba(40,240,156,0.5);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn.secondary {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.2);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(40,240,156,0.5);
}

.btn.ghost:hover {
  background: rgba(40,240,156,0.14);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.section {
  padding: 3.4rem 0;
}

.section.dark {
  background: var(--bg-section);
}

.section-intro {
  max-width: 44rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.9rem;
  margin-top: 0;
}

.cards {
  display: grid;
  gap: 1.6rem;
}

.cards.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: linear-gradient(135deg, rgba(8,12,22,0.96), rgba(4,8,16,0.98));
  border-radius: var(--card-radius);
  padding: 1.5rem 1.6rem 1.7rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.card.glass {
  background: radial-gradient(circle at top left, rgba(40,240,156,0.12), rgba(4,6,12,0.98));
  backdrop-filter: blur(16px);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.1rem;
  font-size: 0.9rem;
}

.card-list li + li {
  margin-top: 0.35rem;
}

.tagline {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 0.15rem;
}

.bundle-price {
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

.bundle-price span {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
}

.strikethrough-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

.strike {
  text-decoration: line-through;
}

.fine-print {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.section-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.channels-intro {
  margin-bottom: 1.3rem;
}

/* Channel grid (on TV page) */

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.6rem;
}

.channel-pill {
  background: rgba(8, 12, 20, 0.96);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  font-size: 0.8rem;
}

.channel-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, var(--accent), #1b2330);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #020305;
}

/* Enrollment form */

.enroll-layout {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 3fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.enroll-form {
  background: linear-gradient(150deg, rgba(10,16,26,0.97), rgba(5,9,15,0.98));
  border-radius: 24px;
  padding: 1.7rem 1.8rem 1.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 0.95rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

input, select, textarea {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(3,6,12,0.98);
  padding: 0.62rem 0.85rem;
  color: var(--text-main);
  font-size: 0.88rem;
  outline: none;
}

textarea {
  border-radius: 18px;
  min-height: 96px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(40,240,156,0.45);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #020308;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: flex-start;
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 25rem;
}

.footer-contact p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-contact p + p {
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.1rem;
  padding: 0.7rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Success page */

.success-wrap {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 2rem;
}

.success-card {
  max-width: 460px;
  text-align: center;
  padding: 2rem 2.1rem 2.2rem;
  background: radial-gradient(circle at top left, rgba(40,240,156,0.18), rgba(4,6,12,0.98));
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    margin-top: 2.2rem;
  }
  .cards.two-column,
  .enroll-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 100%);
  }
  main {
    padding-top: 1.8rem;
  }
  .hero {
    padding-top: 2.9rem;
  }
  .enroll-form {
    padding: 1.4rem 1.4rem 1.7rem;
  }
}
