/* ClipSprint — Design System */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #8a8a8a;
  --accent: #b4ff39;
  --accent-dim: rgba(180, 255, 57, 0.12);
  --accent-glow: rgba(180, 255, 57, 0.3);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --status-approved: #b4ff39;
  --status-pending: #f59e0b;
  --status-revision: #f87171;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); background: var(--bg-card); }
.nav-link.active { color: var(--fg); }
.nav-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-tag {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  padding: 120px 0 100px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border-hover);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); background: var(--bg-card); transform: translateY(-2px); }

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.stat-label { font-size: 0.875rem; color: var(--fg-muted); margin-top: 4px; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--accent); }

/* ─── HOW IT WORKS ─── */
.how-section { padding: 100px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ─── OFFER SECTION ─── */
.offer-section { padding: 100px 0; background: var(--bg-elevated); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.offer-items { display: flex; flex-direction: column; gap: 24px; }
.offer-item { display: flex; gap: 16px; align-items: flex-start; }
.offer-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  flex-shrink: 0;
}
.offer-item h4 { font-family: var(--font-display); font-weight: 600; margin-bottom: 4px; }
.offer-item p { font-size: 0.875rem; color: var(--fg-muted); }

/* ─── NICHES ─── */
.niche-section { padding: 100px 0; }
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.niche-card:hover { border-color: rgba(180, 255, 57, 0.2); transform: translateY(-4px); }
.niche-emoji { font-size: 2rem; display: block; margin-bottom: 16px; }
.niche-card h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }
.niche-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ─── CLOSING ─── */
.closing {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.08;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto 20px;
}
.closing p { font-size: 1rem; color: var(--fg-muted); max-width: 440px; margin: 0 auto; }

/* ─── FOOTER ─── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer p { font-size: 0.875rem; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.875rem; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }

/* ─── PORTFOLIO PAGE ─── */
.page-header { padding: 80px 0 60px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header p { font-size: 1rem; color: var(--fg-muted); max-width: 500px; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--fg); }
.filter-btn.active { background: var(--accent-dim); border-color: rgba(180, 255, 57, 0.35); color: var(--accent); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding-bottom: 100px;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(180, 255, 57, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 280px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card:hover .video-thumb-overlay { opacity: 1; }
.play-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.85);
  transition: transform 0.2s;
}
.video-card:hover .play-icon { transform: scale(1); }
.play-icon svg { width: 20px; height: 20px; color: #0a0a0a; margin-left: 3px; }
.platform-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.video-info { padding: 20px; }
.video-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.video-niche { font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.video-info p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; margin-bottom: 16px; }
.video-meta { display: flex; gap: 16px; }
.video-stat { font-size: 0.75rem; color: var(--fg-muted); display: flex; align-items: center; gap: 4px; }
.video-stat strong { color: var(--fg); font-weight: 600; }

/* ─── AUTH PAGE ─── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg);
  position: relative;
}
.auth-page::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
}
.auth-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.auth-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  margin-bottom: 32px;
}
.auth-logo span { color: var(--accent); }
.auth-box h1 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.auth-box p { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--fg-muted); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(180, 255, 57, 0.4); }
.form-input::placeholder { color: var(--fg-muted); opacity: 0.5; }
.form-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #f87171;
  margin-bottom: 20px;
}
.demo-hint {
  margin-top: 20px;
  padding: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(180, 255, 57, 0.15);
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}
.demo-hint strong { color: var(--accent); }

/* ─── DASHBOARD ─── */
.dashboard-layout { display: grid; grid-template-columns: 280px 1fr; min-height: calc(100vh - 73px); }

.sidebar {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-header { margin-bottom: 24px; }
.sidebar-business { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.sidebar-email { font-size: 0.8rem; color: var(--fg-muted); }
.sidebar-divider { height: 1px; background: var(--border); margin: 16px 0; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.sidebar-link:hover { color: var(--fg); background: var(--bg-card); }
.sidebar-link.active { color: var(--fg); background: var(--bg-card); }
.sidebar-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-logout {
  margin-top: auto;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.2s;
}
.sidebar-logout:hover { color: #f87171; background: rgba(248, 113, 113, 0.08); }

.dashboard-main { padding: 40px; overflow-y: auto; }
.dashboard-header { margin-bottom: 40px; }
.dashboard-greeting {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.dashboard-greeting em { font-style: normal; color: var(--accent); }
.dashboard-sub { font-size: 0.9rem; color: var(--fg-muted); }

/* Stats cards */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.stat-card-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 8px; }
.stat-card-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.03em; color: var(--fg); }
.stat-card-value.accent { color: var(--accent); }
.stat-card-sub { font-size: 0.75rem; color: var(--fg-muted); margin-top: 4px; }

/* Calendar */
.calendar-section { margin-bottom: 40px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.calendar-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.month-nav { display: flex; gap: 8px; align-items: center; }
.month-nav a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.month-nav a:hover { border-color: var(--border-hover); color: var(--fg); }
.month-nav span { font-size: 0.875rem; font-weight: 600; min-width: 140px; text-align: center; }

.calendar-grid { display: flex; flex-direction: column; gap: 12px; }
.calendar-entry {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.calendar-entry:hover { border-color: var(--border-hover); }
.entry-date { text-align: center; }
.entry-day { font-size: 0.7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.entry-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1; }
.entry-info { display: flex; align-items: center; gap: 12px; }
.entry-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-elevated);
}
.entry-text {}
.entry-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.entry-platform { font-size: 0.75rem; color: var(--fg-muted); }
.entry-actions { display: flex; gap: 8px; align-items: center; }

.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.status-badge.approved { background: rgba(180, 255, 57, 0.12); color: var(--status-approved); border: 1px solid rgba(180, 255, 57, 0.25); }
.status-badge.pending { background: rgba(245, 158, 11, 0.12); color: var(--status-pending); border: 1px solid rgba(245, 158, 11, 0.25); }
.status-badge.revision { background: rgba(248, 113, 113, 0.1); color: var(--status-revision); border: 1px solid rgba(248, 113, 113, 0.25); }

.btn-approve, .btn-revision {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-approve { background: var(--accent-dim); border-color: rgba(180, 255, 57, 0.25); color: var(--accent); }
.btn-approve:hover { background: rgba(180, 255, 57, 0.2); }
.btn-revision { background: rgba(248, 113, 113, 0.08); border-color: rgba(248, 113, 113, 0.2); color: #f87171; }
.btn-revision:hover { background: rgba(248, 113, 113, 0.15); }

/* Entry stats (for approved videos with data) */
.entry-stats { display: flex; gap: 12px; margin-top: 6px; }
.entry-stat-item { font-size: 0.72rem; color: var(--fg-muted); }
.entry-stat-item strong { color: var(--fg); }

/* Calendar empty state */
.calendar-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.calendar-empty p { font-size: 0.9rem; color: var(--fg-muted); margin-top: 12px; }

/* Revision modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 440px;
}
.modal-box h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }
.modal-box p { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 20px; }
.modal-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.modal-textarea:focus { border-color: rgba(180, 255, 57, 0.4); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-cancel {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  padding: 9px 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cancel:hover { border-color: var(--border-hover); color: var(--fg); }
.btn-submit-revision {
  background: #f87171;
  border: none;
  border-radius: 100px;
  color: #fff;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit-revision:hover { opacity: 0.85; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-entry { grid-template-columns: 60px 1fr; }
  .entry-actions { display: none; }
}

@media (max-width: 600px) {
  .nav-links .nav-link:not(.nav-btn) { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .auth-box { padding: 32px 24px; }
  .dashboard-main { padding: 24px 16px; }
  .filter-bar { gap: 6px; }
  .filter-btn { font-size: 0.75rem; padding: 6px 12px; }
}

/* ─── TOAST NOTIFICATION ─── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--fg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 300;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(180, 255, 57, 0.3); }
.toast.error { border-color: rgba(248, 113, 113, 0.3); }
