:root {
  --bg-primary: #0F0F13;
  --bg-secondary: #1A1A24;
  --bg-tertiary: #252532;
  --accent-primary: #FF2A54;
  --accent-hover: #E6224A;
  --accent-secondary: #B829EA;
  --accent-cyan: #00F0FF;
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8CC;
  --text-muted: #6B6B80;
  --border: #2A2A3A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 96px;
}

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

html {
  overflow-y: scroll;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animate-in {
  visibility: hidden;
}

.phone {
  background: #1a1a2e;
  border: 2px solid #2a2a3e;
  border-radius: 36px;
  padding: 10px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 11px;
  z-index: 2;
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #0F0F13;
  position: relative;
}

.phone--sm { width: 280px; height: 500px; }
.phone--md { width: 320px; height: 580px; }
.phone--lg { width: 320px; height: 600px; }

.phone--light {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone__screen--gradient {
  background: linear-gradient(160deg, #1A1A24 0%, #12121C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone__screen--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 42, 84, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(184, 41, 234, 0.06) 0%, transparent 50%);
}

.section {
  padding: var(--sp-8) var(--sp-4);
}

.section--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #1E1E2E;
}

.section--full > .container {
  position: relative;
  z-index: 1;
}

.section__canvas,
.gallery__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gallery__canvas {
  background: transparent !important;
}

.btn,
.reg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--primary {
  background-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(255, 42, 84, 0.3);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 30px rgba(255, 42, 84, 0.5);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.reg-btn {
  width: 100%;
  padding: 18px 32px;
  background: var(--accent-primary);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 0 30px rgba(255, 42, 84, 0.3);
}

.reg-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 40px rgba(255, 42, 84, 0.5), 0 0 80px rgba(255, 42, 84, 0.2);
  transform: translateY(-1px);
}

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

.form__input,
.reg-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reg-input {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(255, 42, 84, 0.1);
}

.reg-input::placeholder {
  color: var(--text-muted);
}

.reg-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 42, 84, 0.15), 0 0 30px rgba(255, 42, 84, 0.1);
}

.reg-input--error {
  border-color: #FF2A54 !important;
  box-shadow: 0 0 0 3px rgba(255, 42, 84, 0.2) !important;
}

.countdown,
.reg-countdown {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.reg-countdown {
  justify-content: center;
}

.countdown__item,
.reg-countdown__item {
  text-align: center;
}

.countdown__number,
.reg-countdown__number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #c0c0cc 50%, #8a8a9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

.countdown__number {
  font-size: clamp(4rem, 8vw, 7rem);
  min-width: 1.15em;
  text-align: center;
}

.reg-countdown__number {
  font-size: 4.4rem;
  min-width: 1.2em;
}

.countdown__label,
.reg-countdown__unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-top: 6px;
}

.countdown__label {
  color: rgba(255,255,255,0.5);
}

.reg-countdown__unit {
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 8px;
  color: var(--text-muted);
}

.countdown__sep,
.reg-countdown__sep {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent-primary);
  align-self: flex-start;
}

.countdown__sep {
  font-size: 4rem;
  padding: 0 6px;
  padding-top: 0.3em;
}

.reg-countdown__sep {
  font-size: 3rem;
  padding: 0 4px;
  padding-top: 0.2em;
}

.countdown__item,
.countdown__sep {
  visibility: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(15,15,20,0.85) 0%, rgba(15,15,20,0.6) 40%, rgba(15,15,20,0.4) 100%),
    linear-gradient(to top, rgba(15,15,20,0.9) 0%, rgba(15,15,20,0.3) 40%, transparent 70%);
  pointer-events: none;
}

#vortex-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  opacity: 0;
}

.hero__title,
.hero__subtitle {
  visibility: hidden;
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 620px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
}

.hero__cta {
  padding: 20px 48px;
  font-size: 1.175rem;
  color: transparent;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.hero__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(255, 42, 84, 0.55), 0 0 80px rgba(255, 42, 84, 0.25);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 0;
  pointer-events: none;
}

.showcase {
  max-width: 1100px;
  position: relative;
  opacity: 0;
}

.showcase__progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto var(--sp-7);
  border-radius: 2px;
  overflow: hidden;
}

.showcase__progress-bar {
  width: 33.33%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  transition: width 0.6s ease;
}

.showcase__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 0 var(--sp-4);
}

.showcase__slide--active {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}

.showcase__content {
  flex: 1;
  text-align: left;
}

.showcase__visual {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
}

.showcase__number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  margin-bottom: calc(var(--sp-3) * -1);
  letter-spacing: -0.02em;
}

.showcase__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.showcase__subtitle {
  font-size: 1.3rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.01em;
}

.showcase__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
}

.showcase__indicators {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: var(--sp-7);
}

.showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.showcase__dot--active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 8px rgba(255, 42, 84, 0.4);
}

.phone-chat {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0F0F13;
}

.phone-chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.phone-chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-chat__info {
  display: flex;
  flex-direction: column;
}

.phone-chat__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.phone-chat__status {
  font-size: 0.65rem;
  color: #00F0FF;
}

.phone-chat__body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  justify-content: flex-end;
}

.phone-chat__bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.phone-chat__bubble--received {
  background: #1A1A24;
  color: #e0e0e0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.phone-chat__bubble--sent {
  background: #FF2A54;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.phone-chat__bubble--img {
  padding: 4px;
  max-width: 70%;
}

.phone-chat__bubble--img img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.phone-story {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

.phone-story__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 32px 12px 8px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.phone-story__progress {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 8px;
}

.phone-story__progress-bar {
  width: 65%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}

.phone-story__user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-story__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FF2A54;
}

.phone-story__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-story__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.phone-story__time {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
}

.phone-story__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-customize {
  width: 100%;
  height: 100%;
  position: relative;
}

.phone-customize__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-customize__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.phone-customize__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.phone-customize__tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 0.65rem;
  color: #fff;
  white-space: nowrap;
}

.section--gallery {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #eaeaf1 0%, #d5d5e2 40%, #b8b8cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gallery__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-7);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  visibility: hidden;
}

.gallery__left {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery__section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.gallery__section-desc {
  font-size: 1.05rem;
  color: #4a4a5e;
  line-height: 1.7;
  max-width: 480px;
}

.gallery__char-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gallery__char-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.gallery__char-badge {
  display: inline-block;
  width: fit-content;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  padding: 4px 14px;
  background: var(--accent-primary);
  border: none;
  border-radius: var(--radius-full);
}

.gallery__char-tag {
  font-size: 0.95rem;
  color: #5a5a70;
  font-weight: 500;
}

.gallery__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.gallery__stat-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a6a80;
  margin-bottom: 4px;
}

.gallery__stat-val {
  color: #1a1a2e;
}

.gallery__stat-bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.gallery__stat-fill {
  height: 100%;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: width 0.8s ease;
}

.gallery__char-desc {
  font-size: 0.95rem;
  color: #4a4a5e;
  line-height: 1.6;
}

.gallery__char-quote {
  font-size: 0.9rem;
  color: #1a1a2e;
  font-style: italic;
  font-weight: 600;
}

.gallery__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.gallery__roulette-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery__phone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 8px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  border-radius: 26px 26px 0 0;
  pointer-events: none;
}

.gallery__phone-story-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.gallery__phone-story-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  animation: story-progress 3.5s linear infinite;
}

.gallery__phone-story-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery__phone-story-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  background: #333;
  overflow: hidden;
}

.gallery__phone-story-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.gallery__phone-story-time {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
}

#registro.section--full {
  background-color: #080810;
}

.reg-video-bg-split {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}

.reg-video-bg-split video {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5) saturate(0.7);
}

.reg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(255, 42, 84, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(184, 41, 234, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8, 8, 16, 0.4) 0%, rgba(8, 8, 16, 0.6) 50%, rgba(8, 8, 16, 0.75) 100%);
  pointer-events: none;
}

.reg-glow-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: reg-orb-pulse 6s ease-in-out infinite alternate;
}

.reg-glow-orb--pink {
  width: 400px;
  height: 400px;
  background: rgba(255, 42, 84, 0.12);
  filter: blur(100px);
  top: 15%;
  left: 5%;
}

.reg-glow-orb--purple {
  width: 350px;
  height: 350px;
  background: rgba(184, 41, 234, 0.1);
  filter: blur(100px);
  bottom: 10%;
  right: 5%;
  animation-delay: -3s;
}

.reg-split {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
  min-height: 100vh;
  opacity: 0;
}

.reg-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
}

.reg-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  gap: 24px;
}

.reg-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.reg-title span {
  color: var(--accent-primary);
}

.reg-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 520px;
  color: var(--text-secondary);
}

.reg-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 52px;
}

.reg-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backface-visibility: hidden;
}

.reg-benefit-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.reg-benefit-text h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.reg-benefit-text p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.reg-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.reg-social-proof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: reg-pulse-dot 2s ease-in-out infinite;
}

.reg-countdown-section {
  text-align: center;
  margin-bottom: 36px;
}

.reg-countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.reg-form-card {
  border-radius: 20px;
  padding: 44px 36px;
  width: 100%;
  background: rgba(15, 15, 22, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 42, 84, 0.05);
}

.reg-form-card__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text-primary);
}

.reg-form-card__sub {
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
  color: var(--text-muted);
}

.reg-scarcity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.reg-scarcity__bar {
  flex: 1;
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 42, 84, 0.12);
}

.reg-scarcity__fill {
  width: 72%;
  height: 100%;
  border-radius: 8px;
  background: var(--accent-primary);
}

.reg-scarcity__pct {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 42, 84, 0.8);
}

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

.reg-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reg-input-error {
  font-size: 0.75rem;
  color: #FF2A54;
  min-height: 0;
  transition: min-height 0.2s;
}

.reg-success {
  text-align: center;
  padding: 44px 36px;
  position: relative;
}

.reg-success__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 42, 84, 0.4) 0%, rgba(184, 41, 234, 0.2) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.reg-success__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.reg-success__msg {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer {
  background: #eaeaf1;
  padding: 36px 0;
  min-height: auto;
  overflow: hidden;
  transition: background 0.5s ease;
}

.footer--filled {
  background: linear-gradient(135deg, #e95472 0%, #dd3154 40%, #af2040 80%, #a71d3c 100%);
}

.footer--filled .footer__logo-novia {
  color: #fff;
}

.footer--filled .footer__logo-virtual {
  color: #1a1a2e;
}

.footer--filled .footer__social-icon {
  color: rgba(255, 255, 255, 0.8);
}

.footer--filled .footer__social-icon:hover {
  color: #fff;
}

.footer--filled .footer__link {
  color: rgba(255, 255, 255, 0.8);
}

.footer--filled .footer__link:hover {
  color: #fff;
}

.footer--filled .footer__copy {
  color: rgba(255, 255, 255, 0.5);
}

.footer--filled .footer__col-title {
  color: rgba(255, 255, 255, 0.9);
}

.footer--filled .footer__row::after {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.footer__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: none;
  position: relative;
}

.footer__row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF2A54;
  box-shadow: 0 0 12px rgba(255, 42, 84, 0.4), 0 0 24px rgba(255, 42, 84, 0.2);
  transition: width 0.8s ease-out;
}

.footer--visible .footer__row::after {
  width: 100%;
}

.footer__row::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF2A54'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  margin-bottom: -35px;
  animation: heart-beat 1.2s ease-in-out infinite;
}

.footer--heart-growing .footer__row::before {
  animation: heart-grow 0.8s ease-in forwards;
}

.footer--filled .footer__row::before {
  display: none;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.footer__logo-novia {
  color: #FF2A54;
  animation: footer-logo-pulse 3s ease-in-out infinite;
}

.footer__logo-virtual {
  color: #1a1a2e;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__social-icon {
  color: #6a6a80;
  display: flex;
  transition: color 0.2s;
}

.footer__social-icon:hover {
  color: #FF2A54;
}

.footer__link {
  font-size: 0.88rem;
  color: #6a6a80;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #FF2A54;
}

.footer__copy {
  font-size: 0.88rem;
  color: #9a9ab0;
  text-align: center;
  padding-top: 20px;
}

.scroll-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.scroll-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.scroll-nav__dot--active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(255, 42, 84, 0.4);
  transform: scale(1.3);
}

.scroll-nav__dot:hover {
  border-color: var(--accent-primary);
}

.snap-section {
  min-height: 100vh;
}

footer.snap-section {
  min-height: auto;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 42, 84, 0.3); }
  50% { box-shadow: 0 0 32px rgba(255, 42, 84, 0.45), 0 0 60px rgba(255, 42, 84, 0.15); }
}

@keyframes story-progress {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes reg-orb-pulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.25); }
}

@keyframes reg-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes footer-logo-pulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 16px rgba(255, 42, 84, 0.4), 0 0 32px rgba(255, 42, 84, 0.15); }
}

@keyframes heart-beat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  15% { transform: translateX(-50%) scale(1.3); }
  30% { transform: translateX(-50%) scale(1); }
  45% { transform: translateX(-50%) scale(1.2); }
  60% { transform: translateX(-50%) scale(1); }
}

@keyframes heart-grow {
  0% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(15); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(40); opacity: 0; }
}

.blog-btn{display:block;text-align:center;font-size:.85rem;letter-spacing:.03em;text-decoration:none;padding:.6rem 1.5rem;border-radius:2rem;transition:opacity .3s,background .3s;width:fit-content;margin:0 auto;position:relative;z-index:5}
.blog-btn--outline{border:1.5px solid #fff;color:#fff;background:transparent;margin-top:40px;margin-bottom:10px;visibility:hidden}
.blog-btn--outline:hover{background:rgba(255,255,255,.1)}
.blog-btn--pink{background:#e91e8c;color:#fff;border:none;margin-top:12px}
.blog-btn--pink:hover{opacity:.85}
.blog-btn--outline-white{border:1.5px solid #fff;color:#fff;background:transparent;margin-top:20px;margin-left:0;margin-right:auto;visibility:hidden}
.blog-btn--outline-white:hover{background:rgba(255,255,255,.1)}
.gallery__blog-btn{position:relative;z-index:5;margin:24px auto 0;display:block;width:fit-content}

@media (prefers-reduced-motion: reduce) {
  .hero__cta {
    color: #fff;
    background: #FF2A54;
    box-shadow: 0 0 20px rgba(255, 42, 84, 0.3);
    animation: none;
  }

  #vortex-canvas {
    opacity: 1 !important;
  }

  .animate-in {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 .8rem;
  }

  .section {
    padding: var(--sp-7) var(--sp-3);
  }

  .snap-section {
    min-height: auto;
  }

  .section--full,
  .section--gallery {
    height: auto;
    min-height: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 0 20px;
    gap: 24px;
    justify-content: center;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .hero__overlay {
    background: rgba(15,15,20,0.7);
  }

  .hero__bottom {
    gap: 24px;
    margin-top: 0;
  }

  .countdown__number {
    font-size: 2.8rem;
    min-width: 1.1em;
  }

  .countdown__sep {
    font-size: 1.8rem;
    padding: 0 2px;
  }

  .countdown__label {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  .hero__cta {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .showcase__progress {
    display: none;
  }

  .showcase__subtitle {
    display: none;
  }

  .showcase__slide--active {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .showcase__content {
    text-align: center;
  }

  .showcase__visual {
    flex: none;
    margin-top: 0;
  }

  .phone--md {
    width: 240px;
    height: 430px;
  }

  .showcase__number {
    font-size: 4rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.08);
  }

  .showcase__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .showcase__desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .section--gallery {
    height: auto;
    min-height: 100vh;
    padding: var(--sp-6) 0;
  }

  .gallery__layout {
    flex-direction: column;
    padding: 0 var(--sp-3);
    gap: var(--sp-3);
  }

  .gallery__left {
    flex: none;
    order: 2;
  }

  .gallery__right {
    align-items: center;
    padding: 0;
    order: 1;
  }

  .gallery__section-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .gallery__stats {
    margin-bottom: 1rem;
  }

  .gallery__char-desc,
  .gallery__char-tag,
  .gallery__char-quote,
  .gallery__section-desc {
    display: none;
  }

  .gallery__char-info {
    width: 100%;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    order: 3;
    gap: .5rem;
  }

  .phone--lg {
    width: 240px;
    height: 440px;
  }

  .reg-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
    min-height: auto;
  }

  .reg-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .reg-form-side {
    padding: 0 0 60px 0;
  }

  .reg-title {
    font-size: 2.4rem;
  }

  .reg-subtitle {
    max-width: 100%;
  }

  .reg-benefits {
    align-items: flex-start;
    text-align: left;
  }

  .reg-social-proof {
    justify-content: center;
  }

  .reg-form-card {
    padding: 32px 24px;
  }

  .reg-video-bg-split video:first-child {
    display: none;
  }

  .reg-video-bg-split video:last-child {
    width: 100%;
    object-position: center;
  }

  .reg-countdown__number {
    font-size: 2.8rem;
  }

  .reg-countdown__sep {
    font-size: 2rem;
  }

  .footer__row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer__col:first-child {
    grid-column: 1 / -1;
    align-items: center;
  }

  .scroll-nav {
    right: 8px;
  }

  .scroll-nav__dot {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .hero__content {
    padding: 0 32px;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .countdown__number {
    font-size: 5rem;
  }

  .countdown__sep {
    font-size: 3rem;
  }

  .hero__cta {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .showcase {
    max-width: 960px;
    padding: 0 var(--sp-4);
  }

  .showcase__slide--active {
    gap: var(--sp-5);
  }

  .showcase__visual {
    flex: 0 0 300px;
  }

  .phone--md {
    width: 270px;
    height: 490px;
  }

  .showcase__number {
    font-size: 6rem;
  }

  .showcase__title {
    font-size: 2rem;
  }

  .showcase__subtitle {
    font-size: 1.1rem;
  }

  .showcase__desc {
    font-size: 0.95rem;
  }

  .gallery__layout {
    gap: var(--sp-5);
    padding: 0 var(--sp-4);
  }

  .gallery__left {
    flex: 0 0 280px;
  }

  .phone--lg {
    width: 260px;
    height: 480px;
  }

  .gallery__section-title {
    font-size: 1.8rem;
  }

  .gallery__section-desc {
    font-size: 0.95rem;
  }

  .gallery__char-name {
    font-size: 1.6rem;
  }

  .gallery__char-desc,
  .gallery__char-quote {
    font-size: 0.85rem;
  }

  .gallery__stat-header {
    font-size: 0.7rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
