/* ============================================================
   DR. ISABELLA DONATO — MEDIA KIT
   Design System: Dark Luxury Editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,700;9..40,800&display=swap');

/* ─── TOKENS ─── */
:root {
  --black:      #06040A;
  --surface:    #0D0B14;
  --surface-2:  #130F1E;
  --rose:       #C9A46C;
  --rose-light: #E2C078;
  --gold:       #C9A46C;
  --gold-light: #E2C078;
  --mauve:      #A0845C;
  --cream:      #F0EBE6;
  --text-1:     #D4C8B0;
  --text-2:     #7A7282;
  --glass:      rgba(255,255,255,0.04);
  --glass-2:    rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.07);
  --border-rose: rgba(201,164,108,0.30);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* lenis handles scroll */
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }


/* ─── GRAIN OVERLAY ─── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1000;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-3%); }
  20% { transform: translate(-5%,2%); }
  30% { transform: translate(3%,-4%); }
  40% { transform: translate(-4%,5%); }
  50% { transform: translate(-1%,-2%); }
  60% { transform: translate(4%,2%); }
  70% { transform: translate(-3%,4%); }
  80% { transform: translate(2%,-1%); }
  90% { transform: translate(-4%,-3%); }
}

/* ─── GRADIENT MESH BACKGROUND ─── */
.mesh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: blobFloat 12s ease-in-out infinite;
}
.mesh-blob:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--rose);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.mesh-blob:nth-child(2) {
  width: 500px; height: 500px;
  background: var(--mauve);
  bottom: -150px; left: -100px;
  animation-delay: -4s;
}
.mesh-blob:nth-child(3) {
  width: 400px; height: 400px;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -8s;
  opacity: 0.06;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  z-index: 2000;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 28px;
  background: rgba(6,4,10,0.7);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
}
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--rose);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--rose-light);
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(201,164,108,0.4);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: 120px 80px 80px;
  z-index: 1;
}

/* Hero photo container */
.hero-photo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 85vh;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 100%;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 220px 220px 160px 160px;
  background: linear-gradient(160deg, rgba(201,164,108,0.3), transparent 60%);
  z-index: 0;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 220px 220px 160px 160px;
  position: relative;
  z-index: 1;
  filter: saturate(0.9) brightness(0.95);
}
.hero-photo-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201,164,108,0.3), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Hero floating badges */
.hero-badge {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  background: rgba(13,11,20,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  animation: badgeFloat 6s ease-in-out infinite;
}
.hero-badge-ig { top: 15%; left: -20px; animation-delay: 0s; }
.hero-badge-yt { top: 45%; right: -20px; animation-delay: -2s; }
.hero-badge-loc { bottom: 20%; left: -10px; animation-delay: -4s; }
.hero-badge svg { display: inline; vertical-align: middle; margin-right: 6px; }
.hero-badge .badge-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-light);
}
.hero-badge .badge-label { color: var(--text-2); font-size: 0.68rem; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero text column */
.hero-text {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--rose);
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero-name .word { display: inline-block; overflow: hidden; }
.hero-name .char { display: inline-block; }
.hero-name em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.hero-title {
  font-size: 0.9rem;
  color: var(--text-1);
  font-weight: 400;
  line-height: 1.7;
  max-width: 380px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-2);
}
.location-dot {
  display: flex;
  align-items: center;
  gap: 4px;
}
.location-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.location-arrow { color: var(--text-2); margin: 0 4px; }

/* Hero quick stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-stat {
  padding: 20px;
  background: var(--surface);
  text-align: center;
  transition: background 0.3s;
}
.hero-stat:hover { background: var(--surface-2); }
.hero-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.hero-stat-num .accent { color: var(--rose); }
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0% { transform: scaleY(0) translateY(0); transform-origin: top; }
  50% { transform: scaleY(1) translateY(0); transform-origin: top; }
  100% { transform: scaleY(0) translateY(100%); transform-origin: bottom; }
}

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ─── NUMBERS IMPACT SECTION ─── */
#numbers {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
}
.numbers-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--rose);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--rose); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.number-card {
  position: relative;
  padding: 56px 36px;
  background: var(--glass);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.number-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,164,108,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.number-card:hover::before { opacity: 1; }
.number-card:hover { background: var(--glass-2); border-color: var(--border-rose); transform: translateY(-4px); }
.number-card:hover .number-value { color: var(--rose-light); }

.number-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--rose);
}
.number-value {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 3.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
  transition: color 0.3s;
}
.number-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose);
  font-style: italic;
  margin-left: 2px;
}
.number-label {
  font-size: 0.78rem;
  color: var(--text-1);
  margin-top: 10px;
  font-weight: 500;
}
.number-sub {
  font-size: 0.68rem;
  color: var(--text-2);
  margin-top: 4px;
}

/* ─── ABOUT ─── */
#about {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.about-img-frame:hover img { transform: scale(1); }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,4,10,0.6), transparent 50%);
}
.about-credential {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 14px 20px;
  background: rgba(6,4,10,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 280px;
}
.about-credential-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}
.about-credential-title {
  font-size: 0.7rem;
  color: var(--text-2);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.about-dots {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(201,164,108,0.3) 1px, transparent 1px);
  background-size: 12px 12px;
  z-index: -1;
}
.about-text { }
.about-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  margin: 24px 0 32px;
}
.about-bio em { color: var(--rose); font-style: italic; }
.about-detail {
  font-size: 0.9rem;
  color: var(--text-1);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.about-tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-1);
  transition: all 0.3s;
}
.about-tag:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: rgba(201,164,108,0.06);
  cursor: default;
}

/* ─── DATE RANGE SELECTOR ─── */
.date-range-selector {
  display: flex;
  gap: 4px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.date-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-2);
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.date-btn:hover { color: var(--cream); }
.date-btn.active {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.date-btn .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 100px;
  background: rgba(201,164,108,0.12);
  color: var(--rose);
  letter-spacing: 0.08em;
}
.platforms-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 16px;
}

/* ─── PLATFORM METRICS ─── */
#platforms {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
}
.platforms-tabs {
  display: flex;
  gap: 4px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 32px;
}
.platform-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
  letter-spacing: 0.04em;
}
.platform-tab:hover { color: var(--cream); }
.platform-tab.active {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.platform-tab svg { transition: transform 0.3s; }
.platform-tab:hover svg { transform: scale(1.15); }

.platform-panel { display: none; }
.platform-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; animation: panelIn 0.5s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.platform-main-card {
  padding: 48px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.platform-main-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,108,0.12), transparent 70%);
  pointer-events: none;
}
.platform-icon-large {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(201,164,108,0.15), rgba(201,164,108,0.1));
  border: 1px solid rgba(201,164,108,0.2);
}
.platform-handle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.platform-followers {
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--cream), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-followers-label {
  font-size: 0.72rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.platform-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: #4ADE80;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
}
.platform-live-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.platform-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.metric-card {
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,164,108,0.08), transparent 60%);
  pointer-events: none;
}
.metric-card:hover::before { opacity: 1; }
.metric-card:hover {
  background: var(--glass-2);
  border-color: var(--border-rose);
  transform: translateY(-2px);
}
.metric-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.metric-card-label {
  font-size: 0.7rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.metric-card-icon { position: absolute; top: 20px; right: 20px; color: var(--rose); opacity: 0.5; }

/* ─── EXPERTISE MARQUEE ─── */
#expertise {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  overflow: hidden;
}
.expertise-inner { padding: 0 80px; margin-bottom: 72px; text-align: center; }
.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marqueeAnim 30s linear infinite;
  width: fit-content;
}
.marquee-track:nth-child(2) { animation-direction: reverse; animation-duration: 25s; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--text-1);
  cursor: default;
  transition: all 0.3s;
}
.marquee-item:hover {
  border-color: var(--rose);
  color: var(--cream);
  background: rgba(201,164,108,0.07);
}
.marquee-item-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track { will-change: transform; }

/* ─── RECENT CONTENT ─── */
#content {
  position: relative;
  z-index: 1;
  padding: 80px 80px;
}

/* ── iPhone showcase ── */
.iphone-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  align-items: start;
  justify-content: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.iphone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
/* The device itself */
.iphone-device {
  position: relative;
  font-size: 14px; /* base unit — all em inside scales */
  background: #0e0e0e;
  border-radius: 3.2em;
  border: 0.15em solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 0 0 0.07em rgba(255,255,255,0.04),
    0 2em 5em rgba(0,0,0,0.7),
    0 0.6em 1.8em rgba(0,0,0,0.4);
  aspect-ratio: 9/19.5;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  text-decoration: none;
  display: block;
}
.iphone-device:hover {
  transform: translateY(-0.6em);
  box-shadow:
    inset 0 0 0 0.07em rgba(255,255,255,0.04),
    0 2.8em 7em rgba(201,164,108,0.12),
    0 1em 2.8em rgba(0,0,0,0.5);
}
/* Dynamic island */
.iphone-device::before {
  content: '';
  position: absolute;
  top: 0.9em;
  left: 50%;
  transform: translateX(-50%);
  width: 6em;
  height: 1.8em;
  background: #0e0e0e;
  border-radius: 1.2em;
  z-index: 30;
  border: 0.07em solid rgba(255,255,255,0.04);
}
/* Home bar */
.iphone-device::after {
  content: '';
  position: absolute;
  bottom: 0.6em;
  left: 50%;
  transform: translateX(-50%);
  width: 7em;
  height: 0.28em;
  background: rgba(255,255,255,0.32);
  border-radius: 0.2em;
  z-index: 30;
}
/* Screen fills device */
.iphone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ── Instagram Reels UI overlay ── */
.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.12) 0%,
    transparent 18%,
    transparent 52%,
    rgba(0,0,0,0.45) 72%,
    rgba(0,0,0,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.6em 0.8em 2.4em;
}
.reel-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reel-label {
  font-size: 0.75em;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}
/* Side action buttons */
.reel-side {
  position: absolute;
  right: 0.6em;
  bottom: 3.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4em;
}
.reel-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.reel-action svg {
  width: 1.7em;
  height: 1.7em;
  filter: drop-shadow(0 0.1em 0.3em rgba(0,0,0,0.5));
}
.reel-action-num {
  font-size: 0.55em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0.1em 0.3em rgba(0,0,0,0.6);
  white-space: nowrap;
}
/* Bottom info */
.reel-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  padding-right: 2.8em;
}
.reel-user {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.reel-avatar {
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  border: 0.1em solid white;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface);
}
.reel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.reel-username {
  font-size: 0.68em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0.1em 0.3em rgba(0,0,0,0.5);
}
.reel-caption {
  font-size: 0.6em;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0.08em 0.25em rgba(0,0,0,0.6);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-reach {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: rgba(201,164,108,0.18);
  border: 0.08em solid rgba(201,164,108,0.5);
  border-radius: 2em;
  padding: 0.15em 0.65em;
  font-size: 0.55em;
  color: #E2C078;
  font-weight: 700;
  width: fit-content;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ── Label below device ── */
.iphone-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-2);
  text-align: center;
}
.iphone-label svg { flex-shrink: 0; }

/* ── 3rd card: Instagram profile mockup ── */
.ig-profile-mockup {
  background: #fafafa;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ig-profile-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.2em 0.3em;
  font-size: 0.55em;
  font-weight: 700;
  color: #000;
}
.ig-profile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3em 0.8em 0.5em;
  border-bottom: 0.06em solid #dbdbdb;
}
.ig-profile-nav-user {
  font-size: 0.75em;
  font-weight: 700;
  color: #000;
}
.ig-profile-header {
  padding: 0.8em 0.8em 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.ig-profile-top {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.ig-profile-avatar {
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  border: 0.18em solid transparent;
  outline: 0.18em solid #e1306c;
  outline-offset: 0.18em;
  overflow: hidden;
  flex-shrink: 0;
}
.ig-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ig-profile-stats {
  display: flex;
  gap: 0.8em;
  flex: 1;
  justify-content: space-around;
}
.ig-profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}
.ig-profile-stat-num {
  font-size: 0.7em;
  font-weight: 700;
  color: #000;
}
.ig-profile-stat-label {
  font-size: 0.45em;
  color: #737373;
}
.ig-profile-name {
  font-size: 0.6em;
  font-weight: 700;
  color: #000;
  padding: 0 0.3em;
}
.ig-profile-bio {
  font-size: 0.52em;
  color: #262626;
  padding: 0 0.3em;
  line-height: 1.3;
}
.ig-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.12em;
  flex: 1;
  overflow: hidden;
}
.ig-profile-cell {
  aspect-ratio: 1;
  overflow: hidden;
  background: #efefef;
  position: relative;
}
.ig-profile-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-profile-reel-icon {
  position: absolute;
  top: 0.3em;
  right: 0.3em;
  width: 1em;
  height: 1em;
  opacity: 0.9;
}
.ig-profile-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
  z-index: 20;
  pointer-events: none;
}
.ig-profile-cta-btn {
  background: rgba(201,164,108,0.9);
  color: #06040A;
  font-size: 0.7em;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  letter-spacing: 0.04em;
  text-align: center;
  pointer-events: none;
}

/* ─── PARTNERSHIP CTA ─── */
#contact {
  position: relative;
  z-index: 1;
  padding: 100px 80px;
  text-align: center;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,164,108,0.1), transparent 70%);
  pointer-events: none;
}
.contact-eyebrow { margin-bottom: 20px; }
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.contact-title em { color: var(--rose); font-style: italic; }
.contact-sub {
  font-size: 1rem;
  color: var(--text-1);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.contact-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--black);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn-primary:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 8px 40px rgba(201,164,108,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-wa-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.btn-wa-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
  pointer-events: none;
}
/* Direct WA button (no wrapper div) */
.btn-wa {
  overflow: visible;
}
.btn-wa::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 100px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 0; }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-1);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--cream); color: var(--cream); background: var(--glass); }

/* Press info */
.press-info {
  margin-top: 80px;
  padding: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 48px;
  text-align: left;
}
.press-info-item { }
.press-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-2);
  margin-bottom: 6px;
}
.press-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  padding: 48px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.footer-logo span { color: var(--rose); font-style: italic; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-2);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-link:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; }
.reveal.is-visible { animation: revealUp 0.8s var(--ease-out) forwards; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.blur-reveal { opacity: 0; filter: blur(10px); }
.blur-reveal.is-visible { animation: blurIn 0.9s var(--ease-out) forwards; }
@keyframes blurIn {
  from { opacity: 0; filter: blur(10px); transform: translateY(16px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  #hero { padding: 100px 60px 60px; gap: 40px; }
  .hero-text { padding-left: 40px; }
  #numbers { padding: 72px 60px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  #about { padding: 72px 60px; }
  #platforms { padding: 72px 60px; }
  #expertise .expertise-inner { padding: 0 60px; }
  #content { padding: 72px 60px; }
  #contact { padding: 80px 60px; }
  footer { padding: 40px 60px; }
}
@media (max-width: 900px) {
  /* ── HERO: foto edge-to-edge, retrato 3:4, cantos só embaixo ── */
  #hero {
    grid-template-columns: 1fr;
    padding: 0 0 40px;
    min-height: auto;
    gap: 0;
    overflow: visible;
  }
  .hero-photo-wrap {
    order: -1;
    height: auto;
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 72vh;
    overflow: hidden;
    align-items: stretch;
    position: relative;
  }
  .hero-photo-frame {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0 0 48px 48px;
  }
  .hero-photo-frame::before { border-radius: 0 0 48px 48px; }
  .hero-photo-frame img {
    border-radius: 0 0 48px 48px;
    object-position: center top;
  }
  .hero-badge-ig { top: auto; bottom: 12%; left: 12px; animation: none; }
  .hero-badge-yt { display: none; }
  .hero-badge-loc { bottom: 4%; left: 12px; animation: none; }
  /* ── HERO TEXT ── */
  .hero-text {
    padding: 28px 24px 0;
    gap: 16px;
  }
  .hero-name { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-br-1 { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .scroll-hint { display: none; }
  /* ── SECTIONS: reduz espaços ── */
  #numbers { padding: 32px 24px; }
  .numbers-header { margin-bottom: 28px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #about { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
  .about-img-frame { max-height: 280px; }
  #platforms { padding: 32px 24px; }
  .platforms-header { margin-bottom: 20px; }
  .platforms-controls { margin: 16px 0 10px; }
  .platforms-tabs { margin: 0 auto 20px; }
  .platform-panel.active { grid-template-columns: 1fr; }
  .platform-metrics-grid { grid-template-columns: 1fr 1fr; }
  .expertise-inner { padding: 0 24px !important; }
  #content { padding: 32px 24px; }
  .iphone-showcase { grid-template-columns: 1fr; gap: 32px; max-width: 300px; margin: 0 auto; }
  #contact { padding: 40px 24px; }
  footer { padding: 24px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  nav { width: calc(100% - 40px); }
  .nav-links { display: none; }
  .press-info { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .hero-badge { display: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-title { font-size: 2.2rem; }
  .hero-name { font-size: clamp(1.7rem, 8.5vw, 2.8rem); }
  #about { padding: 28px 20px; }
  #numbers { padding: 28px 20px; }
  #platforms { padding: 28px 20px; }
  #content { padding: 28px 20px; }
  #contact { padding: 36px 20px; }
  footer { padding: 20px 20px; }
}

/* ─── ABOUT CREDENTIAL CARD ─── */
.about-credential-card {
  background: var(--glass-2);
  border: 1px solid var(--border-rose);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(20px);
}
.about-cred-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,164,108,0.4);
  border-radius: 100px;
  padding: 4px 14px;
  width: fit-content;
}
.about-cred-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.about-cred-name em {
  font-style: italic;
  color: var(--gold-light);
}
.about-cred-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-rose), transparent);
}
.about-cred-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.about-cred-sub {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.5;
}
.about-cred-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-cred-stat { text-align: center; }
.about-cred-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.about-cred-stat-num span {
  font-size: 0.9rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}
.about-cred-stat-label {
  font-size: 0.65rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about-cred-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-2);
}

/* ─── DEMOGRAPHICS ─── */
.demographics-section {
  margin-top: 32px;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  grid-column: 1 / -1;
}
.demo-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.demo-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-card-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.04em;
}
.demo-gender-bars, .demo-age-bars { display: flex; flex-direction: column; gap: 8px; }
.demo-gender-row, .demo-age-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-2);
}
.demo-gender-name { min-width: 64px; }
.demo-bar-wrap {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.demo-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 1s var(--ease-out);
}
.demo-bar--secondary {
  background: linear-gradient(90deg, rgba(201,164,108,0.4), rgba(201,164,108,0.2));
}
.demo-gender-pct, .demo-age-row > span:last-child { min-width: 32px; text-align: right; }
.demo-age-row > span:first-child { min-width: 40px; }
.demo-locations { display: flex; flex-direction: column; gap: 8px; }
.demo-loc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-2);
}
.demo-loc-flag { font-size: 0.9rem; }
.demo-loc-name { flex: 1; }
.demo-loc-pct { font-weight: 500; color: var(--text-1); }
@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; }
  .about-credential-card { padding: 28px 24px; }
}

/* ─── PERFORMANCE: REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
