:root {
  --bg-top: #050608;
  --bg-bottom: #18263f;
  --surface: rgba(14, 14, 16, 0.94);
  --surface-line: rgba(255, 255, 255, 0.08);
  --text: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.78);
  --accent-dark: #c88d54;
  --accent: #f0b37a;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.video-fit-page {
  overflow: hidden;
}

body.page-two-body {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(83, 124, 214, 0.22), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(10, 16, 28, 0.92), transparent 42%),
    linear-gradient(135deg, var(--bg-top) 0%, #0b1018 38%, var(--bg-bottom) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.035), transparent 18%);
  opacity: 0.85;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
  opacity: 0.4;
}

.landing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  padding: clamp(16px, 2vw, 28px);
}

.landing-card {
  width: min(1280px, 100%);
  margin: 0 auto;
  min-height: min(860px, calc(100vh - (clamp(16px, 2vw, 28px) * 2)));
  display: grid;
  place-items: center;
  padding: clamp(36px, 5vw, 88px);
  border-radius: 36px;
  border: 1px solid var(--surface-line);
  background:
    linear-gradient(135deg, rgba(22, 22, 24, 0.98), rgba(10, 10, 12, 0.96)),
    var(--surface);
  box-shadow:
    0 36px 80px var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  position: relative;
}

.landing-control-row {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.landing-legal-footer {
  width: min(520px, 100%);
}

.landing-auth-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  position: relative;
  z-index: 70;
}

.landing-auth-footer .course-hub-launch,
.landing-auth-footer .auth-launch-button {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.09);
  margin-left: auto;
  margin-right: auto;
}
.landing-legal-accordion {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.96), rgba(8, 12, 20, 0.96)),
    rgba(12, 15, 22, 0.96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.landing-legal-accordion summary {
  list-style: none;
  display: grid;
  gap: 4px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  position: relative;
  justify-items: center;
  text-align: center;
}

.landing-legal-accordion summary::-webkit-details-marker {
  display: none;
}

.landing-legal-accordion summary span {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fffaf4;
}

.landing-legal-accordion summary small {
  color: rgba(233, 244, 255, 0.72);
  font-size: 0.9rem;
}

.landing-legal-accordion summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 240, 232, 0.86);
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.landing-legal-accordion[open] summary::after {
  content: "-";
}

.landing-legal-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 22px 22px;
  width: min(420px, 100%);
  margin: 0 auto;
}

.landing-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(245, 240, 232, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.landing-legal-links a:hover,
.landing-legal-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(108, 203, 143, 0.24);
}

.hidden {
  display: none !important;
}

.top-action-group {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.auth-launch-button {
  position: static;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.auth-launch-button:hover,
.auth-launch-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.page-nav {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  z-index: 2;
  height: 42px;
  pointer-events: none;
}

.page-nav-button {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  pointer-events: auto;
}

.nav-top-left {
  left: 0;
}

.nav-top-right {
  right: 0;
}

.page-nav-button:hover,
.page-nav-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 179, 122, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.page-nav-button:focus-visible {
  outline: 2px solid rgba(240, 179, 122, 0.28);
  outline-offset: 3px;
}

.landing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(180deg, #5f4b3a, #a17d5c, #5f4b3a);
  box-shadow: inset -4px 0 8px rgba(0, 0, 0, 0.28);
}

.landing-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.landing-copy {
  width: min(920px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2vw, 30px);
  text-align: center;
}

.youtube-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.youtube-logo-stage {
  position: relative;
  width: 38px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.youtube-logo-pill {
  position: absolute;
  width: 38px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff4343, #d90d16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(169, 12, 18, 0.24);
  transform-origin: center;
  animation: youtubeLogoSwap 4.4s ease-in-out infinite;
}

.youtube-play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffffff;
  margin-left: 2px;
}

.youtube-logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 250, 244, 0.92);
  animation: youtubeTextSwap 4.4s ease-in-out infinite;
}

.youtube-gear-wrap {
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0;
  transform: scale(0.72);
  transform-origin: center;
  animation: youtubeGearSwap 4.4s ease-in-out infinite;
}

.youtube-gear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(98, 228, 145, 0.22), rgba(44, 126, 83, 0.12));
  color: #b8ffd0;
  font-size: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.14);
  animation: youtubeGearSpin 2.2s linear infinite;
}

@keyframes youtubeLogoSwap {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(1);
  }
  48%,
  82% {
    opacity: 0;
    transform: translateX(-10px) scale(0.76);
    filter: saturate(0.8);
  }
  90% {
    opacity: 1;
    transform: translateX(0) scale(1.03);
    filter: saturate(1.18);
  }
}

@keyframes youtubeTextSwap {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
  48%,
  82% {
    opacity: 0.38;
    transform: translateX(-6px);
  }
  90% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes youtubeGearSwap {
  0%,
  42%,
  100% {
    opacity: 0;
    transform: scale(0.72);
    width: 0;
  }
  48% {
    opacity: 1;
    transform: scale(1);
    width: 28px;
  }
  48.01%,
  82% {
    opacity: 1;
    transform: scale(1);
    width: 28px;
  }
  90% {
    opacity: 0;
    transform: scale(0.72);
    width: 0;
  }
}

@keyframes youtubeGearSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.landing-copy h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(calc(1rem + 10px), calc(1.25vw + 10px), calc(1.14rem + 10px));
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: none;
  white-space: nowrap;
  font-weight: 700;
  color: #fffaf4;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  padding: 18px 26px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(23, 68, 45, 0.92), rgba(45, 126, 83, 0.88) 58%, rgba(88, 180, 124, 0.78)),
    rgba(19, 42, 29, 0.86);
  border: 1px solid rgba(121, 225, 162, 0.22);
  box-shadow:
    0 18px 34px rgba(7, 21, 13, 0.28),
    inset 0 1px 0 rgba(196, 255, 217, 0.12);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.landing-copy h1::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    115deg,
    transparent 22%,
    rgba(220, 255, 231, 0.06) 38%,
    rgba(255, 255, 255, 0.36) 50%,
    rgba(220, 255, 231, 0.08) 62%,
    transparent 78%
  );
  transform: translateX(-140%) skewX(-18deg);
  animation: titleShimmer 2.9s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.youtube-word {
  color: #ff3030;
}

.landing-copy p {
  margin: 0;
  width: min(940px, 100%);
  max-width: 68ch;
  font-size: clamp(calc(1rem - 3px), calc(1.25vw - 3px), calc(1.14rem - 3px));
  line-height: 1.92;
  letter-spacing: -0.01em;
  color: rgba(245, 240, 232, 0.9);
  font-weight: 600;
  padding: 26px 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(15, 20, 31, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  position: relative;
}

.info-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(88, 180, 124, 0.2), rgba(130, 229, 168, 0.12));
  color: rgba(201, 255, 218, 0.88);
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(130, 229, 168, 0.14);
}

.info-chip {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  color: #f4fff8;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  justify-items: center;
  min-width: 280px;
  width: fit-content;
  clear: both;
  text-align: center;
}

.info-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  font-size: 1.2rem;
}

.info-chip-step {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  width: 100%;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
}

.info-chip-step-1 {
  animation: infoChipStepOne 4.8s ease-in-out infinite;
}

.info-chip-step-2 {
  animation: infoChipStepTwo 4.8s ease-in-out infinite;
}

.info-chip-step-3 {
  animation: infoChipStepThree 4.8s ease-in-out infinite;
}

@keyframes infoChipStepOne {
  0%,
  8%,
  100% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  12%,
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  34% {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
}

@keyframes infoChipStepTwo {
  0%,
  30%,
  100% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  36%,
  54% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  60% {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
}

@keyframes infoChipStepThree {
  0%,
  56%,
  100% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  64%,
  90% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  96% {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
}

.ready-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  min-height: 68px;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #17442d, #2d7e53 58%, #58b47c);
  color: #fffaf4;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background 220ms ease;
  overflow: hidden;
}

.ready-emoji {
  font-size: 1.46em;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 220ms ease;
}

.ready-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.42) 32%, transparent 52%);
  transform: translateX(-140%);
  transition: transform 480ms ease;
}

.ready-button::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 180, 124, 0.34), rgba(88, 180, 124, 0));
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 240ms ease, transform 240ms ease;
}

.ready-button:hover,
.ready-button:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 54px rgba(0, 0, 0, 0.38);
  filter: saturate(1.15) brightness(1.03);
  background: linear-gradient(135deg, #1f593c, #338d5d 58%, #6ccb8f);
}

.ready-button:hover::before,
.ready-button:focus-visible::before {
  transform: translateX(140%);
}

.ready-button:hover::after,
.ready-button:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.ready-button:hover .ready-emoji,
.ready-button:focus-visible .ready-emoji {
  transform: translateY(-3px) rotate(-8deg) scale(1.08);
}

.ready-button:focus-visible {
  outline: 2px solid rgba(88, 180, 124, 0.42);
  outline-offset: 4px;
}

.launch-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 220, 170, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(9, 12, 20, 0.08), rgba(9, 12, 20, 0.22));
  transition: opacity 180ms ease;
  z-index: 30;
}

.launch-overlay.is-active {
  opacity: 1;
}

.launch-rocket {
  position: absolute;
  left: 50%;
  bottom: 12%;
  font-size: 4.2rem;
  transform: translateX(-50%) translateY(0) rotate(-10deg);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
  opacity: 0;
}

.launch-trail {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 20px;
  height: 0;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 189, 117, 0.7), rgba(255, 113, 54, 0));
  opacity: 0;
  filter: blur(1px);
}

.launch-burst {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 170, 1), rgba(255, 140, 76, 0.4), rgba(255, 140, 76, 0));
  transform: translateX(-50%) scale(0.4);
  opacity: 0;
}

.launch-overlay.is-active .launch-rocket {
  animation: rocketFly 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.launch-overlay.is-active .launch-trail {
  animation: rocketTrail 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.launch-overlay.is-active .launch-burst {
  animation: rocketBurst 420ms ease-out forwards;
}

@keyframes rocketFly {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) rotate(-10deg) scale(0.8);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(140px) translateY(-92vh) rotate(10deg) scale(1.08);
  }
}

@keyframes rocketTrail {
  0% {
    opacity: 0;
    height: 0;
  }
  14% {
    opacity: 0.95;
    height: 140px;
  }
  100% {
    opacity: 0;
    height: 88vh;
  }
}

@keyframes rocketBurst {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.2);
  }
  35% {
    opacity: 1;
    transform: translateX(-50%) scale(1.45);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(2.2);
  }
}

@keyframes titleShimmer {
  0%,
  58%,
  100% {
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
  }
  16%,
  42% {
    opacity: 1;
  }
  52% {
    transform: translateX(140%) skewX(-18deg);
    opacity: 0;
  }
}

.video-page-card {
  min-height: auto;
  height: auto;
  padding: clamp(24px, 2vw, 32px);
  gap: 12px;
  align-content: start;
  align-items: start;
  justify-items: center;
  place-items: initial;
  grid-template-rows: auto auto auto;
}

.locked-route-card {
  min-height: min(760px, calc(100vh - 56px));
  padding: clamp(36px, 5vw, 80px);
}

.locked-route-copy {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.locked-route-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(240, 179, 122, 0.14);
  border: 1px solid rgba(240, 179, 122, 0.22);
  color: #ffd7ad;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.locked-route-copy h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  color: #fffaf4;
}

.locked-route-copy p {
  margin: 0;
  width: min(620px, 100%);
  color: rgba(233, 244, 255, 0.78);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.8;
}

.locked-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.locked-route-button {
  min-width: 220px;
}

.page-two-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(16px, 2vw, 28px) 0 40px;
  display: grid;
  gap: 24px;
}

.video-page-copy {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  margin: 0 auto;
}

.video-title-stack {
  display: grid;
  gap: 6px;
}

.video-page-copy h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(calc(0.9rem + 6px), calc(0.98vw + 6px), calc(1rem + 6px));
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fffaf4;
}

.video-page-copy h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.92rem, 1.02vw, 1.04rem);
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: rgba(240, 179, 122, 0.92);
  font-weight: 700;
}

.video-page-copy p {
  margin: 0;
  color: rgba(233, 244, 255, 0.74);
  font-size: clamp(0.9rem, 0.98vw, 1rem);
}

.video-frame {
  width: min(1000px, 100%);
  height: auto;
  min-height: auto;
  padding: 8px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 22, 0.82);
  border: 1px solid rgba(117, 177, 255, 0.12);
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.capture-frame {
  position: relative;
  overflow: hidden;
}

.capture-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.capture-watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.035) 44% 46%, transparent 46% 100%);
  background-size: 260px 260px;
  opacity: 0.75;
}

.capture-watermark-badge,
.capture-watermark-meta {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 10, 16, 0.54);
  border: 1px solid rgba(255, 84, 84, 0.22);
  color: rgba(255, 232, 232, 0.9);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.capture-watermark-badge {
  top: 16px;
  left: 16px;
  font-size: 0.74rem;
}

.capture-watermark-meta {
  right: 18px;
  bottom: 18px;
  font-size: 0.72rem;
  animation: captureFloat 10s ease-in-out infinite alternate;
}

@keyframes captureFloat {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-22px, -12px);
  }
  50% {
    transform: translate(-8px, -28px);
  }
  75% {
    transform: translate(-28px, -10px);
  }
  100% {
    transform: translate(-14px, -22px);
  }
}

.capture-print-blocked .ebook-video,
.capture-print-blocked .video-frame {
  visibility: hidden !important;
}

.channel-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.96), rgba(10, 14, 22, 0.94)),
    rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tools-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.96), rgba(10, 14, 22, 0.94)),
    rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tools-section-copy {
  width: min(780px, 100%);
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
}

.tools-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(88, 180, 124, 0.14);
  border: 1px solid rgba(88, 180, 124, 0.22);
  color: #caffd8;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tools-section-badge.warning {
  background: rgba(255, 67, 67, 0.16);
  border-color: rgba(255, 67, 67, 0.28);
  color: #ffd8d8;
}

.tools-section-copy h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  color: #fffaf4;
}

.tools-section-copy p {
  margin: 0;
  color: rgba(233, 244, 255, 0.74);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.76;
}

.tools-grid,
.prompt-grid,
.tools-links-grid {
  display: grid;
  gap: 16px;
}

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

.prompt-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tools-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-note-card,
.prompt-card,
.tool-link-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 18, 28, 0.88);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tool-note-card,
.prompt-card {
  padding: 20px;
}

.tool-note-card h4,
.prompt-card h4 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.04rem;
  color: #fffaf4;
}

.tool-note-card p,
.prompt-box p {
  margin: 0;
  color: rgba(233, 244, 255, 0.76);
  line-height: 1.78;
}

.tool-note-card.warning {
  border-color: rgba(240, 179, 122, 0.24);
  background:
    linear-gradient(135deg, rgba(240, 179, 122, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(13, 18, 28, 0.92);
}

.prompt-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tool-link-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-link-card:hover,
.tool-link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240, 179, 122, 0.24);
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tool-link-kicker {
  color: rgba(240, 179, 122, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tool-link-card strong {
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 1.04rem;
}

.tool-link-card small {
  color: rgba(233, 244, 255, 0.68);
  line-height: 1.68;
}

.channel-section-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto;
}

.channel-section-copy h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  color: #fffaf4;
  letter-spacing: -0.02em;
}

.channel-section-copy p {
  margin: 0;
  color: rgba(233, 244, 255, 0.72);
  font-size: clamp(0.95rem, 1vw, 1.04rem);
}

.channel-card-board {
  width: 100%;
  padding: 12px;
  border-radius: 26px;
  display: grid;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(9, 12, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.channel-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(16, 21, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.channel-avatar {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #120d08;
  background: linear-gradient(135deg, #ffd7ad, #b97840);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.channel-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.channel-heading {
  display: grid;
  gap: 4px;
}

.channel-top strong {
  font-size: 1.35rem;
  color: #fffaf4;
}

.channel-handle {
  color: rgba(233, 244, 255, 0.58);
  font-size: 0.92rem;
}

.channel-rank,
.channel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.channel-rank {
  background: rgba(240, 179, 122, 0.12);
  color: rgba(240, 179, 122, 0.96);
}

.channel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-box {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box span {
  display: block;
  margin-bottom: 6px;
  color: rgba(233, 244, 255, 0.56);
  font-size: 0.82rem;
}

.stat-box strong {
  color: #fffaf4;
  font-size: 1rem;
}

.channel-cta {
  text-decoration: none;
  background: linear-gradient(135deg, #f1c79a, #b97840);
  color: #140d08;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.channel-cta:hover,
.channel-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
  filter: saturate(1.08);
}

.ebook-video {
  display: block;
  width: 100%;
  height: auto;
  align-self: start;
  max-height: min(68vh, 760px);
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.video-warning-ticker {
  width: min(1000px, 100%);
  margin: 2px auto 0;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(86, 13, 18, 0.92), rgba(142, 20, 29, 0.9)),
    rgba(66, 12, 16, 0.92);
  border: 1px solid rgba(255, 95, 95, 0.2);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.video-warning-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 48px;
  padding: 12px 0;
  animation: videoWarningScroll 22s linear infinite;
}

.video-warning-track span {
  flex: 0 0 auto;
  color: #ffe2e2;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes videoWarningScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 24px));
  }
}

.feedback-section {
  width: min(1180px, 100%);
  margin: 0 auto 36px;
  padding: 0 28px 28px;
  display: grid;
  gap: 18px;
}

.feedback-section-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.feedback-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(43, 84, 62, 0.22);
  border: 1px solid rgba(108, 203, 143, 0.18);
  color: #dff7e8;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.feedback-section-copy h3 {
  margin: 0;
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}

.feedback-section-copy p {
  margin: 0;
  max-width: 820px;
  color: rgba(233, 244, 255, 0.74);
  line-height: 1.7;
}

.feedback-section-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.feedback-form-card,
.feedback-list-card {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 17, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.feedback-form,
.feedback-locked-state {
  display: grid;
  gap: 16px;
}

.feedback-form-head strong,
.feedback-list-head strong,
.feedback-locked-state strong,
.feedback-item strong {
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
}

.feedback-form-head span,
.feedback-list-head span,
.feedback-locked-state p,
.feedback-item span,
.feedback-item p,
.feedback-empty-state p {
  color: rgba(233, 244, 255, 0.74);
}

.feedback-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.feedback-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feedback-star {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.38);
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.feedback-star.is-active {
  color: #ffca64;
  border-color: rgba(255, 202, 100, 0.32);
  transform: translateY(-1px);
}

.feedback-field {
  display: grid;
  gap: 8px;
}

.feedback-field span {
  color: rgba(245, 240, 232, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.feedback-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.feedback-list-scroll {
  max-height: 420px;
  overflow-y: auto;
  display: grid;
  gap: 14px;
  padding-right: 6px;
}

.feedback-item,
.feedback-empty-state {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feedback-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.feedback-item-stars {
  color: #ffca64;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.feedback-item p,
.feedback-empty-state p {
  margin: 0;
  line-height: 1.7;
}

.paywall-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.paywall-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.paywall-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.78);
  backdrop-filter: blur(10px);
}

.paywall-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 920px);
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.98), rgba(8, 12, 20, 0.98)),
    rgba(12, 15, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow-y: auto;
}

.paywall-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 240, 232, 0.92);
  font-size: 1.3rem;
  cursor: pointer;
}

.paywall-copy {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.paywall-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.paywall-price-callout {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(18, 62, 39, 0.92), rgba(39, 120, 76, 0.86) 58%, rgba(103, 205, 142, 0.74)),
    rgba(18, 62, 39, 0.92);
  border: 1px solid rgba(133, 240, 177, 0.18);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.paywall-price-callout strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1;
  color: #fffaf4;
}

.paywall-price-callout span {
  color: rgba(245, 250, 246, 0.92);
  line-height: 1.65;
  font-weight: 600;
}

.paywall-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 180, 124, 0.14);
  border: 1px solid rgba(88, 180, 124, 0.22);
  color: #caffd8;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.paywall-copy h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.06;
  color: #fffaf4;
}

.paywall-copy p {
  margin: 0;
  color: rgba(233, 244, 255, 0.76);
  line-height: 1.7;
}

.paywall-inline-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(108, 203, 143, 0.24);
  background: rgba(34, 92, 60, 0.3);
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.paywall-inline-price.bottom {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.paywall-inline-price.below-benefits {
  margin-top: 2px;
}

.paywall-payment-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(108, 203, 143, 0.2);
  background: linear-gradient(135deg, rgba(34, 92, 60, 0.22), rgba(255, 255, 255, 0.04));
}

.paywall-payment-price-card span {
  color: rgba(233, 244, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 500;
}

.paywall-payment-price-card strong {
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.paywall-price-stack {
  display: grid;
  justify-items: end;
  gap: 2px;
  line-height: 1.1;
}

.paywall-price-stack del {
  color: rgba(233, 244, 255, 0.52);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.paywall-price-stack em {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: #b8ffd0;
  background: rgba(108, 203, 143, 0.16);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.paywall-discount-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(240, 179, 122, 0.18);
  background: rgba(240, 179, 122, 0.08);
}

.paywall-discount-countdown span {
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.paywall-discount-countdown strong {
  color: #ffd28d;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.paywall-payment-trust {
  margin: 6px 0 0;
  color: rgba(233, 244, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.paywall-benefits {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.paywall-benefit-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.paywall-benefit-item span {
  color: #6ccb8f;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.paywall-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(52, 128, 83, 0.2);
  border: 1px solid rgba(108, 203, 143, 0.16);
  color: #9fe8b8;
  font-size: 0.84rem;
  line-height: 1;
}

.paywall-benefit-item strong {
  color: rgba(245, 250, 246, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
}

.paywall-form {
  display: grid;
  gap: 16px;
}

.paywall-method-selector {
  display: grid;
  gap: 10px;
  pointer-events: auto;
}

.paywall-method-option {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fffaf4;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.paywall-method-option strong {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
}

.paywall-method-option span {
  color: rgba(233, 244, 255, 0.72);
  line-height: 1.55;
  font-size: 0.92rem;
}

.paywall-method-option.is-active {
  border-color: rgba(108, 203, 143, 0.38);
  background: rgba(49, 117, 79, 0.18);
  transform: translateY(-1px);
}

.paywall-empty-state,
.paywall-pending-state,
.paywall-transfer-info {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.paywall-empty-state strong,
.paywall-pending-state strong,
.paywall-transfer-info strong {
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
}

.paywall-empty-state p,
.paywall-pending-state p,
.paywall-transfer-info p {
  margin: 0;
  color: rgba(233, 244, 255, 0.76);
  line-height: 1.7;
}

.paywall-transfer-summary {
  display: grid;
  gap: 4px;
}

.paywall-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.paywall-copy-row-code {
  margin-top: 6px;
}

.paywall-copy-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.paywall-copy-button:hover,
.paywall-copy-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(108, 203, 143, 0.24);
}

.paywall-transfer-summary span,
.paywall-pending-meta span {
  color: rgba(233, 244, 255, 0.72);
}

.paywall-transfer-code {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.paywall-transfer-code span {
  color: rgba(233, 244, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.paywall-transfer-code strong {
  letter-spacing: 0.08em;
  font-size: 1.02rem;
}

.paywall-pending-state {
  border-color: rgba(240, 179, 122, 0.2);
  background: rgba(125, 77, 31, 0.16);
}

.paywall-pending-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.paywall-submit:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  filter: saturate(0.8);
}

.paywall-inline-fields {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

.paywall-field {
  display: grid;
  gap: 8px;
}

.paywall-field span,
.paywall-check span {
  color: rgba(245, 240, 232, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.paywall-field input {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}

.paywall-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  pointer-events: auto;
}

.paywall-check input {
  margin-top: 2px;
  pointer-events: auto;
  cursor: pointer;
}

.paywall-legal-group {
  display: grid;
  gap: 10px;
  pointer-events: auto;
}

.paywall-check-card {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.paywall-check-card a {
  color: #9fe8b8;
  text-decoration: none;
  font-weight: 700;
}

.paywall-check-card a:hover {
  text-decoration: underline;
}

.paywall-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.paywall-total-row span {
  color: rgba(233, 244, 255, 0.72);
  font-weight: 600;
}

.paywall-total-row strong {
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
}

.paywall-submit {
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f593c, #338d5d 58%, #6ccb8f);
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.paywall-register-footer {
  display: grid;
  gap: 12px;
}

.contract-page {
  min-height: 100vh;
  padding: 28px 18px 56px;
}

.contract-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.contract-header-card,
.contract-content-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.96), rgba(8, 12, 20, 0.97)),
    rgba(12, 15, 22, 0.96);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.contract-header-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}

.contract-back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.contract-header-copy {
  display: grid;
  gap: 6px;
}

.contract-header-copy h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fffaf4;
}

.contract-header-copy p {
  margin: 0;
  color: rgba(233, 244, 255, 0.72);
  line-height: 1.7;
}

.contract-content-card {
  padding: 28px;
}

.contract-page-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 232, 0.84);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

.contract-body {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
}

.contract-body h2,
.contract-body h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  color: #fffaf4;
}

.contract-body h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.contract-body h3 {
  margin-top: 28px;
  font-size: 1.04rem;
}

.contract-body p,
.contract-body li {
  color: rgba(233, 244, 255, 0.82);
  line-height: 1.8;
}

.contract-body ol,
.contract-body ul {
  margin: 0;
  padding-left: 20px;
}

.contract-meta {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contract-meta strong {
  color: #fffaf4;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.auth-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.78);
  backdrop-filter: blur(10px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.98), rgba(8, 12, 20, 0.98)),
    rgba(12, 15, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 240, 232, 0.92);
  font-size: 1.3rem;
  cursor: pointer;
}

.auth-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 180, 124, 0.14);
  border: 1px solid rgba(88, 180, 124, 0.22);
  color: #caffd8;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.auth-card h2 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  color: #fffaf4;
}

.auth-card p {
  margin: 0 0 18px;
  color: rgba(233, 244, 255, 0.76);
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field span {
  color: rgba(245, 240, 232, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.auth-field input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
}

.auth-feedback {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 74, 74, 0.12);
  border: 1px solid rgba(255, 74, 74, 0.22);
  color: #ffd6d6;
  line-height: 1.6;
}

.auth-submit {
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f593c, #338d5d 58%, #6ccb8f);
  color: #fffaf4;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.checkout-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.checkout-card {
  width: min(1180px, 100%);
  padding: clamp(28px, 3vw, 42px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.98), rgba(8, 12, 20, 0.98)),
    rgba(12, 15, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.checkout-copy,
.checkout-summary {
  display: grid;
  gap: 18px;
}

.checkout-copy h1,
.checkout-summary h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #fffaf4;
}

.checkout-copy p {
  margin: 0;
  color: rgba(233, 244, 255, 0.76);
  line-height: 1.72;
}

.checkout-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 180, 124, 0.14);
  border: 1px solid rgba(88, 180, 124, 0.22);
  color: #caffd8;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.checkout-panel {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-fields {
  display: grid;
  gap: 14px;
}

.checkout-field {
  display: grid;
  gap: 7px;
}

.checkout-field span {
  color: rgba(245, 240, 232, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
}

.checkout-field input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
}

.checkout-summary-list {
  display: grid;
  gap: 14px;
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-summary-item span {
  color: rgba(233, 244, 255, 0.7);
}

.checkout-summary-item strong {
  color: #fffaf4;
}

.checkout-pay-button {
  min-height: 58px;
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #d8a56d, #9f6431);
  color: #160f09;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.checkout-success {
  padding: 16px;
  border-radius: 16px;
  background: rgba(88, 180, 124, 0.12);
  border: 1px solid rgba(88, 180, 124, 0.2);
  color: #d7ffe5;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .landing-card {
    min-height: auto;
    padding: 44px 24px 34px;
  }

  .landing-card::before {
    display: none;
  }

  .auth-launch-button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .top-action-group {
    top: 16px;
    right: 16px;
    gap: 10px;
  }

  .page-nav {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 38px;
  }

  .page-nav-button {
    min-width: 78px;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.76rem;
  }

  .landing-copy {
    width: min(640px, 100%);
    justify-items: center;
    text-align: center;
  }

  .landing-copy h1 {
    width: min(100%, calc(100vw - 96px));
    max-width: 19.5rem;
    white-space: normal;
    font-size: clamp(1.25rem, 5.4vw, 1.78rem);
    line-height: 1.12;
    padding: 12px 16px;
    border-radius: 16px;
    text-wrap: balance;
  }

  .landing-copy p {
    max-width: 33ch;
    font-size: 0.88rem;
    line-height: 1.64;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .info-chip {
    width: 100%;
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .info-chip-step {
    width: 100%;
    justify-content: center;
  }

  .info-badge {
    top: 14px;
    left: 14px;
  }

  .ready-button {
    width: min(260px, 100%);
    min-height: 56px;
    padding: 14px 24px;
    font-size: 0.98rem;
    letter-spacing: 0.1em;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  }

  .ready-emoji {
    font-size: 1.22em;
  }

  .video-page-card {
    gap: 16px;
    grid-template-rows: auto;
  }

  .video-page-copy {
    width: min(100%, 38rem);
    gap: 12px;
    padding-top: 62px;
  }

  .video-title-stack {
    gap: 8px;
  }

  .video-page-copy h1 {
    max-width: min(24rem, calc(100vw - 92px));
    margin: 0 auto;
    font-size: clamp(1.16rem, 4.55vw, 1.55rem);
    line-height: 1.16;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .video-page-copy h2 {
    max-width: min(28rem, calc(100vw - 84px));
    margin: 0 auto;
    font-size: 0.78rem;
    line-height: 1.28;
    letter-spacing: 0.04em;
    text-wrap: balance;
  }

  .video-page-copy p {
    width: min(100%, calc(100vw - 84px));
    max-width: 41ch;
    font-size: 0.92rem;
    line-height: 1.56;
    text-wrap: pretty;
  }

  .video-frame {
    height: auto;
    padding: 10px;
    border-radius: 22px;
  }

  .ebook-video {
    height: auto;
    max-height: none;
    border-radius: 16px;
  }

  .page-two-shell {
    width: min(100% - 18px, 1320px);
    gap: 18px;
  }

  .video-warning-ticker {
    width: min(100%, calc(100% - 6px));
    margin-top: 6px;
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(70, 12, 18, 0.84), rgba(115, 18, 25, 0.82)),
      rgba(44, 9, 12, 0.86);
    border-color: rgba(255, 112, 112, 0.14);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .video-warning-track {
    gap: 28px;
    padding: 8px 0;
    animation-duration: 28s;
  }

  .video-warning-track span {
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    color: rgba(255, 233, 233, 0.88);
  }

  .paywall-card {
    padding: 24px 18px;
  }

  .paywall-inline-fields {
    grid-template-columns: 1fr;
  }

  .paywall-kicker-row {
    align-items: flex-start;
  }

  .contract-header-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contract-content-card,
  .contract-body {
    padding: 20px;
  }

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

  .channel-section {
    padding: 18px;
  }

  .tools-section {
    padding: 18px;
  }

  .channel-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .channel-main,
  .channel-top {
    width: 100%;
  }

  .channel-top {
    flex-direction: column;
  }

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

  .tools-grid,
  .prompt-grid,
  .tools-links-grid {
    grid-template-columns: 1fr;
  }

  .landing-legal-accordion summary {
    justify-items: start;
    text-align: left;
  }
}


@media (prefers-reduced-motion: reduce) {
  .ready-button {
    transition: none;
  }

  .ready-button::before,
  .ready-button::after,
  .ready-emoji,
  .landing-copy h1::after,
  .launch-overlay,
  .launch-rocket,
  .launch-trail,
  .launch-burst {
    animation: none !important;
    transition: none !important;
  }
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 300;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: auto;
}

.support-widget::before {
  content: "Merhaba, her bölümde benden canlı destek alabilirsin.";
  width: min(260px, calc(100vw - 104px));
  padding: 12px 14px;
  border-radius: 18px 18px 6px 18px;
  background:
    linear-gradient(135deg, rgba(23, 49, 78, 0.96), rgba(43, 105, 160, 0.94)),
    rgba(20, 42, 68, 0.96);
  border: 1px solid rgba(135, 192, 243, 0.22);
  color: #f5fbff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.support-widget:has(.support-panel.is-open)::before {
  display: none;
}

.support-widget.has-unread-support::before {
  display: none;
}

.support-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #14314f, #245f97);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.support-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #fff;
  border: 2px solid #0d1724;
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.38);
}

.support-unread-toast {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(260px, calc(100vw - 104px));
  max-width: min(250px, calc(100vw - 96px));
  padding: 10px 13px;
  border-radius: 14px 14px 4px 14px;
  display: none;
  background: linear-gradient(135deg, #17314e, #2b69a0);
  color: #f5fbff;
  border: 1px solid rgba(135, 192, 243, 0.26);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.support-widget.has-unread-support .support-unread-badge,
.support-widget.has-unread-support .support-unread-toast {
  display: inline-flex;
}

.support-widget.has-unread-support:has(.support-panel.is-open) .support-unread-badge,
.support-widget.has-unread-support:has(.support-panel.is-open) .support-unread-toast {
  display: none;
}

.support-trigger span:not(.support-trigger-icon) {
  display: none;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(350px, calc(100vw - 24px));
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 23, 31, 0.98), rgba(12, 15, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.support-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1d4f83, #2b78bf);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.support-close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.support-intro,
.support-chat {
  padding: 16px;
}

.support-intro.hidden,
.support-chat.hidden {
  display: none;
}

.support-intro p {
  margin: 0 0 14px;
  color: rgba(245, 240, 232, 0.84);
  line-height: 1.6;
}

.support-onboarding {
  display: grid;
  gap: 12px;
}

.support-onboarding input,
.support-onboarding select,
.support-composer input {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}

.support-onboarding select option {
  color: #111;
}

.support-start,
.support-composer button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #d8a56d, #9f6431);
  color: #1a120c;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.support-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.support-agent-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e3b784, #93592e);
  color: #140d08;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.support-agent strong {
  display: block;
  color: #fff;
}

.support-agent p {
  margin: 2px 0 0;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
}

.support-messages {
  min-height: 0;
  max-height: 300px;
  overflow: auto;
  display: grid;
  gap: 12px;
  padding-right: 4px;
}

.support-messages:has(.support-message:nth-child(2)) {
  min-height: 180px;
}

.support-message {
  display: grid;
  gap: 6px;
}

.support-message.agent {
  justify-items: start;
}

.support-message.visitor {
  justify-items: end;
}

.support-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1.6;
}

.support-message.agent .support-bubble {
  background: rgba(43, 120, 191, 0.18);
  color: #dfeeff;
}

.support-message.visitor .support-bubble {
  background: rgba(216, 165, 109, 0.18);
  color: #fff2e1;
}

.support-message time {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.78rem;
}

.support-composer {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .support-widget {
    right: 12px;
    bottom: 12px;
  }

  .support-widget::before {
    width: min(220px, calc(100vw - 92px));
    padding: 10px 12px;
    font-size: 0.76rem;
    border-radius: 16px 16px 6px 16px;
  }

  .support-trigger {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .support-panel {
    width: min(340px, calc(100vw - 18px));
    bottom: 72px;
  }
}

.support-trigger {
  background: linear-gradient(135deg, #1d3e63, #356fa8 55%, #6ea7dd);
  border-radius: 999px;
}

.support-trigger-icon {
  display: inline-flex;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-size: 1.45rem;
  transform: none;
}

.support-panel.is-offline {
  background:
    linear-gradient(180deg, rgba(18, 22, 30, 0.99), rgba(9, 12, 18, 0.99)),
    rgba(12, 15, 22, 0.98);
}

@media (max-width: 900px) {
  .feedback-section {
    padding-inline: 18px;
  }

  .feedback-section-grid {
    grid-template-columns: 1fr;
  }
}

.support-panel.is-offline .support-header {
  background: linear-gradient(135deg, #1f4e82, #2d7cc3);
}

.support-panel.is-offline .support-intro {
  padding: 18px;
}

.support-panel.is-offline .support-onboarding,
.support-panel.is-offline .support-chat {
  display: none !important;
}

.support-offline-card {
  display: grid;
  gap: 16px;
}

.support-offline-profile {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 112, 175, 0.2), rgba(23, 31, 44, 0.7));
  border: 1px solid rgba(122, 179, 240, 0.18);
}

.support-offline-avatar,
.support-agent-avatar {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 18px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.support-offline-avatar img,
.support-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.support-offline-heading {
  display: grid;
  gap: 4px;
}

.support-offline-heading strong {
  color: #ffffff;
  font-size: 1rem;
}

.support-offline-heading span {
  color: rgba(214, 232, 255, 0.78);
  font-size: 0.88rem;
}

.support-offline-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240, 179, 122, 0.16);
  border: 1px solid rgba(240, 179, 122, 0.22);
  color: #ffd7ad;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.support-offline-hours {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.support-panel.is-offline .support-intro p {
  margin: 0;
  color: rgba(242, 245, 251, 0.82);
  line-height: 1.72;
}

.support-offline-note {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(214, 232, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.65;
}

.generic-page-card {
  gap: 28px;
}

.generic-page-copy,
.dynamic-page-content {
  width: min(880px, 100%);
  margin: 0 auto;
}

.dynamic-page-content {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.8;
}

.dynamic-page-cta {
  margin-top: 8px;
}

.course-hub-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(99, 212, 138, 0.28);
  background: rgba(10, 18, 14, 0.88);
  color: #dff8e8;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(2, 8, 6, 0.28);
}

.student-hub-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(23, 90, 55, 0.18), transparent 35%),
    radial-gradient(circle at top right, rgba(32, 74, 124, 0.18), transparent 30%),
    linear-gradient(180deg, #070b12 0%, #0b1220 54%, #071018 100%);
  color: #eef5f3;
  font-family: "Manrope", sans-serif;
}

.student-hub-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 60px;
  overflow-x: clip;
}

.student-hub-hero,
.student-panel,
.student-hub-alert {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 18, 28, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.student-hub-hero {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-radius: 32px;
  margin-bottom: 24px;
}

.student-hub-kicker {
  margin: 0 0 10px;
  color: #7de0a5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.student-hub-hero h1 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.student-hub-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(234, 243, 240, 0.76);
  line-height: 1.7;
}

.student-hub-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.student-hub-link,
.student-primary-button,
.student-mini-action {
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.student-hub-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 28, 40, 0.82);
  color: #f3f7f6;
  min-width: 150px;
  padding: 0.9rem 1.2rem;
  text-align: center;
  white-space: nowrap;
}

.student-hub-link.accent,
.student-primary-button {
  border: none;
  background: linear-gradient(135deg, #1e7d54, #63d48a);
  color: #f8fffb;
  box-shadow: 0 18px 44px rgba(47, 136, 93, 0.28);
}

.student-hub-link:hover,
.student-primary-button:hover,
.student-mini-action:hover {
  transform: translateY(-1px);
}

.student-primary-button {
  padding: 1rem 1.35rem;
  font-size: 1rem;
}

.student-mini-action {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 25, 36, 0.82);
  color: #f5faf8;
  padding: 0.82rem 1rem;
}

.student-mini-action.ghost {
  background: transparent;
}

.student-hub-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.student-hub-alert strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.04rem;
}

.student-hub-alert p {
  margin: 0;
  color: rgba(234, 243, 240, 0.75);
}

.student-hub-grid {
  display: grid;
  gap: 20px;
}

.student-panel {
  border-radius: 28px;
  padding: 24px;
}

.student-panel-highlight {
  padding: 26px;
}

.student-panel-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(99, 212, 138, 0.16);
  border: 1px solid rgba(99, 212, 138, 0.24);
  color: #d8fce6;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.student-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.student-panel-head h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.student-panel-head p {
  margin: 0;
  color: rgba(234, 243, 240, 0.72);
  line-height: 1.6;
}

.student-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.student-stat-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 33, 0.8);
  padding: 16px 18px;
}

.student-stat-card small {
  display: block;
  color: rgba(234, 243, 240, 0.62);
  margin-bottom: 8px;
}

.student-stat-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.student-form {
  display: grid;
  gap: 14px;
}

.student-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.student-form span {
  color: rgba(241, 247, 245, 0.9);
  font-weight: 700;
}

.student-form input,
.student-form textarea,
.student-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 35, 0.9);
  color: #eefaf3;
  padding: 0.95rem 1rem;
  font: inherit;
}

.student-form input[type="date"],
.student-form input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
}

.student-form textarea {
  resize: vertical;
}

.student-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.student-form-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.student-form-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.student-inline-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.student-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(241, 247, 245, 0.86);
}

.student-form-status {
  margin: 2px 0 0;
  color: rgba(199, 222, 212, 0.76);
}

.student-button-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-button-row .student-primary-button {
  flex: 1;
}

.student-form-status:empty {
  display: none;
}

.student-form-status.is-success {
  color: #7ee0a0;
}

.student-form-status.is-error {
  color: #ffb4b4;
}

.student-form-status.is-info {
  color: rgba(199, 222, 212, 0.76);
}

.student-primary-button.is-saved {
  background: linear-gradient(135deg, #176c49, #3bbd71);
}

.student-primary-button:disabled,
.student-form.is-locked input:disabled,
.student-form.is-locked textarea:disabled {
  cursor: not-allowed;
}

.student-form.is-locked input:disabled,
.student-form.is-locked textarea:disabled {
  opacity: 0.78;
  color: rgba(245, 250, 248, 0.82);
}

@media (max-width: 640px) {
  .student-hub-shell {
    width: min(100% - 20px, 100%);
    padding-top: 22px;
  }

  .student-hub-hero,
  .student-panel,
  .student-panel-highlight {
    padding: 18px;
    border-radius: 24px;
  }

  .student-panel-head h2 {
    font-size: 1.2rem;
  }

  .student-panel-head p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .student-form {
    gap: 12px;
  }

  .student-form input,
  .student-form textarea,
  .student-form select {
    min-height: 52px;
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
    font-size: 16px;
  }

  .student-button-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.weekday-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  pointer-events: auto;
}

.weekday-chip {
  position: relative;
  cursor: pointer;
}

.weekday-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.weekday-chip span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 22, 31, 0.8);
  color: rgba(233, 242, 239, 0.7);
}

.weekday-chip input:checked + span {
  background: rgba(99, 212, 138, 0.16);
  border-color: rgba(99, 212, 138, 0.34);
  color: #e7fff0;
}

.student-log-scroll {
  max-height: 420px;
  overflow-y: auto;
  display: grid;
  gap: 14px;
  padding-right: 6px;
}

.student-log-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 34, 0.84);
  padding: 18px;
}

.student-log-card.empty {
  text-align: center;
}

.student-log-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.student-log-head strong {
  display: block;
}

.student-log-head span {
  color: rgba(230, 239, 235, 0.66);
  font-size: 0.92rem;
}

.student-log-video {
  margin: 0 0 10px;
  color: #eff7f3;
  font-weight: 700;
}

.student-log-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 10px;
  color: rgba(233, 243, 239, 0.76);
}

.student-log-note {
  margin: 0;
  color: rgba(240, 246, 243, 0.8);
  line-height: 1.6;
}

.course-hub-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(48, 132, 255, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(57, 209, 157, 0.18), transparent 42%),
    rgba(16, 21, 31, 0.94);
  border: 1px solid rgba(118, 135, 167, 0.18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.course-hub-promo-copy {
  flex: 1 1 560px;
}

.course-hub-promo-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 209, 153, 0.16);
  border: 1px solid rgba(96, 228, 174, 0.26);
  color: #a5f6cc;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-hub-promo h3 {
  margin: 16px 0 12px;
  color: #f7f9fc;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.15;
}

.course-hub-promo p {
  margin: 0;
  max-width: 760px;
  color: rgba(226, 231, 239, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.course-hub-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #34d399 0%, #2f9f79 100%);
  color: #07110d;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(48, 179, 133, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.course-hub-promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(48, 179, 133, 0.34);
  filter: saturate(1.05);
}

@media (max-width: 1100px) {
  .student-stats-grid,
  .student-form-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekday-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .top-action-group {
    position: static;
    margin: 0 0 1rem auto;
  }

  .student-hub-hero {
    flex-direction: column;
  }

  .student-hub-actions {
    align-items: stretch;
  }

  .student-hub-link {
    width: 100%;
    min-width: 0;
  }

  .student-stats-grid,
  .student-form-grid,
  .student-form-grid-three,
  .student-form-grid-four,
  .weekday-grid {
    grid-template-columns: 1fr;
  }

  .student-hub-alert {
    flex-direction: column;
    align-items: stretch;
  }

  .course-hub-promo {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
    gap: 18px;
  }

  .course-hub-promo-copy,
  .course-hub-promo p {
    max-width: none;
  }

  .course-hub-promo-copy {
    flex: 0 1 auto;
  }

  .course-hub-promo h3 {
    margin: 12px 0 10px;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.18;
  }

  .course-hub-promo p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .course-hub-promo-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
  }
}


.support-trigger-icon {
  position: static;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 23, 36, 0.38) url("/dijitalistbey.jpg") center / cover no-repeat;
  font-size: 0;
  line-height: 1;
  color: #ffffff;
  transform: none;
}

.support-trigger-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.support-trigger-icon.is-initials {
  font-size: 0.9rem;
  font-weight: 800;
}

.support-trigger-icon::before,
.support-trigger-icon::after,
.support-composer button::before,
.support-composer button::after {
  content: none;
  display: none;
}

.support-composer button {
  position: relative;
  font-size: 1.15rem;
  line-height: 1;
  color: #ffffff;
}
.feedback-form-card,
.feedback-list-card,
.feedback-empty-state,
.feedback-locked-state,
.feedback-item {
  color: #ffffff;
}


.page-nav-button.is-locked {
  border-color: rgba(240, 179, 122, 0.34);
  background: rgba(23, 29, 39, 0.92);
  color: rgba(245, 240, 232, 0.88);
}

.video-frame.has-duration-badge {
  position: relative;
}

.video-duration-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 213, 141, 0.36);
  background: rgba(7, 15, 24, 0.78);
  color: #f7fff9;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  pointer-events: none;
}

.video-duration-badge.is-hidden {
  display: none;
}

.video-duration-badge span {
  color: #7ee6a8;
  white-space: nowrap;
}

.video-duration-badge strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .video-duration-badge {
    top: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    gap: 7px;
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .video-duration-badge strong {
    font-size: 0.66rem;
  }
}
.support-thread-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.support-thread-item {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(80, 52, 29, 0.14);
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.72);
  color: #2a1a12;
  text-align: left;
  cursor: pointer;
}

.support-thread-item strong,
.support-thread-item span,
.support-thread-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-thread-item span,
.support-thread-item small {
  color: rgba(42, 26, 18, 0.62);
}

.support-thread-item.is-active {
  border-color: rgba(126, 66, 24, 0.48);
  background: rgba(126, 66, 24, 0.12);
}

.ready-channel-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(220, 38, 38, 0.22), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(239, 68, 68, 0.18), transparent 24%),
    #050506;
  color: #f8fafc;
  font-family: "Manrope", sans-serif;
}

.ready-channel-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.ready-channel-campaign-banner[hidden] {
  display: none;
}

.ready-channel-campaign-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 13px 16px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(248, 113, 113, 0.34);
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.12) 18%, transparent 36%) -160% 0 / 220% 100%,
    radial-gradient(circle at 12% 0%, rgba(239, 68, 68, 0.38), transparent 28%),
    linear-gradient(135deg, rgba(30, 6, 10, 0.98), rgba(10, 10, 12, 0.98));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  animation: readyChannelBannerGlow 4.8s ease-in-out infinite, readyChannelBannerShine 6.5s linear infinite;
  overflow: hidden;
}

.ready-channel-campaign-banner span,
.ready-channel-campaign-banner strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.ready-channel-campaign-banner span {
  min-height: 32px;
  padding: 6px 14px;
  border: 1px solid rgba(248, 113, 113, 0.34);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.45);
  color: #fecaca;
  font-size: clamp(0.78rem, 2.4vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ready-channel-campaign-banner strong {
  color: #fff;
  font-size: clamp(1.05rem, 3.6vw, 1.62rem);
  font-weight: 900;
  text-shadow: 0 0 24px rgba(248, 113, 113, 0.34);
  animation: readyChannelTextPulse 2.8s ease-in-out infinite;
}

.ready-channel-page:not(.has-campaign-banner) .ready-channel-shell {
  padding-top: 28px;
}

@keyframes readyChannelBannerGlow {
  0%, 100% {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 0 rgba(248, 113, 113, 0);
  }
  50% {
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5), 0 0 30px rgba(248, 113, 113, 0.2);
  }
}

@keyframes readyChannelBannerShine {
  0% {
    background-position: -160% 0, center, center;
  }
  100% {
    background-position: 160% 0, center, center;
  }
}

@keyframes readyChannelTextPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.015);
  }
}

.ready-channel-hero,
.ready-channel-order {
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.96), rgba(8, 8, 10, 0.94));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.ready-channel-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 46px);
  margin-bottom: 28px;
}

.ready-channel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.18);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ready-channel-hero h1,
.ready-channel-order h2 {
  margin: 18px 0 14px;
  max-width: 820px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.ready-channel-order h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.ready-channel-hero p,
.ready-channel-order-copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 1.04rem;
  line-height: 1.75;
}

.ready-channel-cta,
.ready-channel-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 20px 42px rgba(220, 38, 38, 0.3);
}

.ready-channel-submit {
  width: 100%;
  margin-top: 18px;
}

.ready-channel-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.ready-channel-gallery {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.ready-channel-gallery figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(248, 113, 113, 0.2);
  background: #0a0a0c;
}

.ready-channel-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.ready-channel-faq {
  margin: 0 0 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 68, 68, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(18, 18, 22, 0.98), rgba(8, 8, 10, 0.96));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.ready-channel-faq-head h2 {
  margin: 16px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.ready-channel-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ready-channel-faq details {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.74);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ready-channel-faq details[open] {
  border-color: rgba(248, 113, 113, 0.5);
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.32), rgba(15, 23, 42, 0.78));
}

.ready-channel-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 0 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.ready-channel-faq summary::-webkit-details-marker {
  display: none;
}

.ready-channel-faq summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.28);
  font-size: 1.1rem;
  line-height: 1;
}

.ready-channel-faq details[open] summary::after {
  content: "-";
}

.ready-channel-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (min-width: 900px) {
  .ready-channel-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.ready-channel-order {
  padding: clamp(22px, 4vw, 36px);
}

.ready-channel-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.ready-channel-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ready-channel-plan {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.66);
  cursor: pointer;
}

.ready-channel-plan.is-active {
  border-color: rgba(248, 113, 113, 0.62);
  background: rgba(127, 29, 29, 0.38);
}

.ready-channel-plan input {
  width: 20px;
  height: 20px;
  accent-color: #ef4444;
}

.ready-channel-plan strong,
.ready-channel-plan small {
  display: block;
}

.ready-channel-plan small {
  margin-top: 4px;
  color: rgba(248, 250, 252, 0.64);
}

.ready-channel-plan b {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  white-space: nowrap;
}

.ready-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ready-channel-wide {
  grid-column: 1 / -1;
}

.ready-channel-form label {
  min-width: 0;
}

.ready-channel-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(248, 250, 252, 0.82);
  font-weight: 800;
}

.ready-channel-form input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  box-sizing: border-box;
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  padding: 0 16px;
  font: inherit;
}

.ready-channel-bank {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 18px;
  background: rgba(10, 10, 12, 0.72);
}

.ready-channel-bank div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ready-channel-bank span {
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.86rem;
  font-weight: 800;
}

.ready-channel-bank strong {
  overflow-wrap: anywhere;
}

.ready-channel-bank p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(248, 250, 252, 0.66);
  line-height: 1.6;
}

.ready-channel-copy {
  width: max-content;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
}

.ready-channel-legal {
  display: grid;
  gap: 10px;
}

.ready-channel-legal label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.62);
}

.ready-channel-legal input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: #ef4444;
}

.ready-channel-legal a {
  color: #fca5a5;
  font-weight: 900;
}

.ready-channel-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(127, 29, 29, 0.36);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.ready-channel-total span {
  color: rgba(248, 250, 252, 0.7);
  font-weight: 800;
}

.ready-channel-total strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}

.ready-channel-status {
  min-height: 24px;
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
  font-weight: 800;
}

.ready-channel-status[data-status="success"] {
  color: #86efac;
}

.ready-channel-status[data-status="error"] {
  color: #fca5a5;
}

.ready-channel-status[data-status="pending"] {
  color: #fde68a;
}

.ready-channel-modal[hidden] {
  display: none;
}

.ready-channel-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.ready-channel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.ready-channel-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(248, 113, 113, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(18, 18, 22, 0.98), rgba(8, 8, 10, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  color: #fff;
}

.ready-channel-modal-card h2 {
  margin: 16px 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.ready-channel-modal-card p {
  margin: 0;
  color: rgba(248, 250, 252, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ready-channel-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.ready-channel-modal-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 22px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 42px rgba(34, 197, 94, 0.24);
}

.campaign-preview-card {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(126, 66, 24, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(126, 66, 24, 0.2), rgba(255, 255, 255, 0.72));
  text-align: center;
}

.campaign-preview-card span,
.campaign-preview-card strong {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

.campaign-preview-card span {
  color: #8a4b20;
  font-weight: 800;
}

.campaign-preview-card strong {
  color: #2b1a10;
  font-size: 1.6rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .ready-channel-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 118px;
  }

  .ready-channel-page:not(.has-campaign-banner) .ready-channel-shell {
    padding-top: 12px;
  }

  .ready-channel-campaign-banner {
    gap: 7px;
    padding: 11px 12px 13px;
    border-bottom-color: rgba(248, 113, 113, 0.42);
  }

  .ready-channel-campaign-banner span {
    max-width: min(92vw, 420px);
    min-height: 30px;
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  .ready-channel-campaign-banner strong {
    max-width: min(94vw, 440px);
    font-size: clamp(1.03rem, 5.8vw, 1.34rem);
    line-height: 1.12;
  }

  .ready-channel-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .ready-channel-cta {
    width: 100%;
  }

  .ready-channel-plans,
  .ready-channel-grid,
  .ready-channel-bank {
    grid-template-columns: 1fr;
  }

  .ready-channel-faq {
    padding: 18px 14px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .ready-channel-faq-head h2 {
    margin-top: 10px;
    font-size: 1.65rem;
    line-height: 1.14;
  }

  .ready-channel-faq-list {
    gap: 8px;
    margin-top: 16px;
  }

  .ready-channel-faq details {
    border-radius: 14px;
  }

  .ready-channel-faq summary {
    min-height: 54px;
    padding: 12px 12px 12px 14px;
    gap: 10px;
    font-size: 0.96rem;
  }

  .ready-channel-faq summary::after {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .ready-channel-faq p {
    padding: 0 14px 14px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .ready-channel-modal {
    align-items: end;
    padding: 12px;
  }

  .ready-channel-modal-card {
    border-radius: 20px;
  }

  .ready-channel-modal-login {
    width: 100%;
  }

  .ready-channel-plan {
    grid-template-columns: auto 1fr;
  }

  .ready-channel-plan b {
    grid-column: 2;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .ready-channel-shell {
    padding-top: 104px;
  }

  .ready-channel-campaign-banner strong {
    font-size: 1.42rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ready-channel-campaign-banner,
  .ready-channel-campaign-banner strong {
    animation: none;
  }
}
