/* ─── DESIGN SYSTEM TOKENS ─── */
:root {
  --teal: #14b8a6;
  --teal-light: rgba(20, 184, 166, 0.3);
  --teal-bg: rgba(20, 184, 166, 0.2);
  --cyan: #06b6d4;
  --page-from: #0b1620;
  --page-to: #0a1a2b;
  --card-bg: #0e1a2a;
  --panel-bg: #142033;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(20, 184, 166, 0.3);
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--page-from);
  border-left: 1px solid rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
  background: rgba(20, 184, 166, 0.4);
  border: 2px solid var(--page-from);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 184, 166, 0.7);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 184, 166, 0.4) var(--page-from);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, var(--page-from), var(--page-to));
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── GLOW EFFECTS ─── */
.glow-teal {
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3), 0 0 40px rgba(20, 184, 166, 0.1);
}

.glow-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 60px rgba(20, 184, 166, 0.2);
}

.glow-border {
  position: relative;
  border: 1px solid var(--border-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-border:hover {
  border-color: rgba(20, 184, 166, 0.6);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
  transform: translateY(-1px);
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px) scale(1.02);
}

.hover-glow {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
  text-shadow: 0 0 25px rgba(20, 184, 166, 0.6);
  color: rgb(153, 246, 228);
}

.text-glow {
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
}

.backdrop-glow {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ─── ANIMATIONS ─── */
.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── AMBIENT LIGHTING ─── */
.ambient-light {
  position: fixed;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: ambientMove 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.ambient-light-2 {
  position: fixed;
  bottom: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: ambientMove2 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes ambientMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(100px, -50px) scale(1.1);
  }
}

@keyframes ambientMove2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, 60px) scale(0.9);
  }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(14, 26, 42, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
}

.nav-logo {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  border: 2px solid var(--teal);
  padding: 4px 10px;
  text-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all .3s;
  letter-spacing: 0.04em;
}

.nav-links a:hover,
.nav-links a.active {
  color: rgb(153, 246, 228);
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 2.5rem 4rem;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text-primary);
}

.hero-title em {
  font-style: normal;
  color: rgb(153, 246, 228);
  text-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
}

.hero-period {
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-period span {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeUp .6s ease both;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(20, 184, 166, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.3);
}

.hero-card:nth-child(1) {
  animation-delay: .1s;
}

.hero-card:nth-child(2) {
  animation-delay: .2s;
  grid-row: 1 / 3;
}

.hero-card:nth-child(3) {
  animation-delay: .3s;
}

.hero-card-icon {
  font-size: 1.4rem;
  margin-bottom: .6rem;
}

.hero-card-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

.hero-card-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: .2rem;
}

.hero-card-badge {
  display: inline-block;
  margin-top: .5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.badge-up {
  background: rgba(20, 184, 166, 0.2);
  color: #5eead4;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.badge-down {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.dots-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(20, 184, 166, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ─── SECTIONS ─── */
section {
  padding: 5rem 2.5rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
  display: block;
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.4);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.section-desc {
  margin-top: .8rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── INTRO ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
  border-left: 4px solid var(--teal);
  padding-left: 1.5rem;
}

.intro-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── STATS ROW ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: .3rem;
}

.stat-delta {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: .4rem;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
}

.delta-pos {
  background: rgba(20, 184, 166, 0.2);
  color: #5eead4;
}

.delta-neg {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

/* ─── PLATFORM ─── */
.platform-block {
  background: var(--panel-bg);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-subtle);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.icon-fb {
  background: #1877f2;
}

.icon-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.platform-name span {
  color: var(--teal);
}

.platform-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.chart-wrap {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}

.chart-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.platform-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.platform-text strong {
  color: var(--text-primary);
}

.highlight-box {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1.2rem;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--teal);
}

.highlight-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-primary);
}

/* ─── CAMPAIGN ─── */
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.campaign-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.campaign-right .chart-wrap {
  flex: 1;
}

#campChart {
  max-height: 220px;
}

.campaign-info h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}

.campaign-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.campaign-meta-item {
  text-align: center;
}

.campaign-meta-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

.campaign-meta-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.campaign-goal {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

.campaign-goal h4 {
  font-size: 1.3rem;
  font-weight: 800;
}

.campaign-goal p {
  font-size: 0.85rem;
  margin-top: .4rem;
  opacity: .85;
}

/* Table */
.campaign-table {
  width: 100%;
  border-collapse: collapse;
}

.campaign-table th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .7rem .8rem;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.campaign-table td {
  padding: .75rem .8rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.campaign-table tr:hover td {
  background: rgba(20, 184, 166, 0.08);
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  border-radius: 3px;
}

/* ─── OBSERVATIONS ─── */
.obs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.obs-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.obs-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border-subtle);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.obs-card:hover {
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
}

.obs-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: .35rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

.obs-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.obs-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: .2rem;
  line-height: 1.6;
}

.obs-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── CONTACT ─── */
#contato {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
  border-top: 1px solid rgba(20, 184, 166, 0.3);
  border-bottom: 1px solid rgba(20, 184, 166, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: .8;
  margin-bottom: .5rem;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow: 0 0 25px rgba(20, 184, 166, 0.4);
}

.contact-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1rem;
}

.contact-item-icon {
  font-size: 1.1rem;
  opacity: .8;
  margin-top: .1rem;
}

.contact-item-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.contact-logo-box {
  border: 2px solid rgba(20, 184, 166, 0.5);
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

/* ─── AUDIENCE MAP ─── */
#audienceMap {
  height: 400px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  z-index: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.location-list {
  list-style: none;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all .3s;
}

.location-item:hover {
  background: rgba(20, 184, 166, 0.06);
}

.location-name {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
}

.location-radius {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(20, 184, 166, 0.15);
  color: #5eead4;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

/* ─── DEMOGRAPHICS ─── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.demo-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1);
}

.demo-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.interest-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all .3s;
}

.interest-tag:hover {
  border-color: rgba(20, 184, 166, 0.5);
  color: #5eead4;
  background: rgba(20, 184, 166, 0.08);
}

.interest-tag .tag-pct {
  color: #5eead4;
  margin-left: 6px;
  font-size: 0.72rem;
}

/* ─── EXEC CARDS (O QUE FOI EXECUTADO) ─── */
.exec-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exec-card:hover {
  border-color: rgba(20, 184, 166, 0.3);
}

.exec-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.exec-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.exec-list {
  list-style: none;
  padding: 0;
}

.exec-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.exec-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.75rem;
}

.exec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.exec-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: #5eead4;
}

/* ─── FOOTER ─── */
footer {
  background: rgba(11, 22, 32, 0.8);
  color: var(--text-muted);
  padding: 1.5rem 2.5rem;
  text-align: center;
  font-size: 0.78rem;
  border-top: 1px solid var(--border-subtle);
}

/* ─── RESPONSIVE ─── */
@media (max-width:900px) {

  .hero-grid,
  .intro-grid,
  .platform-layout,
  .campaign-grid,
  .obs-grid,
  .contact-grid,
  .audience-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card:nth-child(2) {
    grid-row: auto;
  }

  nav {
    padding: 0 1.2rem;
  }

  .nav-links {
    gap: 1rem;
  }
}

@media (max-width:600px) {
  section {
    padding: 3.5rem 1.2rem;
  }

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

  .campaign-meta {
    grid-template-columns: 1fr 1fr;
  }

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

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

  nav {
    height: 52px;
  }

  .nav-links {
    display: none;
  }
}

/* ─── INSTAGRAM SECTION ─── */
.ig-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Progress bar component */
.ig-progress-wrap {
  margin-bottom: 0.5rem;
}

.ig-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  gap: 0.5rem;
}

.ig-bar-bg {
  height: 7px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.ig-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Color variants */
.ig-fill-followers {
  background: linear-gradient(90deg, #c026d3, #9333ea);
}

.ig-fill-nonfollowers {
  background: linear-gradient(90deg, #6366f1, #4f46e5);
}

/* Legend dot */
.ig-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.ig-dot-followers {
  background: #c026d3;
  box-shadow: 0 0 6px rgba(192, 38, 211, 0.6);
}

.ig-dot-nonfollowers {
  background: #6366f1;
  box-shadow: 0 0 6px rgba(99, 102, 241, 0.6);
}

@media (max-width:900px) {
  .ig-split-row {
    grid-template-columns: 1fr;
  }
}

/* ─── CAMPAIGN DASHBOARD REDESIGN ─── */
.camp-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.camp-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.camp-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
}

.camp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.camp-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.camp-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid transparent;
}

.camp-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.camp-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.camp-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.camp-kpi-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.camp-kpi-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.camp-kpi-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.camp-cpr-banner {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cpr-val {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.cpr-lbl {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cpr-days {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 12px;
}

.camp-chart-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .camp-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .camp-chart-row {
    grid-template-columns: 1fr;
  }

  .camp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .camp-cpr-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .camp-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .camp-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
}