/* Fonts are loaded via Google Fonts in index.html */


:root {
  --black: #000000;
  --ink: #111111;
  --muted: #6b6f76;
  --line: #e6e6e6;
  --paper: #f9fafb;
  --white: #ffffff;
  --yellow: #ffd400;
  --pink: #ff008a;
  --green: #4caf50;
  --blue: #2196f3;
  --orange: #ff9800;
  --purple: #9c27b0;
  --footer-pink: #e91e63;
  --charcoal: #18191b;
  --shadow: 0 22px 38px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.3s;
  --speed-fast: 0.2s;
  --speed-slow: 0.5s;
  --radius: 8px;
  --radius-sm: 4px;
  --section-v: 100px;
  --section-v-mobile: 60px;
  --content-w: 1200px;
  --display: "Roboto", sans-serif;
  scroll-behavior: smooth;
  --serif: "Roboto", sans-serif;
  --sans: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  padding: 18px clamp(22px, 5vw, 54px);
  position: sticky;
  top: 0;
  transition: all var(--speed) var(--ease);
  z-index: 100; /* Increased to stay above everything including reveals */
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  min-height: 72px;
  padding-bottom: 12px;
  padding-top: 12px;
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
  transition: transform var(--speed) var(--ease);
  width: clamp(150px, 17vw, 220px);
}

.brand-logo {
  color: var(--muted);
}

.brand:hover .brand-logo {
  transform: rotate(-1deg) scale(1.025);
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 16px;
  font-weight: 600;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a:not(.nav-button)::after {
  background: var(--pink);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--speed-fast) var(--ease);
  width: 100%;
}

.nav a:not(.nav-button):hover::after,
.nav a:not(.nav-button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button,
.button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.72;
  min-height: 50px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: background-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.mobile-only {
  display: none !important;
}

@media (max-width: 820px) {
  .mobile-only {
    display: inline-flex !important;
  }

  .desktop-only {
    display: none !important;
  }
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (max-width: 820px) {
  .header-actions {
    display: flex;
  }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  position: relative;
  z-index: 101;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  transition: all var(--speed) var(--ease);
  width: 24px;
}

.is-nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.is-nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.is-nav-open {
  overflow: hidden;
}

.nav-button::after,
.button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  inset: 0 auto 0 -75%;
  position: absolute;
  transform: skewX(-20deg);
  transition: left var(--speed-slow) var(--ease);
  width: 55%;
}

.nav-button:hover,
.button:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.nav-button:hover::after,
.button:hover::after {
  left: 125%;
}

.nav-button:active,
.button:active {
  box-shadow: none;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 0, 138, 0.35);
  outline-offset: 4px;
}

.nav-button {
  background: var(--black);
  color: var(--white);
  min-width: 154px;
}

.button {
  cursor: pointer;
  font-size: 16px;
  padding: 0 40px;
}

.primary,
.ticket-button {
  background: var(--black);
  color: var(--white);
}

.btn-pink {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}

.btn-pink:hover {
  background: var(--pink);
  color: var(--white);
}

.section-light {
  background: var(--paper);
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(300px, 440px) minmax(380px, 1fr);
  min-height: 520px;
  margin-top: 40px;
  padding: 20px clamp(28px, 8vw, 128px) 70px;
  align-items: center;
}

.hero-copy {
  max-width: 440px;
}

.hero-copy>* {
  animation: fade-up var(--speed-slow) var(--ease) both;
}

.hero-copy> :nth-child(1) {
  animation-delay: 20ms;
}

.hero-copy> :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy> :nth-child(3) {
  animation-delay: 120ms;
}

.hero-copy> :nth-child(4) {
  animation-delay: 170ms;
}

.hero-copy> :nth-child(5) {
  animation-delay: var(--speed-fast);
}

.pill,
.label {
  border-radius: 0;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 20px;
}

.pill {
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}

.pill:hover {
  border-color: var(--pink);
  transform: translateY(-1px);
}

.label.yellow { background: var(--yellow); color: var(--black); }
.label.pink { background: var(--pink); color: var(--white); }
.label.green { background: var(--green); color: var(--white); }
.label.blue { background: var(--blue); color: var(--white); }
.label.orange { background: var(--orange); color: var(--white); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  margin-top: 0;
}

p {
  margin-top: 0;
}

sup,
.sup-small {
  font-size: 8px;
}

h1 {
  font-size: clamp(27px, 3.75vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p:not(.pill) {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 11px;
}

.hero .button {
  margin-top: 10px;
  min-width: 185px;
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 360px;
}

.hero-mark {
  display: block;
  height: auto;
  max-width: 800px;
  width: 50vw;
}

.hero-mark-wrap {
  --hero-tilt: 0deg;
  --hero-x: 0px;
  --hero-y: 0px;
  animation: hero-enter var(--speed-slow) var(--ease) 90ms both, hero-float 5.8s ease-in-out 850ms infinite;
  display: block;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) rotate(var(--hero-tilt));
  transition: transform var(--speed) var(--ease);
  will-change: transform;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark-alt {
  background: var(--ink);
  color: var(--white);
}

.content {
  margin: 0 auto;
  max-width: 960px;
  width: min(calc(100% - 48px), 960px);
}

.narrow {
  max-width: 820px;
}

.big-six {
  position: relative;
}

.bg-yellow { background: var(--yellow); }
.bg-pink { background: var(--pink); }
.bg-green { background: var(--green); }
.bg-blue { background: var(--blue); }
.bg-orange { background: var(--orange); }

.text-yellow { color: var(--yellow); }
.text-pink { color: var(--pink); }
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }

h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 47px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 18px;
}

.intro {
  font-family: var(--sans);
  font-size: 18px;
  max-width: 720px;
  line-height: 1.6;
}

.section-dark .intro {
  color: rgba(255, 255, 255, 0.8);
}

.section-light .intro {
  color: var(--muted);
}

.intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro.muted {
  color: var(--muted);
}

.small {
  font-size: 15px;
}


.book {
  background: linear-gradient(to bottom, var(--white), var(--paper));
  text-align: center;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--pink);
  border-radius: var(--radius);
  padding: 80px 40px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.04);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.bento-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.full {
  grid-column: span 3;
}

.bento-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.bento-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.bento-card.wide p {
  font-size: 16px;
}

@media (max-width: 820px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.wide,
  .bento-card.full {
    grid-column: span 1;
  }
}

.book h2 {
  color: var(--muted);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.book-title {
  color: var(--pink);
  font-size: clamp(60px, 15vw, 120px);
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1;
  font-style: italic;
}

.book-lead {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 16px;
}

.book-footer {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.book .button {
  min-width: 240px;
  font-size: 18px;
}

.feature h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.feature p {
  font-size: 16px;
}

.micro {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero-micro {
  margin-bottom: 30px;
}

.slider-label {
  display: inline-flex;
  margin-top: 24px;
}

.icon-dot {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 29px;
  justify-content: center;
  transition: transform var(--speed) var(--ease);
  width: 29px;
}

.feature:hover .icon-dot {
  transform: rotate(-8deg) scale(1.12);
}

.yellow-dot {
  background: var(--yellow);
}

.pink-dot {
  background: var(--pink);
  color: var(--white);
}


.check-list li {
  font-size: 13px;
  margin: 11px 0;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  align-items: center;
  background: var(--black);
  border-radius: 50%;
  color: var(--white);
  content: "/";
  display: inline-flex;
  font-size: 9px;
  height: 14px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 2px;
  transition: background-color var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
  width: 14px;
}

.check-list li:hover::before {
  background: var(--pink);
  transform: scale(1.15);
}

.steps {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.steps div {
  align-items: flex-start;
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  transition: transform var(--speed-fast) var(--ease);
}

.steps div:hover {
  transform: translateX(4px);
}

.step-icon {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  display: inline-flex;
  font-size: 9px;
  height: 29px;
  justify-content: center;
  transition: border-color var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
  width: 29px;
}

.steps div:hover .step-icon {
  border-color: var(--pink);
  color: var(--pink);
  transform: rotate(4deg);
}

.steps p {
  margin: 0;
}

.testimonials {
  text-align: center;
}

.testimonials h2,
.tickets h2,
.book h2,
.right-fit h2 {
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.pink-bullet {
  color: var(--pink);
}

.pink-rule {
  background: var(--pink);
  height: 2px;
  margin: 22px auto 48px;
  transform-origin: center;
  width: 92px;
}

.quote-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

figure {
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 206px;
  padding: 51px 32px 26px;
  position: relative;
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}

figure:hover {
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-7px);
}

figure span {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  font-size: 25px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: -17px;
  transform: translateX(-50%);
  transition: transform var(--speed) var(--ease);
  width: 34px;
}

figure:hover span {
  transform: translateX(-50%) rotate(-8deg) scale(1.08);
}

blockquote {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.tickets {
  /* section-padding applied in html */
  text-align: center;
}

.centered {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tickets .intro {
  color: var(--muted);
  font-family: var(--sans);
}

.ticket-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 48px auto 40px;
  text-align: left;
}

.ticket {
  background: var(--white);
  border: 1px solid #bdbdbd;
  min-height: 264px;
  padding: 39px 35px 32px;
  position: relative;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.ticket.featured {
  border: 2px solid var(--black);
  box-shadow: 9px 9px 0 var(--yellow);
}

.ticket:hover {
  border-color: var(--black);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.ticket.featured:hover {
  box-shadow: 13px 13px 0 var(--yellow), 0 24px 44px rgba(0, 0, 0, 0.1);
}

.ticket-tag {
  background: var(--pink);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  left: 50%;
  padding: 5px 14px;
  position: absolute;
  text-transform: uppercase;
  top: -15px;
  transform: translateX(-50%);
  transition: transform var(--speed) var(--ease);
  white-space: nowrap;
}

.ticket.featured:hover .ticket-tag {
  transform: translateX(-50%) translateY(-2px);
}

.ticket-list {
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

.ticket-list li {
  margin-bottom: 5px;
}

.ticket-note {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0;
  box-shadow: 9px 9px 0 var(--yellow);
  color: var(--ink);
  font-size: 16px;
  margin: 24px auto 0;
  max-width: 600px;
  padding: 20px 28px;
  text-align: center;
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.ticket-note a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticket-note a:hover {
  color: var(--ink);
}

.ticket-note + .ticket-note {
  margin-top: 14px;
}

.capacity-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--pink);
}

.capacity-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.capacity-box p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 450px;
  margin: 0 auto;
  color: var(--muted);
}

.capacity-box .cta-area {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.capacity-box .cta-area p {
  color: var(--ink);
  margin-bottom: 15px;
}

.capacity-box .cta-area strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.ticket h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.price {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 22px;
}

.price span {
  font-family: var(--sans);
  font-size: 11px;
}

.ticket p:not(.price) {
  color: var(--muted);
  font-size: 16px;
  min-height: 38px;
}

.ticket .button {
  margin-top: 12px;
  min-height: 43px;
  width: 100%;
}

.ticket-button {
  background: var(--yellow);
  color: var(--black);
}

.ticket-button:hover {
  background: var(--yellow);
  filter: brightness(1.1);
}

.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: default;
}

.right-fit {
  /* section-padding applied in html */
}

.right-fit .intro {
  margin-left: auto;
  margin-right: auto;
}

.fit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  margin-top: 48px;
}

.fit-grid article {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-height: 320px;
  padding: 31px 30px;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.fit-grid article:hover {
  border-color: rgba(255, 212, 0, 0.46);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.pin {
  border-radius: 50%;
  display: block;
  height: 6px;
  margin-bottom: 26px;
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
  width: 6px;
}

.fit-grid article:hover .pin {
  box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.12);
  transform: scale(1.3);
}

.yellow-pin {
  background: var(--yellow);
}

.pink-pin {
  background: var(--pink);
}

.white-pin {
  background: var(--white);
}

.fit-grid h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.fit-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-bottom: 12px;
}

.fit-grid p:last-child {
  margin-bottom: 0;
}

.book {
  /* section-padding applied in html */
  text-align: center;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--speed-fast) var(--ease);
}

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

.footer-contact a {
  color: var(--footer-pink);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--speed-fast) var(--ease);
}

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

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-legal {
    grid-column: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--speed-slow) var(--ease), transform var(--speed-slow) var(--ease);
}

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

/* Staggered Children Reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }

/* Micro-animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float {
  animation: float 4s ease-in-out infinite;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  z-index: 1000;
  width: 0%;
  transition: width 0.1s;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--speed) var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--pink);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255, 61, 144, 0.3);
}

.quote-grid>.reveal:nth-child(2),
.ticket-grid>.reveal:nth-child(2),
.fit-grid>.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.quote-grid>.reveal:nth-child(3),
.fit-grid>.reveal:nth-child(3) {
  transition-delay: var(--speed-fast);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translate3d(22px, 18px, 0) rotate(3deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(var(--hero-x), var(--hero-y), 0) rotate(var(--hero-tilt)) scale(1);
  }
}

@keyframes hero-float {

  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }

  50% {
    filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.06));
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-mark-wrap {
    transform: none;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 0;
    padding: var(--section-v-mobile) 24px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    min-height: 320px;
    order: -1;
  }

  .hero-mark {
    width: min(440px, 85vw);
  }

  .big6-grid,
  .ticket-grid,
  .fit-grid,
  .speaker-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .big6-grid article {
    padding: 20px 0;
  }

  .nav {
    background: var(--yellow);
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translateY(-20px);
    transition: all var(--speed) var(--ease);
    width: 100%;
    z-index: 90;
    padding: 40px;
  }

  .is-nav-open .nav {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav a {
    font-size: 32px;
    margin: 15px 0;
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 700;
  }

  .nav-button.desktop-only {
    display: none;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-button {
    min-width: 105px;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .content {
    width: min(calc(100% - 32px), var(--content-w));
  }

  .hero {
    padding: var(--section-v-mobile) 16px;
  }

  .hero-art {
    min-height: 220px;
  }

  .hero-mark {
    width: min(260px, 90vw);
  }

  h1 {
    font-size: clamp(20px, 6vw, 24px);
  }

  h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .big-six,
  .right-fit,
  .tickets,
  .book,
  .section-padding {
    padding: var(--section-v-mobile) 0;
  }

  .ticket {
    padding: 28px 16px 24px;
  }

  .faq-trigger {
    padding: 16px;
  }

  .faq-content {
    padding: 0 16px;
  }

  .nav a {
    font-size: 26px;
    margin: 12px 0;
  }

  .nav {
    padding: 24px;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-button {
    min-width: 0;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand-logo {
    width: min(130px, 35vw);
  }
}

/* --- V2 Components --- */

.slider-section {
  position: relative;
}

.slider-container {
  overflow: hidden;
  padding: 40px 0 60px;
  position: relative;
  cursor: grab;
  user-select: none;
}

.slider-container:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -30px;
  margin-bottom: 10px;
}

.slider-btn {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
  z-index: 10;
}

.slider-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 138, 0.2);
}

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

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.person-card {
  flex: 0 0 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

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

.person-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.section-padding {
  padding: var(--section-v) 0;
}

.person-info {
  padding: 20px;
}

.person-info h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.person-info p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.3;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 138, 0.95);
  color: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.person-card:hover .testimonial-overlay {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-overlay blockquote {
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--serif);
}

/* --- Already Booked Section --- */
.booked-section {
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booked-header {
  text-align: center;
  margin-bottom: 60px;
}

.booked-header h2 {
  margin-top: 10px;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  min-width: 100%;
}

.marquee-left .marquee-content {
  animation: marquee-scroll-left 80s linear infinite;
}

.marquee-right .marquee-content {
  animation: marquee-scroll-right 80s linear infinite;
}

.marquee:hover .marquee-content,
.marquee:active .marquee-content {
  animation-play-state: paused;
}

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

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

.booked-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.booked-tag:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--pink);
}

.booked-tag small {
  opacity: 0.5;
  font-weight: 400;
}

.verified {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 10px var(--pink);
}

.verified::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.speaker-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--speed-slow) var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--pink);
}

.speaker-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--line);
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-slow) var(--ease), filter var(--speed-slow) var(--ease);
  filter: grayscale(100%);
}

.speaker-card:hover .speaker-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.linkedin-link {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--speed) var(--ease);
  z-index: 5;
  color: #0077b5;
}

.linkedin-link:hover {
  background: #0077b5;
  color: var(--white);
}

.linkedin-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.multi-speaker {
  display: flex;
}

.multi-speaker .speaker-img {
  width: 50%;
}

.linkedin-links {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.multi-speaker .linkedin-link {
  position: static;
}

.speaker-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.speaker-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 4px 0;
  color: var(--ink);
  font-weight: 700;
}

.speaker-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.speaker-bio {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.speaker-card.prominent {
  background: var(--ink);
  color: var(--white);
  padding: 0;
  border: none;
  flex-direction: row;
  align-items: center;
  min-height: 300px;
}

@media (min-width: 992px) {
  .speaker-card.prominent {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .speaker-card.prominent {
    flex-direction: column;
  }
}

.speaker-card.prominent .speaker-image-wrapper {
  width: 300px;
  flex-shrink: 0;
  aspect-ratio: auto;
  height: 100%;
}

@media (max-width: 768px) {
  .speaker-card.prominent .speaker-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
  }
}

.speaker-card.prominent .speaker-content {
  padding: 40px;
  text-align: left;
  align-items: flex-start;
}

.speaker-card.prominent h4 {
  color: var(--white);
  font-size: 32px;
  margin: 0 0 10px 0;
}

.speaker-card.prominent .speaker-bio {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
}

.speaker-card.prominent .tag-pill {
  top: 20px;
  left: 20px;
}

.tag-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: inline-block;
  padding: 5px 12px;
  background: var(--line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-transform: uppercase;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}

.tag-pill.noticed {
  background: var(--yellow);
}

.tag-pill.human {
  background: #E8F4FD;
  color: #2D9CDB;
}

.tag-pill.different {
  background: var(--pink);
  color: var(--white);
}

.tag-pill.wrap-up {
  background: var(--purple);
  color: var(--white);
}

.tag-pill.indispensable {
  background: var(--blue);
  color: var(--white);
}

.tag-pill.informed {
  background: var(--green);
  color: var(--white);
}

.tag-pill.ready {
  background: var(--purple);
  color: var(--white);
}

.tag-pill.quiz {
  background: var(--orange);
  color: var(--white);
}

.big6-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.big6-grid article {
  position: relative;
  padding: 24px 0 24px 28px;
  transition: all 0.3s var(--ease);
}

.big6-grid article::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.big6-grid article h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  transition: color var(--speed) var(--ease);
}

.big6-grid article p {
  color: var(--line);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5;
}

.big6-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
  margin-bottom: 10px;
  transition: all 0.3s var(--ease);
}

.big6-grid article:hover .big6-bubble {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.big6-grid article:hover {
}

.big6-grid article:hover::before {
  width: 5px;
}

.be-different::before,
.be-noticed::before,
.be-informed::before,
.be-indispensable::before,
.be-human::before,
.be-ready::before {
  background: var(--white);
}

.centered-title {
  text-align: center;
}

/* FAQ Accordion */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  transition: all var(--speed) var(--ease);
  overflow: hidden;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease);
}

.faq-trigger h4 {
  margin: 0;
  font-size: 18px;
  font-family: var(--sans);
  color: var(--yellow);
  transition: color 0.3s var(--ease);
}

.faq-item.active .faq-trigger h4 {
  color: var(--white);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--speed-slow) var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.4s var(--ease);
}

.faq-item.active .faq-icon {
  transform: rotate(0deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 30px;
}

.faq-item.active .faq-content {
  max-height: 300px;
  /* Adjust as needed */
  padding-bottom: 30px;
}

.faq-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* --- After Hours Section (Premium Light Redesign) --- */
.after-hours-section {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.after-hours-section h2 {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 24px;
}

.after-hours-section h2 span.accent-text {
  color: var(--pink);
}

/* Time capsule badge */
.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 138, 0.08);
  border: 1px solid var(--pink);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Split Columns Layout */
.after-hours-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 60px);
  margin-top: 30px;
  align-items: start;
}

@media (max-width: 992px) {
  .after-hours-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left Column - Original Content Copy */
.quiz-description-column {
  max-width: 720px;
}

.quiz-description-column p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.quiz-description-column p strong {
  color: var(--ink);
}

/* Vertical Light CTA Block */
.quiz-cta-block-light-vertical {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.price-tag-vertical {
  font-size: 16px;
  margin: 0;
  color: var(--muted);
}

.price-tag-vertical strong {
  color: var(--ink);
}

.price-tag-vertical .price-amount {
  color: var(--pink);
  font-weight: 800;
  font-size: 20px;
}

/* Bigger prominent button */
.button.primary.big-button-quiz {
  min-height: 54px;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap; /* Prevent breaking into two lines */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(255, 0, 138, 0.2);
  transition: all var(--speed) var(--ease);
}

.button.primary.big-button-quiz:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.2);
}

@media (max-width: 576px) {
  .button.primary.big-button-quiz {
    width: 100%;
    white-space: normal; /* allow wrapping on tiny screens to avoid overflow */
  }
}

/* Right Column - Hosts Cards */
.hosts-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.hosts-panel-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hosts-panel-header h3 {
  font-size: 18px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.podcast-label-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--pink);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
}

.hosts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.host-item-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  transition: all var(--speed) var(--ease);
}

.host-item-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: var(--shadow);
}

/* Lead Gen Form */
.lead-form-section {
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.lead-form {
  max-width: 500px;
  margin: 40px auto 0;
  text-align: left;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-field .required {
  color: var(--pink);
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  box-sizing: border-box;
}

.form-field input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-field input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 138, 0.1);
}

.form-field input.error {
  border-color: var(--pink);
  background: rgba(255, 0, 138, 0.03);
}

.form-field input.valid {
  border-color: var(--green);
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--pink);
  margin-top: 6px;
  min-height: 18px;
  font-weight: 500;
}

.lead-submit {
  width: 100%;
  margin-top: 8px;
}

.form-footnote {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

.form-error-message {
  display: none;
  text-align: center;
  padding: 16px 20px;
  margin-top: 20px;
  background: rgba(255, 0, 138, 0.06);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  color: var(--pink);
  font-size: 14px;
  font-weight: 500;
}

.form-error-message.is-visible {
  display: block;
  animation: fadeInUp 0.4s var(--ease);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.is-visible {
  display: block;
  animation: fadeInUp 0.6s var(--ease);
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  color: var(--ink);
}

.form-success p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Emma's Initials Avatar */
.host-avatar-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 0, 138, 0.15);
}

/* Ruta's Image Avatar */
.host-avatar-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.host-avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: all var(--speed) var(--ease);
}

.host-item-card:hover .host-avatar-image img {
  filter: grayscale(0%);
}

.host-info-details {
  flex-grow: 1;
}

.host-info-details h4 {
  font-size: 16px;
  margin: 0 0 2px 0;
  font-weight: 700;
  color: var(--ink);
}

.host-info-details p.host-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink);
  letter-spacing: 0.05em;
  margin: 0 0 4px 0;
}

.host-info-details p.host-bio {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.host-item-card .linkedin-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: #0077b5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
}

.host-item-card:hover .linkedin-link {
  background: #0077b5;
  color: var(--white);
  border-color: #0077b5;
}
