/* =======================
   ARRIVE Homepage CTA
   ======================= */

:root{
  --green:#27ad5f;
  --blue:#426195;
  --ink:#1b1e27;
  --muted:#6b7280;
  --radius:16px;
  --shadow:0 8px 10px rgba(0,0,0,.08);
}

/* ===== Performers And venues section ===== */
/* ========== Full-width sections ========== */
.arrive-performers,
.arrive-hosts {
  position: relative;
  width: 100vw;          /* fallback */
  width: 100svw;         /* iOS safe viewport */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  padding: clamp(48px, 6vw, 88px) 0;
  color: var(--ink);
  overflow: hidden;      /* prevents tiny horizontal scrollbars */
  margin-top: 0;
  margin-bottom: 0;
}

/* Backgrounds */
.arrive-performers { background: #fff; }
.arrive-hosts      { background: #e5f9f3; }
.arrive-hosts {
  background: radial-gradient(
    circle at center,
    #f2fcf9 0%,   /* soft glow center */
    #e5f9f3 60%,  /* main background tone */
    #d3f2e8 100%  /* subtle cool edge for depth */
  );
}

/*
.arrive-hosts {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
*/

/* ========== Inner grids ========== */
.arrive-performers__inner,
.arrive-hosts__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

/* Performers: image left, text right */
.arrive-performers__inner {
  grid-template-columns: 1.05fr 1fr;
}

/* Hosts: text left, image right */
.arrive-hosts__inner {
  grid-template-columns: 1fr 1.05fr;
}

/* ========== Responsive ========== */
@media (max-width: 1024px){
  .arrive-performers__inner,
  .arrive-hosts__inner {
    grid-template-columns: 1fr;   /* stack */
    gap: 24px;
  }

  /* Keep logical order when stacked */
  .arrive-performers__media { order: 1; }
  .arrive-performers__copy  { order: 2; }

  .arrive-hosts__copy  { order: 1; }
  .arrive-hosts__media { order: 2; }
}

/* Image stack */
.arrive-performers__media{ position:relative; }
.photo-stack{
  position:relative;
  display:inline-block;
}
/* General (fallback) style */
.photo-stack__base {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Performers section */
.photo-stack__base--performers {
  background: linear-gradient(
    to bottom right,
    #ebfdf9 0%,   /* soft mint highlight */
    #c9eee2 55%,  /* balanced midtone */
    #b6e5d8 100%  /* richer teal depth bottom right */
  );
}
/* Hosts section */
.photo-stack__base--hosts {
  background: linear-gradient(to bottom left, #ebfdf9 0%, #c9eee2 55%, #b6e5d8 100%);
}

.photo-stack__pop{
  position:absolute;
  right: -6%;
  bottom: 18%;  /* raise or lower image */
  width:min(48%, 340px);
  height:auto;
  border-radius: calc(var(--radius) * 0.75);
  box-shadow: var(--shadow);
  transform: translateY(0);
  animation: pop-bob 2.8s ease-in-out infinite;
}

/*  Popup motion */
@media (prefers-reduced-motion: reduce){
  .photo-stack__pop{ animation:none; }
}

@keyframes pop-bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
/*  Popup motion end */

/* Copy column */
.eyebrow{
  color:var(--green);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin:0 0 8px;
  font-size:.9rem;
}
.headline{
  margin:0 0 14px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height:1.15;
}
.lede{
  margin: 0 0 14px;            /* reduced bottom space */
  color: #898EB4;
  font-size: clamp(14px, 1vw, 15.5px); /* slightly smaller text */
  line-height: 1.55;           /* smoother reading rhythm */
  padding-bottom: 10px;
}

/* Feature list with green star icons */
.feature-list{
  color: #898EB4;
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:flex;
  flex-direction:column; /* stack items in one column */
  gap:10px; /* space between points */
}
.feature-list li{
  font-size: clamp(14px, 1vw, 15px);
  position:relative;
  padding-left:26px;
  line-height:1.4;
}
.feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.15em;
  width:18px;
  height:18px;
  /* inline SVG star, inherits --green */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%2327ad5f' d='M12 2.5l2.9 6 6.6.6-5 4.4 1.5 6.4L12 16.8 6 19.9l1.5-6.4-5-4.4 6.6-.6L12 2.5z'/></svg>") no-repeat center / contain;
}

/* CTAs */
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius: var(--radius);
  font-weight:600;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  color: #fff !important;       /* force white text */
  border-radius: 6px;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  display: inline-flex;
  border: none;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 25px;
  min-width: 100px;
  color: #ffffff;
  vertical-align: baseline;
  font-style: normal;
  text-align: center;
  text-decoration: none;
    box-shadow: var(--shadow);
  cursor: pointer;
  align-items: center;
  align-content: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
    transition: all 0.3s ease-out;    
}

.btn--primary:hover,
.btn--primary:focus {
  background: #219a54;          /* slightly darker green */
  color: #fff !important;       /* keep white text on hover */
  transform: translateY(-1px);
}

.btn--ghost{
  background:#fff;
  color:var(--blue);
  border:2px solid var(--blue);
}
.btn--ghost:hover{
  background:var(--blue);
  color:#fff;
}

/* ========== Responsive ========== */
@media (max-width: 1024px){
  .arrive-performers__inner{
    grid-template-columns: 1fr; /* stack */
  }
  .arrive-performers__media{
    order:1; /* image first */
  }
  .arrive-performers__copy{
    order:2;
  }
  .feature-list{
    grid-template-columns: 1fr; /* single column on tablet/mobile */
  }
  .photo-stack__pop{
    right: -4%;
    bottom: 8%;
    width: 52%;
  }
}

@media (max-width: 560px){
  .photo-stack__pop{
    right: -2%;
    bottom: 6%;
    width: 58%;
  }
}

/* ===== Hosts section (text left, image right) ===== */

/* --- Icon variants for hosts list --- */
.feature-list--icons li{ padding-left:30px; } /* a bit more room for larger icons */

.feature-list--icons .icon-star::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%2327ad5f' d='M12 2.5l2.9 6 6.6.6-5 4.4 1.5 6.4L12 16.8 6 19.9l1.5-6.4-5-4.4 6.6-.6L12 2.5z'/></svg>");
}
.feature-list--icons .icon-bolt::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%2327ad5f' d='M13 2L4 14h6l-1 8 9-12h-6z'/></svg>");
}
.feature-list--icons .icon-shield::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%2327ad5f' d='M12 2l8 3v6c0 5-3.5 9.7-8 11-4.5-1.3-8-6-8-11V5l8-3z'/></svg>");
}

.feature-list.numbered {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.feature-list.numbered li {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  font-size: 16px;
  line-height: 1.55;
}

.feature-list.numbered .num {
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #27ad5f; /* ARRIVE green */
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Flip the overlay direction for the hosts section */
.arrive-hosts .photo-stack__pop{
  left:-6%;
  right:auto;
  bottom:10%;
  width:min(58%, 420px);
  height:auto;
  border-radius:calc(var(--radius) * .75);
  box-shadow:var(--shadow);
  transform:translateY(0);
  animation:pop-bob 2.8s ease-in-out infinite;
  z-index:2; /* below pill */
}

@media (max-width:1024px){
  .arrive-hosts .photo-stack__pop{
    left:-4%;
    bottom:8%;
    width:52%;
  }
}

/* Mobile stack: keep copy first, image second */
@media (max-width: 1024px){
  .arrive-hosts__inner{
    grid-template-columns: 1fr;
  }
  .arrive-hosts__copy{ order:1; }
  .arrive-hosts__media{ order:2; }
}

/* --- Hosts section overlay as text box --- */
.arrive-hosts .text-overlay {
  position: absolute;
  left: -6%;                  /* position it on the left side */
  bottom: 18%;
  width: 316px;               /* adjust as needed for readability */
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  animation: pop-bob 2.8s ease-in-out infinite;
}

.arrive-hosts .text-overlay p {
  margin: 0;
  font-style: italic;
  quotes: "“" "”";
}
.ai-subline {
  margin-top: -10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

/* Hosts bubble sparkle, pinned near the text */
.arrive-hosts .text-overlay .ai-sparkle {
  position: absolute;
  top: -9px !important;          /* raised up about 15px */
  left: 4px !important;
  width: 25px !important;
  height: 25px !important;
  z-index: 2;
  animation: sparkle-float 3s ease-in-out infinite,
             sparkle-glow 2.8s ease-in-out infinite !important;
  filter: drop-shadow(0 0 3px rgba(39,173,95,0.4));  /* softer glow */
  opacity: 0.95;
}

/* gentle floating motion */
@keyframes sparkle-float {
  0%,100% { transform: translateY(0) scale(1); opacity: 1; }
  50%     { transform: translateY(-2px) scale(1.05); opacity: 0.9; }
}

/* subtle glowing pulse */
@keyframes sparkle-glow {
  0%,100% { filter: drop-shadow(0 0 3px rgba(39,173,95,0.3)); }
  50%     { filter: drop-shadow(0 0 6px rgba(39,173,95,0.6)); }
}

/* Slightly smaller version on tablets / mobile */
@media (max-width: 1024px) {
  .arrive-hosts .text-overlay {
    left: -3%;
    bottom: 8%;
    width: 280px;
    padding: 14px 18px;
    font-size: 14px;
  }
}

/* ========== Homepage Footer ========== */

/* ===================== CTA SECTION ===================== */

.cta-section-wrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.cta-section-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #1b1e27 0%, #384d72 100%);
  border-radius: 12px;
  padding: 60px 40px;
  color: #fff;
}

.text-content { max-width: 620px; }
.text-content h2 {
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 30px;
}

.arrive-benefits-list { list-style: none; padding: 0; margin: 0 0 30px 0; }
.arrive-benefits-list li { display: flex; align-items: center; margin-bottom: 8px; color: #fff; }
.arrive-benefits-list svg { margin-right: 8px; flex-shrink: 0; }

.cta-graphic img { max-width: 480px; width: 100%; height: auto; }

@media (max-width: 900px) {
  .cta-section { flex-direction: column; text-align: center; }
  .text-content { max-width: 100%; }
  .text-content h2 { margin: 0 auto 30px; }
  .arrive-benefits-list { display: inline-block; text-align: left; margin: 0 auto 30px; }
  .arrive-benefits-list li { justify-content: flex-start; }
  .cta-graphic img { max-width: 300px; margin-top: 25px; }
}

/* ===================== HOSTS PHOTO STACK + BNPL ===================== */

.arrive-hosts .photo-stack { position: relative; overflow: visible; z-index: 0; }
.arrive-hosts .photo-frame { position: relative; display: inline-block; border-radius: var(--radius); }
.arrive-hosts .photo-frame .photo-stack__base { display: block; border-radius: inherit; width: 100%; height: auto; }

.arrive-hosts .photo-frame > .bnpl-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  z-index: 5;
  display: inline-block;
  padding: 8px 14px;
  font: 500 13.5px/1 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: .3px;
  color: #fff;
  background: #ff6f20;
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(0,0,0,.2);
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 768px) {
  .arrive-hosts .photo-frame > .bnpl-badge {
    top: 10px; right: 10px; padding: 6px 12px; font-size: 13px;
  }
}

.bnpl-note {
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: right;
  font-style: italic;
}
.bnpl-note .bnpl-link { color: #27ad5f; text-decoration: none; font-style: normal; font-weight: 500; }
.bnpl-note .bnpl-link:hover { text-decoration: underline; }

/* ===================== EXPLORE CATEGORIES (STICKY STACK) ===================== */

/* ===== Explore Categories – sticky stack (final) ===== */
.arrive-categories-wrapper {
  padding: 100px 0;
  background: #fff;
  --sticky-top: 96px; /* adjust to match your fixed header height */
}

.arrive-categories-wrapper .headline {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
}

.category-stack {
  position: relative;
}

/* CARD */
.category-card {
  position: sticky;
  top: var(--sticky-top);
  display: flex;
  align-items: center;
  height: 425px;
  background: var(--card-color, #f7f9f8);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin: 0 0 24px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out, box-shadow 0.3s ease;
}

/* entrance */
.category-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* hover (no scale, just subtle shadow) */
.category-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* ensure later cards stack on top */
.category-card.visible{ opacity:1; transform:translateY(0); }
.category-card:hover{ box-shadow:0 8px 18px rgba(0,0,0,.1); }
.category-card:nth-child(1){z-index:1}
.category-card:nth-child(2){z-index:2}
.category-card:nth-child(3){z-index:3}
.category-card:nth-child(4){z-index:4}
.category-card:nth-child(5){z-index:5}

/* IMAGE LEFT */
/* title overlay on image */
.category-image { position: relative; }
.category-label{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3; /* above scrim */
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #0f172a;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(120%) blur(2px);
  -webkit-backdrop-filter: saturate(120%) blur(2px);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.category-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* subtle top-to-bottom scrim for readability */
.image-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0));
  z-index: 2; /* below label */
  pointer-events: none;
}

/* if backdrop-filter is unsupported, slightly increase label opacity */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .category-label{ background: rgba(255,255,255,0.94); }
}

/* pills in content area */
.category-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem 0;
}
.category-pills li{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  color: #111827;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04) inset, 0 1px 2px rgba(0,0,0,0.05);
}
/********/