:root {
  --ink: #161616;
  --muted: #5f6673;
  --line: #d8dde6;
  --paper: #f8fafc;
  --panel: #ffffff;
  --accent: #1e9bd7;
  --accent-dark: #0877b6;
  --gold: #d4a530;
  --green: #18895a;
  --shadow: 0 24px 70px rgba(22, 35, 53, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 155, 215, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef4f8 44%, #f8fafc 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 32px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: 32px;
  align-items: stretch;
  min-height: calc(100vh - 132px);
}

.hero-content,
.channel-card,
.policy-panel {
  border: 1px solid rgba(216, 221, 230, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 8px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(30, 155, 215, 0.25);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(30, 155, 215, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.stat {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.stat-label {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 16px 36px rgba(8, 119, 182, 0.26);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(8, 119, 182, 0.34);
}

.timer-note {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.channel-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  text-align: center;
}

.channel-avatar {
  width: min(238px, 72vw);
  aspect-ratio: 1;
  margin-bottom: 28px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(22, 35, 53, 0.2);
}

.channel-name {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  font-weight: 950;
  letter-spacing: 0;
}

.channel-subtitle {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.verified-copy {
  width: min(100%, 360px);
  padding: 16px;
  border: 1px solid rgba(24, 137, 90, 0.22);
  border-radius: 8px;
  background: rgba(24, 137, 90, 0.08);
}

.verified-copy span,
.verified-copy strong {
  display: block;
}

.verified-copy span {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.verified-copy strong {
  font-size: 1.12rem;
}

.policy-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
  padding: 28px;
  border-radius: 8px;
}

.policy-panel h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.policy-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 620px);
    padding-top: 18px;
  }

  .hero,
  .policy-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .channel-card,
  .policy-panel {
    padding: 24px;
  }

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

  .channel-card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: calc(100% - 18px);
  }

  .hero-content,
  .channel-card,
  .policy-panel {
    padding: 20px;
  }

  .stat {
    min-height: 112px;
  }

  .primary-button {
    width: 100%;
  }
}
