/* ============================================================
   MM4U Agency — main.css
   Shared design system for all pages
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand */
  --orange: #f84618;
  --coral:  #fd662a;
  --red:    #f22103;

  /* Dark theme (default) */
  --bg:     #070706;
  --bg2:    #0e0d0b;
  --text:   #f0ece0;
  --muted:  rgba(240,236,224,.42);
  --border: rgba(240,236,224,.07);
  --border2:rgba(240,236,224,.13);
  --glass:  rgba(255,255,255,.045);
  --glass-b:rgba(255,255,255,.075);
  --shadow: rgba(0,0,0,.55);
  --blob1:  rgba(248,70,24,.15);
  --blob2:  rgba(242,33,3,.10);
  --blob3:  rgba(253,102,42,.08);

  /* Spacing */
  --pad: 60px;
  --sec: 80px;

  /* Easing */
  --ease: cubic-bezier(.16,1,.3,1);
}

[data-theme="light"] {
  --bg:     #faf9f5;
  --bg2:    #eceae1;
  --text:   #0a0906;
  --muted:  rgba(10,9,6,.55);
  --border: rgba(10,9,6,.1);
  --border2:rgba(10,9,6,.18);
  --glass:  rgba(255,255,255,.8);
  --glass-b:rgba(255,255,255,.95);
  --shadow: rgba(0,0,0,.13);
  --blob1:  rgba(248,70,24,.08);
  --blob2:  rgba(242,33,3,.06);
  --blob3:  rgba(253,102,42,.05);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  transition: background .4s var(--ease), color .4s var(--ease);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Background Stage ── */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob-a, .blob-b, .blob-c {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}

.blob-a {
  width: 600px; height: 600px;
  top: -180px; left: -120px;
  background: var(--blob1);
  animation: drift-a 22s ease-in-out infinite alternate;
}

.blob-b {
  width: 480px; height: 480px;
  top: 40%; right: -100px;
  background: var(--blob2);
  animation: drift-b 28s ease-in-out infinite alternate;
}

.blob-c {
  width: 360px; height: 360px;
  bottom: -120px; left: 35%;
  background: var(--blob3);
  animation: drift-c 18s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, 120px) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, -90px) scale(1.08); }
}
@keyframes drift-c {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -60px) scale(1.15); }
}

/* ── Custom Cursor ── */
#cur-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform .2s var(--ease), opacity .15s;
}

#cur-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .35s var(--ease), height .35s var(--ease),
              background .35s var(--ease), border-radius .35s var(--ease);
}

body.hov #cur-dot {
  transform: translate(-50%, -50%) scale(0);
}

body.hov #cur-ring {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.12);
}

/* ── Glass utility ── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem var(--pad);
  transition: padding .5s var(--ease), background .5s var(--ease), backdrop-filter .5s;
}

.nav.stuck {
  padding: .9rem var(--pad);
  background: rgba(7,7,6,.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
}

[data-theme="light"] .nav.stuck {
  background: rgba(250,249,245,.9);
}

/* Nav sobre hero full-screen en light mode: forzar colores blancos */
[data-theme="light"] .has-full-hero .nav:not(.stuck) .nav-links a {
  color: rgba(255,255,255,.6);
}
[data-theme="light"] .has-full-hero .nav:not(.stuck) .nav-links a:hover,
[data-theme="light"] .has-full-hero .nav:not(.stuck) .nav-links a.active {
  color: #fff;
}
[data-theme="light"] .has-full-hero .nav:not(.stuck) .ctrl {
  color: rgba(255,255,255,.45);
  border-color: rgba(255,255,255,.22);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.nav-brand img {
  height: 34px;
  width: auto;
  transition: opacity .3s;
}


.nav-wordmark {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .7;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,236,224,.45);
  position: relative;
  transition: color .3s;
}

[data-theme="light"] .nav-links a { color: rgba(10,9,6,.4); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after { transform: scaleX(1); }

.nav-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ctrl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,236,224,.38);
  padding: .35rem .7rem;
  border: 1px solid rgba(240,236,224,.12);
  border-radius: 100px;
  transition: color .3s, border-color .3s;
}

[data-theme="light"] .ctrl {
  color: rgba(10,9,6,.35);
  border-color: rgba(10,9,6,.12);
}

.ctrl:hover {
  color: var(--text);
  border-color: rgba(248,70,24,.4);
}

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 401;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, background .3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 390;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  padding: var(--pad);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.nav-mobile-links a {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.04em;
  color: var(--text);
  text-decoration: none;
  opacity: .5;
  transition: opacity .3s, color .3s;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  color: var(--orange);
  opacity: 1;
}

.nav-mobile-controls {
  display: flex;
  gap: 1rem;
}

.nav-mobile-close {
  position: absolute;
  top: 1.75rem;
  right: var(--pad);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px;
  cursor: none;
  transition: color .25s;
}

.nav-mobile-close:hover { color: var(--text); }

/* ── Hero (full viewport — index.html) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 100px;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
}

.hero-iso {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 860px;
  max-width: 62vw;
  opacity: .1;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

[data-theme="light"] .hero-iso {
  opacity: .07;
  filter: invert(1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(248,70,24,.3);
  border-radius: 100px;
  padding: .4rem 1rem;
  margin-bottom: 2.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-h {
  font-size: clamp(3.8rem, 9.5vw, 9.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-h span { display: block; }

.hero-h .accent { color: var(--orange); }

.hero-sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scroll-run 2s ease-in-out infinite;
}

@keyframes scroll-run {
  0%   { top: -100%; }
  50%  { top: 0%; }
  100% { top: 100%; }
}

/* ── Page Hero (inner pages — 55vh) ── */
.page-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--pad) * 2) var(--pad) var(--pad);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.page-hero .hero-h {
  font-size: clamp(3.5rem, 8vw, 9rem);
}

.page-hero .hero-sub {
  margin-top: 1.5rem;
  max-width: 540px;
}

/* ── Buttons ── */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #000;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  border: none;
  transition: background .25s, transform .2s var(--ease), box-shadow .25s;
  cursor: none;
}

.btn-fill:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(248,70,24,.35);
}

.btn-fill:active { transform: translateY(0); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .88rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--border2);
  transition: border-color .25s, color .25s, background .25s, transform .2s;
  cursor: none;
}

.btn-line:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(248,70,24,.06);
  transform: translateY(-2px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .25s, transform .2s, box-shadow .25s;
  cursor: none;
}

.btn-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.3);
}

/* ── Sections ── */
.sec {
  padding: var(--sec) var(--pad);
  position: relative;
  z-index: 1;
}

.sec-alt {
  background: var(--bg2);
}

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.sec-h {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Cards ── */
.card {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}

.card:hover {
  border-color: rgba(248,70,24,.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow);
}

.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

.card-icon svg {
  width: 100%; height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
}

.card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: .6rem;
}

.card-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SVG Icon draw-in animation ── */
.svg-draw {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s var(--ease);
}

.on .svg-draw {
  stroke-dashoffset: 0;
}

/* ── Service cards ── */
.svc-card {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  opacity: 0;
  transform: translateY(42px);
}

.svc-card.on {
  opacity: 1;
  transform: translateY(0);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

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

.svc-card:hover {
  border-color: rgba(248,70,24,.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px var(--shadow);
}

.svc-card a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1.2rem;
  transition: gap .25s;
}

.svc-card a:hover { gap: .7rem; }

/* Light mode: card contrast improvements */
[data-theme="light"] .card,
[data-theme="light"] .svc-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.06);
}
[data-theme="light"] .card:hover,
[data-theme="light"] .svc-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 0 0 1px rgba(248,70,24,.2);
}

/* ── Scroll Reveal ── */
[data-r] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-r].on {
  opacity: 1;
  transform: translateY(0);
}

[data-r][data-delay="1"] { transition-delay: .1s; }
[data-r][data-delay="2"] { transition-delay: .2s; }
[data-r][data-delay="3"] { transition-delay: .3s; }
[data-r][data-delay="4"] { transition-delay: .4s; }
[data-r][data-delay="5"] { transition-delay: .5s; }
[data-r][data-delay="6"] { transition-delay: .6s; }

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: run 22s linear infinite;
}

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

.m-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .25s;
}

.m-item:hover { color: var(--text); }

.m-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ── Stats / Counters ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.stat-n {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Productions list ── */
.prod-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.prod-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.prod-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, rgba(248,70,24,.12) 0%, rgba(242,33,3,.08) 100%);
  border: 1px solid rgba(248,70,24,.2);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(248,70,24,.15), transparent 70%);
  pointer-events: none;
}

.cta-band .sec-h { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: .75rem; }
.cta-band .sec-sub { margin: 0 auto 2.5rem; text-align: center; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin: 2.5rem 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--bg2);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}

.step-desc {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Includes list ── */
.includes-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

.inc-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(248,70,24,.1);
  border: 1px solid rgba(248,70,24,.2);
  border-radius: 100px;
  padding: .35rem .85rem;
}

/* ── Service full section ── */
.svc-full {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.svc-full-num {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--orange);
  opacity: .15;
  line-height: 1;
  margin-bottom: -1rem;
  letter-spacing: -.05em;
}

.svc-full-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.svc-full-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Influencer category pills ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.cat-pill {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease);
  cursor: default;
}

.cat-pill:hover {
  border-color: rgba(248,70,24,.35);
  transform: translateY(-3px);
}

.cat-pill svg {
  width: 28px; height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-name {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── AI Character cards — Portrait Editorial ── */
.chars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 3rem;
}

.chars-grid-bottom {
  margin-top: .75rem;
}

.char-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--bg2);
  cursor: none;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.char-card:hover {
  transform: scale(1.025) translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,.6);
  z-index: 2;
}

.char-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .6s var(--ease);
}

.char-card:hover .char-img {
  transform: scale(1.04);
}

/* Gradient overlay — fades to black at bottom */
.char-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,7,6,.96) 0%,
    rgba(7,7,6,.5)  35%,
    transparent     65%
  );
  pointer-events: none;
}

/* Character images */
.char-img.flayla   { background-image: url('../assets/img/ai-influencers/flayla/flayla.jpg'); background-color: #0d0605; }
.char-img.odeza    { background-image: url('../assets/img/ai-influencers/odeza/odeza.jpg');   background-color: #080509; }
.char-img.klaus    { background-image: url('../assets/img/ai-influencers/klaus/klaus.jpg');   background-color: #050a0e; }
.char-img.lediable { background-image: url('../assets/img/ai-influencers/lediable/lediable.jpg'); background-color: #080404; }
.char-img.aria-ph  { background: linear-gradient(160deg, #1c1917 0%, #0c0a09 100%); }

/* AI hero background */
.ai-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/ai-influencers/hero/hero.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
  pointer-events: none;
}
/* Dark overlay — fixed rgba, never changes with theme */
.ai-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1;
  pointer-events: none;
}

/* Character info strip */
.char-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.char-handle {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,236,224,.5);
  margin-bottom: .3rem;
}

.char-name {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: .35rem;
}

.char-tagline {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
}

.char-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1rem;
}

.char-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .22rem .65rem;
  color: rgba(240,236,224,.7);
  backdrop-filter: blur(8px);
}

.char-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border-radius: 100px;
  padding: .45rem 1rem;
  transition: background .25s, gap .25s;
}

.char-cta:hover {
  background: var(--coral);
  gap: .6rem;
}

/* Character social icons */
.char-socials {
  display: flex;
  gap: .4rem;
  margin-top: .6rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.char-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  transition: background .25s, border-color .25s;
  flex-shrink: 0;
}
.char-socials a:hover { background: var(--orange); border-color: var(--orange); }
.char-socials svg { width: 12px; height: 12px; fill: #fff; }

/* Full-screen page hero */
.page-hero--full {
  min-height: 100vh;
  height: 100vh;
  justify-content: flex-end;
  padding-bottom: 5rem;
}
.page-hero--full::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 35%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.page-hero--full .page-hero-inner { position: relative; z-index: 3; }
/* Text always white — background is always dark (image + overlay) */
.page-hero--full .page-hero-h   { color: #fff; }
.page-hero--full .page-hero-sub { color: rgba(255,255,255,.72); }
.page-hero--full .eyebrow       { color: var(--orange); }

/* ── Ar.ia — Coming Soon (wide card) ── */
.char-card--soon {
  aspect-ratio: unset;
  height: 200px;
  grid-column: 1 / -1;
}

.char-card--soon .char-img.aria-ph {
  background: linear-gradient(100deg, #111 0%, #1a1715 60%, #070706 100%);
}

.char-card--soon::after {
  background: linear-gradient(to right, rgba(7,7,6,.95) 40%, transparent 100%);
}

.char-card--soon .char-info {
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.soon-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(248,70,24,.4);
  border-radius: 100px;
  padding: .3rem .9rem;
  flex-shrink: 0;
}

.soon-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.soon-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 260px;
}

/* ── AI comparison ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.compare-card {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.compare-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.compare-title {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: .5rem;
}

.compare-sub {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.compare-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05em;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.contact-item-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-item-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-item-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Form ── */
.form-panel {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(248,70,24,.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f84618' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: none;
}

.field select option {
  background: var(--bg2);
  color: var(--text);
}

.submit-btn {
  width: 100%;
  background: var(--orange);
  color: #000;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  cursor: none;
  transition: background .25s, transform .2s var(--ease);
  margin-top: .5rem;
}

.submit-btn:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.submit-btn.success {
  background: #25d366;
  color: #fff;
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 30px rgba(37,211,102,.35);
  text-decoration: none;
  transition: background .25s, transform .2s var(--ease), gap .25s;
  animation: wa-pulse 3s ease-in-out infinite;
}

.wa-float:hover {
  background: #20ba59;
  transform: translateY(-3px) scale(1.02);
  animation: none;
  box-shadow: 0 10px 40px rgba(37,211,102,.45);
}

.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

.wa-float span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,.35); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.55), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.foot-logo { height: 22px; width: auto; }

.foot-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.foot-nav a {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
}

.foot-nav a:hover { color: var(--orange); }

.foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
}

.foot-mail {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  transition: color .25s;
}

.foot-mail:hover { color: var(--orange); }

.foot-copy {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── Footer social icons ── */
.foot-social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.foot-social a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border2);
  border-radius: 50%;
  color: var(--muted);
  transition: color .25s, border-color .25s, transform .25s var(--ease);
}

.foot-social a:hover {
  color: var(--orange);
  border-color: rgba(248,70,24,.4);
  transform: translateY(-2px);
}

.foot-social svg {
  width: 15px; height: 15px;
  fill: currentColor;
}

/* ── Footer bottom strip ── */
.foot-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.foot-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.foot-legal a {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
}

.foot-legal a:hover { color: var(--orange); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 600;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 700px;
  width: calc(100% - 3rem);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .5s var(--ease), opacity .5s;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-text {
  flex: 1;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  min-width: 200px;
}

.cookie-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-btns {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

.cookie-btns .btn-fill,
.cookie-btns .btn-line {
  padding: .65rem 1.25rem;
  font-size: .7rem;
}

/* ── Roster CTA card ── */
.roster-cta {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.roster-cta-top {
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--coral), var(--red));
}

.roster-cta-inner {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.roster-cta-text .sec-h { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: .5rem; }
.roster-cta-text .sec-sub { margin-bottom: 0; font-size: .9rem; }

/* ── Influencer join card ── */
.join-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.join-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: .5rem;
}

.join-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
}

/* ── How it works steps (influencers page) ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.how-step {
  position: relative;
  padding-top: .5rem;
}

.how-num {
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--orange);
  opacity: .18;
  line-height: 1;
  margin-bottom: -.5rem;
  letter-spacing: -.05em;
}

.how-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.how-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── AI benefits ── */
.ai-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.ai-benefit {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2rem;
}

.ai-benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.ai-benefit-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: .4rem;
}

.ai-benefit-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Split layout (AI page) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.split-panel {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2.5rem;
}

.split-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.split-title {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: .5rem;
}

.split-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ── Partners / brands ── */
.brands-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand-chip {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: .4rem 1rem;
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  :root { --pad: 36px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .chars-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .svc-full { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .roster-cta-card { grid-template-columns: 1fr; }
  .roster-cta-right { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-divider { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --pad: 22px; --sec: 80px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-wordmark { display: block; }
  .nav-controls { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero — use svh to avoid iOS Safari address-bar bug */
  .hero { min-height: 100svh; padding-top: 90px; padding-bottom: 60px; }
  .page-hero--full { height: 100svh; min-height: 100svh; }
  .hero-iso { display: none; }

  /* Typography */
  .hero-h { font-size: clamp(2.8rem, 10vw, 5rem); }
  .page-hero .hero-h { font-size: clamp(2.4rem, 9vw, 4rem); }
  .page-hero-h { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .sec-h { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .page-hero-sub { font-size: .95rem; }
  .hero-sub { font-size: .95rem; }

  /* Buttons */
  .hero-actions { flex-wrap: wrap; gap: .75rem; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .chars-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .ai-benefits { grid-template-columns: 1fr; }

  /* Components */
  .cta-band { padding: 2.5rem 1.5rem; }
  .roster-cta-inner { flex-direction: column; padding: 2rem 1.5rem; }
  .join-card { flex-direction: column; padding: 2rem 1.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .roster-cta-card { grid-template-columns: 1fr; padding: 2rem; }
  .roster-cta-right { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-divider { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .split-panel { padding: 1.75rem; }
  .char-card--soon { height: 150px; }

  /* Footer */
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .foot-right { align-items: flex-start; }
  .foot-nav { flex-wrap: wrap; gap: .75rem 1.25rem; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; gap: 1rem; border-radius: 16px 16px 0 0; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn-fill,
  .cookie-btns .btn-line { flex: 1; justify-content: center; }

  /* WhatsApp */
  .wa-float span { display: none; }
  .wa-float { padding: 13px; }
}

/* ── Page Hero Inner ── */
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-hero-h {
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-top: 1.5rem;
}

/* ── How Steps (Influencers page) ── */
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 3rem;
}

.how-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--coral));
  margin-top: 3.5rem;
  opacity: .35;
}

.how-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.2rem;
}

.how-icon svg {
  width: 100%; height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Roster CTA card (Influencers page) ── */
.roster-cta-card {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.roster-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--coral), var(--red));
}

.roster-cta-left .sec-h { font-size: clamp(1.5rem, 2.5vw, 2.5rem); }
.roster-cta-left .sec-sub { margin-bottom: 2rem; }

.roster-cta-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roster-visual { position: relative; }

.roster-doc {
  width: 180px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.roster-doc-line {
  height: 8px;
  background: var(--border2);
  border-radius: 4px;
}

.roster-doc-line.short { width: 60%; }

.roster-doc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  margin-top: .5rem;
}

.roster-count {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--orange);
  color: #000;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.03em;
  padding: .4rem .9rem;
  border-radius: 10px;
}

/* ── Join card icon ── */
.join-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
}

.join-icon svg {
  width: 100%; height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-content { flex: 1; }

/* ── Char card extras ── */
.char-name-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .25rem;
}

.char-handle {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
}

.char-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.char-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(248,70,24,.08);
  border: 1px solid rgba(248,70,24,.18);
  border-radius: 100px;
  padding: .28rem .75rem;
  color: var(--orange);
}

/* Char initials color variants */
.char-initials.flayla   { background: linear-gradient(135deg, #f84618, #fd662a); }
.char-initials.odeza    { background: linear-gradient(135deg, #2d1b69, #7c3aed); }
.char-initials.klaus    { background: linear-gradient(135deg, #0f4c75, #1b6ca8); }
.char-initials.lediable { background: linear-gradient(135deg, #1a0000, #f22103); }
.char-initials.aria     { background: linear-gradient(135deg, #111, #444); }

/* Char glow background */
.char-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .22;
  pointer-events: none;
}

.flayla-glow   { background: var(--orange); }
.odeza-glow    { background: #7c3aed; }
.klaus-glow    { background: #1b6ca8; }
.lediable-glow { background: var(--red); }
.aria-glow     { background: #555; }

/* Coming soon overlay text elements */
.soon-badge {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(248,70,24,.35);
  border-radius: 100px;
  padding: .35rem 1rem;
}

.soon-name {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
}

.soon-text {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
  max-width: 200px;
  line-height: 1.5;
}

/* ── Split Grid (AI page) ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  padding-top: 3rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: .45;
}

.accent-label { color: var(--orange) !important; }

.split-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
}

.split-icon svg {
  width: 100%; height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Contact Layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: start;
}

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

.contact-item-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  margin-top: .1rem;
}

.contact-item-icon svg {
  width: 100%; height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .2rem;
}

.contact-item-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color .25s;
}

a.contact-item-val:hover { color: var(--orange); }

.contact-wa-box {
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.wa-note {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Contact Form Wrap ── */
.contact-form-wrap {
  border-radius: 24px;
  padding: 2.5rem;
}

.form-title {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.contact-form { display: flex; flex-direction: column; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.form-field label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(248,70,24,.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f84618' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: none;
}

.form-field select option {
  background: var(--bg2);
  color: var(--text);
}

/* submit-btn full width override for contact form */
.contact-form .submit-btn {
  width: 100%;
  border-radius: 10px;
  margin-top: .25rem;
}

/* ── Responsive additions ── */
@media (max-width: 1080px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .roster-cta-card { grid-template-columns: 1fr; }
  .roster-cta-right { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-divider { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Extra small screens (< 480px) ── */
@media (max-width: 480px) {
  .chars-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero-h { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  .hero-h { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .btn-fill, .btn-line { font-size: .72rem; padding: .8rem 1.5rem; }

  .roster-cta-inner { padding: 1.5rem; }
  .join-card { padding: 1.5rem; }
  .split-panel { padding: 1.25rem; }
  .cta-band { padding: 2rem 1.25rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-r] { opacity: 1 !important; transform: none !important; }
  .svc-card { opacity: 1 !important; transform: none !important; }
  .blob-a, .blob-b, .blob-c { animation: none !important; }
  #cur-dot, #cur-ring { display: none; }
  body { cursor: auto; }
}
