/* Expo Factor Fiesta 2026 — Landing styles
   Updated: May 31, 2026 */

:root {
  /* Factor Fiesta logo palette */
  --ff-pink: #e91e8c;
  --ff-pink-dark: #c2186b;
  --ff-cyan: #00b4d8;
  --ff-cyan-light: #e0f7fc;
  --ff-lime: #7cb518;
  --ff-purple: #7b2d8e;
  --ff-orange: #ff8c42;
  --ff-yellow: #ffc107;
  --ff-cream: #fff8f2;

  --color-primary: var(--ff-pink);
  --color-primary-dark: var(--ff-pink-dark);
  --color-accent: var(--ff-yellow);
  --color-accent-light: #fff3cd;
  --color-navy: #1a1f3a;
  --color-text: #2d3348;
  --color-text-muted: #5c6378;
  --color-bg: #f3f0ff;
  --color-white: #ffffff;
  --color-family-bg: linear-gradient(160deg, #fff5f0 0%, #ffe8f4 50%, #fff9e6 100%);
  --color-family-accent: var(--ff-orange);
  --color-exhibitor-bg: linear-gradient(180deg, #f5f0ff 0%, #eef8fc 100%);
  --color-success: #15803d;
  --gradient-fiesta: linear-gradient(
    135deg,
    var(--ff-pink) 0%,
    var(--ff-purple) 35%,
    var(--ff-cyan) 100%
  );
  --gradient-hero: linear-gradient(
    125deg,
    #fff0f8 0%,
    #f0f9ff 42%,
    #fff8ee 100%
  );
  --gradient-proof: linear-gradient(
    125deg,
    #1a1f3a 0%,
    #4a1d6a 45%,
    #9b1d5e 100%
  );
  --shadow-sm: 0 2px 8px rgba(26, 31, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(233, 30, 140, 0.1);
  --shadow-lg: 0 16px 40px rgba(233, 30, 140, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max-width: 1120px;
  --sticky-height: 56px;
  --announcement-height: 2.75rem;
  --site-header-height: 4rem;
  --scroll-offset: calc(var(--announcement-height) + var(--site-header-height) + 0.5rem);
  --section-pad: clamp(3rem, 6vw, 5rem);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: var(--scroll-offset);
}

#formulario-expositor,
#registro-familias {
  scroll-margin-bottom: calc(var(--sticky-height) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(233, 30, 140, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(0, 180, 216, 0.07) 0%, transparent 45%);
  background-attachment: fixed;
  padding-bottom: calc(var(--sticky-height) + 1rem);
}

body.sticky-visible {
  padding-bottom: calc(var(--sticky-height) + 1.5rem);
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-dark);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 600;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient-fiesta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 65ch;
  margin-inline: auto;
  text-align: center;
  color: var(--color-text-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header--left {
  text-align: left;
  margin-inline: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

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

.btn--primary {
  background: var(--gradient-fiesta);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
}

.btn--primary:hover {
  filter: brightness(1.08);
  border-color: transparent;
  color: var(--color-white);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.btn--outline {
  background: var(--color-white);
  color: var(--ff-purple);
  border-color: var(--ff-cyan);
  border-width: 2px;
}

.btn--outline:hover {
  background: var(--ff-cyan-light);
  color: var(--ff-purple);
  border-color: var(--ff-cyan);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--color-white);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
}

.btn-hint {
  display: block;
  font-size: 0.8125rem;
  color: inherit;
  opacity: 0.85;
  margin-top: 0.35rem;
  font-weight: 400;
}

.text-link {
  font-weight: 600;
  text-decoration: underline;
}

/* Announcement bar */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 400;
  background: var(--gradient-proof);
  color: var(--color-white);
  font-size: 0.8125rem;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  min-height: var(--announcement-height);
}

.announcement-bar__text {
  margin: 0;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.announcement-bar__sep {
  opacity: 0.45;
  margin: 0 0.35rem;
}

.announcement-bar__cta {
  flex-shrink: 0;
  padding: 0.4rem 0.875rem;
  background: var(--ff-pink);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
}

.announcement-bar__cta:hover {
  background: var(--ff-pink-dark);
  color: var(--color-white);
}

@media (max-width: 640px) {
  .announcement-bar__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 0.625rem 0;
  }

  .announcement-bar__sep {
    display: none;
  }

  .announcement-bar__text {
    font-size: 0.75rem;
  }

  .announcement-bar__cta {
    text-align: center;
  }
}

/* Site header */
.site-header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 350;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 31, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--site-header-height);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-header__brand:hover {
  color: inherit;
}

.site-header__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-header__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
}

.site-header__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: var(--color-bg);
  border-radius: 8px;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-header__toggle-bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-bar:nth-child(3) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.site-header__nav a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
}

.site-header__nav a:not(.btn):hover {
  color: var(--color-primary);
}

.site-header__cta {
  margin-left: 0.25rem;
  color: var(--color-white) !important;
}

.site-header__cta:hover {
  color: var(--color-white) !important;
}

@media (max-width: 900px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--color-white);
    border-bottom: 1px solid rgba(26, 31, 58, 0.08);
    box-shadow: var(--shadow-md);
  }

  .site-header.is-open .site-header__nav {
    display: flex;
  }

  .site-header__nav a:not(.btn) {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(26, 31, 58, 0.06);
  }

  .site-header__nav a:not(.btn):last-of-type {
    border-bottom: none;
  }

  .site-header__cta {
    margin: 0.5rem 0 0;
    width: 100%;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: wrap;
  }
}

/* Hero — split layout (logo + copy | image placeholders) */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--gradient-hero);
  border-bottom: none;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
}

.hero::after {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.15) 0%, transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__copy {
  text-align: left;
  max-width: 32rem;
}

.hero__logo {
  display: block;
  width: auto;
  height: auto;
  max-height: clamp(72px, 10vw, 100px);
  margin: 0 0 1.75rem;
}

.hero h1 {
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__subhead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.hero__proof {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  max-width: 20rem;
}

.hero__cta-group .btn {
  width: 100%;
}

.hero__cta-group .btn-hint {
  display: block;
  color: var(--color-text-muted);
  text-align: left;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
}

/* Right column — venue hero image (framed card) */
.hero__figure {
  margin: 0;
  width: 100%;
  max-width: 34rem;
  justify-self: end;
}

.hero__frame {
  position: relative;
  padding: 5px;
  border-radius: 1.5rem;
  background: var(--gradient-fiesta);
  box-shadow:
    0 2px 4px rgba(26, 31, 58, 0.06),
    0 12px 28px rgba(233, 30, 140, 0.18),
    0 28px 56px rgba(26, 31, 58, 0.14);
  transform: rotate(0.75deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: -1rem;
  z-index: -1;
  border-radius: 2rem;
  background: radial-gradient(
    ellipse 80% 70% at 50% 100%,
    rgba(0, 180, 216, 0.25) 0%,
    rgba(233, 30, 140, 0.12) 45%,
    transparent 70%
  );
  filter: blur(12px);
  opacity: 0.9;
}

.hero__figure:hover .hero__frame {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 4px 8px rgba(26, 31, 58, 0.08),
    0 16px 36px rgba(233, 30, 140, 0.22),
    0 32px 64px rgba(26, 31, 58, 0.16);
}

.hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 1.25rem;
  background: var(--color-navy);
}

.hero__caption {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 31, 58, 0.08);
}

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

  .hero__copy {
    max-width: none;
    order: 0;
  }

  .hero__ctas {
    max-width: none;
  }

  .hero__figure {
    order: 1;
    max-width: none;
    justify-self: stretch;
  }

  .hero__frame {
    transform: none;
  }

  .hero__figure:hover .hero__frame {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__frame,
  .hero__figure:hover .hero__frame {
    transform: none;
    transition: none;
  }
}

/* Sections */
.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: linear-gradient(180deg, #ffffff 0%, var(--ff-cyan-light) 100%);
}

.section--proof {
  background: var(--gradient-proof);
  color: var(--color-white);
}

.section--proof h2 {
  color: var(--color-white);
}

.section--exhibitor {
  background: linear-gradient(180deg, #f5f0ff 0%, #eef8fc 100%);
}

/* Gallery section — separate from exhibitor plans */
.section--gallery {
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.section--gallery .section-header {
  margin-bottom: 1.75rem;
}

.expo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 31, 58, 0.08);
}

.expo-gallery__item {
  margin: 0;
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 160px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow:
    0 4px 12px rgba(26, 31, 58, 0.1),
    0 12px 28px rgba(233, 30, 140, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expo-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(26, 31, 58, 0.06);
  pointer-events: none;
}

.expo-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 10px rgba(26, 31, 58, 0.1),
    0 10px 24px rgba(233, 30, 140, 0.15);
}

.expo-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.expo-gallery__item:nth-child(1) {
  border-top: 3px solid var(--ff-pink);
}

.expo-gallery__item:nth-child(2) {
  border-top: 3px solid var(--ff-cyan);
}

.expo-gallery__item:nth-child(3) {
  border-top: 3px solid var(--ff-orange);
}

@media (max-width: 768px) {
  .expo-gallery {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .expo-gallery__item {
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .expo-gallery__item:hover {
    transform: none;
  }
}

/* Testimonials */
.section--testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 31, 58, 0.08);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--ff-cyan);
}

.testimonial-card:nth-child(1) {
  border-top-color: var(--ff-pink);
}

.testimonial-card:nth-child(2) {
  border-top-color: var(--ff-orange);
}

.testimonial-card--brand {
  background: linear-gradient(180deg, #fff 0%, #f5f0ff 100%);
  border-top-color: var(--ff-purple);
}

.testimonial-card__quote {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card__role {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-navy);
}

.testimonial-card__note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

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

/* Agenda */
.section--agenda {
  background: linear-gradient(180deg, #eef8fc 0%, #f5f0ff 100%);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.agenda-day {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 31, 58, 0.06);
}

.agenda-day__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-navy);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ff-cyan);
}

.agenda-day__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agenda-day__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 31, 58, 0.06);
  font-size: 0.9375rem;
}

.agenda-day__list li:last-child {
  border-bottom: none;
}

.agenda-day__time {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ff-purple);
  margin-bottom: 0.15rem;
}

.save-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(233, 30, 140, 0.15);
}

.save-date__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
  color: var(--color-navy);
}

.save-date__copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.save-date__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

  .save-date {
    flex-direction: column;
    text-align: center;
  }

  .save-date__actions {
    justify-content: center;
    width: 100%;
  }

  .save-date__actions .btn {
    flex: 1 1 auto;
    min-width: 10rem;
  }
}

/* Plan comparison table */
.plans-compare-heading {
  text-align: center;
  font-family: var(--font-display);
  margin: 2.5rem 0 1rem;
  color: var(--color-navy);
}

.plans-compare-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.plans-compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem;
}

.plans-compare th,
.plans-compare td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(26, 31, 58, 0.08);
}

.plans-compare thead th {
  background: var(--gradient-fiesta);
  color: var(--color-white);
  font-weight: 600;
}

.plans-compare tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-bg);
}

.plans-compare tbody tr:nth-child(even) td {
  background: rgba(243, 240, 255, 0.5);
}

.plans-compare td:nth-child(3) {
  background: rgba(255, 240, 248, 0.6);
  font-weight: 600;
}

/* Family updates line */
.family-updates {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* P.S. block */
.section--ps {
  background: linear-gradient(135deg, #fff5fb 0%, #f0f9ff 100%);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.ps-block {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(233, 30, 140, 0.12);
}

.ps-block__label {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ff-pink);
}

.ps-block__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.ps-block__text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.section--family {
  background: linear-gradient(160deg, #fff5f0 0%, #ffe8f4 50%, #fff9e6 100%);
}

/* What is — cards */
.cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid .card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }
}

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

  .cards-grid .card:nth-child(5) {
    max-width: none;
  }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 31, 58, 0.06);
  border-top: 4px solid var(--ff-pink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cards-grid .card:nth-child(1) {
  border-top-color: var(--ff-pink);
}

.cards-grid .card:nth-child(2) {
  border-top-color: var(--ff-cyan);
}

.cards-grid .card:nth-child(3) {
  border-top-color: var(--ff-lime);
}

.cards-grid .card:nth-child(4) {
  border-top-color: var(--ff-purple);
}

.cards-grid .card:nth-child(5) {
  border-top-color: var(--ff-orange);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 0.25rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
}

.cta-block {
  text-align: center;
  margin-top: 2rem;
}

.cta-block .text-link {
  display: inline-block;
  margin-top: 1rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1.25rem;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.stats-grid .stat:nth-child(1) .stat__number {
  color: var(--ff-yellow);
}

.stats-grid .stat:nth-child(2) .stat__number {
  color: var(--ff-cyan);
}

.stats-grid .stat:nth-child(3) .stat__number {
  color: #ffb3d9;
}

.stats-grid .stat:nth-child(4) .stat__number {
  color: var(--ff-lime);
}

.stat__label {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin: 0;
}

.proof-story {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  font-size: 1.0625rem;
  opacity: 0.92;
}

.proof-brand {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0;
}

/* Urgency strip */
.urgency-strip {
  background: linear-gradient(90deg, var(--color-accent-light) 0%, #ffe0f0 100%);
  border: 1px solid var(--ff-pink);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.urgency-strip__note {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

.plan-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(26, 31, 58, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card--featured {
  border-color: var(--ff-pink);
  background: linear-gradient(180deg, #fff 0%, #fff5fb 100%);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  z-index: 1;
}

@media (max-width: 900px) {
  .plan-card--featured {
    transform: none;
    order: -1;
  }
}

.plan-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-fiesta);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card__badge--max {
  background: var(--color-primary);
  color: var(--color-white);
}

.plan-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 0.5rem 0 0.25rem;
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.25rem;
}

.plan-card__meta {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.plan-card__tickets {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-bg);
  border-radius: 8px;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.plan-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.plan-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.plan-card__why {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Add-ons table */
.addons-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.addons-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem;
}

.addons-table th,
.addons-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 31, 58, 0.08);
}

.addons-table th {
  background: var(--gradient-fiesta);
  color: var(--color-white);
  font-weight: 600;
}

.addons-table tr:last-child td {
  border-bottom: none;
}

.addons-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* WhatsApp contact blocks */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.contact-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(233, 30, 140, 0.12);
  border-top: 4px solid var(--ff-pink);
}

.contact-panel__steps {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.contact-panel__phone {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* Family section */
.family-content {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.family-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
  display: inline-block;
}

.family-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.family-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--color-family-accent);
}

/* Venue */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
  align-items: start;
}

.venue__title {
  grid-column: 1;
}

.venue__subhead {
  grid-column: 1;
  margin: 0 0 1rem;
}

.venue__image {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.venue-list,
.venue__date,
.venue__ctas {
  grid-column: 1;
}

.map-embed {
  grid-column: 1 / -1;
}

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

  .venue__title,
  .venue__subhead,
  .venue__image,
  .venue-list,
  .venue__date,
  .venue__ctas,
  .map-embed {
    grid-column: 1;
    grid-row: auto;
  }
}

.venue__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    var(--ff-orange) 0%,
    var(--ff-pink) 40%,
    var(--ff-purple) 70%,
    var(--ff-cyan) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem;
}

.venue-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.venue-list li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.venue-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.venue__date {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.venue__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.map-embed {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: var(--radius);
}

.tbd {
  font-style: italic;
  opacity: 0.85;
}

/* FAQ */
.faq-group {
  margin-bottom: 2rem;
}

.faq-group h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--ff-cyan);
  display: inline-block;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 31, 58, 0.1);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-navy);
  cursor: pointer;
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

.faq-item__trigger:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color-exhibitor-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__content {
  overflow: hidden;
}

.faq-item__content p {
  padding-bottom: 1rem;
  margin: 0;
  color: var(--color-text-muted);
}

.faq-item__content .tbd {
  font-style: italic;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  background: var(--gradient-proof);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 0;
}

.footer a {
  color: var(--color-accent-light);
}

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

.footer__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__logo-placeholder {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer h3 {
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
}

.footer__final-cta {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1a1f3a 0%, #4a1d6a 50%, #9b1d5e 100%);
  color: var(--color-white);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  min-height: var(--sticky-height);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
}

.sticky-cta a:first-of-type {
  background: var(--ff-pink);
}

.sticky-cta a:last-of-type {
  background: var(--ff-cyan);
  border: none;
  color: var(--color-navy);
}

.sticky-cta a:hover {
  opacity: 0.92;
  color: var(--color-white);
}

.sticky-cta__sep {
  opacity: 0.4;
  display: none;
}

@media (min-width: 480px) {
  .sticky-cta__sep {
    display: inline;
  }
}
