/* === GRAFFITI BACKGROUND TEXTURE === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_185390/images/a3f1b30e-799f-43ce-b730-eb91ba1a6412.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: lighten;
}

/* === BASE === */
:root {
  --bg: #0a1628;
  --bg-2: #0f1f3a;
  --accent: #1a3a5c;
  --accent-dim: rgba(26, 58, 92, 0.3);
  --text: #FAFAFA;
  --text-muted: #8A8A8A;
  --border: #1e3a5f;
  --card-bg: #111827;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.1; }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14,14,14,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(26, 58, 92, 0.4);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(26, 58, 92, 0.25);
  bottom: 0; left: 200px;
}

/* === SPRAY PAINT DRIP ACCENTS === */
.drip-accent {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.drip-1 {
  width: 120px;
  height: auto;
  top: 160px;
  right: 5%;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.drip-2 {
  width: 80px;
  height: auto;
  bottom: 15%;
  left: 3%;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.drip-3 {
  width: 100px;
  height: auto;
  top: 45%;
  right: 8%;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(52px, 6vw, 88px);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-headline strong.accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #38bdf8; }
.stat-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* === PHONE VISUAL === */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.phone-wrap { position: relative; }
.phone-frame {
  width: 220px;
  height: 450px;
  background: #1C1C1C;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(26, 58, 92, 0.2);
  position: relative;
  margin: 0 auto;
}
.phone-notch {
  width: 80px; height: 24px;
  background: #111;
  border-radius: 20px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: calc(100% - 60px);
  border-radius: 28px;
  overflow: hidden;
  background: #0A0A0A;
  position: relative;
}
.video-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1b3d 40%, #3d1a1a 100%);
  position: relative;
}
.video-thumb::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.03) 3px,
    rgba(255,255,255,0.03) 4px
  );
}
.video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.play-icon {
  width: 32px; height: 32px;
  background: rgba(255,77,28,0.9);
  border-radius: 50%;
  margin-bottom: 8px;
  position: relative;
}
.play-icon::after {
  content: '';
  position: absolute;
  top: 8px; left: 11px;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.video-caption { font-size: 12px; color: #fff; font-weight: 600; }
.video-views { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.phone-btn {
  width: 36px; height: 36px;
  background: #2a2a2a;
  border-radius: 50%;
  margin: 12px auto 0;
}
.phone-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}

.platform-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.badge-tiktok { background: rgba(255, 77, 28, 0.15); color: #FF4D1C; border: 1px solid rgba(255,77,28,0.3); }
.badge-ig { background: rgba(131, 58, 180, 0.15); color: #B060FF; border: 1px solid rgba(131,58,180,0.3); }
.badge-yt { background: rgba(255, 0, 0, 0.12); color: #FF4444; border: 1px solid rgba(255,0,0,0.25); }

/* === SECTION SHARED === */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 56px;
  letter-spacing: -1px;
}

/* === PROBLEM === */
.problem {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem .section-headline { max-width: 600px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1200px;
  border: 1px solid var(--border);
}
.problem-card {
  background: var(--card-bg);
  padding: 40px 36px;
  position: relative;
}
.problem-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26,58,92,0.25);
  color: #38bdf8;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}
.problem-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* === HOW === */
.how {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.how-badge { margin-bottom: 16px; }
.how .section-headline { max-width: 500px; }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 50px;
}

/* === PRICING === */
.pricing {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-headline { margin-bottom: 16px; }
.pricing-sub { color: var(--text-muted); font-size: 16px; }
.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--card-bg);
  overflow: hidden;
}
.pricing-tier {
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(26,58,92,0.25) 0%, transparent 100%);
}
.tier-name {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 56px; font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.tier-period { font-size: 20px; color: var(--text-muted); font-weight: 400; }
.tier-desc { color: var(--text-muted); font-size: 15px; }
.pricing-features { padding: 32px 48px; }
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 15px;
}
.feature:last-child { border-bottom: none; }
.feature-check { color: #38bdf8; font-size: 16px; flex-shrink: 0; }
.tier-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 48px 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(26,58,92,0.15);
}
.tier-note-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.pricing-compare {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* === PRICING GRID === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 960px;
  margin: 0 auto 64px;
}
.tier-card {
  background: var(--card-bg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
}
.tier-card-popular {
  border-color: #2563eb;
  background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, var(--card-bg) 60%);
}
.tier-card-badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.tier-card-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tier-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.tier-card-period {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}
.tier-card-videos {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.tier-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.tier-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.tier-card-feature:last-child {
  border-bottom: none;
}
.tier-card-feature .feature-check {
  color: #38bdf8;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-pricing {
  display: block;
  background: #2563eb;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
.btn-pricing:hover {
  background: #1d4ed8;
}
.btn-pricing:active {
  transform: scale(0.98);
}

/* === FAQ === */
.faq-section {
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 48px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-details {
  padding: 20px 0;
}
.faq-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.faq-details summary::-webkit-details-marker {
  display: none;
}
.faq-details summary::after {
  content: '+';
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-details[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 12px;
  padding-bottom: 4px;
}

/* === PRICING SECONDARY CTA === */
.pricing-cta-secondary {
  text-align: center;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-cta-secondary p {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-cta-secondary a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

/* === INDUSTRIES === */
.industries {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.industries .section-headline { max-width: 600px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.industry-card {
  background: var(--card-bg);
  padding: 32px 28px;
}
.industry-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 10px;
}
.industry-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.closing-bg-orb {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,58,92,0.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.closing-sub { color: var(--text-muted); font-size: 18px; line-height: 1.7; }

/* === FOOTER === */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 8px;
}
.footer-tagline { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.footer-links { margin-bottom: 24px; }
.footer-links a { color: var(--accent); text-decoration: none; font-size: 14px; }
.footer-copy { color: #444; font-size: 12px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-section { padding-left: 24px; padding-right: 24px; }
  .how-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 12px 0; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 20px 24px; }
  .hero, .problem, .how, .pricing, .industries, .closing { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .phone-frame { width: 180px; height: 370px; }
  .industry-grid { grid-template-columns: 1fr; }
  .pricing-card { margin: 0 16px; }
  .pricing-tier, .pricing-features, .tier-note { padding-left: 28px; padding-right: 28px; }
}

/* === INTAKE FORM === */
.client-intake {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  align-items: flex-start;
}
.intake-container {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.intake-header { margin-bottom: 40px; }
.intake-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.intake-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.intake-sub { color: var(--text-muted); font-size: 16px; }

.intake-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }

.form-group select option { background: var(--bg-2); }

.form-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* File upload zone */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.file-upload-zone.drag-over {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.file-upload-zone:hover { border-color: #555; }
.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload-icon { font-size: 28px; margin-bottom: 8px; }
.file-upload-text { font-size: 14px; color: var(--text-muted); }
.file-browse { color: var(--accent); text-decoration: underline; }
.file-upload-hint { font-size: 12px; color: #555; margin-top: 6px; }

/* Submit button */
.btn-submit {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s, transform 0.1s;
}
.btn-submit:hover { background: #1d4ed8; }
.btn-submit:active { transform: scale(0.98); }

/* Thank you page */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 80px;
}
.thank-you-container { text-align: center; max-width: 500px; }
.thank-you-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}
.thank-you-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.thank-you-sub { color: var(--text-muted); font-size: 18px; margin-bottom: 8px; }
.thank-you-note { color: #555; font-size: 14px; margin-bottom: 32px; }
.btn-back-home {
  display: inline-block;
  background: rgba(26,58,92,0.3);
  border: 1px solid #1a3a5c;
  color: #38bdf8;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-back-home:hover { background: rgba(26,58,92,0.5); }

/* Dashboard */
.dashboard-page {
  min-height: 100vh;
  padding: 140px 48px 80px;
}
.dashboard-container { max-width: 900px; margin: 0 auto; }
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.dashboard-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
}
.dashboard-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.submissions-list { display: flex; flex-direction: column; gap: 16px; }
.submission-card {
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
}
.submission-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.submission-business {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.status-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.status-pending { background: rgba(255,77,28,0.15); color: var(--accent); }
.status-approved { background: rgba(34,197,94,0.15); color: #22c55e; }
.status-rejected { background: rgba(239,68,68,0.15); color: #ef4444; }
.submission-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.submission-email { color: var(--accent); }
.submission-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.submission-notes {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  padding: 12px;
  background: var(--bg-2);
  border-radius: 8px;
}
.submission-footage { margin-bottom: 12px; }
.submission-footage a { color: var(--accent); font-size: 14px; }
.submission-date { font-size: 12px; color: #555; }