/* ---- Dumb Clubhouse Signup.html line 10 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.sqs-block:has(.widget) {
  padding-bottom: 40px !important;
  overflow: visible !important;
}

:root {
  --orange: #F75E1C;
  --bg: #070503;
  --card: #110e09;
  --border: rgba(247,94,28,0.2);
  --muted: #9a8a75;
  --cream: #ffffff;
  --section-gap: 56px;
  /* Gap between two ADJACENT carousel rails — the homepage widget's and the
     Clubhouse player's rhythm. --section-gap stays 56px for the page's own
     editorial sections (hero, plans, drive-in, FAQ); only rail-to-rail uses
     this. */
  --rail-gap: 22px;
  --label-gap: 4px;
  /* Heading tiers shared with the homepage widget + Clubhouse player. */
  --h-section: clamp(31px, 4.4vw, 38px);
  --h-card: 17px;
  --h-card-weight: 800;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.04em;
}
p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  color: #ffffff;
}

/* ── DRIVE-IN SHOWCASE ── */
.drivein-section {
  animation: fadeUp 0.5s ease 0.15s both;
  padding: var(--section-gap) 0 0;
}

.drivein-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.drivein-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.drivein-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.drivein-image-wrap img.loaded { opacity: 1; }

.drivein-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,94,28,0.1);
  border: 1px solid rgba(247,94,28,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.drivein-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.drivein-byline {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.drivein-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .drivein-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── NEW FEATURES GRID ──
   Open, airy layout: no card boxes, borders, or pill badges — just eyebrow /
   headline / details columns with generous whitespace. */
.features-section {
  padding-top: var(--section-gap);
  animation: fadeUp 0.5s ease 0.2s both;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  flex: 1 1 auto;
}

.feature-link {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.feature-link:hover { border-bottom-color: var(--orange); }

@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; gap: 40px; }
}

.widget { max-width: 2000px; margin: 0 auto; padding: 24px 4vw 80px; }

.btn {
  background: var(--orange);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 16px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(247,94,28,0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(247,94,28,0.45); background: #ff7235; }

.hero-plans-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeUp 0.5s ease both;
  padding-bottom: 0 !important;
}

.hero-logo {
  width: 500px; max-width: 90%; height: auto; object-fit: contain;
  margin-bottom: 28px;
  opacity: 0; transition: opacity 0.4s ease;
}
.hero-logo.loaded { opacity: 1; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.8);
  max-width: 620px; margin-bottom: 48px;
}
.hero-tagline strong { color: var(--cream); font-weight: 600; }

.plans-inner {
  width: 100%;
  margin-top: 32px;
  animation: fadeUp 0.5s ease 0.15s both;
}

.section-title { font-size: clamp(36px, 4vw, 52px); font-weight: 700; letter-spacing: -0.04em; line-height: 1em; margin-bottom: 40px; }

/* ── PROMO BANNER ── */
.promo-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Copy column is CENTRED (2026-08-20, Chris) — eyebrow, headline, caption,
     countdown, CTA and sub-line all sit on the same axis. */
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* Default look when the sale carries no background image; the deal's bgImage
     is applied inline by the script below and paints over this. */
  background: linear-gradient(135deg, #7a1414, #b3261e 45%, #f65e1b);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 24px 30px 22px 30px;
  margin: 0 auto 28px;
  max-width: 720px;
  width: 100%;
  min-height: 160px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  text-align: center;
  color: #f6efe5;
}
/* Scrim keeping the copy legible over whatever art the sale supplies. Only
   painted when there IS a background image; with a character it fades out
   before the cutout so the character stays bright. */
.promo-banner.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12,17,12,0.9) 0%, rgba(12,17,12,0.78) 55%, rgba(12,17,12,0.62) 100%);
}
.promo-banner.has-bg.has-char::before {
  background: linear-gradient(90deg, rgba(12,17,12,0.93) 0%, rgba(12,17,12,0.82) 44%, rgba(12,17,12,0.4) 66%, rgba(12,17,12,0) 88%);
}
/* Reserve the right-hand column only when this sale actually has a character. */
.promo-banner.has-char { padding-right: 250px; }
/* The sale's character cutout, matching the deals hero. Nothing campaign-specific
   lives here any more — the URL comes from the deal's charImage. */
.promo-char {
  position: absolute;
  right: 0;
  bottom: -8%;
  width: 250px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(-14px 8px 18px rgba(0,0,0,0.3));
  pointer-events: none;
  user-select: none;
}
.promo-banner > *:not(.promo-char) { position: relative; z-index: 3; }
@keyframes promoShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.promo-banner-headline {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.3;
}
.promo-banner-headline strong { color: #fff; }
.promo-banner-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.promo-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.promo-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  padding: 0 6px;
}
.promo-cd-num {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.promo-cd-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 600;
}
.promo-cd-sep {
  font-size: 38px;
  color: rgba(247,94,28,0.55);
  font-weight: 900;
  line-height: 1;
  align-self: flex-start;
  padding-top: 3px;
}
@media (max-width: 768px) {
  /* Tablet/phone: copy centered over the character (darkened) with a bottom-up
     scrim (no reserved column — that only crams a narrow banner). */
  .promo-banner, .promo-banner.has-char { padding: 20px 18px; gap: 12px; align-items: center; text-align: center; }
  .promo-banner-headline { font-size: 13px; }
  .promo-banner.has-bg::before, .promo-banner.has-bg.has-char::before { background: linear-gradient(to top, rgba(10,14,10,0.96) 0%, rgba(10,14,10,0.9) 44%, rgba(10,14,10,0.78) 70%, rgba(10,14,10,0.5) 100%); }
  .promo-char { width: 60%; right: -8%; bottom: -6%; filter: drop-shadow(-14px 8px 18px rgba(0,0,0,0.3)) brightness(.58); }
  /* Match the deals countdown on mobile: centered units, even gap, no separators. */
  .promo-countdown { justify-content: center; gap: 20px; }
  .promo-cd-sep { display: none; }
  .promo-cd-unit { min-width: 0; padding: 0; flex: 0 0 auto; }
  .promo-cd-num { font-size: clamp(28px, 10vw, 40px); }
  .promo-cd-lbl { font-size: 9px; margin-top: 6px; }
}

.plan-promo-tag {
  display: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,94,28,0.15);
  border: 1px solid rgba(247,94,28,0.45);
  border-radius: 12px;
  padding: 3px 10px;
  margin-top: 8px;
}
.plan-promo-tag.visible { display: inline-block; }

/* ── BILLING TOGGLE ── */
.billing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.billing-toggle {
  display: flex;
  background: #1a1208;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 4px;
  position: relative;
}
.billing-toggle input[type="radio"] { display: none; }
.billing-toggle label {
  padding: 5px 16px; border-radius: 30px;
  font-size: 12px; font-weight: 600;
  cursor: pointer; color: var(--muted);
  transition: color 0.2s; position: relative; z-index: 1;
  user-select: none;
}
.billing-toggle input[type="radio"]:checked + label { color: #fff; }
.toggle-slider {
  position: absolute; top: 4px; bottom: 4px;
  border-radius: 30px; background: var(--orange);
  box-shadow: 0 2px 10px rgba(247,94,28,0.4);
  transition: left 0.25s cubic-bezier(0.4,0,0.2,1), width 0.25s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

/* ── PLANS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 0;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 28px 52px;
  position: relative;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
  container-type: inline-size;
}

.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
  transition: filter 0.2s;
  border-radius: 20px;
}

.plan-card * { position: relative; z-index: 1; }

.plan-card[data-plan="basic"]::before {
  background-image: url('https://images.squarespace-cdn.com/content/5f257383d68fbe07dae9c644/fc1eaf2a-045d-4028-a23d-7314989c6ac2/Wood+Panel+3.jpg?format=1500w');
}
.plan-card[data-plan="plus"]::before {
  background-image: url('https://images.squarespace-cdn.com/content/5f257383d68fbe07dae9c644/2cc2cf51-66ca-4b0b-80c4-af14d9244eab/THE+DUMB+SOCIAL+CLUB+blank+bg.jpg?format=1500w');
}
.plan-card[data-plan="art"]::before {
  background-image: url('https://dumb247-schedule.dumb-industries.workers.dev/img/d68024f6-836d-466b-96fe-bc98cbe03ad7');
}

.plan-card:hover {
  border-color: rgba(247,94,28,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.plan-card.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 16px 48px rgba(247,94,28,0.15);
}

.plan-card.pulse { animation: cardPulse 0.4s ease; }
@keyframes cardPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.025); box-shadow: 0 0 0 2px var(--orange), 0 20px 56px rgba(247,94,28,0.3); }
  100% { transform: scale(1); }
}

.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
  white-space: nowrap; border: 1px solid rgba(255,255,255,0.4);
}

.plan-price.is-free { color: var(--orange); }
.plan-deal { font-size: 12.5px; margin-top: 6px; line-height: 1.3; transition: opacity 0.2s; }
.plan-deal.muted { color: #8a7a68; font-weight: 600; }
.plan-deal.free { color: #38c765; font-weight: 700; }
.plan-deal.fade { opacity: 0; }

.plan-logo {
  height: 140px; width: auto; max-width: 240px;
  object-fit: contain; margin-bottom: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.plan-logo.loaded { opacity: 1; }

.plan-was-price {
  font-size: 18px; color: var(--muted); text-decoration: line-through;
  margin-bottom: 2px; visibility: hidden; font-weight: 700;
  transition: opacity 0.2s, transform 0.2s; opacity: 0;
}
.plan-was-price.visible { visibility: visible; opacity: 1; }
.plan-was-price.fade, .plan-price.fade, .plan-period.fade { opacity: 0; transform: translateY(-4px); }

.plan-price {
  font-size: 40px; font-weight: 900;
  color: var(--orange); letter-spacing: -0.03em; line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.plan-period {
  font-size: 13px; color: var(--muted); margin-bottom: 24px; display: block;
  transition: opacity 0.2s, transform 0.2s;
}

.plan-name {
  display: none;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--cream);
}

.plan-price-wrap { display: contents; }

.plan-cta { margin-top: 24px; }
.plan-cta .btn { width: 100%; text-align: center; }

.plans-grid { --plan-min-height: 380px; }

@media (min-width: 901px) {
  .plan-card { min-height: var(--plan-min-height); }
}

/* ── In-tile benefits (matches the Dumb Deals showcase memberships) ──
   The front (logo/price/"What's included") and the benefits checklist are two
   stacked faces over the SAME card background; selecting the card crossfades +
   slides between them. The CTA stays put below, and a ✕ fades in to hint the
   card taps back. */
.plan-faces { position: relative; width: 100%; flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; }
.plan-front {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%;
  transition: opacity 0.32s ease, transform 0.32s ease;
  will-change: opacity, transform;
}
.plan-card .plan-benefits-in {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
  will-change: opacity, transform;
}
.plan-card.selected .plan-front { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.plan-card.selected .plan-benefits-in { opacity: 1; transform: none; pointer-events: auto; }
.plan-card::after {
  content: '✕';
  position: absolute; top: 12px; right: 16px; z-index: 2;
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.7);
  opacity: 0; pointer-events: none; transition: opacity 0.32s ease;
}
.plan-card.selected::after { opacity: 1; }
.plan-bi-logo { height: clamp(40px, 15cqw, 80px); width: auto; max-width: 80%; object-fit: contain; flex: 0 0 auto; }
.plan-bi-list {
  list-style: none; margin: 0; padding: 0 2px;
  overflow-y: auto; flex: 0 1 auto; min-height: 0;
  text-align: center; width: 100%;
}
.plan-bi-list li { padding: 5px 6px; font-size: clamp(11px, 2.9cqw, 13.5px); font-weight: 600; color: var(--cream); line-height: 1.35; }
.plan-bi-list li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 0.95em; margin-right: 6px; }
.plan-bi-list li[data-tip] { cursor: default; }
.plan-bi-list li[data-tip]:hover { color: var(--orange); }
.plan-more {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.2px;
  cursor: pointer; padding: 0; margin-top: 18px;
  display: inline-flex; align-items: center; gap: 5px;
}
.plan-more:hover { color: var(--orange); }
.plan-caret { display: inline-block; transition: transform 0.2s; font-size: 11px; }
.plan-card.selected .plan-caret { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) {
  .plan-front, .plan-card .plan-benefits-in, .plan-card::after { transition: none; }
}
/* the old separate benefits panel below the grid is superseded by the in-tile view */
.benefits-panel { display: none !important; }

.benefits-panel {
  display: none;
  margin-top: 40px;
  padding-top: 40px;
  width: 100%;
  animation: fadeUp 0.3s ease both;
}

.benefits-panel.visible { display: block; }

.benefits-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}

.benefits-header-label {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.benefits-list {
  list-style: none;
  columns: 2; column-gap: 48px;
  text-align: left;
}

.benefits-list li {
  font-size: 15px; font-weight: 600;
  color: var(--cream);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  break-inside: avoid;
  opacity: 0; transform: translateY(10px);
  animation: benefitIn 0.35s ease forwards;
}
@keyframes benefitIn { to { opacity: 1; transform: translateY(0); } }

.benefits-list li:last-child { border-bottom: none; }

.benefits-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

.benefits-list li.tier-sep {
  grid-column: 1 / -1;
  padding: 20px 0 4px;
  border-bottom: none;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  column-span: all;
}
.benefits-list li.tier-sep::before { display: none; }

.benefits-list li[data-tip] { cursor: default; }
.benefits-list li[data-tip]:hover { color: var(--orange); }

#tip {
  position: fixed;
  background: #1e1508;
  border: 1px solid rgba(247,94,28,0.4);
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 400; line-height: 1.5;
  padding: 10px 14px; border-radius: 10px;
  max-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 9999;
  white-space: normal;
}
#tip.visible { opacity: 1; }

.trial-note {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 13px; color: var(--muted); text-align: center;
}
.trial-note strong { color: var(--cream); }

/* ── UPGRADE TICKER ── */
.upgrade-ticker-wrap {
  margin-left: -4vw;
  margin-right: -4vw;
  margin-top: 28px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(247,94,28,0.04);
  cursor: pointer;
  text-decoration: none;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

.upgrade-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.upgrade-ticker-wrap:hover .upgrade-ticker-track {
  animation-play-state: paused;
}

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

.upgrade-ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 18px 0;
  white-space: nowrap;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  flex-shrink: 0;
}

.upgrade-ticker-wrap:hover .upgrade-ticker-item {
  color: var(--orange);
}

.upgrade-ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 32px;
  transition: opacity 0.2s;
}

.upgrade-ticker-wrap:hover .upgrade-ticker-dot {
  opacity: 1;
}

.carousel-section { animation: fadeUp 0.5s ease 0.2s both; }

.sec-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 10px; gap: 16px; flex-wrap: wrap;
}

/* Eyebrows removed -- restore with `display: block`. Same call as the homepage
   widget and the Clubhouse player: the heading is the label. */
.sec-label { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); display: none; margin-bottom: var(--label-gap); }
.sec-title { font-size: var(--h-section); font-weight: 700; letter-spacing: -0.04em; line-height: 1em; margin-bottom: 0; }
/* (.sec-link removed -- the "View all" header links are gone everywhere else,
   and nothing on this page rendered one.) */

/* Perk ticker — replaces the old bordered .discount-pill. Full-bleed scrolling
   text with no border, no background and tight vertical rhythm. Content is built
   by JS from the data-perk attribute so it always fills the width seamlessly. */
.perk-ticker {
  margin: -6px -4vw 18px;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6vw, black calc(100% - 6vw), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 6vw, black calc(100% - 6vw), transparent 100%);
}

.perk-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.perk-ticker:hover .perk-ticker-track { animation-play-state: paused; }

.perk-ticker-item {
  display: inline-flex; align-items: center;
  padding: 4px 0;
  white-space: nowrap;
  color: var(--orange);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  flex-shrink: 0;
}

.perk-ticker-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: 0.45;
  flex-shrink: 0; margin: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  .perk-ticker-track { animation: none; }
}

.carousel-wrap { position: relative; margin-left: -4vw; margin-right: -4vw; }

.carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 4vw 12px; scroll-padding-left: 4vw; }
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { scroll-snap-align: start; flex: 0 0 calc((92vw - 60px) / 4); width: calc((92vw - 60px) / 4); }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(20,14,6,0.9); border: 1px solid var(--border);
  color: #fff; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover { background: var(--orange); border-color: var(--orange); }
.carousel-arrow.prev { left: 1%; }
.carousel-arrow.next { right: 1%; }
.carousel-arrow.hidden { opacity: 0; pointer-events: none; }

/* The mobile "Swipe for more" hint is gone (2026-08-20), as on the homepage
   widget and the Clubhouse player: opacity:0 for all but ~2s of a fade, yet
   permanently holding 17px + 10px under the rail. peek-nudge below already
   teaches the swipe without reserving space forever. */
@keyframes carouselPeek { 0% { transform: translateX(0); } 35% { transform: translateX(-52px); } 65% { transform: translateX(-52px); } 100% { transform: translateX(0); } }
.carousel.peek-nudge { animation: carouselPeek 0.9s cubic-bezier(0.25,0.46,0.45,0.94) forwards; scroll-snap-type: none; }
@media (max-width: 768px) {
  :root { --h-card: 16px; --rail-gap: 16px; }
  .sec-header { margin-bottom: 6px; }
}

/* ══════════════════════════════════════
   VIDEO CARDS
══════════════════════════════════════ */
.video-card {
  background: #1a1208;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid rgba(247, 94, 28, 0.2);
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); border-color: rgba(247,94,28,0.55); }

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  position: relative;
  background: #0e0b06;
  overflow: hidden;
}
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.3s; }
.video-thumb img.loaded { opacity: 1; }
.vplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.vplay svg { margin-left: 3px; }
.video-card:hover .vplay { transform: translate(-50%,-50%) scale(1.15); }

/* ── Video card body — uniform gap, no p margins ── */
.video-meta {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-metadata {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

.video-title {
  font-size: var(--h-card);
  font-weight: var(--h-card-weight);
  letter-spacing: -0.4px;
  line-height: 1.35;
  margin: 0;
  color: var(--cream);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-excerpt {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.product-card {
  background: #1a1208;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.2s, border-color 0.2s;
  border: 1px solid rgba(247, 94, 28, 0.2);
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(247,94,28,0.55); }

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  position: relative;
  background: #0e0b06;
  overflow: hidden;
}
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.3s; }
.product-img img.loaded { opacity: 1; }
.product-soldout { position: absolute; top: 10px; right: 10px; background: #c0392b; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.5); }

/* ── Product card body — uniform gap, no p margins ── */
.product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.35;
  margin: 0;
  color: var(--cream);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin: 0;
}

.product-price-orig {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.product-member-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(247,94,28,0.75);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-left: 4px;
}

.product-excerpt {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════
   DOWNLOAD CARDS
══════════════════════════════════════ */
.download-card {
  background: #1a1208;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1px solid rgba(247, 94, 28, 0.2);
}
.download-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); border-color: rgba(247,94,28,0.55); }

.download-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  flex-shrink: 0;
  position: relative;
  background: #0e0b06;
  overflow: hidden;
}
.download-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.3s; }
.download-img img.loaded { opacity: 1; }

/* CTA tile */
.cta-tile { background: transparent; border: 1px solid var(--border); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-decoration: none; color: var(--cream); padding: 28px 20px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.cta-tile:hover { border-color: var(--orange); background: rgba(247,94,28,0.05); }
.cta-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); border: 1px solid rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(247,94,28,0.35); transition: transform 0.2s; }
.cta-tile:hover .cta-icon { transform: scale(1.1); }
.cta-tile span { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; text-align: center; }

/* Skeleton */
@keyframes shimmer { 0% { background-position: -600px 0; } 100% { background-position: 600px 0; } }
.skel { background: linear-gradient(90deg, #1a1208 25%, #261a0e 50%, #1a1208 75%); background-size: 600px 100%; animation: shimmer 1.4s infinite linear; border-radius: 16px; }

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

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .benefits-list { columns: 1; }
}

@media (max-width: 480px) {
  .widget { padding: 16px 16px 60px !important; }
}

.carousel-section { padding-top: var(--section-gap); }
/* Rail sitting directly on another rail uses the carousel rhythm, not the
   page's editorial section gap. */
.carousel-section + .carousel-section { padding-top: var(--rail-gap); }

.carousel-wrap.at-start .carousel {
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 4vw), transparent 100%);
  mask-image: linear-gradient(to right, black calc(100% - 4vw), transparent 100%);
}
.carousel-wrap:not(.at-start):not(.at-end) .carousel {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 4vw, black calc(100% - 4vw), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 4vw, black calc(100% - 4vw), transparent 100%);
}
.carousel-wrap.at-end .carousel {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 4vw, black);
  mask-image: linear-gradient(to right, transparent 0, black 4vw, black);
}
.carousel-wrap.at-start.at-end .carousel {
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 768px) {
  .widget { padding-left: 5% !important; padding-right: 5% !important; }
  .carousel-wrap { margin-left: -5vw !important; margin-right: -5vw !important; }
  .carousel-arrow { display: none; }
  .carousel {
    padding: 8px 7.5vw 12px !important;
    gap: 16px !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-left: 7.5vw !important;
  }
  .carousel > * { flex: 0 0 85vw !important; width: 85vw !important; scroll-snap-align: start !important; }
  .carousel { -webkit-mask-image: none !important; mask-image: none !important; }
  .carousel-wrap.at-start .carousel {
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 7.5vw), transparent 100%) !important;
    mask-image: linear-gradient(to right, black calc(100% - 7.5vw), transparent 100%) !important;
  }
  .carousel-wrap.at-end .carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7.5vw, black) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 7.5vw, black) !important;
  }
  .carousel-wrap.at-start.at-end .carousel { -webkit-mask-image: none !important; mask-image: none !important; }
  .carousel-wrap:not(.at-start):not(.at-end) .carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7.5vw, black calc(100% - 7.5vw), transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 7.5vw, black calc(100% - 7.5vw), transparent 100%) !important;
  }
  .upgrade-ticker-item { font-size: 10px; letter-spacing: 1.5px; }
  .perk-ticker-item { font-size: 10px; letter-spacing: 1.5px; }
  .perk-ticker-dot { margin: 0 16px; }
  .perk-ticker { margin-bottom: 14px; }
  .sec-header > div { text-align: left; width: 100%; }
  .sec-title { font-size: clamp(32px, 9vw, 48px) !important; }
  .video-meta, .product-info { padding: 12px 14px 14px !important; }
}

/* ---- Dumb Clubhouse Signup.html line 1403 ---- */
.faq-section { padding-top: var(--section-gap); animation: fadeUp 0.5s ease 0.2s both; }
  .faq-groups { max-width: 860px; margin: 0 auto; }
  .faq-section .sec-header { max-width: 860px; margin-left: auto; margin-right: auto; }
  .faq-group { margin-top: 36px; }
  .faq-group:first-child { margin-top: 6px; }
  .faq-group-title {
    font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin: 0 0 14px; padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .faq-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s;
  }
  .faq-item[open] { border-color: rgba(247,94,28,0.45); }
  .faq-item summary {
    list-style: none; cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 16px; padding: 18px 20px;
    font-size: 16px; font-weight: 600; color: var(--cream); line-height: 1.4;
    transition: color 0.2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--orange); }
  .faq-chevron { flex: none; width: 18px; height: 18px; color: var(--orange); transition: transform 0.25s ease; }
  .faq-item[open] .faq-chevron { transform: rotate(180deg); }
  /* Paragraph spacing comes from the flex `gap`, NOT from <p> margins. Squarespace's
     base styles + site Custom CSS reset <p> margins to 0 (some with !important and
     higher specificity), which flattens margin-based spacing on the live site. A
     flex gap is immune to any margin rule, so the rhythm holds everywhere. */
  .faq-answer { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 15px; }
  .faq-answer p { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0; }
  .faq-answer a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(247,94,28,0.4); transition: border-color 0.2s; }
  .faq-answer a:hover { border-bottom-color: var(--orange); }
  .faq-answer strong { color: #fff; font-weight: 700; }
  .faq-disc { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
  .faq-disc li { position: relative; padding-left: 16px; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.72); margin: 0; }
  .faq-disc li::before { content: "•"; position: absolute; left: 2px; color: var(--orange); }
  @media (max-width: 600px) {
    .faq-item summary { padding: 15px 16px; font-size: 15px; }
    .faq-answer { padding: 0 16px 16px; }
  }
