:root {
  --bg: #0c0f0d;
  --ink: #f4f7f3;
  --muted: #a9b2aa;
  --line: rgba(255, 255, 255, 0.54);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --glass-dark: rgba(9, 11, 10, 0.72);
  --green: #79e04f;
  --green-deep: #10a75b;
  --green-glow: rgba(121, 224, 79, 0.32);
  --charcoal: #161a18;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --glass-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  --page-max: 1480px;
  --page-pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 224, 79, 0.28), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(16, 167, 91, 0.24), transparent 30%),
    linear-gradient(135deg, #0a0d0b 0%, #151a17 48%, #080a09 100%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

body::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 38%),
    linear-gradient(250deg, rgba(121, 224, 79, 0.11), rgba(16, 167, 91, 0.08) 42%, rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes header-in {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes glass-shine {
  from {
    transform: translateX(-130%) rotate(12deg);
  }

  to {
    transform: translateX(170%) rotate(12deg);
  }
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  background: rgba(16, 20, 18, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
  display: flex;
  justify-content: space-between;
  left: 50%;
  max-width: var(--page-max);
  padding: 12px 16px 12px 20px;
  position: fixed;
  transform: translate(-50%, 0);
  width: calc(100% - (var(--page-pad) * 2));
  top: 16px;
  z-index: 10;
  animation: header-in 520ms ease both;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 999px;
  height: 28px;
  width: 28px;
}

.nav {
  display: flex;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  gap: 7px;
  padding: 9px 12px;
}

.nav svg {
  fill: none;
  flex: 0 0 auto;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 17px;
}

.nav a:hover {
  background: rgba(121, 224, 79, 0.16);
  color: var(--ink);
}

.hero {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: auto;
  margin: 0 auto;
  max-width: var(--page-max);
  padding: 118px var(--page-pad) 42px;
}

.hero-copy {
  align-self: start;
  animation: fade-up 640ms ease 80ms both;
  max-width: 710px;
  padding-top: clamp(10px, 2vw, 28px);
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.65rem, 5.4vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 590px;
}

.section-copy {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 22px;
  max-width: 560px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

button.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, rgba(121, 224, 79, 0.95), rgba(16, 167, 91, 0.9));
  box-shadow: 0 18px 44px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--ink);
}

.hero-media {
  align-self: start;
  animation: fade-up 700ms ease 160ms both, soft-float 7s ease-in-out 900ms infinite;
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.hero-media::after,
.metrics::after,
.panel::after,
.package::after,
.brand-card::after,
.video-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  inset: -40% auto -40% -60%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%) rotate(12deg);
  width: 46%;
}

.hero-media:hover::after,
.metrics:hover::after,
.panel:hover::after,
.package:hover::after,
.brand-card:hover::after,
.video-card:hover::after {
  animation: glass-shine 900ms ease;
}

.hero-media img {
  border-radius: 21px;
  height: min(62vh, 560px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.metrics {
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: calc(var(--page-max) - (var(--page-pad) * 2));
  overflow: hidden;
  position: relative;
  width: calc(100% - (var(--page-pad) * 2));
  animation: fade-up 620ms ease 260ms both;
}

.metrics article {
  min-height: 156px;
}

.metric-link {
  position: relative;
  display: block;
  height: 100%;
  padding: 30px clamp(24px, 4vw, 48px);
  transition: background 180ms ease, transform 180ms ease;
}

.metric-link:hover {
  background: rgba(121, 224, 79, 0.08);
  transform: translateY(-2px);
}

.metrics .platform-badge {
  align-items: center;
  border-radius: 999px;
  color: #fff;
  display: flex;
  height: 38px;
  justify-content: center;
  margin: 0 0 18px;
  position: relative;
  width: 38px;
}

.platform-badge svg {
  fill: none;
  flex: 0 0 auto;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.facebook-badge svg {
  fill: currentColor;
  stroke: none;
}

.youtube-badge {
  background: #ff0033;
}

.youtube-badge::before {
  border-bottom: 6px solid transparent;
  border-left: 11px solid #fff;
  border-top: 6px solid transparent;
  content: "";
  margin-left: 3px;
}

.tiktok-badge {
  background: #050505;
  box-shadow: inset -3px 0 0 rgba(37, 244, 238, 0.68), inset 3px 0 0 rgba(254, 44, 85, 0.68);
}

.instagram-badge {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.facebook-badge {
  background: #1877f2;
}

.open-link-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  top: 30px;
  width: 32px;
}

.open-link-icon svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 16px;
}

.content-icon {
  align-items: center;
  background: rgba(121, 224, 79, 0.13);
  border: 1px solid rgba(121, 224, 79, 0.28);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}

.content-icon svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.metrics article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.metrics strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.9;
}

.metrics .metric-link > span:not(.platform-badge):not(.open-link-icon) {
  color: var(--muted);
  display: block;
  margin-top: 16px;
}

.section {
  margin: 0 auto;
  max-width: var(--page-max);
  padding: clamp(64px, 9vw, 120px) var(--page-pad);
}

#colaboraciones {
  padding-top: clamp(36px, 5vw, 72px);
}

.split {
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

#audiencia.split {
  grid-template-columns: 1fr;
  gap: 34px;
}

#audiencia .section-copy {
  max-width: 760px;
}

.audience-grid,
.packages {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.package {
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.panel:hover,
.package:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(121, 224, 79, 0.3);
  transform: translateY(-2px);
}

.panel p,
.package p,
.package li {
  color: var(--muted);
}

.audience-card {
  min-height: 286px;
}

.audience-card .content-icon {
  margin-bottom: 16px;
}

.featured-data {
  background:
    linear-gradient(145deg, rgba(121, 224, 79, 0.18), rgba(255, 255, 255, 0.08)),
    var(--glass);
  border-color: rgba(121, 224, 79, 0.34);
  grid-column: span 1;
  min-height: 230px;
}

.featured-data .stat-pair {
  display: grid;
  margin-right: 0;
  min-width: 0;
}

.stat-pair {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 6px;
  padding-top: 18px;
}

.stat-pair + .stat-pair {
  margin-top: 18px;
}

.stat-pair strong {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.stat-pair span {
  color: var(--muted);
}

.data-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
}

.data-row span,
.data-row strong {
  font-size: 0.95rem;
  line-height: 1.15;
}

.data-row span {
  color: var(--muted);
}

.data-row b {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  display: inline-flex;
  height: 18px;
  margin-right: 7px;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  width: 26px;
}

.data-row b::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.data-row b::before {
  content: "";
  position: absolute;
  z-index: 1;
}

.flag-badge.mx {
  background: linear-gradient(90deg, #006847 0 33%, #fff 33% 66%, #ce1126 66% 100%);
}

.flag-badge.mx::before {
  background:
    radial-gradient(circle at 50% 36%, #8b5a2b 0 18%, transparent 19%),
    radial-gradient(circle at 42% 55%, #0f7a3d 0 16%, transparent 17%),
    radial-gradient(circle at 58% 55%, #0f7a3d 0 16%, transparent 17%);
  border-radius: 50%;
  height: 9px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
}

.flag-badge.ar {
  background:
    radial-gradient(circle at center, #f6b40e 0 12%, transparent 13%),
    linear-gradient(180deg, #74acdf 0 33%, #fff 33% 66%, #74acdf 66% 100%);
}

.flag-badge.ar::before {
  background: #f6b40e;
  border-radius: 50%;
  box-shadow:
    0 -4px 0 -2px #f6b40e,
    0 4px 0 -2px #f6b40e,
    4px 0 0 -2px #f6b40e,
    -4px 0 0 -2px #f6b40e;
  height: 6px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
}

.flag-badge.co {
  background: linear-gradient(180deg, #fcd116 0 50%, #003893 50% 75%, #ce1126 75% 100%);
}

.flag-badge.cl {
  background:
    linear-gradient(90deg, #0039a6 0 36%, transparent 36% 100%),
    linear-gradient(180deg, #fff 0 50%, #d52b1e 50% 100%);
}

.flag-badge.cl::before {
  background: #fff;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  height: 7px;
  left: 18%;
  top: 25%;
  transform: translate(-50%, -50%);
  width: 7px;
}

.flag-badge.pe {
  background: linear-gradient(90deg, #d91023 0 33%, #fff 33% 66%, #d91023 66% 100%);
}

.data-row strong {
  color: var(--ink);
}

.data-row i {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  position: relative;
}

.data-row i::before {
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 780ms ease 180ms;
  width: var(--value);
}

.audience-card.is-visible .data-row i::before,
.section.is-visible .data-row i::before {
  transform: scaleX(1);
}

.gender-row {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.gender-row div {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.gender-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.gender-row strong {
  color: var(--ink);
  font-size: 0.95rem;
  text-align: right;
}

.split-bar {
  background:
    linear-gradient(
      90deg,
      #4bd8c8 0 var(--men),
      #ff74b8 var(--men) calc(var(--men) + var(--women)),
      rgba(255, 255, 255, 0.3) calc(var(--men) + var(--women)) 100%
    );
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 780ms ease 180ms;
}

.audience-card.is-visible .split-bar {
  transform: scaleX(1);
}

.section-heading {
  margin-bottom: 32px;
  max-width: 980px;
}

.packages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package {
  min-height: 360px;
}

.package.featured {
  background:
    linear-gradient(145deg, rgba(121, 224, 79, 0.2), rgba(13, 18, 16, 0.86) 38%, rgba(8, 10, 9, 0.84)),
    var(--glass-dark);
  border-color: rgba(121, 224, 79, 0.32);
  box-shadow: 0 24px 80px rgba(17, 18, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.package.featured p,
.package.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.package.featured .content-icon {
  background: rgba(121, 224, 79, 0.2);
  border-color: rgba(121, 224, 79, 0.42);
}

.package-tag {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

ul {
  margin: 26px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 9px;
}

.proof {
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns:
    minmax(var(--page-pad), 1fr)
    minmax(0, calc(var(--page-max) * 0.44))
    minmax(0, calc(var(--page-max) * 0.48))
    minmax(var(--page-pad), 1fr);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.proof > .proof-copy {
  grid-column: 2;
}

.proof > .brand-showcase,
.proof > .shorts-reel {
  grid-column: 3;
}

.proof-copy {
  align-self: start;
}

.brand-showcase {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
}

.brand-card,
.video-card {
  align-items: center;
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  min-height: 112px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.brand-card:hover,
.video-card:hover {
  background: rgba(121, 224, 79, 0.12);
  border-color: rgba(121, 224, 79, 0.34);
  transform: translateY(-2px);
}

.brand-card span,
.video-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-card strong,
.video-card strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.brand-card small,
.video-card small {
  color: var(--muted);
  font-weight: 700;
}

.short-card {
  min-height: 210px;
  justify-content: flex-end;
}

.video-card {
  align-items: stretch;
  min-height: 0;
}

.feature-video {
  margin-top: 34px;
  max-width: 720px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  width: 100%;
}

.video-frame.short {
  aspect-ratio: 9 / 16;
  height: 360px;
  max-height: none;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.shorts-reel {
  align-self: start;
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(25, 58, 36, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 24px 70px rgba(0, 0, 0, 0.24);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  grid-template-rows: auto auto auto;
  gap: 14px;
  min-height: 0;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.reel-heading {
  align-items: center;
  color: var(--ink);
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-start;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-heading span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.reel-heading small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.reel-viewport {
  border-radius: 20px;
  grid-column: 2;
  grid-row: 2;
  height: 474px;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.reel-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.reel-slide {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.reel-slide .video-frame.short {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  height: 390px;
  margin: 0;
  max-width: 236px;
}

.reel-slide span,
.reel-slide strong,
.reel-slide small {
  display: block;
}

.reel-slide span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-slide strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  margin-top: 6px;
}

.reel-slide > div:last-child {
  margin-top: 18px;
}

.reel-slide small {
  color: var(--muted);
  font-weight: 800;
  margin-top: 8px;
}

.tiktok-slide {
  justify-content: space-between;
}

.tiktok-preview {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  display: block;
  height: 390px;
  max-width: 236px;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, filter 180ms ease;
  width: 100%;
}

.tiktok-preview:hover {
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.tiktok-preview::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    radial-gradient(circle at center, transparent 0 24%, rgba(0, 0, 0, 0.16) 72%);
  content: "";
  inset: 0;
  position: absolute;
}

.tiktok-preview img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.reel-control {
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-grid;
  grid-row: 2;
  height: 42px;
  place-items: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 42px;
}

.reel-control.prev {
  grid-column: 1;
}

.reel-control.next {
  grid-column: 3;
}

.reel-control:hover {
  background: rgba(121, 224, 79, 0.16);
  border-color: rgba(121, 224, 79, 0.36);
  transform: translateY(-1px);
}

.reel-control svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 20px;
}

.reel-dots {
  align-items: center;
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
  justify-content: center;
}

.reel-dots button {
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
  width: 8px;
}

.reel-dots button.is-active {
  background: var(--green);
  border-radius: 999px;
  transform: scale(1.04);
  width: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.panel.reveal,
.package.reveal,
.brand-card.reveal,
.video-card.reveal,
.metrics article.reveal {
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.contact {
  align-items: end;
  background:
    linear-gradient(145deg, rgba(9, 11, 10, 0.94), rgba(18, 25, 20, 0.9)),
    var(--ink);
  color: #fff;
  display: grid;
  gap: 32px;
  grid-template-columns:
    minmax(var(--page-pad), 1fr)
    minmax(0, calc(var(--page-max) * 0.68))
    auto
    minmax(var(--page-pad), 1fr);
  padding: clamp(64px, 9vw, 110px) 0;
}

.contact > div:first-child,
.contact > .email-card {
  grid-column: 2;
}

.contact > .contact-actions {
  grid-column: 3;
}

.contact .eyebrow {
  color: var(--green);
}

.contact h2 {
  max-width: 900px;
}

.contact .button.primary {
  background: linear-gradient(135deg, rgba(121, 224, 79, 0.95), rgba(16, 167, 91, 0.9));
  color: #fff;
}

.contact .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.email-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 18px;
  justify-content: space-between;
  margin-top: 26px;
  max-width: 460px;
  padding: 18px 18px 18px 20px;
  text-align: left;
  width: 100%;
}

.email-card small {
  color: var(--green);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.email-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.email-card i {
  align-items: center;
  background: rgba(121, 224, 79, 0.16);
  border: 1px solid rgba(121, 224, 79, 0.28);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.email-card svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.footer {
  align-items: center;
  background: #080a09;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  justify-content: space-between;
  padding: 22px max(var(--page-pad), calc((100vw - var(--page-max)) / 2 + var(--page-pad)));
}

@media (max-width: 900px) {
  .hero,
  .split,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: clamp(64px, 9vw, 110px) var(--page-pad);
  }

  .proof {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .proof > .proof-copy,
  .proof > .brand-showcase,
  .proof > .shorts-reel,
  .contact > div:first-child,
  .contact > .email-card,
  .contact > .contact-actions {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    height: auto;
    max-height: none;
  }

  .packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shorts-reel {
    min-height: 0;
  }

}

@media (max-width: 620px) {
  .site-header {
    animation: none;
    align-items: center;
    border-radius: 999px;
    flex-direction: row;
    gap: 10px;
    left: 14px;
    padding: 9px 10px 9px 12px;
    right: 14px;
    top: 12px;
    transform: none;
    width: auto;
  }

  .brand {
    line-height: 1;
    padding: 0;
  }

  .brand img {
    height: 24px;
    width: 24px;
  }

  .nav {
    display: flex;
    flex: 1;
    font-size: 0;
    gap: 4px;
    justify-content: flex-end;
    width: auto;
  }

  .nav a {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    min-height: 36px;
    min-width: 36px;
    padding: 0;
    text-align: center;
    white-space: nowrap;
  }

  .nav svg {
    height: 16px;
    width: 16px;
  }

  .nav span {
    display: none;
    font-size: 0.68rem;
    line-height: 1;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .metrics {
    width: calc(100% - 28px);
  }

  .metrics,
  .audience-grid,
  .data-grid,
  .packages,
  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .shorts-reel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 0;
    padding: 16px;
  }

  .reel-viewport {
    height: 424px;
  }

  .reel-slide .video-frame.short {
    height: 360px;
    max-width: 204px;
  }

  .tiktok-preview {
    height: 360px;
    max-width: 204px;
  }

  .metrics article + article,
  .metrics article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .footer {
    align-items: center;
    flex-direction: row;
    font-size: 0.86rem;
    gap: 10px;
    justify-content: center;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .footer span:first-child::after {
    content: "/";
    margin-left: 10px;
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
