
:root {
  --bg: #F4F4F5;
  --card: #FFFFFF;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --muted: #6B6B6B;
  --muted-2: #9A9A9A;
  --border: #E8E8E8;
  --accent: #E81270;
  --accent-dark: #C40D60;
  --success: #16A34A;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 4px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 24px 48px -12px rgba(0,0,0,.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shell-max: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.skip { position:absolute; left:-9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 9999; border-radius: 6px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-dark); }
h1,h2,h3,h4 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--ink); }

/* ===== Layout shell ===== */
.shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 24px; }
.card-shell { background: var(--card); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 80px); box-shadow: var(--shadow-sm); }
.page-wrap { background: var(--bg); padding: 16px 16px 64px; min-height: 100vh; }
.section { margin-bottom: 16px; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(to bottom, var(--bg) 70%, rgba(244,244,245,0));
  padding: 12px 40px 14px;
}
.nav-shell {
  display: flex; align-items: center; gap: 16px;
  max-width: calc(var(--shell-max) - 48px); margin: 0 auto;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 0 0 1px rgba(10,10,10,0.04),
    0 8px 24px -8px rgba(10,10,10,0.12),
    0 20px 40px -16px rgba(10,10,10,0.1);
}
/* Site header gradient mask so the frosted nav blurs the section bg cleanly */
.site-header { background: transparent; }
@media (max-width: 900px) {
  .site-header { padding: 12px 16px; }
  .nav-shell { max-width: 100%; }
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 10px 18px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500; color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--bg); color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--ink); color: #fff !important;
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--ink-2); transform: translateY(-1px); }

.mobile-menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 40px; padding: 8px;
  background: transparent; border: 0; cursor: pointer;
  border-radius: 999px;
}
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: block; background: var(--card); margin: 10px 16px 0; padding: 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: block; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 500; color: var(--ink); }
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--bg); }
.mobile-nav .mobile-cta { background: var(--ink); color: #fff !important; text-align: center; margin-top: 6px; font-weight: 600; }
.mobile-call-row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.mobile-call-row a { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { margin-left: auto; }
}
@media (min-width: 901px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 1rem; font-weight: 600;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  cursor: pointer; border: 0; text-align: center; line-height: 1.2;
}
.btn-primary { background: var(--ink); color: #fff !important; }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff !important; }
.btn-accent { background: var(--accent); color: #fff !important; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); color: #fff !important; }
.btn-ghost { background: transparent; color: var(--ink) !important; border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ===== Hero ===== */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center; min-height: 540px; }
.hero-text { padding: 24px 16px 24px 24px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px; background: var(--bg); border-radius: 999px;
  font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 28px;
}
.hero-eyebrow-badge { background: var(--accent); color: var(--ink); padding: 2px 10px; border-radius: 999px; font-weight: 700; font-size: 0.75rem; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { background: linear-gradient(180deg, transparent 60%, rgba(232,18,112,.4) 60%); padding: 0 4px; }
.hero-sub { font-size: 1.15rem; color: var(--muted); margin-bottom: 36px; max-width: 540px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero-stat-num { font-size: 1.8rem; font-weight: 700; color: var(--ink); }
.hero-stat-lbl { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.hero-img {
  border-radius: var(--radius-md); overflow: hidden;
  height: 100%; min-height: 480px;
  background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
  position: relative;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: auto 16px 16px 16px; padding: 16px 18px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hero-overlay-text { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.hero-overlay-text small { display: block; color: var(--muted); font-weight: 400; font-size: 0.8rem; margin-top: 2px; }
.hero-overlay a { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 16px 8px; }
  .hero-img { min-height: 320px; max-height: 420px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat-num { font-size: 1.3rem; }
}

/* ===== Section heading ===== */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.section-head h2 { max-width: 700px; }
.section-head .lead { color: var(--muted); max-width: 480px; font-size: 1.05rem; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); margin-bottom: 14px; }

/* ===== Category grid ===== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  background: var(--bg); padding: 24px;
  border-radius: var(--radius-md); transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 8px; min-height: 160px;
  position: relative; overflow: hidden;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--card); }
.cat-card h3 { font-size: 1.1rem; }
.cat-card p { color: var(--muted); font-size: 0.9rem; }
.cat-card-meta { margin-top: auto; padding-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--accent-dark); display: flex; align-items: center; gap: 6px; }

/* ===== Feature stat cards (about/why-us) ===== */
.stat-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; margin-top: 32px; }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr; } }
.stat-card { background: var(--bg); padding: 32px; border-radius: var(--radius-md); }
.stat-card-num { font-size: 3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.stat-card-label { color: var(--muted); margin-top: 12px; font-size: 0.95rem; }
.stat-card-wide { display: flex; flex-direction: column; justify-content: space-between; }
.stat-card-wide h3 { margin-bottom: 12px; }
.stat-card-wide p { color: var(--muted); }

/* ===== Act grid ===== */
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .act-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .act-grid { grid-template-columns: repeat(2, 1fr); } }
.act-card {
  background: var(--card); border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.act-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.act-card-thumb { aspect-ratio: 16/9; background: #1a1a1a; overflow: hidden; position: relative; }
.act-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.act-card-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 50%);
}
.act-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.act-card-cat { font-size: 0.78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.act-card-name { font-size: 1.05rem; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 8px; }
.act-card-blurb { color: var(--muted); font-size: 0.88rem; line-height: 1.45; flex: 1; }
.act-card-cta { margin-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 4px; }
.act-card-cta::after { content: "→"; transition: transform 0.15s; }
.act-card:hover .act-card-cta::after { transform: translateX(2px); }

/* ===== Filters / chips ===== */
.chip-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.chip {
  padding: 8px 16px; background: var(--bg); border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
  transition: background 0.15s; cursor: pointer; border: 0;
}
.chip:hover { background: var(--border); }
.chip.active { background: var(--ink); color: #fff; }

/* ===== Act detail page ===== */
.act-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }
.act-hero-info { padding: 16px 8px; }
.act-hero-eyebrow { font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.act-hero h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin-bottom: 20px; }
.act-hero-sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
.act-hero-bio { color: var(--ink); font-size: 1.02rem; line-height: 1.65; margin-bottom: 18px; }
.act-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.video-frame {
  aspect-ratio: 16/9; background: #0a0a0a; border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
}
.video-fallback img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.video-play-btn {
  position: relative; z-index: 2;
  width: 76px; height: 76px; border-radius: 999px;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.video-play-btn::before {
  content: ""; width: 0; height: 0;
  border-style: solid; border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 6px;
}
@media (max-width: 900px) { .act-hero { grid-template-columns: 1fr; } }

/* ===== About / two-col ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.about-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; background: #0a0a0a; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Service / feature lists ===== */
.feature-list { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { padding-left: 32px; position: relative; color: var(--ink); font-size: 1.02rem; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  background: var(--success); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='white'><path d='M13.485 1.929a.75.75 0 0 1 .086 1.058l-7 8.5a.75.75 0 0 1-1.116.057l-3.5-3.5a.75.75 0 0 1 1.06-1.06l2.917 2.917 6.467-7.85a.75.75 0 0 1 1.086-.122z'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* ===== Forms ===== */
.form {
  background: var(--card);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form .field-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 14px 16px; background: var(--bg); border: 1px solid transparent;
  border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  width: 100%; box-sizing: border-box;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10,10,10,.08);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-submit { grid-column: 1 / -1; }
.form-submit button { width: 100%; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

.form-success {
  background: #ECFDF5; color: #065F46; padding: 16px 20px;
  border-radius: var(--radius-sm); margin-bottom: 16px; display: none;
}
.form-error {
  background: #FEF2F2; color: #991B1B; padding: 16px 20px;
  border-radius: var(--radius-sm); margin-bottom: 16px; display: none;
}

/* ===== Contact / NAP ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--bg); padding: 32px; border-radius: var(--radius-md); }
.contact-card h3 { margin-bottom: 16px; }
.contact-card-item { display: flex; gap: 16px; padding: 14px 0; align-items: start; border-bottom: 1px solid var(--border); }
.contact-card-item:last-child { border-bottom: 0; }
.contact-card-item-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 2px; }
.contact-card-item-value { font-size: 1rem; font-weight: 500; color: var(--ink); }

/* ===== FAQ / details ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg); border-radius: var(--radius-md);
  padding: 0 24px;
  transition: background 0.15s;
}
.faq-item[open] { background: var(--card); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--muted); transition: transform 0.15s; flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 0 22px; color: var(--ink); line-height: 1.6; }

/* ===== Sticky mobile CTA ===== */
.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; background: var(--ink); box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-mobile-cta a {
  flex: 1; padding: 16px 0; color: #fff !important; text-align: center;
  font-weight: 600; font-size: 0.95rem;
}
.smc-call { background: var(--accent); color: #fff !important; }
@media (min-width: 901px) { .sticky-mobile-cta { display: none; } }

/* ===== Footer ===== */
.site-footer {
  background: var(--card); color: var(--muted);
  padding: 64px 40px 28px;
  border-radius: var(--radius-lg);
  margin: 16px;
}
.footer-shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 16px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { max-width: 200px; margin-bottom: 16px; padding: 0; }
.footer-tagline { font-size: 0.92rem; color: var(--muted); max-width: 320px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { color: var(--muted); padding: 8px; border-radius: 999px; background: var(--bg); display: grid; place-items: center; transition: background 0.15s, color 0.15s; }
.footer-social a:hover { background: var(--accent); color: #fff !important; }
.footer-col h4 { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .footer-col ul li { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact li { color: var(--muted); }
.footer-contact a { font-weight: 500; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom .footer-credit a { color: var(--accent); }

/* ===== Page-specific ===== */
.event-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.event-card { background: var(--bg); border-radius: var(--radius-md); overflow: hidden; }
.event-card img { aspect-ratio: 2/3; object-fit: cover; width: 100%; }
.event-card-body { padding: 16px 18px 18px; }
.event-card-title { font-weight: 600; color: var(--ink); font-size: 0.95rem; margin-bottom: 4px; }
.event-card-sub { color: var(--muted); font-size: 0.85rem; }

/* ===== Spacer / utility ===== */
.lead-text { font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.bg-shell { background: var(--bg); padding: 12px; border-radius: var(--radius-lg); }
.tag { display: inline-block; padding: 4px 10px; background: var(--bg); border-radius: 999px; font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* breadcrumb */
.breadcrumbs { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { margin: 0 8px; color: var(--muted-2); }

/* Pagination-ish */
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 36px 40px; background: var(--ink); color: #fff;
  border-radius: var(--radius-lg); margin: 16px 0; flex-wrap: wrap;
}
.cta-strip h3 { color: #fff; max-width: 600px; }
.cta-strip p { color: #B8B8B8; margin-top: 6px; max-width: 540px; }
.cta-strip .btn-accent { flex-shrink: 0; }

body { padding-bottom: 80px; }
@media (min-width: 901px) { body { padding-bottom: 0; } }

/* =============================================================
   WOW-FACTOR HOME PAGE — added 2026-05-15
   Dark immersive hero, marquee, image categories, mock booking flow.
   ============================================================= */

/* Dark hero — full-bleed showbiz aesthetic */
.hero-dark {
  position: relative;
  background: radial-gradient(ellipse at 70% 30%, rgba(232,18,112,0.18) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(255,80,160,0.10) 0%, transparent 55%),
              linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 60%, #0A0A0A 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  margin-bottom: 16px;
  min-height: 640px;
}
.hero-dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='1' cy='1' r='0.5' fill='%23ffffff' opacity='0.08'/></svg>");
  background-size: 32px 32px;
  pointer-events: none; opacity: 0.4;
}
.hero-dark-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 72px 80px;
  position: relative; z-index: 1;
  min-height: 640px;
}
.hero-dark-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; font-size: 0.85rem; color: rgba(255,255,255,0.9);
  margin-bottom: 32px; max-width: max-content;
}
.hero-dark-eyebrow .badge {
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.72rem;
  padding: 4px 10px; border-radius: 999px;
}
.hero-dark h1 {
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.02;
  margin-bottom: 28px;
}
.hero-dark h1 .accent {
  background: linear-gradient(135deg, #FE4395 0%, #E81270 50%, #910B46 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-dark p.sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.75);
  max-width: 540px; margin-bottom: 40px; line-height: 1.55;
}
.hero-dark .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dark .btn-primary {
  background: var(--accent); color: #fff !important;
  font-weight: 600; padding: 16px 28px;
}
.hero-dark .btn-primary:hover { background: var(--accent-dark); color: #fff !important; }
.hero-dark .btn-ghost {
  background: rgba(255,255,255,0.06); color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-dark .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff !important; }

.hero-trust-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars img,
.hero-trust-avatars .ph {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
  object-fit: cover; background: #E81270; color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.hero-trust-avatars > :first-child { margin-left: 0; }
.hero-trust-text { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.4; }
.hero-trust-text strong { color: #fff; }

/* Hero right column — live booking preview card */
.hero-preview {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.hero-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hero-preview-head .lbl {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.hero-preview-head .live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: #4ADE80; font-weight: 600;
}
.hero-preview-head .live-dot::before {
  content: ""; width: 8px; height: 8px; background: #4ADE80; border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.hero-preview-act {
  display: flex; gap: 16px; align-items: center;
  padding: 14px; background: rgba(255,255,255,0.04); border-radius: 14px;
  margin-bottom: 8px; transition: background 0.15s, transform 0.15s;
}
.hero-preview-act:hover { background: rgba(255,255,255,0.08); transform: translateX(2px); }
.hero-preview-act img {
  width: 64px; height: 64px; border-radius: 12px; object-fit: cover;
}
.hero-preview-act-info { flex: 1; }
.hero-preview-act-name { color: #fff; font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.hero-preview-act-cat { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.hero-preview-act-price {
  color: #FFB0CB; font-weight: 600; font-size: 0.9rem;
  background: rgba(232,18,112,0.18); padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
}
.hero-preview-cta {
  width: 100%; padding: 14px; background: #fff; color: var(--ink) !important;
  border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  margin-top: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.15s;
}
.hero-preview-cta:hover { transform: translateY(-1px); color: var(--ink) !important; }

@media (max-width: 1020px) {
  .hero-dark-grid { grid-template-columns: 1fr; padding: 56px 32px 64px; gap: 40px; min-height: auto; }
  .hero-dark { min-height: auto; }
}
@media (max-width: 600px) {
  .hero-dark-grid { padding: 40px 22px 48px; }
  .hero-dark h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-dark p.sub { font-size: 1.05rem; }
  .hero-preview { padding: 20px; }
}

/* Marquee strip — endless artist scroll */
.marquee {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 0;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.marquee-head {
  text-align: center; margin-bottom: 28px; padding: 0 24px;
}
.marquee-head .eyebrow { color: var(--accent-dark); }
.marquee-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.marquee-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-card {
  flex-shrink: 0; width: 240px;
  background: var(--ink); border-radius: 16px; overflow: hidden;
  display: block; color: #fff !important;
  position: relative;
  transition: transform 0.25s ease;
}
.marquee-card:hover { transform: translateY(-4px); color: #fff !important; }
.marquee-card img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform 0.4s ease;
}
.marquee-card:hover img { transform: scale(1.05); }
.marquee-card-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 30%, transparent);
  color: #fff;
}
.marquee-card-cat {
  font-size: 0.72rem; color: #FFB0CB;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.marquee-card-name {
  font-weight: 600; font-size: 0.92rem; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Big stat showcase — saas style */
.stat-showcase {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  margin-bottom: 16px;
}
.stat-showcase-head { margin-bottom: 40px; max-width: 720px; }
.stat-showcase-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.stat-showcase-head p { color: var(--muted); font-size: 1.15rem; }
.stat-showcase-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "headline headline accent"
    "stat1 stat2 stat3";
}
.stat-showcase-grid .h { grid-area: headline; }
.stat-showcase-grid .a { grid-area: accent; }
.stat-showcase-grid .s1 { grid-area: stat1; }
.stat-showcase-grid .s2 { grid-area: stat2; }
.stat-showcase-grid .s3 { grid-area: stat3; }

.ssc-card {
  padding: 32px; border-radius: 20px;
  background: var(--bg); transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px; position: relative; overflow: hidden;
}
.ssc-card:hover { transform: translateY(-4px); }
.ssc-num {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 0.95; color: var(--ink);
}
.ssc-lbl { color: var(--muted); margin-top: 16px; font-size: 0.98rem; line-height: 1.4; }

.ssc-headline {
  background: var(--ink); color: #fff !important; padding: 40px;
  min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
}
.ssc-headline h3 { color: #fff; font-size: clamp(1.4rem, 2.2vw, 1.8rem); line-height: 1.2; margin-bottom: 12px; }
.ssc-headline p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.ssc-headline .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent) !important; font-weight: 600; margin-top: 16px;
}

.ssc-accent {
  background: linear-gradient(135deg, #FE4395 0%, #E81270 100%);
  color: #fff; padding: 32px;
}
.ssc-accent .ssc-num { color: #fff; }
.ssc-accent .ssc-lbl { color: rgba(255,255,255,0.85); }

@media (max-width: 820px) {
  .stat-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "headline headline"
      "stat1 accent"
      "stat2 stat3";
  }
}
@media (max-width: 540px) {
  .stat-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "headline" "stat1" "accent" "stat2" "stat3";
  }
  .ssc-card, .ssc-headline { min-height: 0; }
}

/* Image category grid — big cards with photo backgrounds */
.cat-image-section {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  margin-bottom: 16px;
}
.cat-image-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-image-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 600px; margin-bottom: 12px; }
.cat-image-head p { color: var(--muted); font-size: 1.1rem; max-width: 480px; }

.cat-image-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 14px; grid-auto-rows: 200px;
  grid-template-areas:
    "a b c"
    "a d c"
    "e e f";
}
.cat-image-grid .pos-a { grid-area: a; }
.cat-image-grid .pos-b { grid-area: b; }
.cat-image-grid .pos-c { grid-area: c; }
.cat-image-grid .pos-d { grid-area: d; }
.cat-image-grid .pos-e { grid-area: e; }
.cat-image-grid .pos-f { grid-area: f; }

.cic {
  position: relative; border-radius: 18px; overflow: hidden;
  display: block; color: #fff !important;
  background: #0a0a0a;
  transition: transform 0.3s ease;
}
.cic:hover { transform: scale(1.02); color: #fff !important; }
.cic img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
  opacity: 0.75;
}
.cic:hover img { transform: scale(1.08); opacity: 0.9; }
.cic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.2) 50%, transparent 80%);
  z-index: 1;
}
.cic-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px; z-index: 2;
}
.cic-eyebrow {
  font-size: 0.72rem; color: #FFB0CB;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.cic-name { font-size: 1.4rem; font-weight: 700; line-height: 1.15; color: #fff; }
.cic-count { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; }
.cic-arrow {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  display: grid; place-items: center;
  transition: transform 0.2s ease;
  font-weight: 700;
}
.cic:hover .cic-arrow { transform: rotate(-45deg); }

.pos-a .cic-name { font-size: 1.8rem; }

@media (max-width: 900px) {
  .cat-image-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    grid-template-areas: "a a" "b c" "d e" "f f";
  }
  .pos-a .cic-name { font-size: 1.5rem; }
}
@media (max-width: 540px) {
  .cat-image-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e" "f";
  }
}

/* How it works — saas split column with mock flow */
.flow-section {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  margin-bottom: 16px;
}
.flow-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 48px; align-items: center;
}
.flow-left h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.flow-left p.lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; line-height: 1.55; }
.flow-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.flow-step {
  display: flex; gap: 16px; padding: 18px;
  background: var(--bg); border-radius: 14px;
}
.flow-step-num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--ink); color: #FFB0CB;
  border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem;
}
.flow-step-text strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 1.02rem; }
.flow-step-text span { color: var(--muted); font-size: 0.92rem; line-height: 1.45; }

/* Flow mock — saas-style booking flow visual */
.flow-mock {
  background: linear-gradient(135deg, #F4F4F5 0%, #FFE5EE 100%);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.flow-mock::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(232,18,112,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.flow-mock-window {
  background: #fff; border-radius: 18px; padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative; z-index: 1;
}
.flow-mock-toolbar {
  display: flex; gap: 6px; margin-bottom: 18px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.flow-mock-toolbar span {
  width: 12px; height: 12px; border-radius: 50%; background: var(--border);
}
.flow-mock-toolbar span:first-child { background: #FF5F57; }
.flow-mock-toolbar span:nth-child(2) { background: #FEBC2E; }
.flow-mock-toolbar span:nth-child(3) { background: #28C840; }
.flow-mock-title { font-weight: 600; font-size: 0.85rem; color: var(--muted); flex: 1; text-align: center; }

.fm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fm-field-lbl { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.fm-field-input {
  padding: 12px 14px; background: var(--bg); border-radius: 10px;
  font-size: 0.92rem; color: var(--ink); border: 1px solid transparent;
  display: flex; align-items: center; justify-content: space-between;
}
.fm-field-input.active { border-color: var(--ink); background: #fff; box-shadow: 0 0 0 4px rgba(10,10,10,0.06); }
.fm-pill { padding: 4px 10px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; }
.fm-btn {
  padding: 14px; background: var(--ink); color: #fff;
  border-radius: 10px; text-align: center; font-weight: 600; font-size: 0.95rem;
}
.fm-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.fm-option {
  padding: 10px 12px; background: var(--bg); border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500;
}
.fm-option .av { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); object-fit: cover; flex-shrink: 0; }
.fm-option.selected { background: #fff; box-shadow: 0 0 0 2px var(--accent); }

@media (max-width: 900px) { .flow-grid { grid-template-columns: 1fr; gap: 32px; } .flow-mock { min-height: 0; } }

/* Spotlight act — big featured act */
.spotlight {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  margin-bottom: 16px;
  color: #fff;
  position: relative; overflow: hidden;
}
.spotlight::before {
  content: ""; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,18,112,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.spotlight-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.spotlight-video {
  aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  background: #000; position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.spotlight-video iframe { width: 100%; height: 100%; border: 0; }
.spotlight-video-thumb {
  position: absolute; inset: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.spotlight-video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.spotlight-video-thumb .play {
  position: relative; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,0.96);
  display: grid; place-items: center;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.spotlight-video-thumb .play::before {
  content: ""; width: 0; height: 0;
  border-style: solid; border-width: 16px 0 16px 24px;
  border-color: transparent transparent transparent var(--ink); margin-left: 6px;
}
.spotlight-info .eyebrow { color: #FFB0CB; }
.spotlight-info h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 20px; }
.spotlight-info p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.6; margin-bottom: 20px; }
.spotlight-info .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.spotlight-info .btn-primary { background: var(--accent); color: #fff !important; padding: 14px 26px; }
.spotlight-info .btn-primary:hover { background: var(--accent-dark); color: #fff !important; }
.spotlight-info .btn-ghost { background: rgba(255,255,255,0.08); color: #fff !important; border: 1px solid rgba(255,255,255,0.15); }

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

/* Big CTA strip with animated edge */
.mega-cta {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px);
  margin-bottom: 16px;
  color: #fff;
  position: relative; overflow: hidden;
  text-align: center;
}
.mega-cta::before {
  content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,18,112,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.mega-cta > * { position: relative; z-index: 1; }
.mega-cta .eyebrow { color: #FFB0CB; margin-bottom: 16px; }
.mega-cta h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.mega-cta h2 .accent { color: #FE4395; font-style: italic; }
.mega-cta p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; margin: 0 auto 32px; }
.mega-cta .cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.mega-cta .btn-primary { background: var(--accent); color: #fff !important; padding: 18px 32px; font-size: 1.05rem; }
.mega-cta .btn-ghost { background: rgba(255,255,255,0.06); color: #fff !important; border: 1px solid rgba(255,255,255,0.15); padding: 18px 32px; font-size: 1.05rem; }

/* Performance — skip painting below-fold sections until they near the viewport */
.marquee, .stat-showcase, .cat-image-section, .spotlight, .flow-section, .mega-cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}
/* Tighten hero on mobile to reduce above-the-fold paint area */
@media (max-width: 600px) {
  .hero-dark { min-height: auto; }
  .hero-dark-grid { min-height: auto; padding: 32px 22px 40px; gap: 24px; }
  .hero-dark h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .hero-dark p.sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-trust-row { margin-top: 28px; padding-top: 18px; }
  .hero-preview { padding: 16px; }
  .hero-preview-act img, .hero-preview-act .hpa-avatar { width: 48px !important; height: 48px !important; font-size: 1.2rem !important; }
}

/* =============================================================
   NAV DROPDOWN MEGA-MENUS — added 2026-05-15 v2
   ============================================================= */
.nav-item {
  position: relative;
}
.nav-item > a, .nav-item > button {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 18px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500; color: var(--muted);
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.nav-item > a:hover, .nav-item > button:hover,
.nav-item.is-open > a, .nav-item.is-open > button {
  background: rgba(0,0,0,0.04); color: var(--ink);
}
.nav-item .chev {
  transition: transform 0.2s;
  width: 12px; height: 12px;
  opacity: 0.6;
}
.nav-item.is-open .chev { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  box-shadow: 0 30px 60px -16px rgba(0,0,0,0.18), 0 4px 8px rgba(0,0,0,0.04);
  padding: 24px;
  min-width: 640px;
  z-index: 200;
}
.nav-item.is-open .nav-dropdown,
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
/* hover bridge — invisible safe-zone above dropdown so cursor doesn't lose hover */
.nav-dropdown::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown-head h4 {
  font-size: 0.98rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-dropdown-head a {
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-dropdown-head a:hover { color: var(--accent-dark); }
.nav-dropdown-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.nav-dropdown-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--ink); transition: background 0.12s;
}
.nav-dropdown-item:hover { background: rgba(232,18,112,0.06); color: var(--ink); }
.nav-dropdown-item-name { font-weight: 600; font-size: 0.92rem; }
.nav-dropdown-item-meta { font-size: 0.78rem; color: var(--muted); }

@media (max-width: 900px) {
  .nav-dropdown { display: none !important; }
}

/* Mobile nav — turn drop-bearing items into expandable details */
.mobile-nav details {
  border-radius: var(--radius-sm);
  background: transparent;
  margin-bottom: 4px;
}
.mobile-nav details summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--ink); cursor: pointer;
  list-style: none;
}
.mobile-nav details summary::-webkit-details-marker { display: none; }
.mobile-nav details summary::after {
  content: "+"; font-size: 1.4rem; color: var(--muted);
  transition: transform 0.2s ease; line-height: 1;
}
.mobile-nav details[open] summary::after { transform: rotate(45deg); }
.mobile-nav details[open] summary { background: var(--bg); }
.mobile-nav details > div {
  padding: 8px 16px 14px 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.mobile-nav details > div a {
  padding: 10px 12px; font-size: 0.9rem; font-weight: 500;
  color: var(--muted); border-radius: 8px;
  display: block;
}
.mobile-nav details > div a:hover { background: var(--bg); color: var(--ink); }

/* =============================================================
   MOBILE WIDTH + LAYOUT FIXES — round 5
   ============================================================= */
@media (max-width: 720px) {
  /* Sections were being eaten by stacked padding (page-wrap + shell + section padding).
     Drop .shell horizontal padding so sections match the nav pill width. */
  .shell { padding: 0; }
  .page-wrap { padding: 12px 12px 64px; }
  .site-header { padding: 12px 12px; }

  /* Reduce card-shell padding on mobile so sections aren't tiny */
  .card-shell { padding: 24px 18px; }

  /* Hero dark — generous on the inside without eating the page edges */
  .hero-dark { min-height: auto; }
  .hero-dark-grid { padding: 32px 22px 36px; gap: 24px; }

  /* Hero preview — give the act name room to breathe */
  .hero-preview { padding: 16px 14px; }
  .hero-preview-act { gap: 12px; padding: 12px 12px; }
  .hero-preview-act img,
  .hero-preview-act .hpa-avatar {
    width: 52px !important; height: 52px !important;
    border-radius: 10px !important; flex-shrink: 0;
  }
  .hero-preview-act-info { min-width: 0; flex: 1 1 auto; }
  .hero-preview-act-name {
    font-size: 0.9rem;
    line-height: 1.25;
    word-break: normal; overflow-wrap: anywhere;
  }
  .hero-preview-act-cat { font-size: 0.78rem; }
  .hero-preview-act-price {
    font-size: 0.78rem; padding: 4px 8px; flex-shrink: 0;
  }
  /* Title abbreviation: keep first word + dash short. CSS line-clamp prevents 4-line names. */
  .hero-preview-act-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Spotlight on mobile — single column, no horizontal scroll */
  .spotlight { padding: 32px 22px; }

  /* Flow mock — fits viewport, mock window stacks options to 1 column */
  .flow-section { padding: 32px 18px; }
  .flow-mock { padding: 22px 18px; min-height: 0; border-radius: 18px; }
  .flow-mock-window { padding: 18px; }
  .flow-mock-window .fm-field-input { font-size: 0.85rem; padding: 11px 12px; gap: 6px; }
  .flow-mock-window .fm-field-input span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .fm-pill { font-size: 0.65rem; padding: 3px 8px; flex-shrink: 0; }
  .fm-options { grid-template-columns: 1fr; gap: 6px; }
  .fm-option { padding: 9px 11px; font-size: 0.85rem; }
  .fm-option .av { width: 24px; height: 24px; }
  .fm-btn { padding: 12px; font-size: 0.92rem; }

  /* Mega-CTA — tighten on mobile */
  .mega-cta { padding: 44px 22px; }
  .mega-cta h2 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .mega-cta p { font-size: 1rem; }
  .mega-cta .cta-row { flex-direction: column; width: 100%; gap: 10px; }
  .mega-cta .btn-primary, .mega-cta .btn-ghost { width: 100%; padding: 14px 20px; font-size: 0.98rem; }

  /* Marquee + stat-showcase + cat-image-section + spotlight padding */
  .stat-showcase { padding: 32px 18px; }
  .cat-image-section { padding: 32px 18px; }
  .marquee { padding: 24px 0; }
  .marquee-head { padding: 0 18px; }

  /* Cat image grid heights on small screens */
  .cat-image-grid { grid-auto-rows: 160px; }
}

/* Edge case for very narrow screens */
@media (max-width: 380px) {
  .hero-preview-act-price {
    /* Tiny screens: collapse the "Check date" text to just an arrow chip */
    font-size: 0; padding: 6px 8px; min-width: 28px;
  }
  .hero-preview-act-price::after {
    content: "→"; font-size: 0.95rem; line-height: 1;
  }
}

/* Hero "Live" badge — pulsing white dot */
.hero-dark-eyebrow .badge {
  display: inline-flex; align-items: center; gap: 7px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: badge-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); opacity: 1; }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .badge-dot { animation: none; }
}

/* Global horizontal-overflow guard — stops any stray wide element causing the wobble.
   Uses overflow-x: clip (NOT hidden) — `hidden` turns the element into a scroll
   container and breaks position:sticky on the nav; `clip` clips without that side effect. */
html, body { overflow-x: clip; max-width: 100%; }
.page-wrap { overflow-x: clip; }
