:root {
  --ink: #17201f;
  --muted: #5c6764;
  --paper: #fbf8f1;
  --surface: #ffffff;
  --coral: #e95f4f;
  --coral-dark: #bf3f34;
  --teal: #137c76;
  --mint: #cde9dc;
  --gold: #f2bd58;
  --line: rgba(23, 32, 31, 0.14);
  --shadow: 0 24px 60px rgba(23, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.stream-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  min-height: 44px;
  padding: 8px clamp(18px, 5vw, 64px);
  color: #ffffff;
  background: #101716;
  box-shadow: 0 8px 24px rgba(16, 23, 22, 0.22);
}

.stream-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stream-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777;
}

.stream-status.is-online {
  color: #7dff9a;
  border-color: rgba(125, 255, 154, 0.36);
  background: rgba(125, 255, 154, 0.1);
}

.stream-status.is-online .stream-status__dot {
  background: #43ff69;
  animation: live-pulse 1.4s infinite;
}

.stream-status.is-offline {
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.05);
}

.stream-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.stream-hours strong {
  color: var(--gold);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: #ffffff;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 12px 40px rgba(23, 32, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand__mark,
.brand__photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.brand__mark {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
}

.brand__photo {
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 168px clamp(20px, 6vw, 84px) 72px;
  color: #ffffff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(15, 25, 24, 0.92) 0%, rgba(15, 25, 24, 0.72) 38%, rgba(15, 25, 24, 0.12) 78%),
    linear-gradient(0deg, rgba(15, 25, 24, 0.35), rgba(15, 25, 24, 0.05));
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero__actions,
.price-box,
.footer {
  display: flex;
  align-items: center;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 16px 38px rgba(233, 95, 79, 0.28);
}

.button--primary:hover {
  background: var(--coral-dark);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.stats,
.section {
  padding-inline: clamp(20px, 6vw, 84px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
}

.stats div {
  display: grid;
  gap: 6px;
  min-height: 150px;
  align-content: center;
  padding: 28px;
  color: #ffffff;
  background: #22302e;
}

.stats strong {
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
}

.stats span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding-top: clamp(72px, 10vw, 126px);
  padding-bottom: clamp(72px, 10vw, 126px);
}

.intro,
.plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.intro > p,
.plan p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.plan {
  background: var(--ink);
  color: #ffffff;
}

.plan .eyebrow {
  color: var(--gold);
}

.plan p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  grid-column: 1 / -1;
}

.price-box {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #263634;
  box-shadow: var(--shadow);
}

.price-box__label,
.price-box span:last-of-type {
  color: rgba(255, 255, 255, 0.68);
}

.price-box strong {
  font-size: clamp(1.25rem, 2.55vw, 2.55rem);
  line-height: 1;
}

.price-box .button {
  margin-top: 18px;
}

.price-box__desc {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.55;
}

.join {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background: #101716;
}

.join .eyebrow {
  color: var(--gold);
}

.join h2 {
  color: #ffffff;
}

.link-hub {
  display: grid;
  gap: 16px;
  width: min(720px, 100%);
}

.link-hub__icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.link-hub__icons a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold);
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-hub__icons a:hover {
  color: var(--coral);
  transform: translateY(-2px);
}

.link-hub__icons svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.hub-button {
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  align-items: center;
  min-height: 60px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: #263634;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hub-button:hover {
  border-color: rgba(233, 95, 79, 0.48);
  background: #2f4642;
  transform: translateY(-2px);
}

.hub-button span {
  color: var(--coral);
  font-size: 1.25rem;
}

.hub-button strong {
  display: grid;
  gap: 3px;
  overflow-wrap: anywhere;
}

.hub-button small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
}

.footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.74);
  background: #101716;
}

.footer span {
  color: #ffffff;
  font-weight: 800;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.footer__tags {
  flex: 1 1 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .stream-topbar {
    justify-content: flex-start;
    min-height: 58px;
    gap: 10px;
  }

  .site-header {
    top: 58px;
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 15px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 156px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(15, 25, 24, 0.93), rgba(15, 25, 24, 0.56));
  }

  .stats,
  .intro,
  .plan,
  .join {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 118px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .stream-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 86vh;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .stats {
    padding-inline: 0;
  }

}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(67, 255, 105, 0.55);
  }

  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 7px rgba(67, 255, 105, 0);
  }
}
