/* ================================
   DESIGN TOKENS
================================ */
:root {
  /* Dark luxury palette */
  --bg: #07070b;
  --bg-soft: #0e0e14;
  --bg-card: #12121a;
  --bg-card-hi: #181822;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(251, 191, 36, 0.18);

  /* Gold accents */
  --gold: #fbbf24;
  --gold-hi: #fcd34d;
  --gold-lo: #d97706;
  --gold-soft: rgba(251, 191, 36, 0.08);

  /* Text */
  --text: #f5f5f7;
  --text-mute: #a1a1aa;
  --text-dim: #71717a;
  --text-faint: #52525b;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-gold: 0 14px 40px -10px rgba(251, 191, 36, 0.4);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.6);

  /* Layout */
  --w: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Type */
  --f-sans: 'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-serif: 'Playfair Display', Georgia, serif;
}

/* ================================
   RESET + BASE
================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

em { font-family: var(--f-serif); font-style: italic; font-weight: 500; }

::selection { background: var(--gold); color: #0a0a0a; }

/* ================================
   AMBIENT BACKGROUND
================================ */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(251,191,36,0.25), transparent 70%);
}
.glow-2 {
  top: 40%; right: -250px;
  background: radial-gradient(circle, rgba(217,119,6,0.18), transparent 70%);
}

body > *:not(.grid-bg):not(.glow):not(.modal) { position: relative; z-index: 1; }

/* ================================
   LAYOUT HELPERS
================================ */
.container {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(72px, 11vw, 140px); }

/* ================================
   COMPONENTS — KICKER + SECTION HEAD
================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-gold);
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.section-title {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
}
.section-title em {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.section-title-left { text-align: left; }
.section-title .title-sub {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.6em;
  font-family: var(--f-serif);
  font-style: italic;
}

.section-sub {
  color: var(--text-mute);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 640px;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-lo) 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px -14px rgba(251, 191, 36, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.btn-sm  { padding: 10px 18px; font-size: 13px; }
.btn-lg  { padding: 18px 30px; font-size: 16px; }
.btn-xl  { padding: 22px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* ================================
   NAV
================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 40px);
  background: rgba(7, 7, 11, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--text);
}
.nav-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #0a0a0a;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0;
  box-shadow: 0 6px 20px -6px rgba(251,191,36,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--gold); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px 120px;
  padding-inline: var(--gutter);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-title .hl {
  display: block;
  margin-top: 8px;
}
.hero-title .hl em {
  background: linear-gradient(180deg, #fde68a 0%, var(--gold) 60%, var(--gold-lo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 24px rgba(251, 191, 36, 0.25));
  font-weight: 700;
}

.hero-sub {
  color: var(--text-mute);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  max-width: 680px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-block: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.hero-foot {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}
.scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ================================
   STATS
================================ */
.stats {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(251,191,36,0.025), transparent);
  padding-block: 48px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num span { font-size: 0.6em; }
.stat-label {
  margin-top: 10px;
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ================================
   WHY / PAIN
================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pain-card {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at top left, rgba(251,191,36,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pain-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}
.pain-card:hover::before { opacity: 1; }
.pain-num {
  font-family: var(--f-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: rgba(251, 191, 36, 0.25);
  margin-bottom: 18px;
}
.pain-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}
.pain-card p {
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 720px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ================================
   METHOD GRID
================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.method-card {
  padding: 40px 36px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(251,191,36,0.03), transparent 40%),
    var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.method-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}
.method-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.method-step {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
}
.method-letter {
  font-family: var(--f-serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.method-card h3 {
  font-size: 28px;
  font-weight: 700;
}
.method-vi {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--text-dim);
  font-size: 0.7em;
}
.method-card > p {
  color: var(--text-mute);
  line-height: 1.7;
}
.method-list {
  list-style: none;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.method-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.method-list li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 720px) {
  .method-grid { grid-template-columns: 1fr; }
}

/* ================================
   ROADMAP / TIMELINE
================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-gold) 8%, var(--line-gold) 92%, transparent);
}
.day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 28px 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  align-items: start;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.day:hover {
  border-color: var(--line-gold);
  transform: translateX(4px);
}
.day-num {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  padding: 12px 0;
  border-right: 1px solid var(--line);
  color: var(--gold);
}
.day-star {
  font-style: normal;
  color: var(--gold-hi);
  font-size: 14px;
  vertical-align: top;
}
.day-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.day-body p {
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.6;
}
.day-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.day-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.6;
}
.day-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.day-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--bg-card-hi);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.day-tag-gold {
  background: var(--gold-soft);
  border-color: var(--line-gold);
  color: var(--gold);
}
.day-final {
  background: linear-gradient(135deg, rgba(251,191,36,0.06), var(--bg-card));
  border-color: var(--line-gold);
}

/* ================================
   INSTRUCTOR
================================ */
.instructor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.instructor-image {
  position: relative;
}
.instructor-image-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--line-gold);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(251,191,36,0.06);
}
.instructor-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.instructor-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,7,11,0.55) 100%);
  pointer-events: none;
}
.instructor-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #0a0a0a;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-gold);
}
.instructor-badge span:first-child {
  font-size: 22px;
}
.instructor-badge strong { display: block; font-size: 16px; font-weight: 800; line-height: 1; }
.instructor-badge small { font-size: 11px; font-weight: 600; letter-spacing: 1px; }

.instructor-content { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.instructor-lead {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--text);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.instructor-content > p { color: var(--text-mute); line-height: 1.75; }
.instructor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.instructor-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.check {
  width: 26px; height: 26px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--line-gold);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 880px) {
  .instructor-inner { grid-template-columns: 1fr; gap: 48px; max-width: 520px; margin: 0 auto; }
  .instructor-badge { right: 0; }
}

/* ================================
   AUDIENCE
================================ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience-col {
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.audience-yes { border-color: var(--line-gold); background: linear-gradient(180deg, rgba(251,191,36,0.05), var(--bg-card)); }
.audience-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.audience-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
}
.audience-icon-yes { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--line-gold); }
.audience-icon-no { background: rgba(239,68,68,0.08); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.audience-col h3 { font-size: 22px; font-weight: 700; }
.audience-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.audience-col ul li {
  color: var(--text-mute);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  font-size: 15px;
}
.audience-yes ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.audience-no ul li::before { content: '✕'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }

@media (max-width: 720px) { .audience-grid { grid-template-columns: 1fr; } }

/* ================================
   VALUE GRID
================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.value-item:hover {
  border-color: var(--line-gold);
  transform: translateY(-2px);
}
.value-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
}
.value-item strong { display: block; font-size: 16px; font-weight: 600; color: var(--text); }
.value-item small { color: var(--text-dim); font-size: 13px; }

@media (max-width: 720px) { .value-grid { grid-template-columns: 1fr; } }

/* ================================
   TESTIMONIALS
================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testi::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--f-serif);
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.testi p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.75;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.testi footer { font-style: normal; border-top: 1px solid var(--line); padding-top: 18px; }
.testi footer strong { display: block; color: var(--text); font-weight: 600; font-size: 15px; }
.testi footer span { color: var(--text-dim); font-size: 13px; }

@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

/* ================================
   REGISTER / FORM
================================ */
.register {
  background:
    radial-gradient(800px at top center, rgba(251,191,36,0.06), transparent 60%),
    var(--bg);
}
.register-inner { max-width: 720px; margin: 0 auto; }
.register-head { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }

.form {
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-card);
}
.form-row { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input, .field textarea {
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus { outline: none; border-color: var(--gold); background: var(--gold-soft); }

fieldset { border: 0; padding: 0; }
fieldset .field-label { display: block; margin-bottom: 6px; }

.ticket {
  display: block;
  padding: 22px 24px;
  margin-top: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ticket:hover { border-color: var(--line-gold); }
.ticket input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}
.ticket-body { display: inline-block; vertical-align: middle; width: calc(100% - 34px); }
.ticket-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ticket-title > span:first-child {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticket-price {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}
.ticket-price-free { color: var(--text-dim); }
.ticket-price-deposit {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  line-height: 1.2;
}
.ticket-deposit-tag {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.ticket-badge {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: var(--r-pill);
  font-style: normal;
}
.ticket p {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
}
.ticket:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.ticket-premium { border-color: rgba(251,191,36,0.25); }

.form-foot {
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

/* ================================
   FAQ
================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: var(--line-gold); }
.faq-item[open] { border-color: var(--line-gold); background: linear-gradient(180deg, var(--gold-soft), var(--bg-card)); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 28px 24px;
  color: var(--text-mute);
  line-height: 1.7;
}

/* ================================
   FINAL CTA
================================ */
.final-cta {
  text-align: center;
  background:
    radial-gradient(700px at center, rgba(251,191,36,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
}
.final-cta p { color: var(--text-mute); font-size: 17px; max-width: 580px; line-height: 1.7; }

/* ================================
   FOOTER
================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding-top: 56px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { display: block; font-size: 14px; letter-spacing: 4px; }
.footer-brand small { color: var(--text-dim); font-size: 12px; letter-spacing: 0.5px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-mute); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

/* ================================
   REVEAL ON SCROLL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   CHECKOUT MODAL
================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; animation: modal-in 0.3s ease; }
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--line-gold);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(251,191,36,0.08);
  animation: panel-in 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-mute);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  z-index: 1;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-head {
  padding: 36px 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text);
}
.modal-head h3 em {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-sub {
  color: var(--text-mute);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.6;
}

.modal-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 28px 36px;
}
@media (max-width: 720px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-head, .modal-body { padding-left: 22px; padding-right: 22px; }
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border-radius: var(--r-md);
}
.qr-card img {
  width: 100%;
  height: auto;
  max-width: 240px;
  display: block;
}
.qr-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  background: #f1f5f9;
  border-radius: var(--r-pill);
}
.qr-status.paid { background: #d1fae5; color: #047857; }
.qr-status.expired { background: #fee2e2; color: #b91c1c; }
.qr-status.paid .qr-pulse, .qr-status.expired .qr-pulse { display: none; }
.qr-pulse {
  width: 8px; height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.bank-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bank-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.bank-head img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.bank-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.bank-tag {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}
.bank-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.bank-row > span {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.bank-row > strong {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bank-row-amount > strong {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.bank-row-content > strong {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--gold);
}
.copy-btn {
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.copy-btn:hover { background: var(--gold); color: #0a0a0a; }
.copy-btn.copied { background: #10b981; color: #fff; border-color: #10b981; }

.bank-warn {
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--r-sm);
  color: var(--text-mute);
  font-size: 12.5px;
  line-height: 1.5;
}
.bank-warn strong { color: var(--gold); }

.modal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 36px 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.modal-countdown {
  font-size: 13px;
  color: var(--text-mute);
}
.modal-countdown strong {
  font-family: ui-monospace, monospace;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ================================
   THANK-YOU PAGE
================================ */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 100px 80px;
}
.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 760px;
}
.thanks-check {
  width: 88px; height: 88px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  color: #0a0a0a;
  box-shadow: 0 20px 60px -10px rgba(251,191,36,0.5);
  margin-bottom: 8px;
  animation: pop-in 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.thanks-check svg { width: 56px; height: 56px; }
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.thanks-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
  margin-top: 8px;
  min-width: 340px;
}
.thanks-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}
.thanks-row span { color: var(--text-mute); }
.thanks-row strong { color: var(--text); font-weight: 600; }

.thanks-steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  max-width: 640px;
}
.thanks-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  text-align: left;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.thanks-step-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
}
.thanks-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.thanks-step p {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
}
.thanks-step a { color: var(--gold); }
.thanks-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 540px) {
  .thanks-cta { flex-direction: column; width: 100%; }
  .thanks-cta .btn { width: 100%; }
}

/* ================================
   VIDEO MODAL (YouTube embed)
================================ */
.modal-panel-video {
  max-width: 1080px;
  background: #000;
  border-color: var(--line-strong);
  padding: 0;
  overflow: hidden;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-video .modal-close {
  top: -48px;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ================================
   ADMIN PANEL
================================ */
.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}
.admin-header-right { display: flex; align-items: center; gap: 18px; }

.admin-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 40px) 80px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.admin-stat {
  padding: 24px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.admin-stat-label {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.admin-stat-num {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
}
.admin-stat-revenue {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
@media (max-width: 880px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .admin-stats { grid-template-columns: 1fr; } }

.admin-filters {
  position: sticky;
  top: 64px;
  z-index: 20;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px 16px;
  background: rgba(7, 7, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -30px rgba(0,0,0,0.7);
}
.admin-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: auto;
}
.admin-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.admin-live-indicator.is-loading .admin-live-dot {
  animation: pulse 0.9s ease-in-out infinite;
}
.admin-filter-reset {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
  color: var(--text-mute);
  margin-left: 4px;
  text-decoration: underline;
  font-size: 13px;
}
.admin-filter-reset:hover { color: var(--gold); }
.admin-input {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.admin-input:focus { outline: none; border-color: var(--gold); }
.admin-input[type="search"] { flex: 1; min-width: 220px; }

.admin-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  white-space: nowrap;
  background: var(--bg-card-hi);
}
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table tr:hover td { background: rgba(251, 191, 36, 0.025); }
.admin-mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.admin-dim { color: var(--text-dim); }
.admin-phone { color: var(--gold); font-family: ui-monospace, monospace; font-size: 13px; }
.admin-empty {
  text-align: center;
  padding: 60px 20px !important;
  color: var(--text-dim);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.badge-paid    { background: rgba(16, 185, 129, 0.1); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.badge-pending { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--line-gold); }
.badge-failed  { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.25); }
.badge-default { background: var(--bg-card-hi); color: var(--text-dim); border: 1px solid var(--line); }

.admin-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.admin-pager-info { color: var(--text-mute); font-size: 14px; }

/* ── Admin login ── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.admin-login-card {
  width: 100%;
  max-width: 440px;
  padding: 44px 40px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.admin-login-card .kicker { margin-bottom: 12px; }
.admin-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.admin-form .field { width: 100%; }
.admin-form input {
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}
.admin-form input:focus { outline: none; border-color: var(--gold); background: var(--gold-soft); }
.admin-error {
  width: 100%;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--r-sm);
  color: #f87171;
  font-size: 14px;
  margin-bottom: 8px;
}
.admin-foot {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
}
.admin-foot a { color: var(--gold); }

/* ── Admin settings ── */
.admin-settings { max-width: 720px; }
.admin-settings-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.admin-settings-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-settings-form .admin-input { padding: 16px 18px; font-size: 15px; }
.admin-hint {
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.6;
}
.admin-settings-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.admin-flash {
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.admin-flash-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
}
.admin-flash-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}
.admin-divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

/* ── Bulk select + danger button ── */
.admin-col-check { width: 44px; padding-right: 0 !important; }
.admin-check {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
  vertical-align: middle;
}
.admin-bulk-bar[hidden] { display: none !important; }
.admin-bulk-bar {
  position: sticky;
  top: 132px;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  margin: 0 0 12px;
  background: linear-gradient(135deg, rgba(251,191,36,0.12), rgba(217,119,6,0.08));
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: slide-in 0.2s ease;
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.admin-bulk-count { color: var(--text); font-size: 14px; }
.admin-bulk-count strong {
  color: var(--gold);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  margin-right: 4px;
}
.admin-bulk-actions { display: flex; gap: 10px; }
.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
.btn-danger:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}
.btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
