:root {
  --pp-bg: #f7fbff;
  --pp-bg-2: #eaf5ff;
  --pp-navy: #133a5e;
  --pp-ink: #0e1b2a;
  --pp-purple: #8e61ff;
  --pp-purple-2: #a16bff;
  --pp-violet: #b36bff;
  --pp-teal: #2ad1d1;
  --pp-mint: #5ff6e0;
  --pp-white: #ffffff;
  --pp-sky: #2bc0ff;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glass: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  margin: 0;
  color: #142132;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(circle 400px at 15% 25%, rgba(142, 97, 255, 0.08), transparent),
    radial-gradient(circle 300px at 85% 45%, rgba(42, 209, 209, 0.06), transparent),
    radial-gradient(circle 350px at 25% 75%, rgba(179, 107, 255, 0.05), transparent),
    radial-gradient(circle 250px at 75% 15%, rgba(95, 246, 224, 0.04), transparent),
    radial-gradient(circle 320px at 45% 90%, rgba(142, 97, 255, 0.03), transparent),
    linear-gradient(180deg,
      var(--pp-bg) 0%,
      var(--pp-bg-2) 25%,
      #e8f4ff 50%,
      var(--pp-bg-2) 75%,
      var(--pp-bg) 100%
    );
  background-size: 100% 200vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

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

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  min-width: 0;
}

.page, main {
  max-width: 100vw;
  min-width: 0;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px clamp(16px, 4vw, 36px);
  backdrop-filter: saturate(120%) blur(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-bottom: 1px solid rgba(0, 20, 40, 0.06);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: none;
  overflow: visible;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.brand-wordmark {
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1;
  background: linear-gradient(90deg, var(--pp-purple), var(--pp-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 16px rgba(142, 97, 255, 0.35);
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pp-teal), var(--pp-sky));
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(43, 192, 255, 0.25), inset 0 0 0 1px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.cta:hover { transform: translateY(-2px); filter: saturate(115%); box-shadow: 0 14px 30px rgba(43, 192, 255, 0.35); }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.powered-by { justify-content: center; }

/* Powered by container with border and rounded corners */
.powered-by-container {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Beta Notification */
.beta-notification {
  background: linear-gradient(135deg, #3d2a5c 0%, #2d1a4d 25%, #1f0f4a 50%, #2a1a50 75%, #3d2a5c 100%);
  color: #ffffff;
  padding: 20px clamp(16px, 4vw, 36px);
  border-bottom: 1px solid rgba(142, 97, 255, 0.3);
  position: relative;
  z-index: 30;
  overflow: hidden;
}

.beta-notification::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(142, 97, 255, 0.3), transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(43, 192, 255, 0.2), transparent 40%);
  pointer-events: none;
}

.beta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.beta-badge {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: rgba(142, 97, 255, 0.4);
  padding: 6px 10px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.beta-message {
  flex: 1;
}

.beta-message h3 {
  margin: 0 0 2px 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.beta-message p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .beta-content {
    flex-direction: row;
    gap: 10px;
  }
  .beta-badge {
    font-size: 14px;
    padding: 4px 8px;
  }
  .beta-message h3 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .beta-message p {
    font-size: 12px;
  }
}

/* Free During Beta Overlay */
.pricing-beta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(142, 97, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  z-index: 20;
  backdrop-filter: blur(2px);
}

.pricing-beta-label {
  background: linear-gradient(135deg, #8e61ff, #b36bff);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(142, 97, 255, 0.35);
  text-transform: uppercase;
}

.plan {
  position: relative;
}

.plan.beta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: rgba(142, 97, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.plan.beta .pricing-beta-overlay {
  display: flex;
}
.launch-promo {
  background: linear-gradient(135deg, #0e1b2a 0%, #1a2d46 100%);
  color: #ffffff;
  padding: 16px clamp(16px, 4vw, 36px) 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 30;
  overflow: hidden;
  max-height: 500px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, border-width 0.4s ease-out;
  display: none;
}

.launch-promo.minimized {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}

/* Minimized Trigger - Hidden */
.promo-trigger-min {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: #0e1b2a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
}

.promo-trigger-min.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.promo-trigger-min:hover {
  transform: translateY(-4px);
  background: #1a2d46;
  border-color: var(--pp-teal);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.promo-badge-mini {
  background: linear-gradient(90deg, var(--pp-teal), var(--pp-sky));
  color: #0e1b2a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.launch-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(142, 97, 255, 0.15), transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(43, 192, 255, 0.1), transparent 40%);
  pointer-events: none;
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.promo-text {
  flex: 1;
}

.promo-countdown-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.promo-cta-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  background: linear-gradient(90deg, var(--pp-teal), var(--pp-sky));
  color: #0e1b2a;
  border-radius: 999px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(43, 192, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 192, 255, 0.4);
}

.promo-text h3 {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.promo-text p {
  margin: 4px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
}

.promo-text .promo-highlight {
  color: var(--pp-teal);
  text-shadow: 0 0 10px rgba(42, 209, 209, 0.3);
}

.promo-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.6;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.promo-close:hover {
  opacity: 1;
}

.promo-countdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.countdown-row {
  display: flex;
  align-items: center;
}

.num-wrapper {
  display: flex;
  align-items: center;
}

.connector {
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 -2px;
}

.num {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.num.active {
  opacity: 1;
  background: linear-gradient(135deg, var(--pp-teal), var(--pp-sky));
  color: #0e1b2a;
  border-color: transparent;
  transform: scale(1.2);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(43, 192, 255, 0.5);
}

.num.active + .connector {
  background: linear-gradient(90deg, var(--pp-teal), rgba(255, 255, 255, 0.15));
}

.num.expired {
  opacity: 0.3;
  text-decoration: line-through;
  filter: grayscale(1);
}

@media (max-width: 600px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-top: 12px;
  }
  .promo-countdown {
    transform: scale(1.1);
  }
}

.hero {
  max-width: 1200px;
  margin: clamp(18px, 5vw, 48px) auto 24px;
  padding: 0 clamp(16px, 4vw, 36px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(18px, 4vw, 40px);
  min-width: 0;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  .hero .art { order: -1; }
  .hero .copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .hero .tagline {
    text-align: center;
    margin-bottom: 12px;
  }
  .hero .cta-row {
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }
  .hero .cta-row .cta {
    width: 90%;
    max-width: 420px;
    justify-content: center;
  }
  .cta-row + .subtle {
    margin: 4px 0 8px 0;
    order: 2;
  }
  .cta-row + .subtle + .powered-by-container {
    margin-top: 8px;
    order: 3;
  }
}

/* On very small screens, stack the powered by section vertically */
@media (max-width: 600px) {
  .cta-row + .subtle + .powered-by-container {
    flex-direction: column;
    gap: 8px;
  }
  .powered-by { flex-direction: column; align-items: center; gap: 6px; }
  .powered-by .hoozir-slogan { margin: -8px 0 0 0; }
}
.title {
  font-family: "Nunito", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.title .shine {
  background: linear-gradient(90deg, #631aff, #00bfd8, #631aff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tagline {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #2d4059;
  margin: 0 0 24px;
  max-width: 60ch;
  opacity: 0.95;
}
.subtle {
  font-size: 13px;
  color: #4b5e78;
  opacity: 0.8;
}
.art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(100% 100% at 50% 50%, rgba(138, 97, 255, 0.18) 0%, rgba(42, 209, 209, 0.18) 40%, rgba(255, 255, 255, 0.75) 70%),
              linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  box-shadow: var(--shadow-2);
}
.art .media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(110%) contrast(108%);
}
.logo-overlay {
  position: absolute;
  inset: 18.75%;
  width: 62.5%;
  height: 62.5%;
  object-fit: contain;
  opacity: 0;
  animation: fadeIn 3s ease-out 5s forwards;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.hoozir-overlay { display: none; }
.hero-credit {
  position: absolute; right: -10px; bottom: 0px; z-index: 3;
  height: 20%; width: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}
@media (max-width: 620px) { .hero-credit { height: 22%; } }
@keyframes fadeIn { to { opacity: 1; } }

.grid {
  max-width: 1200px;
  margin: 12px auto clamp(32px, 6vw, 64px);
  padding: 0 clamp(16px, 4vw, 36px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.2vw, 22px);
}
@media (max-width: 619px) {
  .grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 7vw;
    scroll-padding: 0 7vw;
    margin: 12px auto clamp(24px, 6vw, 48px);
    scrollbar-width: none;
  }
  .grid .card {
    flex: 0 0 86vw;
    max-width: 500px;
    scroll-snap-align: start;
  }
  .grid::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 620px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .grid { grid-template-columns: repeat(4, 1fr); } }

/* Pricing */
.pricing { max-width: 1200px; margin: 24px auto clamp(24px, 6vw, 64px); padding: 0 clamp(16px, 4vw, 36px); scroll-margin-top: 100px; }
.pricing-grid { display: grid; gap: clamp(14px, 2.2vw, 22px); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .pricing {
    margin: 12px auto 16px;
    scroll-margin-top: 80px;
  }
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan { position: relative; border-radius: var(--radius-xl); background: #ffffff; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 24px rgba(25,55,109,0.12); padding: 10px 14px 14px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; min-height: 0; }
.plan--featured {
  position: relative;
  overflow: visible; /* allow soft glow to extend */
  border: 1px solid rgba(0,0,0,0.06);
}
.plan--featured::before,
.plan--featured::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, #ff2ea3, #3aaaff, #ff2ea3);
  background-size: 200% 200%;
  animation: gradientShift 4s linear infinite;
  z-index: 0;
}
/* visible border ring */
.plan--featured::before {
  inset: -2px;
  padding: 2px; /* border thickness */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude; /* show only the ring */
}
/* soft outer glow */
.plan--featured::after {
  inset: -14px;
  filter: blur(20px);
  opacity: 0.55;
  z-index: -1;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.plan header { position: relative; z-index: 20; display:flex; align-items:center; justify-content: space-between; margin: 0; padding: 0; }
.plan-title { font-weight: 900; color: #133a5e; font-size: clamp(20px, 2.2vw, 24px); margin: 0; line-height: 1.1; }
.plan-price { font-weight: 900; font-size: 28px; color: #0e1b2a; display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.plan-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-price-main { display: block; }
.plan-price-billing { display: block; font-weight: 800; font-size: 14px; color: #2a4666; opacity: 0.9; line-height: 1.3; }
.plan-copy { color: #2a4666; font-weight: 700; font-size: 14px; line-height: 1.2; flex-shrink: 0; }
.plan-cta { align-self: flex-start; margin-top: 4px; display:inline-flex; align-items:center; gap: 8px; padding: 10px 14px; border-radius: 10px; background: linear-gradient(135deg, var(--pp-teal), var(--pp-sky)); color:#0d0f14; font-weight: 900; text-decoration: none; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 10px 24px rgba(43,192,255,0.25); }
.plan-badge { align-self: center; width: 90%; text-align: center; margin: 6px auto 0; padding: 10px 12px; border-radius: 12px; background: linear-gradient(135deg, var(--pp-teal), var(--pp-sky)); color:#0d0f14; font-weight: 900; letter-spacing: 0.8px; flex-shrink: 0; }
.plan-badge--muted { background: rgba(0,0,0,0.1); color: #2a4666; opacity: 0.7; }
.plan--disabled { opacity: 0.6; filter: grayscale(0.15) saturate(0.9); pointer-events: none; box-shadow: none; }
.plan .badge { top: 12px; right: 12px; }
.plan-time { position: relative; padding: 7px 14px; border-radius: 999px; background: linear-gradient(90deg, #ffe3e3, #ffd6d6); color: #7a0b0b; font-weight: 900; font-size: 12px; line-height: 1; letter-spacing: 0.3px; box-shadow: 0 8px 18px rgba(229,57,53,0.25); display: inline-flex; align-items: center; white-space: nowrap; border: 1px solid #ff8a80; flex-shrink: 0; }
.plan-time::after { content: ""; position: absolute; inset: -10px; border-radius: inherit; background: radial-gradient(closest-side, rgba(255,138,128,0.35), rgba(255,138,128,0)); filter: blur(10px); z-index: -1; }
/* Bottom anchor wrapper for badge and copy */
.plan-badge + .plan-copy { margin-top: 8px; }
.plan > .plan-badge:last-of-type { margin-top: auto; }
/* If no badge, push copy to bottom */
.plan > .plan-copy:only-of-type,
.plan > .plan-price + .plan-copy:not(.plan-badge + .plan-copy) { margin-top: auto; }
.plan--disabled .plan-time { opacity: 0.85; color: #5d0d0d; }

.card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-xl);
  overflow: visible;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(25, 55, 109, 0.12);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  cursor: default;
  isolation: isolate;
}
.card .bg, .card .veil { border-radius: var(--radius-xl); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(25, 55, 109, 0.22); }
@media (max-width: 900px) { .card:hover { transform: none; box-shadow: 0 10px 30px rgba(25, 55, 109, 0.12); } }
.card .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(110%);
}
.card .veil {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.45));
}
.card .content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 0px; padding: 16px;
}
.card h3 { margin: 0; font-size: clamp(18px, 2.2vw, 22px); font-weight: 800; letter-spacing: 0.2px; color: #ffffff; line-height: 1.1; }
.card .subtext { margin-top: 2px; font-size: 13px; font-weight: 500; color: #e8f1ff; opacity: 0.95; line-height: 1.2; }
.card .meta {
  align-self: flex-start;
  font-size: 14px;
  color: #ffffff;
  background: rgba(6, 12, 24, 0.6);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.badge {
  position: absolute; top: 12px; right: 12px; padding: 8px 12px; border-radius: 999px; font-weight: 800; font-size: 12px; letter-spacing: 0.4px;
  background: rgba(255,255,255,0.92);
  color: #133a5e;
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(8px) saturate(140%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.soon { background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88)); border-color: rgba(0,0,0,0.12); color: #2f1b6b; }
.venue {
  background: rgba(6, 12, 24, 0.88); color: #ffffff; border: 1px solid rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.7px; text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  display: none;
}
.venue .venue-key { display: none; }
.venue .venue-val {
  font-weight: 800;
  letter-spacing: 0.8px;
  font-family: "Nunito", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
.hoozir-mark { height: 54px; width: auto; vertical-align: middle; }
.hoozir-slogan { height: 88px; width: auto; vertical-align: middle; margin: 0 -12px; }
.go-cta {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  font-weight: 900; color: #0e1b2a; text-decoration: none;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
  transition: transform 160ms ease, filter 160ms ease;
}
.go-cta::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid #0e1b2a;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}
.go-cta:hover { transform: translateY(-2px); filter: saturate(115%); }

/* menu trigger layout */
.menu-trigger { display:flex; align-items:center; gap:8px; }
.menu-text { font-weight: 900; color: #133a5e; font-size: 14px; letter-spacing: 0.2px; }
@media (min-width: 901px) { .menu-text { display:none; } }
@media (max-width: 900px) {
  .powered-by { flex-direction: row; align-items: center; gap: 6px; }
  .powered-by .hoozir-slogan { margin: 0; }
}

footer {
  padding: 28px clamp(16px, 4vw, 36px) 48px;
  color: #385a7d;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  border-top: 1px solid rgba(0, 20, 40, 0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.links { display: flex; gap: 18px; flex-wrap: wrap; }
.links a { color: #355a86; text-decoration: none; font-weight: 700; font-size: 14px; opacity: 0.9; }
.links a:hover { opacity: 1; text-decoration: underline; }

/* top nav links */
.nav-links { display: flex; gap: 12px; align-items: center; margin-left: auto; }
.nav-links a { color: #2a4666; text-decoration: none; font-weight: 800; font-size: 14px; opacity: 0.9; }
.nav-links a:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 900px) { .nav-links { display: none; } }
.nav .cta { margin-left: 8px; }

/* section title */
.section-title { max-width: 1200px; margin: 8px auto 6px; padding: 0 clamp(16px, 4vw, 36px); font-weight: 900; font-size: clamp(20px, 3.2vw, 28px); color: #133a5e; letter-spacing: 0.2px; scroll-margin-top: 100px; }
@media (max-width: 900px) {
  .section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 32px);
    margin: clamp(32px, 8vw, 48px) auto 8px;
    scroll-margin-top: 80px;
  }
}
/* park filter select for mobile */
.park-filter {
  max-width: 1200px;
  margin: 0 auto 16px;
  padding: 0 clamp(16px, 4vw, 36px);
  display: none;
}
@media (max-width: 900px) {
  .park-filter {
    display: block;
  }
}
.park-filter select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  color: #133a5e;
  font-weight: 700;
  font-size: 16px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  appearance: none;
  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='%23133a5e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.park-filter select:focus {
  outline: 3px solid var(--pp-teal);
  outline-offset: 2px;
}

/* dropdown menu from logo */
.logo-menu { position: fixed; left: 16px; top: 76px; z-index: 60; width: min(92vw, 260px); padding: 14px; border-radius: 14px; background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 24px 60px rgba(0,0,0,0.2); backdrop-filter: blur(10px) saturate(140%); opacity: 0; transform: translateY(-8px) scale(0.98); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; }
.logo-menu.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.logo-menu a { display: block; padding: 10px 10px; border-radius: 10px; color: #133a5e; font-weight: 800; text-decoration: none; }
.logo-menu a:hover { background: rgba(19,58,94,0.06); }
.logo-menu .close { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; background: none; border: none; font-size: 18px; font-weight: 900; color: #133a5e; cursor: pointer; padding: 4px 8px; border-radius: 8px; }
.logo-menu .close:hover { background: rgba(19,58,94,0.08); }

/* FAQ */
.faq { max-width: 1200px; margin: 18px auto 48px; padding: 0 clamp(16px, 4vw, 36px); }
.faq-group { display: grid; gap: 10px; }
.faq-group + .faq-group { margin-top: 14px; }
.faq-group-title { margin: 4px 6px 2px; color: #133a5e; font-weight: 900; font-size: 16px; letter-spacing: 0.01em; }
.accordion { display: grid; gap: 10px; }
.accordion details { border-radius: 14px; background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 24px rgba(0,0,0,0.08); overflow: hidden; }
.accordion summary { list-style: none; cursor: pointer; padding: 14px 16px; color: #133a5e; font-weight: 900; display: flex; align-items: center; justify-content: space-between; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "›"; font-size: 20px; line-height: 1; transform: rotate(90deg); transition: transform 160ms ease; opacity: 0.8; }
.accordion details[open] summary::after { transform: rotate(-90deg); }
.accordion .answer { padding: 0 16px 16px; color: #2a4666; font-weight: 600; }

/* focus */
:where(a, button, .cta):focus-visible { outline: 3px solid var(--pp-teal); outline-offset: 3px; }

/* modal */
.pp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 12, 24, 0.45);
  backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.pp-modal-overlay.open { opacity: 1; pointer-events: auto; }
.pp-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.98);
  z-index: 110;
  width: min(92vw, 640px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 220ms ease;
  overflow: hidden;
}
.pp-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.pp-modal header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pp-modal-title { font-weight: 900; color: #133a5e; font-size: clamp(18px, 2.2vw, 22px); display: inline-flex; align-items: center; gap: 8px; }
.pp-modal .close {
  appearance: none;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 900;
  color: #133a5e;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.pp-modal .close:hover { background: rgba(19,58,94,0.08); }
.pp-modal .body { padding: 16px; display: grid; gap: 12px; position: relative; }
/* Reduce top space specifically when instructions view is shown */
.pp-modal.show-instructions .body { padding-top: 8px; }
/* Tighter vertical padding for How It Works modal */
#ppInfoModal .body { padding-top: 10px; padding-bottom: 10px; }
.pp-choices { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 520px) { .pp-choices { grid-template-columns: 1fr 1fr; } }
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  min-height: 52px;
  border-radius: 12px;
  color: #0d0f14;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pp-teal), var(--pp-sky));
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(43, 192, 255, 0.25), inset 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease, opacity 200ms ease;
}
.pp-btn:hover { transform: translateY(-2px); filter: saturate(112%); box-shadow: 0 14px 30px rgba(43, 192, 255, 0.35); }
.pp-btn .pp-icon { width: 18px; height: 18px; object-fit: contain; display: inline-block; }
/* Emphasize the first modal choice buttons */
.pp-choices .pp-btn { font-size: 17px; min-height: 58px; padding: 16px 18px; gap: 12px; }
.pp-choices .pp-btn .pp-icon { width: 22px; height: 22px; }
/* Featured ride button with animated gradient ring */
.pp-ride { position: relative; overflow: visible; background: #0e1b2a; color: #ffffff; border: 1px solid rgba(255,255,255,0.15); }
.pp-ride::before,
.pp-ride::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, #ff2ea3, #3aaaff, #ff2ea3);
  background-size: 200% 200%;
  animation: gradientShift 4s linear infinite;
  z-index: 0;
}
.pp-ride::before { inset: -2px; padding: 2px; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
/* inner animated gradient overlay above black background */
.pp-ride::after { inset: 0; opacity: 0.28; mix-blend-mode: screen; }
.pp-actions .pp-ride { width: 60%; }
@media (max-width: 479px) { .pp-actions .pp-ride { width: 90%; } }
/* QR code container */
.pp-qr-container {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 8px 0 13px 0;
}
.pp-qr-card {
  background: #ffffff;
  padding: 8px 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: visible;
}
.pp-qr-card canvas {
  display: block;
  margin-top: 4px;
}
.pp-qr-label {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  background: #0e1b2a;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  box-sizing: border-box;
}
.pp-venue-name {
  width: 100%;
  text-align: center;
  color: #2a4666;
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.pp-venue-id-stack {
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content: center;
  gap:8px;
  color:#2a4666;
  margin: 12px auto 0 auto;
  width: 90%;
  max-width: 360px;
}
.pp-venue-id-label { font-weight: 700; font-size: 16px; line-height: 1.1; }
.pp-venue-id-stack .pp-code { font-size: 16px; padding: 2px 12px; }

/* Mobile adjustments */
@media (max-width: 899px) {
  .pp-venue-name {
    margin: 0 0 8px 0;
  }
  .pp-venue-id-stack {
    margin: 8px auto 0 auto;
  }
}

@media (min-width: 900px) {
  .pp-qr-container {
    display: flex;
  }
  .pp-actions .pp-ride {
    display: none;
  }
  /* Desktop: name at top, code stack at bottom */
  .pp-venue-name {
    font-size: 24px;
    margin: 0 0 16px 0;
  }
  .pp-venue-id-stack {
    width: 100%;
    max-width: 720px;
    margin: 16px auto 0 auto;
  }
}
.pp-secondary {
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  color: #133a5e;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(25, 55, 109, 0.12);
}
.pp-meta { font-size: 13px; color: #2a4666; opacity: 0.9; margin-top: 4px; }
.pp-instructions { display: none; opacity: 0; transition: opacity 220ms ease; }
.pp-instructions h4 { margin: 0 0 6px; font-size: 16px; color: #133a5e; }
.pp-instructions p { margin: 0; color: #2a4666; font-weight: 600; }
.pp-instructions ul { margin: 8px 0 10px 0; padding-left: 0; list-style-position: inside; color: #2a4666; font-weight: 600; }
.pp-instructions .pp-actions { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top: 36px; }
/* removed phone layout from first-time modal */
.pp-section { margin: 4px 0 10px; }
.pp-pill { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #2a2f3a; color: #ffffff; font-weight: 900; font-size: 12px; letter-spacing: 0.4px; border: 1px solid rgba(0,0,0,0.2); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.pp-list { margin: 8px 0 10px 12px; }
.pp-steps { margin: 2px 0 2px 0; padding-left: 20px; list-style-position: outside; color: #2a4666; font-weight: 600; text-align: center; }
.pp-followup { margin-top: 10px; color: #2a4666; font-weight: 600; }
.pp-steps li { margin: 2px 0; }
.pp-code {
  display:inline-block; padding:2px 10px; border-radius:999px;
  background: linear-gradient(135deg, #ffd29a, #ff7a59);
  color:#0e1b2a; font-weight:800; letter-spacing:0.4px;
  border:1px solid rgba(0,0,0,0.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) inset;
  font-family: "Nunito", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.pp-code:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12) inset, 0 2px 6px rgba(0,0,0,0.1);
}
.pp-code:active {
  transform: translateY(0);
}
/* legacy code style for inline tags (used for FastLink labels) */
.pp-tag {
  display:inline-block; padding:2px 8px; border-radius:999px;
  background: linear-gradient(135deg, #e1efff, #cde4ff);
  color:#0e1b2a; font-weight:800; letter-spacing:0.3px;
  border:1px solid rgba(0,0,0,0.14);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pp-title-logo { width: 20px; height: 20px; object-fit: contain; }

/* toast */
.pp-toast-host { position: fixed; left: 0; right: 0; bottom: 14px; z-index: 200; pointer-events: none; display: flex; justify-content: center; }
.pp-toast { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(19,58,94,0.95); color: #ffffff; font-weight: 500; letter-spacing: 0.2px; box-shadow: 0 10px 24px rgba(0,0,0,0.25); opacity: 0; margin-top: 6px; animation: toastInOut 2400ms ease forwards; }
@keyframes toastInOut { 0% { transform: translateY(8px); opacity: 0; } 10% { transform: translateY(0); opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }
.pp-modal.show-instructions .pp-choices { display: none; opacity: 0; pointer-events: none; }
.pp-modal.show-instructions .pp-instructions { display: block; opacity: 1; }
.pp-modal .body { max-height: min(68vh, 720px); overflow: auto; }

/* info modal */
.pp-info { display: grid; gap: 10px; grid-template-columns: 1fr auto; align-items: start; grid-auto-rows: min-content; }
.pp-info .center { text-align: center; }
.pp-info-logo { display:none; }
.pp-info-main { display: grid; gap: 4px; align-content: start; align-self: start; grid-column: 1; }
.pp-info-main p { margin: 4px 0; }
.pp-info-aside { justify-self: end; align-self: center; grid-column: 2; grid-row: 1; }
.pp-info-phone { width: 120px; height: auto; display: block; margin: 0; border-radius: 0; box-shadow: none; }
@media (min-width: 520px) { .pp-info-phone { width: 160px; } }
@media (min-width: 760px) { .pp-info-phone { width: 180px; } }
.pp-info-actions { display: flex; justify-content: center; grid-column: 1 / -1; }
.pp-info-foot { grid-column: 1 / -1; margin-top: 8px; }
.pp-venue-fallback { grid-column: 1 / -1; text-align: center; color: #2a4666; font-weight: 600; font-size: 13px; opacity: 0.8; margin-top: 9px; }
.pp-info-actions .pp-btn { width: auto; }
@media (max-width: 479px) { .pp-info-actions .pp-btn { width: 90%; } }

/* TikTok browser overlay */
.tt-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 36px);
  background:
    radial-gradient(circle at 20% 20%, rgba(142, 97, 255, 0.12), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(43, 192, 255, 0.16), transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(42, 209, 209, 0.12), transparent 48%),
    rgba(4, 10, 22, 0.8);
  color: #0d1424;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  flex-direction: column;
}
.tt-overlay.show { display: flex; }
.tt-card {
  position: relative;
  width: min(960px, 100%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 28px) clamp(18px, 4vw, 32px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(13, 20, 36, 0.08);
  display: grid;
  gap: 14px;
  z-index: 2;
}
.tt-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.tt-logo { height: 52px; width: auto; object-fit: contain; }
.tt-logo-main { height: 60px; }
.tt-logo-hoozir { height: 52px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12)); }
.tt-logo-tiktok { height: 46px; }
.tt-plus {
  font-weight: 800;
  color: #1a2d46;
  opacity: 0.35;
}
.tt-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: #0e1b2a;
  text-align: center;
  line-height: 1.08;
}
.tt-body {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(15px, 2.8vw, 18px);
  color: #1f3047;
  text-align: center;
  line-height: 1.35;
}
.tt-open-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(10px, 2.4vw, 18px);
}
.tt-open-art {
  width: clamp(160px, 32vw, 240px);
  justify-self: center;
  border-radius: 12px;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.15));
}
.tt-steps { display: grid; gap: 12px; text-align: center; }
.tt-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(142, 97, 255, 0.08), rgba(43, 192, 255, 0.08));
  color: #13243c;
  font-weight: 700;
  line-height: 1.18;
  text-align: left;
  white-space: nowrap;
}
.tt-step strong { color: #0f1f35; }
.tt-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-sky));
  color: white;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(142, 97, 255, 0.35);
}
.tt-step-text { display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.tt-step-body {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.tt-step-label { font-weight: 800; color: #0f1f35; }
.tt-step-open-art {
  width: clamp(150px, 38vw, 230px);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.tt-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  font-weight: 900;
  letter-spacing: 3px;
  position: relative;
  line-height: 1;
  vertical-align: middle;
}
.tt-ellipsis-icon {
  width: 28px;
  height: 8px;
  fill: currentColor;
  display: block;
}

.tt-step-pointer-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  position: relative;
  margin: 0 4px;
}

.tt-step-pointer {
  font-size: 24px;
  line-height: 1;
  position: absolute;
  bottom: -30px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  animation: ttStepPointerBounce 0.8s ease-in-out infinite alternate;
}

@keyframes ttStepPointerBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.tt-step-highlight {
  position: relative;
  overflow: hidden;
}
.tt-step-highlight,
.tt-step-action {
  box-shadow:
    0 0 0 2px rgba(43, 192, 255, 0.25),
    0 12px 28px rgba(43, 192, 255, 0.22),
    inset 0 0 0 1px rgba(142, 97, 255, 0.08);
}
/* Animated bounce arrow for TikTok overlay */
.tt-bounce-arrow {
  position: fixed;
  top: 15px;
  right: 5px;
  z-index: 10001;
  pointer-events: none;
  font-size: 80px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  transform-origin: center;
  animation: ttBounceArrow 1.2s ease-in-out infinite alternate;
}

@keyframes ttBounceArrow {
  from {
    transform: rotate(20deg) translate(0, 0) scale(1);
  }
  to {
    transform: rotate(20deg) translate(5px, -25px) scale(1.15);
  }
}

.tt-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tt-btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.tt-btn-primary {
  background: #2bc0ff;
  color: white;
  box-shadow: 0 4px 12px rgba(43, 192, 255, 0.3);
}
.tt-btn-primary:hover {
  background: #1ba8e6;
  box-shadow: 0 6px 16px rgba(43, 192, 255, 0.4);
}
.tt-btn-secondary {
  background: rgba(19, 42, 70, 0.05);
  color: #132a46;
  border: 1px solid rgba(19, 42, 70, 0.15);
}
.tt-btn-secondary:hover {
  background: rgba(19, 42, 70, 0.08);
}
.tt-cta {
  min-width: 180px;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(43, 192, 255, 0.4);
}
.tt-secondary {
  padding: 12px 16px;
  background: rgba(19, 42, 70, 0.05);
  color: #132a46;
  border: 1px solid rgba(19, 42, 70, 0.15);
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}
.tt-secondary:hover { background: rgba(19, 42, 70, 0.08); }
.tt-note {
  text-align: center;
  font-size: 13px;
  color: #3a4f6a;
}

@media (max-width: 900px) {
  .tt-open-row { grid-template-columns: 1fr; text-align: center; }
  .tt-card { padding: 18px; }
  .tt-step { white-space: normal; text-align: center; }
  .tt-step-body { justify-content: center; }
}
@media (max-width: 520px) {
  .tt-step-text { white-space: normal; text-align: center; }
}
@media (max-width: 560px) {
  .tt-logo-main { height: 52px; }
  .tt-open-art { width: clamp(140px, 48vw, 220px); }
}

/* GA4 Consent Banner */
.ga4-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pp-white);
  border-top: 1px solid rgba(19, 58, 94, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideUp 0.3s ease-out;
}

.ga4-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ga4-consent-text {
  flex: 1;
}

.ga4-consent-text strong {
  display: block;
  color: var(--pp-navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.ga4-consent-text p {
  margin: 0;
  color: #4b5e78;
  font-size: 14px;
  line-height: 1.4;
}

.ga4-consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ga4-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ga4-btn-primary {
  background: var(--pp-purple);
  color: white;
}

.ga4-btn-primary:hover {
  background: var(--pp-purple-2);
  transform: translateY(-1px);
}

.ga4-btn-secondary {
  background: transparent;
  color: var(--pp-navy);
  border: 1px solid rgba(19, 58, 94, 0.2);
}

.ga4-btn-secondary:hover {
  background: rgba(19, 58, 94, 0.05);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile consent banner */
@media (max-width: 768px) {
  .ga4-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 20px;
  }

  .ga4-consent-buttons {
    justify-content: stretch;
  }

  .ga4-btn {
    flex: 1;
    text-align: center;
  }
}
