/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #F4ECE0;
  --surface:    #FFFFFF;
  --surface-2:  #EAE0CE;
  --border:     rgba(33,28,26,0.10);
  --border-2:   rgba(33,28,26,0.18);

  --accent:      #A61E2A;
  --accent-deep: #7A1520;
  --accent-soft: rgba(166,30,42,0.10);
  --accent-glow: rgba(166,30,42,0.22);

  --gold:       #C9A050;
  --gold-soft:  rgba(201,160,80,0.18);

  --live:       #A61E2A;

  --ink:        #211C1A;
  --ink-2:      #665D54;
  --ink-3:      #A79C8E;

  --r-sm:       10px;
  --r-md:       18px;
  --r-lg:       28px;

  --display: 'Bricolage Grotesque', sans-serif;
  --body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

/* ── Auth Modal ──────────────────────────────────────────────── */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20,15,13,0.55);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(20,15,13,0.28);
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(166,30,42,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 28px;
}

.auth-title {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink);
  margin-bottom: 10px;
}

.auth-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 32px;
  line-height: 1.6;
}

.field-group { text-align: left; margin-bottom: 18px; }

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
}
.field-input::placeholder { color: var(--ink-3); }
.field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.field-input.error { border-color: #8A2020; }

.field-error { display: block; font-size: 12px; color: #8A2020; margin-top: 6px; min-height: 16px; }

.auth-submit {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: #FFF7F0;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 16px;
  cursor: pointer;
  transition: background 180ms, transform 100ms;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.auth-submit:hover { background: var(--accent-deep); }
.auth-submit:active { transform: scale(0.98); }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,247,240,0.35);
  border-top-color: #FFF7F0;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.auth-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 20px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 24px 0;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy-col { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
  background: var(--accent-soft);
  border-radius: 100px;
  padding: 7px 14px 7px 12px;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-has-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 20px;
}
.hero-has-list li {
  font-size: 16px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.hero-has-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-3);
}

.hero-but {
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.65;
  font-style: italic;
}

.hero-answer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-answer p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.hero-answer strong { color: var(--accent); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #FBF3E8;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  padding: 17px 32px;
  text-decoration: none;
  margin-bottom: 32px;
  transition: background 180ms, transform 100ms;
}
.hero-cta:hover { background: var(--accent); transform: translateY(-1px); }

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
}
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }

/* Hero photo */
.hero-photo-col { position: relative; }
.hero-photo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(33,28,26,0.22);
  aspect-ratio: 4/5;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,15,13,0.75);
  backdrop-filter: blur(6px);
  color: #FBF3E8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 100px;
}
.hero-photo-badge .live-dot { background: #E4A93F; }

.hero-inner-lower {
  max-width: 640px;
  margin: 56px auto 0;
  padding-bottom: 72px;
}

.hero-divider { width: 48px; height: 2px; background: var(--gold); margin: 0 0 28px; }

.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 28px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.point-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--ink);
  color: #FBF3E8;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-watch-note {
  font-size: 15px;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-watch-note strong { color: var(--accent-deep); }

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-hint { animation: none; } }

/* ── Player Section ──────────────────────────────────────────── */
.player-section { padding: 0 0 60px; }

.player-wrapper { max-width: 960px; margin: 0 auto; padding: 0 16px; }

.stream-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  border-radius: var(--r-md) var(--r-md) 0 0;
  padding: 12px 18px;
}
.stream-left { display: flex; align-items: center; gap: 12px; }
.stream-title {
  font-size: 13px;
  font-weight: 500;
  color: #D8CDBF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}
.stream-right { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #D8CDBF; flex-shrink: 0; }

.video-container {
  position: relative;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

#video { width: 100%; height: 100%; object-fit: contain; display: block; }

.stream-inner-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  border-radius: 5px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  pointer-events: none;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(10,7,6,0.68);
  z-index: 10;
}
.play-overlay p { font-size: 14px; color: #D8CDBF; }
.big-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 180ms, background 180ms;
  box-shadow: 0 0 0 12px rgba(166,30,42,0.16);
}
.big-play-btn:hover { transform: scale(1.06); background: var(--accent-deep); }
.big-play-btn svg { margin-left: 4px; }

.hint-card {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.hint-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex: 1;
  transition: background 150ms;
}
.hint-card-inner:hover { background: var(--gold-soft); }
.hint-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hint-close {
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-2);
  padding: 0 10px;
  cursor: pointer;
  color: var(--ink-3);
  transition: color 150ms;
}
.hint-close:hover { color: var(--ink); }

.controls-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,4,3,0.95) 0%, transparent 100%);
  padding: 40px 16px 14px;
  opacity: 0;
  transition: opacity 220ms;
  z-index: 15;
}
.video-container:hover .controls-overlay,
.video-container.controls-visible .controls-overlay { opacity: 1; }

.progress-wrap { margin-bottom: 10px; }
.progress-bar { position: relative; height: 4px; cursor: pointer; margin-bottom: 6px; border-radius: 2px; overflow: visible; }
.progress-bar:hover { transform: scaleY(1.4); transform-origin: bottom; }
.progress-bg { position: absolute; inset: 0; background: rgba(255,255,255,0.15); border-radius: 2px; }
.progress-watched { position: absolute; top: 0; left: 0; bottom: 0; background: rgba(255,255,255,0.3); border-radius: 2px; pointer-events: none; }
.progress-fill { position: absolute; top: 0; left: 0; bottom: 0; background: var(--accent); border-radius: 2px; pointer-events: none; transition: width 0.25s linear; }
.progress-thumb {
  position: absolute; top: 50%;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 150ms;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(166,30,42,0.7);
}
.progress-bar:hover .progress-thumb { transform: translate(-50%, -50%) scale(1); }

.time-row { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #D8CDBF; }
.time-sep { color: rgba(216,205,191,0.5); }

.ctrl-row { display: flex; align-items: center; justify-content: space-between; }
.ctrl-left, .ctrl-right { display: flex; align-items: center; gap: 4px; }

.ctrl-btn {
  background: transparent; border: none; cursor: pointer;
  color: #D8CDBF;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  transition: color 150ms, background 150ms;
}
.ctrl-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.ctrl-btn:focus-visible { outline: 2px solid var(--gold); }

.volume-wrap { display: flex; align-items: center; gap: 0; }
.volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 0; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px; outline: none; cursor: pointer;
  overflow: hidden; transition: width 200ms;
  accent-color: var(--accent);
}
.volume-wrap:hover .volume-slider, .volume-wrap:focus-within .volume-slider { width: 70px; }

.speed-wrap { position: relative; }
.speed-btn { width: auto !important; padding: 0 10px; font-size: 13px; font-weight: 600; font-family: var(--body); }
.speed-menu {
  position: absolute; bottom: calc(100% + 8px); right: 0;
  background: #1E1613;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  overflow: hidden; min-width: 80px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.speed-menu button {
  display: block; width: 100%; background: transparent; border: none;
  color: #D8CDBF; font-family: var(--body); font-size: 13px; font-weight: 500;
  padding: 10px 16px; cursor: pointer; text-align: center;
  transition: background 120ms, color 120ms;
}
.speed-menu button:hover { background: rgba(255,255,255,0.08); color: #fff; }
.speed-menu button.active { color: var(--gold); font-weight: 700; }

.player-bottombar {
  background: var(--ink);
  padding: 10px 18px;
  display: flex; align-items: center; justify-content: flex-end;
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.quality-badge { font-size: 11px; font-weight: 600; color: #A79C8E; letter-spacing: 0.08em; }
.quality-badge span { color: #D8CDBF; }

/* ── Offer Section ───────────────────────────────────────────── */
.offer-section { max-width: 1000px; margin: 0 auto; padding: 0 16px 88px; animation: offerReveal 0.6s ease; }
@keyframes offerReveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.offer-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}
.offer-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.offer-badge {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(166,30,42,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.offer-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.offer-sub { font-size: 16px; color: var(--ink-2); max-width: 580px; line-height: 1.75; margin-bottom: 30px; }

.offer-value-line { font-size: 16px; color: var(--ink-2); margin-bottom: 34px; line-height: 1.6; }
.offer-value-line strong { color: var(--ink); }

/* Fanned course cards — echoes the presenter's card fan */
.offer-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  margin-bottom: 44px;
  padding-top: 6px;
}
.course-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 16px 18px;
  line-height: 1.4;
  flex: 1 1 220px;
  box-shadow: 0 10px 24px rgba(33,28,26,0.08);
  transition: transform 200ms;
}
.course-item:hover { transform: translateY(-4px) rotate(0deg) !important; }
.course-item:nth-child(1) { transform: rotate(-2deg); }
.course-item:nth-child(2) { transform: rotate(1.5deg); }
.course-item:nth-child(3) { transform: rotate(-1deg); }
.course-item:nth-child(4) { transform: rotate(2deg); }
.course-item:nth-child(5) { transform: rotate(-1.5deg); }
.course-item:nth-child(6) { transform: rotate(1deg); }

.offer-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.stat-pill {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(201,160,80,0.35);
  border-radius: 100px;
  padding: 8px 16px;
}

.buyers-count {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-2); margin-bottom: 24px;
}
.buyers-count span { color: var(--accent-deep); font-weight: 700; }

.offer-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.btn-buy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  border: none; border-radius: 100px;
  color: #fff;
  font-family: var(--body); font-size: 15px; font-weight: 800; letter-spacing: 0.04em;
  padding: 18px 36px; cursor: pointer;
  transition: background 180ms, transform 100ms;
}
.btn-buy:hover { background: var(--accent-deep); }
.btn-buy:active { transform: scale(0.98); }

.btn-installment {
  display: inline-flex; align-items: center;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  color: var(--ink-2);
  font-family: var(--body); font-size: 15px; font-weight: 600;
  padding: 18px 32px; cursor: pointer;
  transition: border-color 180ms, color 180ms;
}
.btn-installment:hover { border-color: var(--accent); color: var(--accent); }

.offer-bottom-note { font-size: 14px; color: var(--ink-2); margin-bottom: 24px; line-height: 1.6; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-section { margin-top: 44px; border-top: 1px solid var(--border); padding-top: 34px; }
.reviews-title { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.reviews-track { display: flex; gap: 14px; overflow: hidden; }
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  min-width: 260px; flex: 0 0 260px;
  transition: transform 0.35s ease;
}
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-city { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.review-stars { color: var(--gold); font-size: 13px; margin-left: auto; }
.review-text { font-size: 14px; color: var(--ink-2); line-height: 1.65; font-style: italic; }

.reviews-nav { display: flex; gap: 8px; margin-top: 16px; justify-content: flex-end; }
.rev-btn {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  cursor: pointer; color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms, color 150ms;
}
.rev-btn:hover { background: var(--gold-soft); color: var(--accent-deep); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { text-align: center; padding: 32px 16px; font-size: 13px; color: var(--ink-3); border-top: 1px solid var(--border); }

/* ── Exit modal ──────────────────────────────────────────────── */
.exit-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,15,13,0.6);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.exit-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 44px 40px; max-width: 420px; width: 100%; text-align: center; position: relative;
}
.exit-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none; color: var(--ink-3);
  cursor: pointer; padding: 6px; border-radius: 6px; transition: color 150ms;
}
.exit-close:hover { color: var(--ink); }
.exit-emoji { font-size: 40px; margin-bottom: 16px; }
.exit-title { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.exit-desc { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin-bottom: 28px; }
.exit-stay {
  display: block; width: 100%;
  background: var(--accent);
  border: none; border-radius: 100px; color: #fff;
  font-family: var(--body); font-size: 14px; font-weight: 800; letter-spacing: 0.08em;
  padding: 15px; cursor: pointer; margin-bottom: 12px; transition: background 180ms;
}
.exit-stay:hover { background: var(--accent-deep); }
.exit-leave {
  background: transparent; border: none; color: var(--ink-3);
  font-family: var(--body); font-size: 13px; cursor: pointer; padding: 8px; transition: color 150ms;
}
.exit-leave:hover { color: var(--ink-2); }

/* ── Social proof toast ──────────────────────────────────────── */
.sp-toast {
  position: fixed; bottom: 24px; left: 20px; z-index: 900;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(33,28,26,0.2);
  max-width: 300px;
  animation: spSlideIn 0.4s ease;
}
@keyframes spSlideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.sp-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}
.sp-body { flex: 1; }
.sp-name { font-size: 13px; font-weight: 600; color: var(--ink); display: block; }
.sp-action { font-size: 12px; color: var(--ink-2); display: block; }
.sp-check { flex-shrink: 0; }

/* ── Return to player banner ─────────────────────────────────── */
.return-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--ink);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.return-left { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #D8CDBF; }
.return-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: blink 1.4s ease-in-out infinite; }
.return-btn {
  background: var(--accent); border: none; border-radius: 100px; color: #fff;
  font-family: var(--body); font-size: 13px; font-weight: 700;
  padding: 8px 20px; cursor: pointer; transition: background 150ms;
}
.return-btn:hover { background: var(--accent-deep); }

/* ── Sticky mobile CTA ───────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: rgba(244,236,224,0.97);
  border-top: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
  padding: 12px 16px; display: flex; gap: 10px;
}
.sticky-buy-btn {
  flex: 1; background: var(--accent); border: none; border-radius: 100px; color: #fff;
  font-family: var(--body); font-size: 14px; font-weight: 800; padding: 14px; cursor: pointer; letter-spacing: 0.04em;
}
.sticky-install-btn {
  background: transparent; border: 1px solid var(--border-2); border-radius: 100px; color: var(--ink-2);
  font-family: var(--body); font-size: 13px; font-weight: 600; padding: 14px 18px; cursor: pointer; white-space: nowrap;
}

/* ── Tab toast ───────────────────────────────────────────────── */
.tab-toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 900;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink);
  box-shadow: 0 4px 20px rgba(33,28,26,0.2);
  cursor: pointer; white-space: nowrap;
}

/* ── Fullscreen adjustments ──────────────────────────────────── */
.video-container:fullscreen, .video-container:-webkit-full-screen {
  aspect-ratio: unset; width: 100vw; height: 100vh; border: none; border-radius: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo-card { max-width: 380px; margin: 0 auto; }
  .hero-copy-col { max-width: none; }
}

@media (max-width: 640px) {
  .hero { padding: 84px 20px 0; }
  .auth-card { padding: 36px 24px; }
  .auth-title { font-size: 20px; }
  .stream-title { display: none; }
  .offer-inner { padding: 40px 24px; }
  .offer-actions { flex-direction: column; }
  .btn-buy, .btn-installment { width: 100%; justify-content: center; }
  .hint-card { max-width: 200px; }
  #hint-text { font-size: 10px; }
  .course-item { transform: none !important; }
}
