:root {
  --green: #00c853;
  --green-dark: #009624;
  --green-light: #e8f5e9;
  --white: #ffffff;
  --text: #111111;
  --text-soft: #666666;
  --border: rgba(17, 17, 17, 0.08);
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 18px 44px rgba(0, 200, 83, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
  --yt-brand: #ff0000;
  --yt-brand-soft: rgba(255, 0, 0, 0.1);
  --ig-brand: #d62976;
  --ig-brand-soft: rgba(214, 41, 118, 0.1);
  --live-brand: #9b51e0;
  --live-brand-soft: rgba(155, 81, 224, 0.1);
  --custom-brand: #111111;
  --custom-brand-soft: rgba(17, 17, 17, 0.05);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 200, 83, 0.18), transparent 32%),
    linear-gradient(180deg, #fbfffc 0%, #f4fbf6 42%, #ffffff 100%);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: 100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(0, 200, 83, 0.18);
}

.ambient-two {
  bottom: 10%;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(0, 150, 36, 0.12);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 150, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 36, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 20px 0;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
  border: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 200, 83, 0.2);
}

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

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1.5rem;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  margin-left: 8px;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 52px 20px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
  padding-top: 52px;
}

.eyebrow,
.section-kicker,
.status-pill,
.pricing-badge {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  padding: 10px 16px;
  background: rgba(232, 245, 233, 0.8);
  border: 1px solid rgba(0, 200, 83, 0.12);
  border-radius: 999px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0, 200, 83, 0.16);
}

.hero h1,
.section-heading h2,
.bars-header h3,
.chart-card h3,
.contact-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  padding-bottom: 0.12em;
  overflow: visible;
}

.hero-break {
  display: block;
}

.hero-tagline {
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--green-dark);
  font-weight: 700;
}

.hero-description,
.section-heading p,
.video-meta span,
.contact-copy p,
.about-copy p,
.about-points span,
.stat-card p,
.pricing-card p,
.pricing-card strong,
.creator-summary span {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-description {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 38px rgba(0, 200, 83, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(0, 200, 83, 0.36);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-proof div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-proof strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-proof span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.profile-frame {
  position: relative;
  padding: 18px 8px 18px 28px;
}

.profile-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.28), transparent 65%);
  filter: blur(18px);
  transform: scale(0.92);
}

.profile-card,
.section-panel,
.bars-card,
.chart-card,
.pricing-card,
.video-card,
.metric-card,
.stat-card {
  background: var(--panel);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.profile-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.profile-status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.status-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(232, 245, 233, 0.85);
  color: var(--green-dark);
}

.status-pill.muted {
  background: rgba(17, 17, 17, 0.05);
  color: var(--text-soft);
}

.creator-portrait {
  position: relative;
  min-height: 400px;
  margin: 28px 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 38%),
    linear-gradient(180deg, rgba(0, 200, 83, 0.18), rgba(0, 150, 36, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.portrait-ring,
.portrait-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.portrait-ring {
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 26px rgba(255, 255, 255, 0.06);
}

.portrait-core {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(145deg, rgba(0, 200, 83, 0.95), rgba(0, 150, 36, 0.92));
  box-shadow: 0 24px 44px rgba(0, 150, 36, 0.35);
}

.portrait-photo {
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(0, 200, 83, 0.3));
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.portrait-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.75);
  animation: floatParticle 6s ease-in-out infinite;
}

.portrait-particles span:nth-child(1) {
  top: 22%;
  left: 20%;
}

.portrait-particles span:nth-child(2) {
  top: 30%;
  right: 18%;
  animation-delay: 1.2s;
}

.portrait-particles span:nth-child(3) {
  bottom: 22%;
  left: 24%;
  animation-delay: 2s;
}

.portrait-particles span:nth-child(4) {
  bottom: 18%;
  right: 24%;
  animation-delay: 0.8s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

.creator-summary,
.floating-metrics {
  display: grid;
  gap: 14px;
}

.creator-summary strong {
  font-size: 1.25rem;
}

.floating-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.floating-metrics article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.floating-metrics strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.section-panel {
  margin-top: 48px;
  border-radius: var(--radius-xl);
}

.trust-strip {
  padding-top: 24px;
  padding-bottom: 24px;
}

.trust-panel {
  padding: 16px 24px;
}

.trust-copy {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.trust-marquee-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 20px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72) 12%, rgba(255, 255, 255, 0.72) 88%, rgba(255, 255, 255, 0.94)),
    linear-gradient(180deg, rgba(0, 200, 83, 0.06), rgba(255, 255, 255, 0.3));
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: trustMarquee 30s linear infinite;
  will-change: transform;
}

.trust-marquee-shell:hover .trust-marquee-track {
  animation-play-state: paused;
}

.trust-logo-card {
  position: relative;
  min-width: 214px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.05);
  cursor: default;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.trust-logo-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.6));
  opacity: 0;
  transition: opacity 180ms ease;
}

.trust-logo-card::after {
  content: none;
}

.trust-logo-card img {
  position: relative;
  z-index: 1;
  max-width: 160px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.96);
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.trust-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.08);
}

.trust-logo-card:hover::before {
  opacity: 1;
}

.trust-logo-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.trust-logo-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green-dark);
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

/* Videos section: tighter heading so tabs don't get pushed far */
#videos .section-heading h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.05;
  max-width: 850px;
}

#videos .section-heading {
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 440px;
  margin: 0;
}

.stats-grid,
.performance-cards,
.pricing-grid,
.demographics-layout,
.logo-wall {
  display: grid;
  gap: 20px;
}

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

.performance-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.metric-card,
.pricing-card,
.chart-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stat-card:hover,
.metric-card:hover,
.pricing-card:hover,
.video-card:hover,
.chart-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 32px 64px rgba(0, 200, 83, 0.12);
}

.stat-card span,
.metric-card span {
  display: block;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.stat-card strong,
.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
}

.stat-card.accent {
  background: linear-gradient(180deg, rgba(0, 200, 83, 0.12), rgba(255, 255, 255, 0.82));
}

.social-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.social-brand-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-brand-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.1);
}

.social-brand-card.disabled {
  opacity: 0.72;
  pointer-events: none;
}

.social-brand-card.disabled:hover {
  transform: none;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
}

.social-brand-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 24px rgba(17, 17, 17, 0.14);
}

.social-brand-icon svg {
  width: 25px;
  height: 25px;
}

.social-brand-copy {
  display: grid;
  gap: 3px;
}

.social-brand-copy strong {
  font-size: 1rem;
}

.social-brand-copy span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.social-brand-card.youtube .social-brand-icon,
.footer-socials a.youtube {
  background: #ff0000;
}

.social-brand-card.youtube:hover {
  border-color: rgba(255, 0, 0, 0.22);
  box-shadow: 0 24px 44px rgba(255, 0, 0, 0.16);
}

.social-brand-card.instagram .social-brand-icon,
.footer-socials a.instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 24%, #d62976 58%, #962fbf 82%, #4f5bd5 100%);
}

.social-brand-card.instagram:hover {
  border-color: rgba(214, 41, 118, 0.22);
  box-shadow: 0 24px 44px rgba(214, 41, 118, 0.16);
}

.social-brand-card.x-brand .social-brand-icon {
  background: #000000;
}

.social-brand-card.x-brand:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.12);
}

.social-brand-card.discord .social-brand-icon,
.footer-socials a.discord {
  background: #5865f2;
}

.social-brand-card.discord:hover {
  border-color: rgba(88, 101, 242, 0.22);
  box-shadow: 0 24px 44px rgba(88, 101, 242, 0.16);
}

.social-brand-card.facebook .social-brand-icon {
  background: #1877f2;
}

.social-brand-card.facebook:hover {
  border-color: rgba(24, 119, 242, 0.22);
  box-shadow: 0 24px 44px rgba(24, 119, 242, 0.16);
}

.social-brand-card.linkedin .social-brand-icon,
.footer-socials a.linkedin {
  background: #0a66c2;
}

.social-brand-card.linkedin:hover {
  border-color: rgba(10, 102, 194, 0.22);
  box-shadow: 0 24px 44px rgba(10, 102, 194, 0.16);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 17, 17, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--green-dark);
  border-color: rgba(0, 200, 83, 0.22);
}

.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.12);
}

.performance-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.bars-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.bars-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.bars-header span {
  color: var(--text-soft);
}

.bar-list {
  display: grid;
  gap: 18px;
}

.bar-row {
  display: grid;
  gap: 10px;
}

.bar-row div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.bar-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.26);
  transition: width 1200ms cubic-bezier(0.2, 1, 0.2, 1);
}

.bar-track.in-view span {
  width: var(--bar-width);
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-points {
  display: grid;
  gap: 16px;
}

.about-points article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.video-card.featured {
  transform: none;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: rgba(0, 200, 83, 0.14);
  background: rgba(255, 255, 255, 0.98);
}

.video-carousel {
  display: grid;
  gap: 24px;
}

.content-tabs {
  display: grid;
  gap: 24px;
}

.content-tab-list {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: fit-content;
  max-width: 920px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(12px);
}

.content-tab {
  height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.content-tab:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: rgba(0, 200, 83, 0.06);
}

.content-tab.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.28);
  transform: translateY(-1px);
}

.content-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  min-width: 0;
}

.content-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.video-carousel-topbar,
.video-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.video-carousel-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 4px;
}

.video-carousel-copy {
  display: grid;
  gap: 6px;
  max-width: 720px;
}

.video-carousel-copy span {
  color: var(--green-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.video-carousel-copy strong {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.45;
}

.video-carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 200, 83, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  box-shadow: 0 16px 28px rgba(0, 200, 83, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 20px 36px rgba(0, 200, 83, 0.22);
}

.carousel-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.video-carousel-viewport {
  overflow: hidden;
  border-radius: 30px;
  padding: 8px 8px 12px;
  background: transparent;
}

.video-carousel-viewport.dragging {
  cursor: grabbing;
}

.video-carousel-track {
  display: flex;
  gap: 28px;
  align-items: stretch;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.video-slide {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: none;
  min-width: 0;
  height: 100%;
}

.video-slide.featured {
  transform: none;
}

.youtube-card {
  border-top: 4px solid #ff0000;
}

.instagram-card {
  border-top: 4px solid #d62976;
}

.video-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-thumb-shell {
  aspect-ratio: 16 / 9;
  position: relative;
  background: #0f1110;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 320ms ease;
}

.video-link:hover .video-thumb {
  transform: scale(1.06);
}

.play-badge,
.video-length {
  position: absolute;
  z-index: 1;
}

.play-badge {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-size: 1.3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-length {
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.video-meta {
  padding: 20px 22px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
}

.video-meta strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta > span:last-child {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta::after {
  content: "Watch Now";
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.video-stats-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.video-stats-line span {
  color: var(--white);
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-pill.youtube {
  background: #ff0000;
}

.platform-pill.instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 24%, #d62976 58%, #962fbf 82%, #4f5bd5 100%);
}

.platform-pill.brand {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.instagram-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(214, 41, 118, 0.06), rgba(79, 91, 213, 0.18));
}

.instagram-play {
  color: #d62976;
}

.reel-meta {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.brand-card {
  border-top: 4px solid var(--green);
}

.brand-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 200, 83, 0.08), rgba(0, 150, 36, 0.22));
}

.brand-badge-card {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 2px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 150, 36, 0.16);
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

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

.chart-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.chart-card.span-two {
  grid-column: span 2;
}

.donut-chart {
  width: 260px;
  height: 260px;
  margin: 10px auto 24px;
  filter: drop-shadow(0 24px 44px rgba(0, 122, 255, 0.14));
}

.donut-segment {
  stroke-linecap: butt;
  transition: opacity 200ms ease;
}

.donut-segment.male {
  stroke: #007AFF;
  stroke-dasharray: 341.8 503;
}
@media (prefers-reduced-motion: no-preference) {
  .donut-segment.male { animation: drawMale 1s cubic-bezier(0.1, 0.8, 0.2, 1) forwards; }
}

.donut-segment.female {
  stroke: #FF2D55;
  stroke-dasharray: 160.85 503;
  stroke-dashoffset: -341.8;
}
@media (prefers-reduced-motion: no-preference) {
  .donut-segment.female { animation: drawFemale 1s cubic-bezier(0.1, 0.8, 0.2, 1) forwards; }
}

.donut-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: opacity 200ms ease;
}
@media (prefers-reduced-motion: no-preference) {
  .donut-label { animation: fadeIn 0.5s ease-out 0.8s forwards; opacity: 0; }
}

.donut-label.male-label {
  fill: #ffffff;
}

.donut-label.female-label {
  fill: #ffffff;
}

.donut-label-title {
  font-weight: 800;
  font-size: 14px;
}

.donut-label-sub {
  font-weight: 600;
  font-size: 11px;
  opacity: 0.9;
}

@keyframes drawMale {
  from { stroke-dasharray: 0 503; }
  to { stroke-dasharray: 341.8 503; }
}

@keyframes drawFemale {
  from { stroke-dasharray: 0 503; stroke-dashoffset: 0; }
  to { stroke-dasharray: 160.85 503; stroke-dashoffset: -341.8; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.gender-chart-shell {
  display: grid;
  place-items: center;
  position: relative;
}

.gender-chart-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.06);
  z-index: 1;
}

.gender-chart-center strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.gender-chart-center span {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.legend,
.interest-tags,
.package-note,
.contact-highlights,
.footer-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legend span,
.interest-tags span,
.package-note span,
.contact-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.interest-tags span {
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 253, 249, 0.9));
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.interest-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 83, 0.18);
  box-shadow: 0 16px 28px rgba(0, 200, 83, 0.1);
}

.tag-icon {
  font-style: normal;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.1);
  color: var(--green-dark);
  font-size: 0.92rem;
  line-height: 1;
}

.demographic-legend {
  justify-content: center;
}

.legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.legend-chip:hover,
.legend-chip.active {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 83, 0.22);
  box-shadow: 0 16px 28px rgba(0, 200, 83, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-a {
  background: var(--green);
}

.dot-b {
  background: #53d67f;
}

.dot-c {
  background: #9be6b4;
}

.dot-d {
  background: #d5f5df;
}
 
.dot-total {
  background: linear-gradient(135deg, var(--green), #53d67f);
}

.country-list {
  display: grid;
  gap: 14px;
}

.country-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease;
}

.country-row:hover,
.country-row.active {
  transform: translateX(4px);
  border-bottom-color: rgba(0, 200, 83, 0.18);
}

.country-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.country-flag {
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1;
}

.country-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.country-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.country-bar {
  width: 164px;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.country-bar span {
  display: block;
  width: var(--country-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  box-shadow: 0 0 16px rgba(0, 200, 83, 0.18);
}

.currency-switcher {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.switcher-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
}

.switcher-toggle {
  display: flex;
  background: rgba(17, 17, 17, 0.05);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.02);
}

.switcher-btn {
  border: 0;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--text-soft);
  transition: all 240ms ease;
}

.switcher-btn.active {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.pricing-card {
  position: relative;
  background: var(--panel);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.pricing-card.featured {
  background: linear-gradient(180deg, var(--theme-soft, rgba(0, 200, 83, 0.14)), rgba(255, 255, 255, 0.9));
  transform: translateY(-12px);
  border-color: var(--theme-accent, rgba(0, 200, 83, 0.24));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.pricing-badge {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-soft);
  line-height: 1.8;
  display: grid;
  gap: 10px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.pricing-card li::before {
  content: "→";
  color: currentColor;
  opacity: 0.5;
  font-weight: 800;
}

/* Themed Pricing Cards */
.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.pricing-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.pricing-card-icon svg {
  width: 24px;
  height: 24px;
}

.pricing-card-type {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}

/* YouTube Theme */
.card-youtube {
  --theme-accent: var(--yt-brand);
  --theme-soft: var(--yt-brand-soft);
  border-top: 6px solid var(--yt-brand);
}
.card-youtube .pricing-card-type {
  background: var(--yt-brand-soft);
  color: var(--yt-brand);
}
.card-youtube .pricing-card-icon {
  color: var(--yt-brand);
}
.card-youtube .pricing-price {
  color: var(--yt-brand);
}

/* Instagram Theme */
.card-instagram {
  --theme-accent: var(--ig-brand);
  --theme-soft: var(--ig-brand-soft);
  border-top: 6px solid var(--ig-brand);
}
.card-instagram .pricing-card-type {
  background: var(--ig-brand-soft);
  color: var(--ig-brand);
}
.card-instagram .pricing-card-icon {
  color: var(--ig-brand);
}
.card-instagram .pricing-price {
  color: var(--ig-brand);
}

/* Live Theme */
.card-live {
  --theme-accent: var(--live-brand);
  --theme-soft: var(--live-brand-soft);
  border-top: 6px solid var(--live-brand);
}
.card-live .pricing-card-type {
  background: var(--live-brand-soft);
  color: var(--live-brand);
}
.card-live .pricing-card-icon {
  color: var(--live-brand);
}
.card-live .pricing-price {
  color: var(--live-brand);
}

/* Custom Theme */
.card-custom {
  --theme-accent: var(--custom-brand);
  --theme-soft: var(--custom-brand-soft);
  border-top: 6px solid var(--custom-brand);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), white);
}
.card-custom .pricing-card-type {
  background: var(--custom-brand-soft);
  color: var(--custom-brand);
}
.card-custom .pricing-card-icon {
  color: var(--custom-brand);
}
.card-custom .pricing-price {
  color: var(--custom-brand);
}

.pricing-price {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.pricing-best-for {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-best-for strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-card .card-cta {
  width: 100%;
  margin-top: 24px;
  background: var(--theme-accent, var(--green));
  border-color: transparent;
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 16px var(--theme-soft, rgba(0, 200, 83, 0.1));
}

.pricing-card .card-cta:hover {
  background: white;
  color: var(--theme-accent, var(--green));
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.package-note {
  margin-top: 24px;
}

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

.logo-wall div {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: rgba(17, 17, 17, 0.48);
  letter-spacing: 0.08em;
}

.email-link {
  display: inline-flex;
  margin: 12px 0 20px;
  font-weight: 800;
  color: var(--green-dark);
}

.contact-location {
  margin: -6px 0 20px;
  color: var(--text-soft);
  font-weight: 700;
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  outline: none;
  transition: all 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 200, 83, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.14);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
}

.contact-form .full-width {
  grid-column: 1 / -1;
  width: 100%;
}

.contact-form button {
  width: fit-content;
}

.contact-form button.full-width {
  width: 100%;
  margin-top: 8px;
}

/* Recruitment Layout */
.recruitment-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

.recruitment-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefits-grid {
  display: grid;
  gap: 24px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.04);
  transition: transform 240ms ease, background 240ms ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.7);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--green);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.recruitment-card {
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.04);
}

.recruitment-card h3 {
  margin: 0 0 32px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .recruitment-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-success-state {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 8px;
  box-shadow: 0 12px 24px rgba(0, 200, 83, 0.2);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-soft);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-links a,
.footer-socials a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  font-weight: 800;
}

.footer-socials a.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.footer-links a:hover,
.footer-socials a:hover {
  transform: translateY(-2px);
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 36px rgba(0, 200, 83, 0.28);
}

.reveal {
  opacity: 1; /* Default visible for stability */
  transition: opacity 700ms ease, transform 700ms ease;
}

/* Only hide if JS is confirmed to be handling the reveal */
.js-enabled .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(36px);
}

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

@media (max-width: 1100px) {
  .hero,
  .performance-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .social-grid,
  .performance-cards,
  .pricing-grid,
  .pricing-grid-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .video-slide {
    width: auto;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .section-heading p {
    max-width: 100%;
  }

  .content-tab-list {
    width: fit-content;
  }

  #videos .section-heading h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 12px;
  }

  .navbar {
    border-radius: 26px;
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-proof,
  .social-grid,
  .social-brand-grid,
  .performance-cards,
  .pricing-grid,
  .pricing-grid-extended,
  .demographics-layout,
  .logo-wall,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .video-carousel-topbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .content-tab-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .content-tab-list::-webkit-scrollbar {
    display: none;
  }

  .content-tab {
    height: 46px;
    padding: 0 20px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  #videos .section-heading h2 {
    font-size: 1.9rem;
  }

  .video-carousel-controls {
    justify-content: flex-end;
  }

  .video-slide {
    width: auto;
  }

  .chart-card.span-two {
    grid-column: auto;
  }

  .creator-portrait {
    min-height: 300px;
  }

  .portrait-ring {
    width: 220px;
    height: 220px;
  }

  .portrait-core {
    width: 150px;
    height: 150px;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .trust-logo-card {
    min-width: 180px;
    height: 82px;
    padding: 16px 18px;
  }

  .trust-logo-card img {
    max-width: 132px;
    max-height: 34px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

/* Modal System */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.modal-overlay:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 42px;
  position: relative;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.12);
  transform: translateY(20px);
  transition: transform 380ms cubic-bezier(0.2, 1, 0.2, 1);
}

.modal-overlay:not([aria-hidden="true"]) .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.05);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  background: rgba(17, 17, 17, 0.1);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin: 6px 0 0;
}

.modal-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border: 0;
}

.modal-form label span {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.modal-form input,
.modal-form textarea {
  background: rgba(17, 17, 17, 0.03);
  border-color: rgba(17, 17, 17, 0.08);
}

.modal-success-state {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  box-shadow: 0 22px 44px rgba(0, 200, 83, 0.24);
}

.modal-success-state h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.modal-success-state p {
  color: var(--text-soft);
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero h1, .hero .hero-tagline, .hero .hero-description,
  .hero-actions .btn,
  .hero-proof div,
  .creator-portrait,
  .portrait-core,
  .portrait-photo img,
  .banner-image,
  .profile-glow,
  .navbar,
  .site-header,
  .aura-ring,
  .portrait-ring {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .reveal,
  .hero h1, .hero .hero-tagline, .hero .hero-description,
  .hero-proof div,
  .navbar {
    transform: none !important;
  }

  .bar-track span {
    width: var(--bar-width);
  }
}

/* =========================================================================
   PREMIUM SMOOTH ANIMATIONS & INTERACTIONS
   ========================================================================= */

/* GLOBAL LOAD ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleInSoft {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInSlow {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* Base Reveal Logic (Scroll Triggers) */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggering reveals */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero Entry Animations */
.hero h1, .hero .hero-tagline, .hero .hero-description {
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .hero-tagline, .hero .hero-description { opacity: 0; }
}
.hero h1 { animation-delay: 0.1s; }
.hero .hero-tagline { animation-delay: 0.2s; }
.hero .hero-description { animation-delay: 0.3s; }

.hero-actions .btn {
  animation: scaleInSoft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-actions .btn { opacity: 0; }
}
.hero-actions .btn-primary { animation-delay: 0.4s; }
.hero-actions .btn-secondary { animation-delay: 0.5s; }

.hero-proof div {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-proof div { opacity: 0; }
}
.hero-proof div:nth-child(1) { animation-delay: 0.6s; }
.hero-proof div:nth-child(2) { animation-delay: 0.7s; }
.hero-proof div:nth-child(3) { animation-delay: 0.8s; }

.creator-portrait {
  animation: scaleInSoft 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.4s;
}
@media (prefers-reduced-motion: no-preference) {
  .creator-portrait { opacity: 0; }
}

.profile-glow {
  animation: fadeInSlow 2s ease forwards;
  animation-delay: 0.2s;
}
@media (prefers-reduced-motion: no-preference) {
  .profile-glow { opacity: 0; }
}

/* Navbar / Sticky Header Enhancements */
.navbar {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media (prefers-reduced-motion: no-preference) {
  .navbar { opacity: 0; }
}

.nav-menu a {
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--green);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.nav-menu a:hover::after,
.nav-menu a.active-nav::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.nav-menu a:hover,
.nav-menu a.active-nav {
  color: var(--text);
}
.nav-menu .nav-cta::after {
  display: none;
}

/* Button Interactions */
.btn {
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
              background 0.25s ease, 
              border-color 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 200, 83, 0.2);
}
.btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}
.btn-primary:hover, .nav-cta:hover {
  box-shadow: 0 22px 42px rgba(0, 200, 83, 0.4);
}

/* Card Hover Interactions */
.video-card, .stat-card, .social-brand-card, .chart-card, .pricing-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.video-card:hover, .stat-card:hover, .social-brand-card:hover, .chart-card:hover, .pricing-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 200, 83, 0.12);
  border-color: rgba(0, 200, 83, 0.35);
}

.video-thumb {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.video-card:hover .video-thumb {
  transform: scale(1.08);
}

/* Donut Chart Animation */
.donut-segment {
  stroke-dasharray: 0 100;
  animation: drawDonut 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes drawDonut {
  to { stroke-dasharray: var(--percent, 100) 100; }
}

/* Background Flow */
@keyframes meshGradient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15px, 15px) scale(1.02); }
}
.ambient {
  animation: meshGradient 8s ease-in-out infinite alternate;
}

/* Carousel Control Bounces */
.carousel-arrow {
  transition: transform 0.2s ease, background 0.2s ease;
}
.carousel-arrow:hover {
  transform: scale(1.1);
}
.carousel-arrow:active {
  transform: scale(0.95);
}

/* Footer Icon Elevate */
.social-brand-icon {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}
.social-brand-card:hover .social-brand-icon {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(0, 200, 83, 0.25));
}

/* Tab Panel Fade */
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.content-panel.active {
  animation: tabFadeIn 0.4s ease forwards;
}

/* Pulse Glow specifically for main CTA buttons (Optional but premium) */
.hero-actions .btn-primary {
  animation: scaleInSoft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, pulseGlow 4s infinite 2s;
}


/* Lenis Specific Styles */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* =========================================================================
   ELITE GLOBAL INTERACTIVE EFFECTS (Hover, Glows & Magnets)
   ========================================================================= */

/* Hero Break Text Animating Gradient */
.hero-break {
  display: block;
  background: linear-gradient(to right, var(--text), #00c853, #111, #00c853, var(--text));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  /* Extra padding lets browser include descenders (g, y, p) in the paint area */
  padding-bottom: 0.15em;
  overflow: visible;
  animation: shineGradient 6s linear infinite;
}
@keyframes shineGradient {
  to { background-position: 200% center; }
}

/* Modern Clip-Path Image Reveal */
.creator-portrait {
  opacity: 1; /* Override previous invisible state */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  animation: revealProfile 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.3s;
}
@keyframes revealProfile {
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

/* Mouse-tracking border glow pseudo-element */
.video-card, .stat-card, .social-brand-card, .benefit-card {
  position: relative;
  overflow: hidden;
}
.video-card::before, .stat-card::before, .social-brand-card::before, .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(0, 200, 83, 0.6),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 10;
}
.video-card:hover::before, .stat-card:hover::before, .social-brand-card:hover::before, .benefit-card:hover::before {
  opacity: 1;
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 200, 83, 0.35);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  animation: floatPulse 4s infinite;
}
.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 200, 83, 0.45);
}
.floating-cta-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .floating-cta {
    padding: 14px;
    bottom: 20px;
    right: 20px;
  }
  .floating-cta-text {
    display: none;
  }
}

/* Hub Modal Specifics — unified, no duplicate */
.hub-overlay {
  z-index: 200;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hub-header {
  margin-bottom: 32px;
  text-align: center;
}
.hub-back {
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: underline;
  transition: color 0.2s;
}
.hub-back:hover {
  color: var(--green);
}
.hub-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 24px;
}

/* Step 1 Options Grid */
.hub-options-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hub-option-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.3s;
}
.hub-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(0, 200, 83, 0.1);
}
.hub-option-icon {
  font-size: 2rem;
}
.hub-option-card strong {
  font-size: 1.2rem;
  margin-bottom: 4px;
  display: block;
  color: var(--text);
}
.hub-option-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Form Styles Extension */
.hub-step[hidden] {
  display: none !important;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem !important;
  color: var(--text) !important;
  cursor: pointer;
  background: rgba(17,17,17,0.03);
  padding: 10px;
  border-radius: 8px;
}
.checkbox-label input {
  width: auto !important;
  margin: 0 !important;
  accent-color: var(--green);
}

@media (max-width: 600px) {
  .hub-modal-content {
    border-radius: 28px 28px 0 0;
    margin-top: auto;
    padding: 32px 20px;
    max-height: 85vh;
  }
  .hub-overlay {
    align-items: flex-end;
    padding: 0;
  }
}

/* =========================================================================
   AURORA PULSE ENERGY EFFECT FOR AVATAR
   ========================================================================= */

/* Floating core animation */
@keyframes floatAvatar {
  0% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
  100% { transform: translate(-50%, -50%) translateY(0px); }
}

.portrait-core {
  animation: floatAvatar 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  z-index: 5;
}

.creator-portrait:hover .portrait-core {
  transform: translate(-50%, -50%) translateY(-3px) scale(1.03);
  box-shadow: 0 32px 56px rgba(0, 200, 83, 0.5);
  animation-play-state: paused; /* stabilize float on hover */
}

/* Aura Container Architecture */
.aura-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

/* Base Ring Styling */
.aura-ring {
  position: absolute;
  inset: -100px; /* extends beyond container */
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 83, 0.4);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.2), inset 0 0 20px rgba(0, 200, 83, 0.1);
  opacity: 0;
  transform: scaleX(0.4) scaleY(0.4); /* start size */
  animation: pulseAura 2.4s ease-out infinite;
}

/* Layered Glow Core behind avatar */
.aura-glow {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 200, 83, 0.5), transparent 70%);
  filter: blur(24px);
  opacity: 0.6;
  animation: pulseGlowCore 4s ease-in-out infinite alternate;
}

/* Timings */
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 0.8s; }
.ring-3 { animation-delay: 1.6s; }

@keyframes pulseAura {
  0% {
    transform: scaleX(0.4) scaleY(0.4);
    opacity: 0.8;
  }
  100% {
    /* 3D elliptical outward expansion */
    transform: scaleX(1.15) scaleY(1.05); 
    opacity: 0;
  }
}

@keyframes pulseGlowCore {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

/* Hover Speedup Reactions */
.creator-portrait:hover .aura-glow {
  opacity: 1;
}

.creator-portrait:hover .aura-ring {
  animation-duration: 1.8s;
  border-color: rgba(0, 255, 100, 0.6);
}

/* =========================================================================
   HUB MODAL PREMIUM FORM STYLING
   ========================================================================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.full-width {
  grid-column: 1 / -1;
}

/* Hub form — reset any contact-form grid/bg leakage */
.hub-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: block !important;   /* override contact-form 2-col grid */
  padding: 0 !important;
}

.hub-form label {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
}

.hub-form label span,
.checkbox-group > span {
  font-family: var(--font-primary), sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-left: 0;
}

.hub-form input,
.hub-form select,
.hub-form textarea {
  height: 52px;
  background: #f9f9f9 !important;
  border: 1px solid rgba(17,17,17,0.12) !important;
  border-radius: 14px !important;
  padding: 0 18px !important;
  font-size: 1rem !important;
  font-family: inherit;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none !important;
}

.hub-form textarea {
  height: auto !important;
  padding: 14px 18px !important;
  min-height: 90px;
}

.hub-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 18px !important;
  padding-right: 44px !important;
  cursor: pointer;
}

.hub-form input:hover,
.hub-form select:hover,
.hub-form textarea:hover {
  background: #f3f3f3 !important;
}

.hub-form input:focus,
.hub-form select:focus,
.hub-form textarea:focus {
  background: var(--white) !important;
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(0,200,83,0.12) !important;
  outline: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.hub-form .checkbox-label {
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(17, 17, 17, 0.02) !important;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.hub-form .checkbox-label:hover {
  border-color: var(--green);
  background: rgba(0, 200, 83, 0.03) !important;
  transform: translateY(-1px);
}

.hub-form .checkbox-label span {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--text) !important;
  margin-left: 0 !important;
}

/* Ensure mobile forms are comfortable single column */
@media (max-width: 650px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Fix Samsung Logo */
img[alt="Samsung logo"] {
  transform: scale(2.2);
  transform-origin: center;
}

/* =========================================================================
   INLINE OPPORTUNITY HUB (Replaced Recruitment)
   ========================================================================= */

.inline-hub-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.inline-hub-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.inline-hub-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.inline-hub-header p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.social-proof-pill {
  display: inline-block;
  background: rgba(0, 200, 83, 0.1);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.inline-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.inline-hub-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-hub-cards .hub-option-card.active {
  border-color: var(--green);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 12px 32px rgba(0, 200, 83, 0.15), inset 4px 0 0 var(--green);
}

.inline-hub-form-container {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(17,17,17,0.04);
}

/* Tools Marquee */
.tools-marquee-container {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(17,17,17,0.06);
  text-align: center;
  overflow: hidden;
}

.tools-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.tools-marquee-shell {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tools-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: toolScroll 40s linear infinite;
}

.tools-marquee-track:hover {
  animation-play-state: paused;
}

.tool-pill {
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(17,17,17,0.04);
  white-space: nowrap;
  font-size: 0.95rem;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  /* Simple Icons are black/monochrome, they will look great in high-contrast on white */
}

.tool-pill span {
  display: inline-block;
}

.tool-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,200,83,0.1);
  border-color: rgba(0,200,83,0.3);
}

@keyframes toolScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .inline-hub-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}



/* =========================================================================
   PREMIUM HUB MODAL — FULL CLEAN REWRITE
   ========================================================================= */

.premium-modal {
  width: 100%;
  max-width: 1000px;
  max-height: 90svh;
  margin: auto;
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  overflow: hidden;           /* keeps rounded corners */
  padding: 0;
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.36s ease;
}

/* Trigger when overlay is visible */
.modal-overlay:not([aria-hidden="true"]) .premium-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header — sticky at top */
.hub-modal-header-sticky {
  flex-shrink: 0;
  background: var(--white);
  z-index: 10;
  padding: 28px 40px 20px;
  border-bottom: 1px solid rgba(17,17,17,0.07);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.hub-modal-header-sticky p.section-kicker {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.hub-modal-header-sticky h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.15;
}

.hub-modal-header-sticky p.hub-subtitle {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0;
}

.hub-modal-header-sticky .modal-close {
  position: relative;
  top: 0;
  right: 0;
  flex-shrink: 0;
  margin-top: 4px;
  background: rgba(17,17,17,0.05);
}

/* Body — scrollable */
.hub-modal-body {
  flex: 1;
  min-height: 0;              /* critical: lets flex child shrink + scroll */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;   /* iOS momentum scroll */
  overscroll-behavior: contain;        /* stop scroll leaking to page */
  padding: 28px 40px 40px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17,17,17,0.2) transparent;
}

.hub-modal-body::-webkit-scrollbar { width: 6px; }
.hub-modal-body::-webkit-scrollbar-thumb { background: rgba(17,17,17,0.2); border-radius: 999px; }

/* Back button */
.hub-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.hub-back:hover { color: var(--green); }

/* Option cards */
.hub-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hub-option-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(17,17,17,0.08);
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.2,1,0.2,1), border-color 0.2s, box-shadow 0.2s;
}
.hub-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 32px rgba(0,200,83,0.12);
}
.hub-option-icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,200,83,0.07);
  border-radius: 14px;
  flex-shrink: 0;
}
.hub-option-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.hub-option-card span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Form columns */
.premium-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.premium-form-layout.single-col {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto 28px;
}
.form-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.premium-form input,
.premium-form select,
.premium-form textarea {
  height: 52px;
  padding: 0 18px !important;
  font-size: 1rem !important;
  border-radius: 14px !important;
  background: #f9f9f9;
  border: 1px solid rgba(17,17,17,0.12);
  color: var(--text);
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.premium-form textarea {
  height: auto;
  padding: 14px 18px !important;
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.12);
  outline: none;
}
.premium-form label span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 8px;
}

/* Deliverable tiles */
.premium-tiles-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.premium-tile {
  background: rgba(17,17,17,0.03);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 12px;
  padding: 11px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  user-select: none;
}
.full-width-tile { flex-basis: 100%; }
.premium-tile input { display: none !important; }
.premium-tile span { font-weight: 600 !important; font-size: 0.92rem !important; color: var(--text) !important; }
.premium-tile:has(input:checked) {
  background: rgba(0,200,83,0.08);
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.premium-tile:has(input:checked) span::before { content: "✓ "; color: var(--green); font-weight: bold; }

/* Footer CTA */
.premium-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(17,17,17,0.07);
}
.response-time { color: var(--text-soft); font-weight: 600; font-size: 0.88rem; }
.btn-large { padding: 16px 32px; font-size: 1.05rem; min-height: 54px; }

/* Success state inside hub */
#hub-success.modal-success-state {
  padding: 56px 24px;
}

/* Responsive */
@media (max-width: 800px) {
  .hub-modal-header-sticky { padding: 20px 24px; }
  .hub-modal-body { padding: 20px 24px 32px; }
  .premium-form-layout { grid-template-columns: 1fr; gap: 16px; }
  .premium-form-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-large { width: 100%; }
}

@media (max-width: 600px) {
  .hub-overlay { align-items: flex-end; padding: 0; }
  .premium-modal {
    border-radius: 28px 28px 0 0;
    max-height: 92svh;
    transform: translateY(100%);
  }
  .modal-overlay:not([aria-hidden="true"]) .premium-modal {
    transform: translateY(0);
  }
}
/* =========================================================================
   RECRUITMENT PORTAL (PREMIUM)
   ========================================================================= */
#recruitment {
  width: 100%;
  padding: 80px 0;
  background: transparent;
}

.portal-container {
  max-width: 1320px !important;
  width: 92% !important;
  margin: 0 auto;
}

/* Header */
.portal-header {
  text-align: center;
  margin-bottom: 56px;
}

.portal-eyebrow {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.portal-title {
  font-size: 56px !important;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.portal-subtitle {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Pill Row */
.portal-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.portal-stat-pill {
  background: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.portal-stat-pill.active {
  background: var(--green) !important;
  color: var(--white) !important;
  border: none;
  box-shadow: 0 10px 24px rgba(0, 200, 83, 0.3);
}

/* Main Grid: 42% / 58% */
.portal-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 32px;
  margin-top: 60px;
  align-items: start;
}

.portal-col-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text);
}

.portal-info {
  position: sticky;
  top: 100px;
}

/* Left Column: Why Join Us Cards */
.portal-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portal-benefit-card {
  background: var(--white);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 24px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  height: 96px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.portal-benefit-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(0,200,83,0.12);
}

.portal-benefit-icon {
  font-size: 2.2rem;
  width: 56px;
  display: flex;
  justify-content: center;
}

.portal-benefit-text strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 2px;
  color: var(--text);
}

.portal-benefit-text span {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* Right Column: Application Form Panel */
.portal-form-panel {
  background: var(--white);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.08);
  border: 1px solid rgba(17,17,17,0.04);
}

.portal-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.portal-form-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.portal-form-header p {
  color: var(--text-soft);
  font-size: 1rem;
}

/* Form Fields */
.portal-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.portal-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal-form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portal-input,
.portal-select,
.portal-textarea {
  height: 56px;
  background: #f9f9f9;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 14px;
  padding: 0 20px;
  font-size: 16px;
  font-family: inherit;
  width: 100% !important;
  transition: all 0.3s ease;
  color: var(--text);
}

.portal-textarea {
  height: auto;
  min-height: 140px;
  padding: 20px;
  resize: vertical;
}

.portal-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  padding-right: 48px;
  cursor: pointer;
}

.portal-input:focus,
.portal-select:focus,
.portal-textarea:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.12);
  outline: none;
}

/* CTA Button */
.portal-submit-btn {
  height: 58px;
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.2);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.portal-submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 32px rgba(0, 200, 83, 0.35);
}

/* Full Width Fields */
.full-width {
  grid-column: 1 / -1;
}

/* Success State */
.portal-success {
  text-align: center;
  padding: 40px 0;
}

.portal-success-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 12px 30px rgba(0, 200, 83, 0.3);
}

/* Tools Marquee */
.portal-tools {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(17,17,17,0.06);
  text-align: center;
}

.portal-tools-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.portal-marquee-shell {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.portal-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: toolScrollPremium 40s linear infinite;
  padding: 10px 0;
}

@keyframes toolScrollPremium {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.portal-tool-pill {
  background: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(17,17,17,0.04);
}

.portal-tool-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1100px) {
  .portal-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .portal-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .portal-title {
    font-size: 38px !important;
  }
  .portal-form-row {
    grid-template-columns: 1fr;
  }
  .portal-benefit-card {
    height: auto;
    padding: 24px;
  }
}
.portal-marquee-shell:hover .portal-marquee-track { animation-play-state: paused; }

/* =========================================================================
   AUDIENCE PROFILE & INTERESTS (Premium Dashboard)
   ========================================================================= */
.audience-profile-card {
  padding: 36px !important;
}

.ap-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17,17,17,0.06);
}

.ap-header h3 {
  font-size: 1.7rem !important;
  font-weight: 800;
  margin-bottom: 6px;
  margin-top: 6px;
  line-height: 1.2 !important;
}

.ap-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}

/* Two-Column Grid */
.ap-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 48px;
  align-items: start;
}

.ap-col-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  margin: 0 0 24px 0;
}

/* Age Progress Bars */
.ap-age-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ap-age-row {}

.ap-age-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.ap-age-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.ap-age-pct {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  font-family: "Space Grotesk", sans-serif;
}

.ap-bar-track {
  height: 8px;
  background: rgba(17,17,17,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.ap-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.ap-age-row.bar-animated .ap-bar-fill {
  width: var(--bar-target);
}

/* Interest Tiles Grid */
.ap-interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ap-interest-tile {
  background: var(--white);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 20px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.2, 1, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  cursor: default;
}

.ap-interest-tile:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(0,200,83,0.12);
}

.ap-interest-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,200,83,0.07);
  border-radius: 16px;
}

.ap-interest-tile span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

/* Sponsor Insight Banner */
.ap-insight-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(0,200,83,0.06), rgba(0,150,36,0.04));
  border: 1px solid rgba(0,200,83,0.15);
  border-radius: 20px;
}

.ap-insight-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ap-insight-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.ap-insight-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 900px) {
  .ap-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ap-interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .ap-interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap-insight-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================================
   CONTACT PREMIUM REDESIGN
   ========================================================================= */

/* Override section padding for contact */
#contact.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-premium-wrap {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 56px;
  align-items: start;
}

/* LEFT COLUMN */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* Contact Info Rows */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
}

.contact-info-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.contact-info-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-info-value.email-link {
  color: var(--green-dark);
  text-decoration: none;
}

.contact-info-value.email-link:hover {
  text-decoration: underline;
}

/* Trust Proof Grid */
.contact-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-trust-card {
  background: var(--white);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.contact-trust-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 32px rgba(0,200,83,0.1);
  transform: translateY(-3px);
}

.contact-trust-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,200,83,0.07);
  border-radius: 12px;
  margin-bottom: 2px;
}

.contact-trust-card strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  line-height: 1;
}

.contact-trust-card span {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* RIGHT COLUMN: Form Panel */
.contact-form-panel {
  background: var(--white);
  padding: 36px;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.07);
  border: 1px solid rgba(17,17,17,0.04);
}

.contact-form-panel-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17,17,17,0.07);
}

.contact-form-panel-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-form-panel-header p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-form-premium {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cfp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cfp-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfp-full { width: 100%; }

.cfp-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.cfp-input {
  height: 52px;
  background: #f9f9f9;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  width: 100%;
  transition: all 0.25s ease;
}

.cfp-input:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.12);
  outline: none;
}

.cfp-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  padding-right: 48px;
  cursor: pointer;
}

.cfp-textarea {
  height: auto;
  min-height: 130px;
  padding: 16px 18px;
  resize: vertical;
}

.cfp-submit-btn {
  width: 100%;
  height: 58px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,200,83,0.25);
  transition: all 0.3s cubic-bezier(0.2,1,0.2,1);
  margin-top: 4px;
}

.cfp-submit-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 16px 40px rgba(0,200,83,0.38);
}

.cfp-trust-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 4px 0 0;
}

/* Success State */
.cfp-success {
  text-align: center;
  padding: 40px 20px;
}

.cfp-success-icon {
  width: 68px;
  height: 68px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  box-shadow: 0 12px 28px rgba(0,200,83,0.3);
}

.cfp-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cfp-success p {
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1000px) {
  .contact-premium-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-body { max-width: 100%; }
}

@media (max-width: 640px) {
  .cfp-row { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 24px; }
  .contact-trust-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   HUB MODAL — NEW MULTI-EXPERIENCE SYSTEM
   ========================================================================= */

/* Dynamic header states */
.hub-header-state { transition: opacity 0.25s ease; }

/* Step badge pills */
.hub-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.sponsor-badge { background: rgba(0,200,83,0.1); color: var(--green-dark); }
.team-badge    { background: rgba(99,102,241,0.1); color: #4f46e5; }
.other-badge   { background: rgba(245,158,11,0.1); color: #d97706; }

/* Option cards — enhanced arrows + per-theme accent */
.hub-option-card {
  display: flex; align-items: center; gap: 18px;
  width: 100%; padding: 20px 24px; text-align: left;
  border: 1.5px solid rgba(17,17,17,0.08); border-radius: 20px;
  background: #fff; cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.2,1,0.2,1), border-color 0.2s, box-shadow 0.2s;
}
.hub-option-text { flex: 1; }
.hub-option-arrow { font-size: 1.1rem; color: var(--text-soft); transition: transform 0.2s, color 0.2s; }
.hub-option-card:hover .hub-option-arrow { transform: translateX(4px); color: var(--green); }
.sponsor-card:hover { border-color: var(--green); box-shadow: 0 12px 32px rgba(0,200,83,0.12); }
.team-card:hover    { border-color: #6366f1; box-shadow: 0 12px 32px rgba(99,102,241,0.1); }
.other-card:hover   { border-color: #f59e0b; box-shadow: 0 12px 32px rgba(245,158,11,0.1); }
.sponsor-icon { background: rgba(0,200,83,0.08)  !important; }
.team-icon    { background: rgba(99,102,241,0.08) !important; }
.other-icon   { background: rgba(245,158,11,0.08) !important; }

/* Trust strip — Sponsorship */
.hub-trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  align-items: center; padding: 14px 20px;
  background: linear-gradient(135deg, rgba(0,200,83,0.05), rgba(0,150,36,0.03));
  border: 1px solid rgba(0,200,83,0.12);
  border-radius: 14px; margin-bottom: 24px;
  font-size: 0.88rem; font-weight: 600; color: var(--text);
}
.hub-trust-dot { color: var(--text-soft); }

/* Roles strip — Team */
.hub-roles-strip {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.hub-roles-strip span {
  font-size: 0.82rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.15);
  color: #4f46e5;
}

/* Other intro */
.hub-other-intro {
  padding: 16px 20px; border-radius: 14px;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.12);
  margin-bottom: 24px;
}
.hub-other-intro p { margin: 0; font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }

/* ── HF FORM SYSTEM (clean, no leakage) ── */
.hub-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: block !important;
  padding: 0 !important;
}

.hf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.hf-group { display: flex; flex-direction: column; gap: 8px; }
.hf-full  { grid-column: 1 / -1; }

.hf-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
}
.hf-optional { font-size: 10px; font-weight: 500; color: var(--text-soft); text-transform: none; letter-spacing: 0; }

.hf-input {
  height: 50px;
  background: #f4f4f4;
  border: 1.5px solid transparent;
  border-radius: 13px;
  padding: 0 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  width: 100%;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.hf-input:hover  { background: #ececec; }
.hf-input:focus  { background: #fff; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,200,83,0.12); }

.hf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 17px !important;
  padding-right: 42px !important;
  cursor: pointer;
}

.hf-textarea     { height: auto !important; min-height: 100px; padding: 14px 16px !important; resize: vertical; }
.hf-textarea-lg  { min-height: 140px; }

/* Deliverable / Tool tiles */
.hf-section       { margin-bottom: 20px; }
.hf-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text); margin: 0 0 12px; }
.hf-tiles         { display: flex; flex-wrap: wrap; gap: 8px; }
.hf-tile {
  display: flex; align-items: center;
  padding: 9px 16px; border-radius: 10px;
  border: 1.5px solid rgba(17,17,17,0.09);
  background: #f4f4f4;
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  cursor: pointer; user-select: none;
  transition: all 0.2s ease;
}
.hf-tile input { display: none; }
.hf-tile:hover { border-color: var(--green); background: rgba(0,200,83,0.05); }
.hf-tile:has(input:checked) {
  background: rgba(0,200,83,0.1);
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.hf-tile:has(input:checked) span::before { content: "✓ "; color: var(--green); }
.hf-tile-wide { flex-basis: 100%; }

/* Footer + CTA */
.hf-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0 0;
  border-top: 1px solid rgba(17,17,17,0.07);
  margin-top: 8px; flex-wrap: wrap;
}
.hf-response-note { font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }

.hf-submit {
  display: flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px;
  border-radius: 14px; border: none;
  font-size: 1rem; font-weight: 800;
  font-family: inherit; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2,1,0.2,1), box-shadow 0.25s;
  width: auto;
}
.sponsor-submit { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; box-shadow: 0 8px 24px rgba(0,200,83,0.3); }
.sponsor-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,200,83,0.4); }
.team-submit    { background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; box-shadow: 0 8px 24px rgba(99,102,241,0.28); }
.team-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(99,102,241,0.38); }
.other-submit   { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; box-shadow: 0 8px 24px rgba(245,158,11,0.28); }
.other-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(245,158,11,0.38); }
.hub-close-btn  { background: var(--green); color: #fff; width: 100% !important; }

/* Success state */
.hub-success-state {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 64px 24px;
}
.hub-success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800;
  box-shadow: 0 20px 40px rgba(0,200,83,0.28);
  margin-bottom: 20px;
}
.hub-success-state h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 8px; }
.hub-success-state p  { color: var(--text-soft); margin: 0; }

/* Mobile */
@media (max-width: 640px) {
  .hf-grid { grid-template-columns: 1fr; }
  .hf-footer { flex-direction: column; align-items: stretch; }
  .hf-submit { width: 100%; }
}

/* ══ EASTER EGG STYLES ══ */
.easter-egg-flash {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease-out;
}
.easter-egg-shake {
  animation: eeShake 0.3s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes eeShake {
  0% { transform: translate3d(0, 0, 0); }
  20% { transform: translate3d(-10px, 5px, 0); }
  40% { transform: translate3d(10px, -5px, 0); }
  60% { transform: translate3d(-5px, 5px, 0); }
  80% { transform: translate3d(5px, -5px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

#ee-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  overflow: hidden;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
}
#ee-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.ee-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ee-phase-1, .ee-phase-2, .ee-phase-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100vw;
  text-align: center;
  pointer-events: none;
}
.ee-phase-1.show, .ee-phase-2.show, .ee-phase-3.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.ee-phase-1, .ee-phase-2 { transform: translate(-50%, -50%) scale(0.95); }

.ee-phase-1 h2 { font-size: clamp(1.8rem, 5vw, 3rem); letter-spacing: 5px; color: #fff; text-shadow: 0 0 20px var(--green); margin: 0; }
.ee-phase-2 h2 { font-size: clamp(2rem, 8vw, 5rem); letter-spacing: 2px; color: var(--green); text-shadow: 0 0 30px var(--green); margin: 0 0 10px; }
.ee-phase-2 p { font-size: clamp(1rem, 3vw, 1.5rem); color: #fff; font-family: "Manrope", sans-serif; margin: 0; }

.ee-phase-3 .ee-rotating-msg {
  font-size: clamp(1.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 40px rgba(0, 200, 83, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.ee-phase-3 .ee-rotating-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.ee-reward {
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid var(--green);
  padding: 20px 40px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.3);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease 1s;
}
.ee-phase-3.show .ee-reward {
  opacity: 1;
  transform: scale(1);
}

.ee-reward h3 { margin: 0 0 10px; font-size: 1.2rem; color: #fff; }
.ee-reward .btn { background: var(--green); color: #000; box-shadow: 0 0 20px var(--green); cursor: pointer; border: none; }
.ee-reward .btn:hover { background: #fff; box-shadow: 0 0 30px #fff; }

.ee-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ee-particle {
  position: absolute;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  pointer-events: none;
}

.easter-egg-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 15px var(--green);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ee-rare h2 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: #fff;
  text-shadow: 0 0 50px var(--green), 0 0 100px var(--green);
}
