/* ============================================
   BLEND BAR — Memberships Page Styles
   ============================================ */

/* ---------- Memberships Hero ---------- */
.mem-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-height) var(--space-lg) var(--space-3xl);
}

.mem-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-black);
  background-size: cover;
  background-position: 38% 35%;
  transform: scale(1.15) skewX(-2deg);
  filter: brightness(0.75) contrast(1.08);
  transition: transform 8s ease;
}

/* Deep, rich undertone — exclusive club feel */
.mem-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 38% 38%, rgba(61,43,31,0.30) 0%, transparent 60%);
  z-index: 1;
}

/* Depth of field: blur top, sharp center, blur bottom */
.mem-hero-dof {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(13,13,13,0.70) 0%,
      rgba(13,13,13,0.15) 25%,
      transparent 38%,
      transparent 52%,
      rgba(13,13,13,0.15) 65%,
      rgba(13,13,13,0.80) 100%
    );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

/* Tilt-shift blur bands using pseudo-elements */
.mem-hero-dof::before {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.40) 50%, transparent 100%);
  backdrop-filter: blur(6px) saturate(0.7);
  -webkit-backdrop-filter: blur(6px) saturate(0.7);
  z-index: 2;
}

.mem-hero-dof::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(13,13,13,0.90) 0%, rgba(13,13,13,0.45) 50%, transparent 100%);
  backdrop-filter: blur(8px) saturate(0.6);
  -webkit-backdrop-filter: blur(8px) saturate(0.6);
  z-index: 2;
}

/* Subtle skewed light band — cinematic rack focus feel */
.mem-hero-skew {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg,
      transparent 0%,
      transparent 30%,
      rgba(201,169,110,0.04) 40%,
      rgba(201,169,110,0.08) 48%,
      rgba(201,169,110,0.04) 56%,
      transparent 66%,
      transparent 100%
    );
  transform: skewX(-8deg) translateX(10%);
  pointer-events: none;
}

/* Main overlay — keeps text readable while showing the image */
.mem-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 38% 42%, rgba(13,13,13,0.18) 0%, rgba(13,13,13,0.48) 42%, rgba(13,13,13,0.82) 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.46) 30%, rgba(13,13,13,0.28) 52%, rgba(13,13,13,0.42) 70%, rgba(13,13,13,0.92) 100%);
}

.mem-hero-smoke {
  position: absolute;
  inset: -20%;
  z-index: 2;
}

.mem-hero-smoke .smoke-layer:nth-child(1) {
  position: absolute;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06), transparent 70%);
  left: 10%;
  top: 30%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: smokeFloat 24s ease-in-out infinite;
}

.mem-hero-smoke .smoke-layer:nth-child(2) {
  position: absolute;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.04), transparent 70%);
  right: 15%;
  top: 20%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: smokeFloat 28s ease-in-out infinite;
  animation-delay: -8s;
}

.mem-hero-smoke .smoke-layer:nth-child(3) {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245,240,232,0.02), transparent 70%);
  left: 25%;
  bottom: 10%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: smokeFloat 32s ease-in-out infinite;
  animation-delay: -14s;
}

.mem-hero-beam {
  position: absolute;
  z-index: 3;
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,169,110,0.1) 30%,
    rgba(201,169,110,0.06) 50%,
    rgba(201,169,110,0.1) 70%,
    transparent 100%
  );
  animation: beamPulse 6s ease-in-out infinite;
}

.mem-hero-beam::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(201,169,110,0.055) 0%, rgba(201,169,110,0.03) 18%, rgba(201,169,110,0.012) 34%, rgba(201,169,110,0.004) 46%, transparent 64%),
    linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.012) 22%, rgba(201,169,110,0.028) 50%, rgba(201,169,110,0.012) 78%, transparent 100%);
  filter: blur(20px);
  opacity: 0.9;
  pointer-events: none;
}

.mem-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at center, transparent 25%, var(--color-black) 100%);
}

.mem-hero-content {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
  max-width: 780px;
}

.mem-hero-content h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-regular);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--ls-tight);
  text-shadow: 0 3px 18px rgba(0,0,0,0.5);
}

.mem-hero-content .subtext {
  margin: 0 auto;
  font-size: var(--fs-base);
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* ---------- Locker Tiers Grid (3 columns) ---------- */
.locker-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto var(--space-4xl);
}

/* ---------- Tier Card (shared) ---------- */
.tier-card.glass-card {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tier-badge {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.tier-name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-medium);
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
}

.tier-tagline {
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--color-gold);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.tier-limit {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.tier-price {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--fw-medium);
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.tier-price span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

.tier-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin-bottom: var(--space-lg);
}

.tier-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex: 1;
}

.tier-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
}

.benefit-icon {
  color: var(--color-gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.tier-cta {
  align-self: flex-start;
}

/* ---------- Davidoff Add-On ---------- */
.davidoff-addon {
  max-width: 800px;
  margin: 0 auto;
}

.davidoff-card.glass-card {
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border-color: rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
}

.davidoff-badge {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-lg);
}

.davidoff-description {
  font-size: var(--fs-base);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
  max-width: 620px;
  margin: 0 auto var(--space-lg);
  font-style: italic;
}

.davidoff-card .tier-divider {
  margin: 0 auto var(--space-lg);
}

.davidoff-card .tier-benefits {
  align-items: center;
  margin-bottom: 0;
}

/* ---------- Corporate Membership ---------- */
.corporate-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.corporate-card.glass-card {
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Leather base */
  background:
    linear-gradient(180deg,
      rgba(45,30,18,0.95) 0%,
      rgba(38,25,14,0.98) 15%,
      rgba(32,20,10,0.97) 50%,
      rgba(38,25,14,0.98) 85%,
      rgba(45,30,18,0.95) 100%
    );

  /* Border stitching — double line */
  border: 2px solid rgba(90,60,28,0.5);
  box-shadow:
    inset 0 0 0 6px rgba(32,20,10,0.95),
    inset 0 0 0 8px rgba(90,60,28,0.3),
    inset 0 2px 8px rgba(0,0,0,0.5),
    inset 0 -2px 8px rgba(0,0,0,0.4),
    0 4px 24px rgba(0,0,0,0.6);
}

/* Leather texture overlay */
.corporate-card.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(60,40,20,0.08) 18px,
      rgba(60,40,20,0.08) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 22px,
      rgba(60,40,20,0.05) 22px,
      rgba(60,40,20,0.05) 23px
    );
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Tooling lines — top and bottom decorative borders */
.corporate-card.glass-card::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  bottom: 20px;
  border: 1px solid rgba(120,80,35,0.2);
  border-radius: 4px;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    inset 0 0 0 3px rgba(32,20,10,0.6),
    inset 0 0 0 4px rgba(120,80,35,0.12);
}

.corporate-card.glass-card > * {
  position: relative;
  z-index: 1;
}

.corporate-card .tier-name {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.corporate-card .tier-tagline {
  max-width: 600px;
  margin: 0 auto var(--space-sm);
  font-size: var(--fs-base);
}

.corporate-card .tier-limit {
  margin-bottom: var(--space-lg);
}

.corporate-card .tier-price {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.corporate-card .tier-divider {
  margin: 0 auto var(--space-xl);
}

.corporate-card .tier-benefits {
  text-align: left;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

.corporate-card .tier-cta {
  align-self: center;
}

/* ---------- Founders Club — Elite Treatment ---------- */
.founders-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.founders-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.4) 0%,
    rgba(201,169,110,0.1) 25%,
    rgba(201,169,110,0.6) 50%,
    rgba(201,169,110,0.1) 75%,
    rgba(201,169,110,0.4) 100%
  );
  background-size: 200% 200%;
  animation: foundersGlow 6s ease infinite;
}

@keyframes foundersGlow {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.founders-glow {
  position: absolute;
  inset: -100px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: foundersGlowPulse 4s ease-in-out infinite;
}

@keyframes foundersGlowPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.founders-inner {
  background: rgba(13,13,13,0.95);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
  position: relative;
  z-index: 2;
}

.founders-badge {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-sm);
}

.founders-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-medium);
  color: var(--color-gold-bright);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-sm);
}

.founders-tagline {
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--color-gold);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.founders-intro {
  font-size: var(--fs-md);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.founders-limit {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.founders-price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-medium);
  color: var(--color-cream);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.founders-price span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

.founders-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto var(--space-3xl);
}

.founders-benefits-list {
  text-align: left;
  max-width: 620px;
  margin: 0 auto var(--space-3xl);
}

.founders-cta-area {
  text-align: center;
}

/* ---------- Bottom CTA ---------- */
.mem-bottom-cta {
  text-align: center;
}

.mem-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.mem-cta-content h2 {
  margin-bottom: var(--space-md);
}

.mem-cta-content > p {
  font-size: var(--fs-md);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
}

.mem-cta-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.mem-cta-contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gray);
}

.mem-cta-contact-item a {
  font-size: var(--fs-md);
  color: var(--color-gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .locker-tiers-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .locker-tiers-grid .tier-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mem-hero {
    min-height: 90vh;
  }

  .locker-tiers-grid {
    grid-template-columns: 1fr;
  }

  .locker-tiers-grid .tier-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .founders-inner {
    padding: var(--space-2xl) var(--space-lg);
  }

  .corporate-card.glass-card {
    padding: var(--space-2xl) var(--space-lg);
  }

  .mem-cta-contact {
    flex-direction: column;
    gap: var(--space-lg);
  }
}


/* ===== Tier Visual Upgrades ===== */

/* Reserve — subtle warm border accent */
.tier-card[data-tier="reserve"] {
  border-top: 2px solid rgba(201,169,110,0.25);
}

/* Prestige — slightly brighter border + subtle inner glow */
.tier-card[data-tier="prestige"] {
  border-top: 2px solid rgba(201,169,110,0.5);
  box-shadow: inset 0 1px 30px rgba(201,169,110,0.04);
}



/* Chairman — hero treatment: gold border, glow, elevated feel */
.tier-card[data-tier="chairman"] {
  border: 1px solid rgba(201,169,110,0.35);
  box-shadow:
    inset 0 1px 40px rgba(201,169,110,0.06),
    0 0 40px rgba(201,169,110,0.08);
  background: linear-gradient(
    165deg,
    rgba(201,169,110,0.06) 0%,
    rgba(13,13,13,0.95) 30%,
    rgba(13,13,13,0.95) 70%,
    rgba(201,169,110,0.04) 100%
  ), var(--glass-bg, rgba(255,255,255,0.03));
}



.tier-card[data-tier="chairman"] .tier-name {
  text-shadow: 0 0 20px rgba(201,169,110,0.15);
}

/* Differentiated CTAs */
.tier-card[data-tier="reserve"] .tier-cta {
  /* ghost stays as-is */
}

.tier-card[data-tier="prestige"] .tier-cta {
  background: rgba(201,169,110,0.12);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.tier-card[data-tier="chairman"] .tier-cta {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  font-weight: var(--fw-semibold);
}

.tier-card[data-tier="chairman"] .tier-cta:hover {
  background: var(--color-gold-light, #d4b87a);
}

/* Monthly breakdown under price */
.tier-price-monthly {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--color-gray-light);
  letter-spacing: var(--ls-wide);
  margin-top: var(--space-xs);
  opacity: 0.7;
}


/* ===== Locker / Nameplate Style ===== */

.tier-card.glass-card {
  background:
    linear-gradient(180deg,
      rgba(60,40,20,0.25) 0%,
      rgba(35,22,12,0.4) 8%,
      rgba(25,16,8,0.35) 50%,
      rgba(35,22,12,0.4) 92%,
      rgba(60,40,20,0.25) 100%
    ),
    rgba(18,12,8,0.9);
  border: 1px solid rgba(100,70,35,0.25);
  border-radius: var(--radius-md);
  box-shadow:
    inset 0 1px 0 rgba(120,85,40,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 4px 20px rgba(0,0,0,0.5);
}

/* Nameplate for tier name */
.tier-name {
  display: inline-block;
  background: linear-gradient(
    180deg,
    #c9a96e 0%,
    #b8943e 20%,
    #d4b87a 45%,
    #c9a96e 55%,
    #a07830 80%,
    #c9a96e 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.3rem 0;
  position: relative;
}

.tier-name::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.4), transparent);
  margin: 0.5rem auto 0;
}

/* Frosted glass window effect on the card */
.tier-card.glass-card::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(100,70,35,0.15);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
  z-index: 0;
}

.tier-card.glass-card > * {
  position: relative;
  z-index: 2;
}

/* Keyhole / lock accent */




/* Tier progression: Reserve < Prestige < Chairman */
.tier-card[data-tier="reserve"] {
  border-color: rgba(100,70,35,0.2);
}

.tier-card[data-tier="prestige"] {
  border-color: rgba(140,100,45,0.3);
  box-shadow:
    inset 0 1px 0 rgba(160,120,50,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 4px 24px rgba(0,0,0,0.5);
}

.tier-card[data-tier="chairman"] {
  border-color: rgba(201,169,110,0.4);
  background:
    linear-gradient(180deg,
      rgba(80,55,25,0.3) 0%,
      rgba(45,28,14,0.45) 8%,
      rgba(30,18,10,0.4) 50%,
      rgba(45,28,14,0.45) 92%,
      rgba(80,55,25,0.3) 100%
    ),
    rgba(20,14,8,0.95);
  box-shadow:
    inset 0 1px 0 rgba(201,169,110,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 0 30px rgba(201,169,110,0.06),
    0 6px 30px rgba(0,0,0,0.6);
}

/* Benefit list subtle wood dividers */
.tier-benefits li {
  border-bottom: 1px solid rgba(100,70,35,0.1);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
}

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


/* Animated gold line shimmer - left to right */
@keyframes goldShimmer {
  0%   { left: -50%; }
  100% { left: 150%; }
}

.tier-name::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.4), transparent);
  margin: 0.5rem auto 0;
  position: relative;
  overflow: hidden;
}

.tier-name::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  margin-left: 20%;
  overflow: hidden;
}

/* Shimmer on the tier divider lines */
.tier-divider {
  position: relative;
  overflow: hidden;
}

.tier-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,169,110,0.9),
    transparent
  );
  animation: goldShimmer 4s ease-in-out infinite;
}

/* Inner frame line shimmer */
.tier-card.glass-card::after {
  content: '';
  position: absolute;
  top: 12px;
  left: -50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,169,110,0.6),
    transparent
  );
  animation: goldShimmer 6s ease-in-out infinite;
  z-index: 2;
}

/* Bottom line shimmer too */
.tier-benefits li {
  position: relative;
  overflow: hidden;
}

.tier-benefits li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,169,110,0.7),
    transparent
  );
  animation: goldShimmer 5s ease-in-out infinite;
}

/* Stagger the animations */
.tier-card[data-tier="prestige"] .tier-divider::after {
  animation-delay: 1.3s;
}
.tier-card[data-tier="chairman"] .tier-divider::after {
  animation-delay: 2.6s;
}


/* Two-line benefit (birthday) */
.benefit-two-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.benefit-detail {
  font-size: 0.85em;
  opacity: 0.7;
  padding-left: 0.5rem;
  margin-top: 0.15rem;
}

/* Independent shimmer speeds per tier */
.tier-card[data-tier="reserve"] .tier-divider::after { animation-duration: 3.5s; animation-delay: 0s; }
.tier-card[data-tier="prestige"] .tier-divider::after { animation-duration: 4.2s; animation-delay: 0.8s; }
.tier-card[data-tier="chairman"] .tier-divider::after { animation-duration: 5s; animation-delay: 1.5s; }

.tier-card[data-tier="reserve"] .tier-benefits li::after { animation-duration: 4s; animation-delay: 0.3s; }
.tier-card[data-tier="prestige"] .tier-benefits li::after { animation-duration: 4.8s; animation-delay: 1.1s; }
.tier-card[data-tier="chairman"] .tier-benefits li::after { animation-duration: 5.5s; animation-delay: 2s; }

.tier-card[data-tier="reserve"]::after { animation-duration: 5s; animation-delay: 0.5s; }
.tier-card[data-tier="prestige"]::after { animation-duration: 6s; animation-delay: 1.8s; }
.tier-card[data-tier="chairman"]::after { animation-duration: 7s; animation-delay: 3s; }


.founders-bg {
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background-image: url('founders-buffalo-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  opacity: 0.35;
  z-index: 0;
}

.founders-inner {
  background: transparent;
  backdrop-filter: blur(1px);
}


/* Corporate card — leather tooling accent lines */
.corporate-card .tier-divider {
  position: relative;
  height: 3px;
  background: transparent;
  overflow: visible;
}

.corporate-card .tier-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(120,80,35,0.4), rgba(160,110,50,0.5), rgba(120,80,35,0.4), transparent);
}

.corporate-card .tier-divider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(80,50,20,0.3), rgba(100,65,30,0.4), rgba(80,50,20,0.3), transparent);
}

/* Stitch dots along the inner frame */
.corporate-card .tier-benefits li {
  border-bottom-color: rgba(90,60,28,0.2);
}

/* Gold accents warmer on leather */
.corporate-card .tier-name {
  background: linear-gradient(
    180deg,
    #d4b87a 0%,
    #c9a96e 30%,
    #b8943e 60%,
    #c9a96e 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Pronounced center stitch line running through the card */
.corporate-card.glass-card .tier-divider {
  height: auto;
  padding: var(--space-lg) 0;
  position: relative;
}

.corporate-card.glass-card .tier-divider::before,
.corporate-card.glass-card .tier-divider::after {
  left: 5%;
  right: 5%;
}

/* Center stitch — dashed line mimicking thread through leather */
.corporate-stitch {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: 0;
  border: none;
  border-top: 2px dashed rgba(160,110,50,0.5);
  position: relative;
}

.corporate-stitch::before,
.corporate-stitch::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(120,80,35,0.4);
}

.corporate-stitch::before { left: -3px; }
.corporate-stitch::after { right: -3px; }

/* Vertical stitch lines along left and right edges */
.corporate-card.glass-card {
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 12px,
      rgba(140,95,40,0.25) 12px,
      rgba(140,95,40,0.25) 14px,
      transparent 14px,
      transparent 20px
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 12px,
      rgba(140,95,40,0.25) 12px,
      rgba(140,95,40,0.25) 14px,
      transparent 14px,
      transparent 20px
    ),
    linear-gradient(180deg,
      rgba(45,30,18,0.95) 0%,
      rgba(38,25,14,0.98) 15%,
      rgba(32,20,10,0.97) 50%,
      rgba(38,25,14,0.98) 85%,
      rgba(45,30,18,0.95) 100%
    );
  background-size: 2px 20px, 2px 20px, 100% 100%;
  background-position: 28px top, calc(100% - 28px) top, center;
  background-repeat: repeat-y, repeat-y, no-repeat;
}

/* Horizontal stitch across the middle of the benefits area */
.corporate-card .tier-benefits {
  position: relative;
}

.corporate-card .tier-benefits::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  height: 0;
  border-top: 1.5px dashed rgba(140,95,40,0.2);
  z-index: 0;
  pointer-events: none;
}

/* More visible stitching on the inner frame */
.corporate-card.glass-card::after {
  border: none;
  border-top: 2px dashed rgba(120,80,35,0.25);
  border-bottom: 2px dashed rgba(120,80,35,0.25);
  border-left: none;
  border-right: none;
  top: 24px;
  bottom: 24px;
  left: 40px;
  right: 40px;
  box-shadow: none;
}


.founders-bg-overlay {
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: rgba(13,13,13,0.7);
  z-index: 0;
}




.davidoff-card.glass-card > * {
  position: relative;
  z-index: 1;
}

.davidoff-bg,
.davidoff-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.davidoff-bg {
  background-image: url('davidoff-addon-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  z-index: 0;
}

.davidoff-bg-overlay {
  background:
    linear-gradient(to right, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.68) 35%, rgba(13,13,13,0.62) 65%, rgba(13,13,13,0.78) 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.58) 0%, rgba(13,13,13,0.35) 28%, rgba(13,13,13,0.35) 72%, rgba(13,13,13,0.58) 100%);
  z-index: 0;
}
