/* ==========================================
   CELEBRATE PAGE
   ========================================== */

.celebrate-section {
  min-height: calc(100vh - var(--header-height) - 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + 24px + var(--space-16));
  padding-bottom: var(--space-16);
}

.celebrate-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.celebrate-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .celebrate-title {
    font-size: var(--text-7xl);
  }
}

.celebrate-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.split-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.split-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.split-card-alt {
  background: var(--bg-card-light);
  color: var(--text-dark);
}

.split-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.split-card-title {
  font-size: var(--text-4xl);
  margin: 0;
}

.split-card-alt .split-card-title {
  color: var(--text-dark);
}

.split-card-audience {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--accent);
  margin: 0;
}

.split-card-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin: 0;
}

.split-card-alt .split-card-description {
  color: var(--text-muted);
}

.split-card-value {
  font-weight: var(--font-semibold);
  margin: 0;
}

.split-card .btn {
  margin-top: var(--space-4);
  align-self: flex-start;
}

.split-card-alt .btn-secondary {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.split-card-alt .btn-secondary:hover {
  background: var(--text-dark);
  color: var(--text-primary);
}

/* === V3 Design === */

/* ==========================================
   TAGLINE TICKER — between hero and bento
   ========================================== */

.tagline-ticker {
  background: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  max-width: 100vw;
  position: relative;
  padding: 1.5rem 0 0;
}

.tagline-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: tagline-scroll 140s linear infinite;
  will-change: transform;
}

.tagline-ticker-text {
  font-family: 'Kleber', 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  font-size: clamp(6rem, 18vw, 16rem);
  color: #000000;
  text-transform: uppercase;
  flex-shrink: 0;
  font-feature-settings:
    'ss03' 1,
    'ss07' 1;
  line-height: 0.85;
  padding: 0 0.15em;
}

@keyframes tagline-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   HERO — static image, headline box, stats, CTAs
   ========================================== */

/* Hero fills exactly the remaining viewport below ticker + header */
.hero {
  height: calc(100svh - 103px); /* 38px ticker + 65px header */
  min-height: 500px;
  background: #000;
}

/* Play/pause toggle — pinned left, doesn't affect Learn More centering */
.hero-bg-toggle {
  position: absolute;
  left: 2.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.hero-bg-toggle:hover {
  opacity: 0.85;
  transform: scale(1.08);
}

.hero-bg-toggle-icon {
  display: block;
  width: 100%;
  height: 100%;
}

/* Image background instead of video */
.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Content overlay — fill the hero, don't set its own viewport height */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 4rem 2rem 5rem;
}

/* Rounded border box around the headline
   SAFARI GOTCHA: will-change:opacity is REQUIRED here. Without it, Safari
   demotes the element from its compositor layer between transitions. When
   the next fade-out starts, Safari re-promotes the element and flattens
   the rgba() background against the black page background into the GPU
   texture — making the 50% transparent background appear fully opaque.
   will-change:opacity keeps the element on its own layer permanently,
   preserving the alpha channel. See: docs/operations/SAFARI-GOTCHAS.md */
.hero-headline-box {
  background: rgba(0, 0, 0, 0.5);
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: 1rem 2.5rem;
  text-align: center;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-headline {
  font-family: 'Kleber', 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.82;
  color: #ffffff;
  text-shadow: none;
  -webkit-text-stroke: 0;
  filter: none;
  text-transform: none;
  margin: 0;
  font-feature-settings:
    'ss03' 1,
    'ss06' 1,
    'ss07' 1;
}

/* Hero action buttons — anchored to bottom */
.hero-actions {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-btn {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

/* Outline button for "Learn More" */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 9999px;
  padding: 0.9rem 2.25rem;
  line-height: 1;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ==========================================
   WHAT IS IT — stacked full-width cards
   ========================================== */

.whatisit-section {
  background: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.whatisit-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 2rem 0;
}

.whatisit-headline {
  font-family: 'Kleber', 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  font-size: clamp(3rem, 12.8vw, 6.5rem);
  line-height: 0.9;
  color: #000000;
  text-transform: none;
  margin: 0 0 0.75rem;
  font-feature-settings:
    'ss03' 1,
    'ss06' 1,
    'ss07' 1;
}

.guillemet {
  font-feature-settings:
    'ss03' 1,
    'ss06' 1,
    'ss07' 1;
}

/* Hyphen glyph — disable ss06 to keep the thick default hyphen */
.glyph-hyphen {
  font-feature-settings:
    'ss03' 1,
    'ss07' 1;
}

/* Arrow glyphs need 'case' for the Kleber bold arrow alternates */
.glyph-arrow {
  font-feature-settings:
    'ss03' 1,
    'ss07' 1,
    'case' 1;
}

.guillemet--left {
  margin-right: -0em;
}

.guillemet--right {
  margin-left: -0em;
}

.whatisit-sub {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 4.05vw, 1.35rem);
  line-height: 1.3;
  color: #000000;
  max-width: 600px;
  margin: 0 auto 0;
}

.whatisit-image-wrap {
  margin: -1rem -2rem 0;
  max-height: 650px;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
}

.whatisit-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 1 Hour Show --- */
.whatisit-card--hour {
  --hour-scale: clamp(4.08rem, 7.25vw, 5.875rem);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100svh - 4.5rem);
  padding: 1.5rem 2rem 2rem;
}

.whatisit-card--hour .whatisit-headline {
  margin-bottom: 0.625rem;
}

.whatisit-card--hour .headline-decorator {
  --dec-size: max(0.75rem, 0.234em);
  --dec-gap: max(0.5rem, 0.15em);
}

.whatisit-card--hour .whatisit-sub {
  font-weight: 500; /* Graphik Medium */
  max-width: 30em;
  margin-bottom: 0;
}

.whatisit-card--hour .whatisit-image-wrap {
  flex: 1 1 0;
  min-height: 0;
  max-height: none;
  max-width: 1160px;
  width: 100%;
  margin: 1.5rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.whatisit-card--hour .whatisit-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

/* Pink square decorators flanking headlines */
.headline-decorator {
  display: inline-block;
  width: var(--dec-size, 24px);
  height: var(--dec-size, 24px);
  background: #ff73ef;
  background: color(display-p3 1 0.451 0.937);
  vertical-align: baseline;
  position: relative;
  top: -0.22em;
  border-radius: 0;
}

/* Decorators take zero layout space so text centers ignoring them */
.headline-decorator:first-child {
  margin-left: calc(-1 * (var(--dec-size, 24px) + var(--dec-gap, 0.75rem)));
  margin-right: var(--dec-gap, 0.75rem);
}

.headline-decorator:last-child {
  margin-left: var(--dec-gap, 0.75rem);
  margin-right: calc(-1 * (var(--dec-size, 24px) + var(--dec-gap, 0.75rem)));
}

/* --- 8 Teams --- */
.whatisit-card--teams {
  --teams-scale: clamp(2.5rem, 7.25vw, 5.875rem);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100svh - 4.5rem);
  padding: 0.75rem 2rem 2rem;
}

.whatisit-card--teams .whatisit-headline {
  color: #000000;
  margin-bottom: 0.625rem;
}

.whatisit-card--teams .headline-decorator {
  --dec-size: max(0.75rem, 0.234em);
  --dec-gap: max(0.5rem, 0.15em);
  background: #ff6c22;
  background: color(display-p3 1 0.424 0.133);
}

.whatisit-card--teams .whatisit-sub {
  max-width: 24em;
  margin-bottom: 0;
}

/* ==========================================
   TEAMS MARQUEE — 2-row opposite-scroll
   ========================================== */

.teams-marquee {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 1160px;
  margin: 1.5rem auto 0;
}

.teams-marquee-row {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.teams-marquee-track {
  display: flex;
  gap: 1rem;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.teams-marquee-track img {
  height: 100%;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

/* Animated mascot overlay on team cards */
.team-card-animated {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.team-card-animated img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 0; /* parent handles clipping */
  object-fit: cover;
}

.team-mascot-anim {
  position: absolute;
  bottom: -14%;
  right: 3%;
  height: 75%;
  display: inline-block;
  pointer-events: none;
}

.team-mascot-anim--flip {
  transform: scaleX(-1);
}

.team-mascot-anim--birds {
  height: 92%;
  bottom: -7%;
}

.team-mascot-anim--bones {
  right: 6%;
  height: 84%;
  bottom: -10%;
}

.team-mascot-anim--bugs {
  height: 92%;
  bottom: -7%;
}

.team-mascot-anim--rats {
  height: 92%;
  bottom: -7%;
}

.team-mascot-anim--eggs {
  height: 78%;
}

.team-mascot-anim--tables {
  height: 84%;
}

.team-mascot-anim--cans {
  height: 83%;
  right: 1%;
}

.team-mascot-anim--horns {
  height: 79%;
}

.team-mascot-anim video {
  display: none;
}

.teams-marquee-track--left {
  animation: teams-scroll-left 93s linear infinite;
}

.teams-marquee-track--right {
  animation: teams-scroll-right 93s linear infinite;
}

@keyframes teams-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes teams-scroll-right {
  0% {
    transform: translateX(calc(-50% - 0.5rem));
  }
  100% {
    transform: translateX(0);
  }
}

/* --- 40ft LED Wall --- */
.whatisit-card--led {
  --led-scale: clamp(4.08rem, 7.25vw, 5.875rem);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100svh - 4.5rem);
  padding: 0.75rem 2rem 2rem;
}

.whatisit-card--led .whatisit-headline {
  color: #000000;
  margin-bottom: 0.625rem;
}

.whatisit-card--led .whatisit-headline sup {
  font-size: 0.55em;
  vertical-align: 0.65em;
  line-height: 0;
  letter-spacing: -0.05em;
}

.whatisit-card--led .headline-decorator {
  --dec-size: max(0.75rem, 0.234em);
  --dec-gap: max(0.5rem, 0.15em);
  background: #00ff46;
  background: color(display-p3 0 1 0.275);
}

.whatisit-card--led .whatisit-sub {
  color: #000000;
  max-width: 38em;
  margin-bottom: 0;
}

.whatisit-card--led .whatisit-image-wrap {
  flex: 1 1 0;
  min-height: 0;
  max-height: none;
  max-width: 1160px;
  width: 100%;
  margin: 1.5rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.whatisit-card--led .whatisit-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

/* ==========================================
   MASCOTS & MINIGAMES — v3 stacked cards
   ========================================== */

.mascots-section {
  background: #ffffff;
  padding: 0 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mascots-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 2rem 0;
}

/* — Minigames card — */
.mascots-card--games {
  --games-scale: clamp(4.08rem, 7.25vw, 5.875rem);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100svh - 4.5rem);
  padding: 0.75rem 2rem 0;
}

.mascots-card--games .whatisit-headline {
  color: #000000;
  margin-bottom: 0.625rem;
}

.mascots-card--games .headline-decorator {
  --dec-size: max(0.75rem, 0.234em);
  --dec-gap: max(0.5rem, 0.15em);
  background: #7b2ff2;
  background: color(display-p3 0.482 0.184 0.949);
}

.mascots-card--games .whatisit-sub {
  color: #000000;
  max-width: 38em;
  margin-bottom: 0;
}

/* Scrolling collage container */
.games-collage-wrap {
  flex: 1 1 0;
  min-height: 0;
  max-width: 1160px;
  width: 100%;
  margin: 1.5rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000000;
}

.games-collage-track {
  display: flex;
  gap: 0;
  height: 100%;
  width: max-content;
  /* Animation starts paused — JS IntersectionObserver sets running
     when visible. Safari defers offscreen animations on page load
     and never un-pauses them when scrolled into view. */
  animation: collage-scroll 40s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.games-collage-track img {
  height: 100%;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-left: -1px; /* HACK: hides sub-pixel seam — image needs re-export with seamless left/right tiling */
}

.games-collage-track img:first-child {
  margin-left: 0;
}

@keyframes collage-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   LOUNGE + SHOP — v3 bento grid
   ========================================== */

.lounge-section {
  background: #ffffff;
  padding: 0 calc(1.5rem + 2rem) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  padding: 3rem 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bento-card .whatisit-headline {
  color: #ffffff;
  font-size: clamp(3.5rem, 7vw, 5rem);
}

.bento-card .whatisit-sub {
  color: #ffffff;
  max-width: 460px;
}

.bento-btn {
  /* position+z-index keeps the button above the scaled lounge image, which
     overflows its container on mobile (scale(1.14) from bottom-right origin
     pushes the glass up past the bento-image wrapper edge by ~22px). */
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Graphik', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.bento-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.bento-image {
  margin-top: auto;
  padding-top: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

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

/* Lounge — green (matches the lounge image backdrop) */
.bento-card--lounge {
  background: #059c4f;
  background: color(display-p3 0.02 0.612 0.31);
}

.bento-card--lounge .bento-image {
  justify-content: flex-start;
  margin-left: -2rem;
  margin-right: -2rem;
  width: calc(100% + 4rem);
}

.bento-card--lounge .bento-image img {
  object-fit: cover;
  object-position: left center;
  transform: translateX(45px) scale(1.14);
  transform-origin: bottom right;
}

/* Shop — pink */
.bento-card--shop {
  background: #ea63e1;
  background: color(display-p3 0.918 0.388 0.882);
}

.bento-card--shop .bento-image {
  padding-bottom: 1.5rem;
}

/* ==========================================
   REVIEWS — snap carousel with square cards
   ========================================== */

.reviews-section {
  --card-size: min(600px, 85vw);
  --card-gap: 1.5rem;
  --side-mask: max(3.5rem, calc((100% - 1160px) / 2));
  background: #ffffff;
  position: relative;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .reviews-section {
    --card-size: calc((min(1160px, 100vw - 7rem) - 1.5rem) / 2);
  }
}

/* Transform-driven track — no scroll */
.reviews-carousel {
  display: flex;
  gap: var(--card-gap);
  padding: 1.5rem 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- Individual card ---- */
.review-card {
  --accent: #828282;
  --quote-color: #000000;
  flex: 0 0 var(--card-size);
  scroll-snap-align: center;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
}

/* Top row: stars left, source right */
.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.review-stars {
  font-size: 3.25rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
}

.review-source {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Center quote */
.review-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1.25rem 0;
}

.review-quote p {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 5.75vw, 3.5rem);
  line-height: 1.15;
  color: var(--quote-color);
  text-align: center;
  margin: 0;
}

/* Bottom row: name left, guillemet right */
.review-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.review-name {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

.review-glyph {
  font-family: 'Kleber', 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  font-size: 14rem;
  line-height: 0.45;
  color: var(--accent);
  font-feature-settings:
    'ss03' 1,
    'ss06' 1,
    'ss07' 1;
  align-self: flex-end;
  margin-bottom: -0.256em;
}

/* ---- Color variants ---- */

/* Lime card — bright bg, dark accents */
.review-card--lime {
  background: #d9ff00;
  background: color(display-p3 0.882 1 0);
  --accent: #828282;
  --quote-color: #000000;
}

/* Mint card — bright bg, dark accents */
.review-card--mint {
  background: #4ee8a4;
  background: color(display-p3 0.337 0.902 0.635);
  --accent: #828282;
  --quote-color: #000000;
}

/* Gray card — neutral bg, colored accents */
.review-card--gray {
  background: #828282;
  --quote-color: #ffffff;
}

/* Accent: mint on gray */
.review-card--accent-mint {
  --accent: #4ee8a4;
  --accent: color(display-p3 0.337 0.902 0.635);
}

/* Accent: lime on gray */
.review-card--accent-lime {
  --accent: #d9ff00;
  --accent: color(display-p3 0.882 1 0);
}

/* ---- Side masks (white margin strips) ---- */
.reviews-section::before,
.reviews-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--side-mask);
  background: #ffffff;
  z-index: 2;
}
.reviews-section::before {
  left: 0;
}
.reviews-section::after {
  right: 0;
}

/* ---- Navigation arrows ---- */
.reviews-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.reviews-nav-btn {
  pointer-events: auto;
  background: none;
  border: none;
  cursor: pointer;
  width: var(--side-mask);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

.reviews-nav-btn--prev {
  justify-content: flex-end;
  padding-right: 25px;
}

.reviews-nav-btn--next {
  justify-content: flex-start;
  padding-left: 25px;
}

.reviews-nav-btn img {
  display: block;
  height: 200px;
  width: auto;
}

.reviews-nav-btn--next img {
  transform: scaleX(-1);
}

/* ==========================================
   MINIGAMES — logo scroll in black box
   ========================================== */

/* ==========================================
   FAQ — v3 card with accordion
   ========================================== */

.faq-section {
  background: #ffffff;
  padding: 0 0.75rem 0.75rem;
}

.faq-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.accordion {
  max-width: 1160px;
  margin: 0 auto;
  text-align: left;
}

.accordion .accordion-item {
  border-bottom: 1.5px solid #000000;
}

.accordion .accordion-item:first-child {
  border-top: 1.5px solid #000000;
}

.accordion .accordion-trigger {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #000000;
  padding: 1.5rem 0;
  cursor: pointer;
}

.accordion .accordion-trigger:hover {
  color: #000000;
  opacity: 1;
}

/* Circle +/- icon */
.accordion .accordion-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-radius: 50%;
  color: #000000;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    color 300ms ease;
}

.accordion .accordion-icon::before {
  width: 16px;
  height: 2.5px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion .accordion-icon::after {
  width: 2.5px;
  height: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform var(--transition-base),
    opacity 200ms ease;
}

/* Expanded: green filled circle, black minus, black outline */
.accordion .accordion-trigger[aria-expanded='true'] .accordion-icon {
  background: #46f778; /* sRGB fallback */
  background: color(display-p3 0.275 0.969 0.471); /* P3 green */
  border-color: #000000;
  color: #000000;
}

.accordion .accordion-trigger[aria-expanded='true'] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion .accordion-content {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.accordion .accordion-content p {
  line-height: 1.4;
  margin: 0;
  padding: 0 0 1.5rem;
  max-width: 85%;
}

/* Subtle inline links in accordion answers — underline only on hover */
.accordion .accordion-content a {
  color: inherit;
  text-decoration: none;
  transition: text-decoration-color 0.15s ease;
}
.accordion .accordion-content a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

/* Answer colors — 6-color cycle */
.accordion .accordion-item:nth-child(6n + 1) .accordion-content {
  color: #ff6c22; /* sRGB fallback */
  color: color(display-p3 1 0.424 0.133);
}
.accordion .accordion-item:nth-child(6n + 2) .accordion-content {
  color: #e542e1; /* sRGB fallback */
  color: color(display-p3 0.898 0.259 0.882);
}
.accordion .accordion-item:nth-child(6n + 3) .accordion-content {
  color: #4e04b7; /* sRGB fallback */
  color: color(display-p3 0.306 0.016 0.718);
}
.accordion .accordion-item:nth-child(6n + 4) .accordion-content {
  color: #0597e8; /* sRGB fallback */
  color: color(display-p3 0.02 0.592 0.91);
}
.accordion .accordion-item:nth-child(6n + 5) .accordion-content {
  color: #4eac57; /* sRGB fallback */
  color: color(display-p3 0.306 0.675 0.341);
}
.accordion .accordion-item:nth-child(6n + 6) .accordion-content {
  color: #ad00a9; /* sRGB fallback */
  color: color(display-p3 0.678 0 0.663);
}

/* ==========================================
   LOCATION — v3 card with map
   ========================================== */

.location-section {
  background: #ffffff;
  padding: 0.75rem;
}

.location-card {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: #d9ff00;
  background: color(display-p3 0.882 1 0);
  overflow: hidden;
}

.location-card ::selection {
  background: #000000;
  color: #d9ff00;
  color: color(display-p3 0.882 1 0);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.location-text {
  padding: 2.5rem 3rem 2.5rem 2.5rem;
}

.location-headline {
  font-family: 'Kleber', 'Georgia', serif;
  font-weight: normal;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #000000;
  line-height: 0.95;
  margin: 0 0 1.5rem;
  font-feature-settings:
    'ss03' 1,
    'ss07' 1;
  text-transform: none;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-info p {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.train-icon {
  display: inline;
  height: 1em;
  width: 1em;
  vertical-align: -0.15em;
  margin-right: 0.1em;
}

.location-info a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}

.location-info a:hover {
  opacity: 0.6;
}

.location-info .location-phone {
  text-decoration: none;
}

.location-info .location-phone:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 1;
}

.location-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  align-items: center;
}

.location-social a {
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #000000;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}

.location-social a svg {
  width: 24px;
  height: 24px;
}

.location-social a:hover {
  opacity: 0.6;
}

.location-map {
  display: flex;
  align-items: stretch;
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

@media (max-width: 767px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-text {
    padding: 2.5rem 2rem 1.5rem;
  }

  .location-map {
    padding: 0 1.5rem 1.5rem;
    min-height: 300px;
  }
}

/* ==========================================
   MINIGAMES — logo scroll (horizontal)
   ========================================== */

/* Horizontal scroll container — fills remaining card height below headline */
.logo-scroll {
  background: transparent;
  border-radius: 0;
  padding: 0 0 1.5rem;
  width: 100%;
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin: 1.5rem 0 0;
  /* Horizontal fade masks on left and right edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.logo-scroll::before,
.logo-scroll::after {
  display: none;
}

/* Horizontal track — row layout, scrolls left */
.logo-scroll-track {
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logo-scroll-left 55s linear infinite;
}

.logo-scroll-track img {
  width: auto;
  height: auto;
  max-width: 600px;
  max-height: 600px;
  flex-shrink: 0;
}

@keyframes logo-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   CONTENT PAGES — contact, privacy, terms
   ========================================== */

.content-section {
  background: #ffffff;
  padding: 0 0.75rem 0.75rem;
}

.content-card {
  border-radius: var(--radius-xl);
  background: #f5f2eb;
  padding: 4rem 2rem 3rem;
  max-width: 100%;
  margin: 0 auto;
}

.content-card .whatisit-headline {
  text-align: center;
}

.content-card .whatisit-sub {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Legal prose (privacy, terms) */
.prose {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #555555;
}

.prose h2 {
  font-family: 'Kleber', 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  color: #000000;
  text-transform: none;
  margin: 3rem 0 1rem;
  font-feature-settings:
    'ss03' 1,
    'ss07' 1;
}

.prose h3 {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #000000;
  margin: 2rem 0 0.75rem;
}

.prose h4 {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

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

.prose a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  opacity: 0.6;
}

.prose .last-updated {
  color: #999999;
  margin-bottom: 2.5rem;
}

/* Contact form */
.contact-form {
  max-width: 850px;
  margin: 0 auto;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000000;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #000000;
  background: #ffffff;
  border: 1.5px solid #d0d0d0;
  border-radius: 0.75rem;
  padding: 1rem 1.15rem;
  transition: border-color 150ms ease;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #000000;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-submit {
  width: 100%;
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  border-radius: 9999px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 150ms ease;
}

.form-submit:hover {
  background: #333333;
  border-color: #333333;
}

.form-required {
  color: #ff1e23;
  color: color(display-p3 1 0.255 0.212);
}

.form-suggestion {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #555555;
  margin-top: 0.375rem;
}

.form-suggestion-link {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.form-suggestion-link:hover {
  opacity: 0.6;
}

/* ==========================================
   FORM STATUS MESSAGES — error + success
   ========================================== */

.form-status {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}

.form-status.error {
  background: rgba(255, 30, 35, 0.1);
  color: #d41a1e;
}

.form-status.success {
  background: rgba(78, 172, 87, 0.12);
  color: #3d8a45;
}

/* Waitlist error text */
.waitlist-error {
  color: #d41a1e;
}

/* ==========================================
   CONTACT FORM — success state (checkmark)
   ========================================== */

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4eac57;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

.form-success .whatisit-headline {
  text-align: center;
  margin-bottom: 0.75rem;
}

.form-success .whatisit-sub {
  text-align: center;
  margin-bottom: 0;
}

/* ==========================================
   NEWSLETTER SECTION (homepage, below Find Us)
   ========================================== */

.newsletter-section {
  background: #ffffff;
  padding: 0 0.75rem 0.75rem;
}

.newsletter-card {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

/* ==========================================
   CORPORATE EVENTS PAGE
   ========================================== */

/* Hero card — fills viewport below header, image takes remaining space */
.corp-hero-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  padding: 2rem 0 0; /* no horizontal padding — text gets it individually, image fills edge-to-edge */
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
  height: calc(100svh - var(--header-height) - 3rem); /* accounts for ticker height + bottom gap */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.corp-hero-card .whatisit-headline {
  color: #000000;
  margin-bottom: 1rem;
  padding: 0 2rem;
}

.corp-hero-card .whatisit-sub {
  color: #000000;
  max-width: 600px;
  margin-bottom: 0;
  padding: 0 2rem;
}

.corp-hero-image-wrap {
  margin: 2rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-xl) var(--radius-xl); /* top: 24px, bottom: 33px — clips directly, no reliance on parent overflow */
  flex: 1;
  min-height: 0;
}

.corp-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ==========================================
   CORPORATE LOGOS TICKER
   ========================================== */

.corp-logos-card {
  max-width: 1160px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.corp-logos-label {
  font-family: 'Graphik', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 1.75rem;
}

.corp-logos-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.corp-logos-track {
  display: flex;
  align-items: center;
  gap: 0; /* spacing lives on .corp-logo-item so -50% lands exactly on loop point */
  width: max-content;
  animation: logo-scroll-left 52s linear infinite;
  will-change: transform;
}

/* Fixed-size box per logo — object-fit:contain normalizes all SVG aspect ratios */
.corp-logo-item {
  flex-shrink: 0;
  width: 130px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 3.5rem; /* uniform spacing; box-sizing:content-box keeps math clean */
  box-sizing: content-box;
}

.corp-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
}

/* Lightbox partnership banner — top of page, headline treatment */
.corp-partner-banner-wrap {
  padding: 0.75rem 0.75rem 0.75rem;
  display: flex;
  justify-content: center;
}

.corp-partner-banner {
  border-radius: var(--radius-xl);
  background: #d9ff00;
  background: color(display-p3 0.882 1 0);
  padding: 2.5rem 3rem 2rem;
  text-align: center;
  width: fit-content;
  max-width: 600px;
}

.corp-partner-banner-label {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  margin: 0 0 0.5rem;
}

.corp-partner-banner-headline {
  font-family: 'Kleber', 'Anton', 'Impact', sans-serif;
  font-weight: normal;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 0.9;
  color: #000000;
  text-transform: none;
  margin: 0 0 0.75rem;
  font-feature-settings:
    'ss03' 1,
    'ss07' 1;
}

.corp-partner-banner-address {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #000000;
  font-style: normal;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.corp-partner-banner-context {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   CORP WHAT'S INCLUDED — 2-col clean layout
   ========================================== */

.corp-included {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
}

.corp-included-heading {
  text-align: center;
  font-size: clamp(3.5rem, 9vw, 6rem);
  margin-bottom: 1.5rem;
}

/* Reset stylistic alternates for specific glyphs (e.g. ? needs default weight) */
.glyph-reset {
  font-feature-settings:
    'ss03' 1,
    'ss07' 1;
}

.corp-included-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  padding: 2.5rem 0;
}

.corp-included-label {
  font-family: 'Graphik', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
  color: #000000;
}

.corp-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-self: center;
}

.corp-included-list li {
  font-family: 'Graphik', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.45;
  color: #000000;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.corp-included-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #000000;
  flex-shrink: 0;
  margin-top: 0.53em;
}

/* What's Included — 3 bentos side-by-side */
.corp-bento-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .corp-bento-row {
    grid-template-columns: 1fr;
  }
}

.corp-bento {
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.corp-bento-label {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

/* Base package — accent */
.corp-bento--package {
  background: #d9ff00;
  background: color(display-p3 0.882 1 0);
}

.corp-bento--package .corp-bento-label {
  color: #000000;
}

.corp-bento-price {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
  color: #000000;
  margin: 0 0 1.25rem;
}

.corp-bento-per {
  font-weight: 500;
  font-size: 0.875rem;
  color: #000000;
}

.corp-bento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.corp-bento-list li {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #000000;
  padding-left: 1.25rem;
  position: relative;
}

.corp-bento-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000000;
}

/* Add-ons — black */
.corp-bento--addons {
  background: #000000;
}

.corp-bento--addons .corp-bento-label {
  color: #ffffff;
}

.corp-bento-addon {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.corp-bento-addon:first-of-type {
  padding-top: 0;
}

.corp-bento-addon:last-of-type {
  border-bottom: none;
}

.corp-bento-addon-name {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
}

.corp-bento-addon-price {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}

.corp-bento--addons .corp-bento-per {
  color: #ffffff;
}

.corp-bento-note {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #ffffff;
  margin: auto 0 0;
  padding-top: 1rem;
}

/* Large groups — cream */
.corp-bento--large {
  background: #f5f2eb;
}

.corp-bento--large .corp-bento-label {
  color: #000000;
}

.corp-bento-text {
  font-family: 'Graphik', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #000000;
  margin: 0 0 0.75rem;
}

.corp-bento-text--muted {
  color: #000000;
  font-size: 0.875rem;
  margin-top: auto;
  margin-bottom: 0;
}

/* Date inputs — match select styling */
.form-input[type='date'] {
  position: relative;
}

/* Fix date input height inconsistency across browsers */
.form-input[type='date']::-webkit-date-and-time-value {
  text-align: left;
}
