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

:root {
  --black:   #0e0e0e;
  --purple:  #5C0F7A;
  --purple2: #7B3FA0;
  --white:   #F3F2F5;
  --gray:    #161616;
  --gray2:   #1e1e1e;
  --gray3:   #252525;
  --muted:   #666;
  --border:  rgba(243,242,245,0.07);
  --font-display: 'Special Gothic Expanded One', sans-serif;
  --font-body: 'Satoshi Variable', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.125rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,14,14,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 24px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(243,242,245,0.45);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 0.475rem 1.25rem !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--purple2) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.nav-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

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

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}

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

.nav-drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  text-transform: uppercase;
  color: rgba(243,242,245,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--white); }

.nav-drawer .drawer-cta {
  margin-top: 0.75rem;
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.875rem 2.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,14,14,0.5) 0%, transparent 40%, rgba(14,14,14,0.85) 100%),
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(92,15,122,0.25) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(92,15,122,0.2);
  border: 1px solid rgba(92,15,122,0.4);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero h1 em { font-style: normal; color: var(--purple2); }

.hero-sub {
  font-size: 1rem;
  color: rgba(243,242,245,0.5);
  max-width: 440px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
  font-weight: 300;
}

.btn-store-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  min-width: 175px;
  transition: all 0.2s;
}

.btn-ios {
  background: var(--purple);
  color: var(--white);
  border: 1px solid var(--purple);
}

.btn-ios:hover { background: var(--purple2); border-color: var(--purple2); transform: translateY(-2px); }

.btn-android {
  background: transparent;
  color: rgba(243,242,245,0.65);
  border: 1px solid rgba(243,242,245,0.15);
}

.btn-android:hover { color: var(--white); border-color: rgba(243,242,245,0.3); transform: translateY(-2px); }

/* ── MARQUEE de eventos ── */
.marquee-section {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray);
  overflow: hidden;
  position: relative;
}

.marquee-label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--gray) 60%, transparent);
  z-index: 10;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
}

.marquee-label-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.marquee-fade-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(270deg, var(--gray) 40%, transparent);
  z-index: 10;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
  padding: 0;
}

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

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2.5rem;
  border-right: 1px solid var(--border);
  min-width: max-content;
  text-decoration: none;
  transition: background 0.2s;
  cursor: default;
}

.marquee-item:hover { background: var(--gray2); }

.marquee-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.marquee-event-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.marquee-event-meta {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── PERSONALIZATION ── */
.personalize {
  padding: 8rem 2.5rem;
  background: var(--black);
}

.personalize-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.personalize-text .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 1.5rem;
}

.personalize-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.personalize-text h2 em { font-style: normal; color: var(--purple2); }

.personalize-text p {
  font-size: 0.9375rem;
  color: rgba(243,242,245,0.45);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  border: 1px solid rgba(243,242,245,0.15);
  color: rgba(243,242,245,0.65);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.btn-outline:hover { border-color: rgba(243,242,245,0.3); color: var(--white); transform: translateY(-2px); }

.personalize-visual {
  position: relative;
}

.phone-mockup {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 9/19;
  background: var(--gray2);
  border-radius: 36px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #0e0e1a 60%, #1a0a22 100%);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.25rem 1.5rem;
  gap: 0.875rem;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.phone-logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-notch {
  width: 60px; height: 10px;
  background: var(--black);
  border-radius: 100px;
  position: absolute;
  top: 10px;
  left: 50%; transform: translateX(-50%);
}

.phone-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--purple);
}

.phone-greeting {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(243,242,245,0.35);
  letter-spacing: 0.04em;
}

.phone-greeting strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 0.1rem;
}

.phone-card {
  background: rgba(92,15,122,0.15);
  border: 1px solid rgba(92,15,122,0.25);
  border-radius: 14px;
  padding: 0.875rem;
  flex-shrink: 0;
}

.phone-card-tag {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 0.375rem;
}

.phone-card-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.phone-card-meta {
  font-size: 0.6rem;
  color: rgba(243,242,245,0.35);
  font-weight: 300;
}

.phone-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--purple);
  border-radius: 100px;
  padding: 0.25rem 0.625rem;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 0.625rem;
}

.phone-card-sm {
  background: var(--gray3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-card-sm-dot {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(123,63,160,0.25);
  flex-shrink: 0;
}

.phone-card-sm-text { flex: 1; }

.phone-card-sm-name {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--white);
}

.phone-card-sm-sub {
  font-size: 0.55rem;
  color: rgba(243,242,245,0.3);
  font-weight: 300;
  margin-top: 0.1rem;
}

.phone-card-sm-btn {
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--purple2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* glow ring */
.personalize-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,15,122,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ── PROBLEMA ── */
.problem {
  padding: 8rem 2.5rem;
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.problem-text .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 1.5rem;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.problem-text h2 em { font-style: normal; color: var(--purple2); }

.problem-text p {
  font-size: 0.9375rem;
  color: rgba(243,242,245,0.45);
  font-weight: 300;
  line-height: 1.85;
}

.problem-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.problem-item {
  padding: 1.875rem 0;
  border-bottom: 1px solid var(--border);
}

.problem-q {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.375rem;
  letter-spacing: 0.005em;
}

.problem-a {
  font-size: 0.8125rem;
  color: rgba(243,242,245,0.35);
  font-weight: 300;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 8rem 2.5rem;
  background: var(--black);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.how-header .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 1.25rem;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.how-sub {
  color: rgba(243,242,245,0.4);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  align-self: end;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}

.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--purple2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.step h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.step p {
  font-size: 0.8125rem;
  color: rgba(243,242,245,0.35);
  line-height: 1.7;
  font-weight: 300;
}

/* ── FEATURES ── */
.features {
  padding: 8rem 2.5rem;
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.features-header {
  margin-bottom: 4rem;
}

.features-header .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 1.25rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-cell {
  background: var(--gray2);
  padding: 2.5rem;
  transition: background 0.2s;
}

.feature-cell:hover { background: var(--gray3); }

.feature-screen {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--black);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}

.screen-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(92,15,122,0.3);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

.screen-icon svg {
  width: 16px; height: 16px;
  stroke: rgba(123,63,160,0.55);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.screen-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,242,245,0.18);
  font-weight: 400;
}

.feature-cell h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.feature-cell p {
  font-size: 0.8125rem;
  color: rgba(243,242,245,0.35);
  line-height: 1.7;
  font-weight: 300;
}

/* ── TIPOS DE EVENTO ── */
.event-types {
  padding: 8rem 2.5rem;
  background: var(--black);
}

.event-types-inner { max-width: 1100px; margin: 0 auto; }

.event-types-inner .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 1.25rem;
}

.event-types-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.event-types-inner > p {
  color: rgba(243,242,245,0.4);
  font-weight: 300;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 3rem;
  font-size: 0.9375rem;
}

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

.tag {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(243,242,245,0.5);
  background: transparent;
  cursor: default;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.tag:hover { border-color: var(--purple); color: var(--white); background: rgba(92,15,122,0.1); }
.tag-accent { border-color: rgba(92,15,122,0.45); color: rgba(243,242,245,0.8); background: rgba(92,15,122,0.08); }

/* ── CTA PARA CRIADORES ── */
.creators-cta {
  padding: 8rem 2.5rem;
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.creators-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.creators-cta-text .eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple2);
  margin-bottom: 1.25rem;
}

.creators-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.creators-cta-text h2 em { font-style: normal; color: var(--purple2); }

.creators-cta-text p {
  font-size: 0.9375rem;
  color: rgba(243,242,245,0.45);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.creators-cta-text a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}

.creators-cta-text a:hover { background: var(--purple2); transform: translateY(-2px); }

.creators-points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.creator-point {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.creator-point-num {
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--purple2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-top: 0.15rem;
}

.creator-point h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.creator-point p {
  font-size: 0.8125rem;
  color: rgba(243,242,245,0.35);
  font-weight: 300;
  line-height: 1.65;
}

/* ── CTA FINAL ── */
.cta-final {
  padding: 10rem 2.5rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 75% at 50% 55%, rgba(92,15,122,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.cta-logo-big {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 3.5rem;
  opacity: 0.9;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.97;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
}

.cta-final h2 em { font-style: normal; color: var(--purple2); }

.cta-final > p {
  color: rgba(243,242,245,0.4);
  font-size: 0.9375rem;
  font-weight: 300;
  margin-bottom: 3rem;
  position: relative;
  line-height: 1.75;
}

.cta-final .btn-store-group { position: relative; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem;
  background: var(--gray);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo img { height: 20px; width: auto; display: block; }

.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { color: rgba(243,242,245,0.2); font-size: 0.75rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.d1 { opacity: 0; animation-delay: 0.1s; }
.d2 { opacity: 0; animation-delay: 0.25s; }
.d3 { opacity: 0; animation-delay: 0.4s; }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  .hero { padding: 7rem 1.25rem 4rem; }
  .hero h1 { line-height: 1.0; }

  .btn-store-group { flex-direction: column; align-items: stretch; }
  .btn-store { min-width: unset; width: 100%; }

  .marquee-label { display: none; }
  .marquee-item { padding: 1.25rem 1.75rem; }

  .personalize { padding: 5rem 1.25rem; }
  .personalize-inner { grid-template-columns: 1fr; gap: 3rem; }
  .phone-mockup { max-width: 240px; }

  .problem { padding: 5rem 1.25rem; }
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }

  .how { padding: 5rem 1.25rem; }
  .how-header { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
  .steps-grid { grid-template-columns: 1fr; border-top: none; }
  .step {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 2rem 0;
  }
  .step:first-child { padding-left: 0; }
  .step:last-child { padding-right: 0; }

  .features { padding: 5rem 1.25rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; background: transparent; border: none; border-radius: 0; }
  .feature-cell { border: 1px solid var(--border); border-radius: 16px; }
  .feature-screen { aspect-ratio: 4/3; }

  .event-types { padding: 5rem 1.25rem; }

  .creators-cta { padding: 5rem 1.25rem; }
  .creators-cta-inner { grid-template-columns: 1fr; gap: 3rem; }

  .cta-final { padding: 6rem 1.25rem; }
  .cta-final .btn-store-group { flex-direction: column; align-items: stretch; }
  .cta-logo-big { height: 40px; }

  footer { padding: 2.5rem 1.25rem; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-links { gap: 1.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: 0; }
}

