/* ================================================================
   FACELESS ANIMAL STUDIOS — Shared Stylesheet
   Covers: index.html + artists/djfacelessanimal.html
   Theme: Dark premium underground · Gold accent · Mobile-first
   ================================================================ */


/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* Backgrounds */
  --bg:   #090909;
  --bg-2: #0e0e0e;
  --bg-3: #131313;
  --bg-4: #191919;

  /* Borders */
  --border:   #272727;
  --border-2: #1e1e1e;

  /* Text */
  --text:   #f0f0f0;
  --text-2: #8a8a8a;
  --text-3: #4c4c4c;

  /* Gold accent */
  --gold:        #c9a96e;
  --gold-bright: #d7ba82;
  --gold-dim:    #a07c48;
  --gold-soft:   rgba(201, 169, 110, 0.10);
  --gold-glow:   rgba(201, 169, 110, 0.07);

  /* Typography */
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Motion */
  --t:      0.20s ease;
  --t-slow: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-card: 0 1px 4px rgba(0,0,0,0.55), 0 4px 20px rgba(0,0,0,0.38);
  --shadow-lift: 0 12px 52px rgba(0,0,0,0.75), 0 2px 8px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 32px rgba(201,169,110,0.2), 0 4px 14px rgba(0,0,0,0.45);

  /* Nav height */
  --nav-h: 64px;
}


/* ================================================================
   2. RESET
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* Section anchors sit below the sticky nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 2rem); }


/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(3rem, 7.5vw, 6.5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }

/* Italic em inside headings = gold accent */
h1 em, h2 em { font-style: normal; color: var(--gold); }

p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.85;
}


/* ================================================================
   4. LAYOUT
   ================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Standard section padding */
.section { padding: 7rem 0; }

/* Alternate section background */
.section-alt { background: var(--bg-2); }

/* Section header block */
.section-header      { margin-bottom: 4rem; }
.section-header h2   { margin-bottom: 0.75rem; }
.section-header .section-sub { margin-top: 0.75rem; max-width: 500px; }

/* Gold eyebrow label above section headings */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Small utility classes */
.text-center { text-align: center; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2.5rem; }


/* ================================================================
   5. NAVIGATION
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar-logo {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: opacity var(--t);
}
.navbar-logo:hover { opacity: 0.6; }
.navbar-logo span   { color: var(--gold); }

/* Desktop links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--t);
}
.navbar-links a:hover { color: var(--text-2); }

/* Gold CTA link in nav */
.nav-cta {
  background: var(--gold) !important;
  color: #090909 !important;
  padding: 0.42rem 1.1rem !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  font-size: 0.82rem !important;
  transition: background var(--t) !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
/* Animated X state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: sticky;
  top: var(--nav-h);
  z-index: 999;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 2rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-2);
  transition: color var(--t), padding-left var(--t);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); padding-left: 0.5rem; }


/* ================================================================
   6. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 2.1rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t),
              box-shadow var(--t-slow), transform var(--t);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

/* Size variants */
.btn-sm { padding: 0.52rem 1.25rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.6rem; font-size: 0.9rem; }

/* Solid gold */
.btn-primary {
  background: var(--gold);
  color: #090909;
  font-weight: 800;
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 28px rgba(201,169,110,0.35), var(--shadow-gold);
  transform: translateY(-2px);
}

/* Ghost / outline in dim */
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

/* Gold outline */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
}
.btn-outline:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201,169,110,0.12);
  transform: translateY(-1px);
}

/* Coming soon — disabled, no interaction */
.btn-coming-soon {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}

/* Global mobile: ensure all interactive controls meet 44px tap target (WCAG 2.5.5) */
@media (max-width: 640px) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; padding: 0.6rem 1.1rem; }
  /* Chat send / attach buttons */
  .rp-send, .rs-send-btn,
  .msg-send-btn, .msg-attach-btn { min-height: 44px; min-width: 44px; }
}


/* ================================================================
   7. SHARED COMPONENT — TAGS
   ================================================================ */
.tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

/* Small gold dot used inside eyebrow badges */
.eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Card-level text link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--t), gap var(--t);
}
.card-link:hover { opacity: 0.7; gap: 0.55rem; }


/* ================================================================
   8. SHARED COMPONENT — SCROLLING MARQUEE
   ================================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding: 0.95rem 0;
}
.marquee-track span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 1.75rem;
  flex-shrink: 0;
}
.marquee-dot { color: var(--gold) !important; padding: 0 0.3rem !important; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ================================================================
   9. SHARED FOOTER
   ================================================================ */
.footer {
  border-top: 1px solid var(--border-2);
  padding: 3.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo       { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 0.35rem; }
.footer-logo span  { color: var(--gold); }
.footer-location   { font-size: 0.76rem; color: var(--text-3); letter-spacing: 0.04em; }
.footer-copy       { font-size: 0.76rem; color: var(--text-3); line-height: 1.8; }

/* Center nav column */
.footer-col--center {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-col--center a {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--t);
}
.footer-col--center a:hover { color: var(--text-2); }

.footer-col--right { text-align: right; }


/* ================================================================
   10. HOMEPAGE — HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 9rem 0 0;
  overflow: hidden;
}

/* Layered radial gold glows */
.hero-bg-glow {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background:
    radial-gradient(ellipse 55% 50% at 48% 38%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 72% 65%, rgba(201,169,110,0.03) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content { max-width: 860px; position: relative; z-index: 1; }

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: 100px;
  background: rgba(201,169,110,0.05);
}

.hero h1        { margin-bottom: 1.85rem; }
.hero h1 em     { text-shadow: 0 0 40px rgba(201,169,110,0.18); }
.hero-sub       { font-size: 1.05rem; max-width: 520px; margin-bottom: 3rem; line-height: 1.95; color: var(--text-2); }
.hero-actions   { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Bottom marquee */
.hero-marquee   { margin-top: 6rem; }


/* ================================================================
   11. HOMEPAGE — IDENTITY PAGES SECTION
   ================================================================ */

/* 3-column feature grid */
.identity-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.identity-feature {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  transition: border-color var(--t), transform var(--t-slow);
}
.identity-feature:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-2px);
}

.identity-feature-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.identity-feature h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.identity-feature p  { font-size: 0.875rem; margin-bottom: 0; }

.identity-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ================================================================
   12. HOMEPAGE — DIVISIONS
   ================================================================ */

/* 5-column fused card grid */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.division-card {
  background: var(--bg-3);
  padding: 2.75rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background var(--t), transform var(--t-slow);
  overflow: hidden;
}
/* Subtle top-border accent that reveals on hover */
.division-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-slow);
}
.division-card:hover { background: var(--bg-4); }
.division-card:hover::before { opacity: 1; }

/* Small gold number, top-right */
.division-num {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.55;
}

.division-icon {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.division-card h3  { margin-bottom: 0.65rem; }
.division-card p   { font-size: 0.9rem; flex: 1; margin-bottom: 1.75rem; }


/* ================================================================
   12. HOMEPAGE — PROJECT CARDS
   ================================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-card);
}
.project-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(201,169,110,0.08);
}

/* Featured card gets a permanent gold left-border accent */
.project-card--featured {
  border-top: 2px solid rgba(201,169,110,0.55);
}

/* Thumbnail area */
.project-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-2);
  overflow: hidden;
}
.project-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 55%);
  z-index: 1;
}
.thumb-icon { font-size: 3rem; position: relative; z-index: 2; }

/* Badge overlay on thumb */
.project-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(9,9,9,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.22);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  z-index: 3;
}

.project-card-body    { padding: 2rem 2rem 2rem; display: flex; flex-direction: column; flex: 1; }
.project-card-body h3 { margin-bottom: 0.65rem; }
.project-card-body p  { font-size: 0.9rem; flex: 1; margin-bottom: 1.75rem; line-height: 1.75; }


/* ================================================================
   13. HOMEPAGE — SERVICES LIST
   ================================================================ */
.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem 2.5rem;
  align-items: center;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border-2);
  transition: padding-left var(--t);
}
.service-row:first-child { border-top: 1px solid var(--border-2); }
.service-row:hover { padding-left: 0.35rem; }

.service-row-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  align-self: start;
  padding-top: 0.25rem;
  opacity: 0.75;
}

.service-row-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  transition: color var(--t);
}
.service-row:hover .service-row-body h3 { color: var(--gold); }
.service-row-body p  { font-size: 0.925rem; max-width: 580px; }

.service-row-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  color: var(--text-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--t), color var(--t), transform var(--t), background var(--t);
}
.service-row:hover .service-row-cta {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translate(3px, -3px);
}

/* CTA row below the service list */
.services-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .services-cta { flex-direction: column; align-items: flex-start; }
  .services-cta .btn { width: 100%; justify-content: center; }
}


/* ================================================================
   14. HOMEPAGE — CONTACT
   ================================================================ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
/* Layered gold glows in corners */
.contact-block::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.contact-block::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.contact-block-left .section-label { margin-bottom: 0.75rem; }
.contact-block-left h2             { margin-bottom: 1.25rem; }

.contact-block-sub {
  max-width: 380px;
  font-size: 0.975rem;
  margin-bottom: 2rem;
}

.contact-email-direct {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  transition: color var(--t);
  word-break: break-all;
}
.contact-email-direct:hover { color: var(--gold-bright); }

/* Cash App payment block */
.contact-pay {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-2);
}

.contact-pay-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.85rem;
}

/* Cash App green button */
.btn-cashapp {
  background: #00d632;
  color: #000;
  border: none;
}
.btn-cashapp:hover {
  background: #00e838;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0, 214, 50, 0.25), 0 4px 12px rgba(0,0,0,0.4);
}

.cashapp-icon { flex-shrink: 0; }

.contact-prompt {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.65rem;
}

.contact-email-link {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  word-break: break-all;
  transition: color var(--t);
}
.contact-email-link:hover { color: var(--gold-bright); }

.contact-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }


/* ================================================================
   31. INQUIRY FORM
   ================================================================ */

/* Form wrapper */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

/* Honeypot — visually hidden, keep out of tab order */
.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Label */
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.55rem;
}

.form-required { color: var(--gold); }
.form-optional { color: var(--text-3); font-weight: 400; font-size: 0.78em; }

/* Base input / select / textarea reset + custom look */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 0.85rem 1.1rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }

/* Focus ring — gold */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201,169,110,0.55);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}

/* Invalid state (after user interaction) */
.form-input:user-invalid,
.form-select:user-invalid,
.form-textarea:user-invalid {
  border-color: rgba(255, 80, 80, 0.45);
}

/* Select — custom dropdown arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234c4c4c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

/* Select options inherit bg */
.form-select option {
  background: var(--bg-3);
  color: var(--text);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Inline error message */
.form-error {
  font-size: 0.82rem;
  color: #ff6b6b;
  font-weight: 500;
  min-height: 1.2em;
  line-height: 1.5;
}
.form-error:empty { display: none; }

/* Submit button — full-width */
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  position: relative;
}

/* Label toggling during send */
.form-submit-label   { display: inline; }
.form-submit-sending { display: none; }
.form-submit.sending .form-submit-label   { display: none; }
.form-submit.sending .form-submit-sending { display: inline; }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- Thank-you panel ---- */
.inquiry-thankyou {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 3rem 2.5rem;
  background: var(--bg);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--r-xl);
  animation: fadeUp 0.45s ease both;
}
.inquiry-thankyou.visible { display: flex; }

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

.thankyou-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(93,232,138,0.1);
  border: 1px solid rgba(93,232,138,0.3);
  color: #5de88a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.inquiry-thankyou h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.inquiry-thankyou p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 380px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .contact-block { gap: 3.5rem; }
}
@media (max-width: 720px) {
  .contact-block { grid-template-columns: 1fr; }
  .contact-block-sub { max-width: 100%; }
  .form-select   { background-position: right 1rem center; }
}
@media (max-width: 480px) {
  .inquiry-thankyou { padding: 2rem 1.5rem; }
}


/* ================================================================
   15. ARTIST PAGE — HERO
   ================================================================ */
.ap-hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh; /* fallback */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Two-layer radial glow */
.ap-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 26% 55%, rgba(201,169,110,0.085) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 80% 24%, rgba(201,169,110,0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Film-grain texture */
.ap-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Two-column inner: text left, visual right */
.ap-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

/* Eyebrow */
.ap-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: 100px;
  background: rgba(201,169,110,0.045);
}

/* Huge artist name */
.ap-hero-heading {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 2.25rem;
}
.ap-hero-heading em { font-style: normal; color: var(--gold); }

/* Tagline */
.ap-hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 0.6rem;
}
.ap-hero-sub--dim {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2.5rem;
}

.ap-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.ap-hero-tags    { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Right: disc rings / cover visual */
.ap-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-hero-disc {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.13);
  animation: spin linear infinite;
}
.disc-ring--1 { width: 100%; height: 100%; animation-duration: 24s; }
.disc-ring--2 { width: 70%;  height: 70%;  animation-duration: 16s; animation-direction: reverse; border-color: rgba(201,169,110,0.22); }
.disc-ring--3 { width: 42%;  height: 42%;  animation-duration: 10s; border-color: rgba(201,169,110,0.4); }

.disc-center {
  font-size: 3.75rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 32px rgba(201,169,110,0.25));
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Bottom marquee on artist page */
.ap-hero-marquee { position: relative; z-index: 1; }


/* ================================================================
   16. ARTIST PAGE — MUSIC
   ================================================================ */

/* Spotify placeholder zone */
.spotify-zone { margin-bottom: 3rem; }

/* Legacy spotify-placeholder (kept for backwards-compat, hidden by new .sp-embed) */
.spotify-placeholder {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid #1DB954;
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
}
.spotify-icon svg { display: block; }
.spotify-placeholder-text { flex: 1; }
.spotify-placeholder-text strong { display: block; font-size: 0.92rem; color: var(--text); margin-bottom: 0.3rem; font-weight: 600; }
.spotify-placeholder-text span { font-size: 0.8rem; color: var(--text-3); }

/* Music type cards */
.music-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.music-type-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-card);
}
.music-type-card:hover {
  border-color: rgba(201,169,110,0.42);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* Featured middle card */
.music-type-card--featured {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(155deg, var(--bg-4) 0%, var(--bg-3) 100%);
  border-top: 2px solid rgba(201,169,110,0.5);
}
.music-type-card--featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.music-type-icon  { font-size: 1.6rem; color: var(--gold); line-height: 1; margin-bottom: 1.5rem; opacity: 0.9; }
.music-type-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}
.music-type-card h3 { margin-bottom: 0.75rem; }
.music-type-card p  { font-size: 0.9rem; margin-bottom: 1.75rem; }

/* Track list */
.track-list-header { margin-bottom: 0.85rem; }
.track-list        { display: flex; flex-direction: column; }

.track-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.75rem;
  border-bottom: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  transition: background var(--t), padding-left var(--t);
}
.track-item:first-child { border-top: 1px solid var(--border-2); }
.track-item:hover { background: rgba(255,255,255,0.025); padding-left: 1.1rem; }

.track-num          { font-size: 0.68rem; color: var(--text-3); font-weight: 700; letter-spacing: 0.1em; }
.track-info strong  { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.18rem; }
.track-info span    { font-size: 0.75rem; color: var(--text-3); }

.track-type {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
}


/* ================================================================
   17. ARTIST PAGE — VIDEOS
   ================================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-card);
}
.video-card:hover {
  border-color: rgba(201,169,110,0.42);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-2);
  overflow: hidden;
}
/* Subtle tint overlay */
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(9,9,9,0.5) 100%);
  z-index: 1;
}

.video-play-btn {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 2;
  transition: color var(--t), transform var(--t);
}
.video-card:hover .video-play-btn { color: var(--gold); transform: scale(1.2); }

.video-duration {
  position: absolute;
  bottom: 0.65rem;
  right: 0.75rem;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-2);
  background: rgba(9,9,9,0.85);
  padding: 0.16rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 3;
}

.video-badge {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.video-card-body        { padding: 1.5rem 1.75rem; }
.video-card-body strong { display: block; font-size: 0.92rem; color: var(--text); font-weight: 600; margin-bottom: 0.45rem; }
.video-card-body p      { font-size: 0.85rem; margin-bottom: 1rem; }

/* YouTube embed zone */
.youtube-zone { margin-top: 3rem; }

.youtube-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid #FF0000;
  border-radius: var(--r-md);
  padding: 3rem 2rem;
  text-align: center;
}
.youtube-play-icon {
  display: block;
  font-size: 2.5rem;
  color: #FF0000;
  opacity: 0.65;
}
.youtube-placeholder strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.youtube-placeholder span   { font-size: 0.8rem; color: var(--text-3); }


/* ================================================================
   18. ARTIST PAGE — ABOUT
   ================================================================ */
.about-content   { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.about-stat-box  { display: flex; flex-direction: column; gap: 1rem; }

.about-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t);
}
.about-stat:hover {
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
.about-stat strong { display: block; font-size: 2.25rem; color: var(--gold); letter-spacing: -0.05em; margin-bottom: 0.25rem; font-weight: 800; }
.about-stat span   { font-size: 0.66rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.12em; }

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1.1rem; }

.about-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-2);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.85;
}

.about-closing {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 1.1rem;
}


/* ================================================================
   19. ARTIST PAGE — PLATFORM LINKS
   ================================================================ */
.platform-list { display: flex; flex-direction: column; }

.platform-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.65rem 1rem;
  border-bottom: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  transition: background var(--t), padding-left var(--t);
}
.platform-row:first-child { border-top: 1px solid var(--border-2); }
.platform-row:hover { background: rgba(255,255,255,0.025); padding-left: 1.35rem; }

/* Highlighted email / CTA row */
.platform-row--cta {
  margin-top: 1rem;
  background: var(--gold-soft) !important;
  border: 1px solid rgba(201,169,110,0.2) !important;
  border-radius: var(--r-md) !important;
  padding: 1.85rem 1.35rem !important;
}
.platform-row--cta:hover { background: rgba(201,169,110,0.15) !important; }

/* Icon container */
.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
}
.platform-row:hover .platform-icon { border-color: rgba(201,169,110,0.45); background: var(--bg-4); }

/* Platform brand colors */
.platform-icon--spotify   { color: #1DB954; }
.platform-icon--youtube   { color: #FF0000; }
.platform-icon--instagram { color: #E1306C; }
.platform-icon--tiktok    { color: var(--text-2); }
.platform-icon--email     { color: var(--gold); font-size: 1.15rem; }

.platform-info strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.22rem; }
.platform-info span   { font-size: 0.8rem; color: var(--text-3); }

.platform-arrow {
  font-size: 1.1rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: color var(--t), transform var(--t);
}
.platform-row:hover .platform-arrow { color: var(--gold); transform: translate(4px, -2px); }


/* ================================================================
   20. ARTIST PAGE — FOOTER
   ================================================================ */
.artist-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.25rem 0;
}

.artist-footer-logo       { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.35rem; }
.artist-footer-logo span  { color: var(--gold); }

.artist-footer-right { text-align: right; }
.artist-footer-right .footer-copy a { color: var(--gold); transition: opacity var(--t); }
.artist-footer-right .footer-copy a:hover { opacity: 0.7; }


/* ================================================================
   21. RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .container         { padding: 0 1.75rem; }
  .divisions-grid    { grid-template-columns: repeat(3, 1fr); }
  .identity-features { grid-template-columns: repeat(2, 1fr); }
  .contact-block   { gap: 3.5rem; padding: 4rem; }
  .about-content   { grid-template-columns: 1fr; gap: 3rem; }
  .about-stat-box  { flex-direction: row; flex-wrap: wrap; }
  .about-stat      { flex: 1 1 130px; }
}


/* ================================================================
   22. RESPONSIVE — SMALL TABLET (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  .section            { padding: 5.5rem 0; }
  .divisions-grid     { grid-template-columns: repeat(2, 1fr); }
  .identity-features  { grid-template-columns: repeat(2, 1fr); }
  .projects-grid      { grid-template-columns: 1fr 1fr; }
  .video-grid         { grid-template-columns: 1fr 1fr; }
  .contact-block      { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .footer-inner       { grid-template-columns: 1fr; gap: 1.75rem; text-align: center; }
  .footer-col--center { justify-content: center; }
  .footer-col--right  { text-align: center; }
  .service-row        { grid-template-columns: 2.5rem 1fr auto; gap: 0.85rem 1.5rem; }
}


/* ================================================================
   23. RESPONSIVE — MOBILE (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  :root { font-size: 15px; }
  .container    { padding: 0 1.25rem; }

  .section      { padding: 4.5rem 0; }
  .hero         { padding: 6rem 0 0; }
  .hero-sub     { font-size: 1rem; }
  .hero-marquee { margin-top: 4.5rem; }

  /* Show hamburger, hide desktop links */
  .navbar-links { display: none; }
  .nav-toggle   { display: flex; }

  /* Buttons: full-width on mobile */
  .hero-actions  { flex-direction: column; gap: 0.75rem; }
  .btn           { width: 100%; max-width: 340px; justify-content: center; }

  /* Grids collapse to single column */
  .divisions-grid    { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .identity-features { grid-template-columns: 1fr; }
  .identity-cta      { flex-direction: column; gap: 0.75rem; }
  .projects-grid     { grid-template-columns: 1fr; gap: 1.25rem; }
  .video-grid      { grid-template-columns: 1fr; gap: 1.25rem; }
  .music-type-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Project cards: less border-radius on mobile */
  .project-card { border-radius: var(--r-lg); }
  .project-card-body { padding: 1.5rem; }

  /* Services: hide arrow CTA on mobile */
  .service-row     { grid-template-columns: 1fr; gap: 0.5rem; padding: 2rem 0; }
  .service-row-num { padding-top: 0; }
  .service-row-cta { display: none; }

  /* Contact */
  .contact-block { border-radius: var(--r-lg); padding: 2rem; }

  /* Artist hero */
  .ap-hero-inner   { grid-template-columns: 1fr; gap: 3rem; padding-top: 6rem; padding-bottom: 4rem; }
  .ap-hero-visual  { display: none; }
  .ap-hero-actions { flex-direction: column; gap: 0.75rem; }
  .btn-lg          { width: 100%; max-width: 340px; justify-content: center; }

  /* Track list: hide type badge on mobile */
  .track-item  { grid-template-columns: 2rem 1fr; gap: 0.75rem; }
  .track-type  { display: none; }

  /* Platform rows: tighter */
  .platform-row { grid-template-columns: 3rem 1fr auto; gap: 1rem; }

  /* Legacy spotify placeholder */
  .spotify-placeholder { flex-direction: column; align-items: flex-start; }

  /* Artist footer */
  .artist-footer-inner { flex-direction: column; align-items: flex-start; }
  .artist-footer-right { text-align: left; }

  /* Section headers */
  .section-header { margin-bottom: 2.75rem; }
}


/* ================================================================
   24. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  .about-stat-box  { flex-direction: column; }
  .contact-block   { padding: 1.75rem; }
  .hero h1         { letter-spacing: -0.04em; }
}


/* ================================================================
   25. PLACEHOLDER ZONES
   Intentional, polished content placeholders for images and embeds.
   Each has a SWAP comment in the HTML explaining the replacement.
   ================================================================ */

/* ---- Project card image placeholder ---- */
.ph-image {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,0.014) 18px,
      rgba(255,255,255,0.014) 19px
    ),
    var(--bg-2);
  border: 1.5px dashed rgba(201,169,110,0.2);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.ph-icon  { font-size: 2.5rem; opacity: 0.35; line-height: 1; }
.ph-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  opacity: 0.75;
}

/* Remove thumb-icon when ph-image is present */
.project-card-thumb .thumb-icon { display: none; }

/* ---- Multi-button row in project card body ---- */
.project-cta-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ---- Artist page: cover photo placeholder ---- */
.ph-cover {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,0.014) 18px,
      rgba(255,255,255,0.014) 19px
    ),
    var(--bg-2);
  border: 1.5px dashed rgba(201,169,110,0.25);
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Label overlay at bottom of cover placeholder */
.ph-cover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(9,9,9,0.9) 0%, transparent 100%);
}
.ph-cover-label span:first-child {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.ph-cover-hint {
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

/* Real image once swapped in */
.artist-cover-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

/* ---- Swap-instruction label in embed footers ---- */
.ph-note {
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ---- Social quick-links row in artist hero ---- */
.ap-hero-socials {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.95rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: color var(--t), border-color var(--t), background var(--t), transform var(--t);
  white-space: nowrap;
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn svg   { flex-shrink: 0; }

/* Per-platform brand colors on hover */
.social-btn--spotify   { --clr: #1DB954; }
.social-btn--youtube   { --clr: #FF0000; }
.social-btn--instagram { --clr: #E1306C; }
.social-btn--tiktok    { --clr: #aaaaaa; }
.social-btn:hover {
  color: var(--clr, var(--gold));
  border-color: var(--clr, var(--gold));
  background: rgba(255,255,255,0.025);
}

/* ---- Spotify mock player ---- */
.sp-embed {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 2px solid #1DB954;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.sp-embed-player {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1.35rem;
  padding: 1.5rem 1.75rem;
}

.sp-embed-art {
  width: 72px;
  height: 72px;
  background: rgba(29,185,84,0.08);
  border: 1px solid rgba(29,185,84,0.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1DB954;
  flex-shrink: 0;
}

.sp-embed-track {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.22rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
}
.sp-embed-artist {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 0.7rem;
}

.sp-embed-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.sp-embed-progress {
  width: 38%;
  height: 100%;
  background: #1DB954;
  border-radius: 2px;
}

.sp-embed-controls { flex-shrink: 0; }
.sp-embed-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1DB954;
  color: #000;
  font-size: 0.82rem;
  padding-left: 2px;
}

.sp-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.75rem;
  border-top: 1px solid var(--border-2);
  background: rgba(0,0,0,0.18);
  gap: 1rem;
}

/* ---- YouTube mock player ---- */
.yt-embed {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 2px solid #FF0000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.yt-embed-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,0,0,0.04) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 24px,
      rgba(255,255,255,0.011) 24px,
      rgba(255,255,255,0.011) 25px
    ),
    var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-embed-play {
  width: 70px;
  height: 50px;
  background: rgba(255,0,0,0.88);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  padding-left: 3px;
  box-shadow: 0 4px 24px rgba(255,0,0,0.22);
}

.yt-embed-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(9,9,9,0.92) 0%, transparent 100%);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  font-style: italic;
}

.yt-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.75rem;
  border-top: 1px solid var(--border-2);
  background: rgba(0,0,0,0.18);
  gap: 1rem;
}

/* ================================================================
   26. HOMEPAGE — PRICING SECTION
   ================================================================ */

/* Three-column card grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
  align-items: start;
}

/* Base card */
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-card);
}
.pricing-card:hover {
  border-color: rgba(201,169,110,0.45);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* Featured / middle card */
.pricing-card--featured {
  border-color: rgba(201,169,110,0.4);
  border-top: 2px solid var(--gold);
  background: linear-gradient(160deg, var(--bg-4) 0%, var(--bg-3) 100%);
}

/* "Most Popular" tab badge — hangs off the top of the featured card */
.pricing-badge-featured {
  position: absolute;
  top: -1px;
  right: 1.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #090909;
  background: var(--gold);
  padding: 0.28rem 0.75rem 0.32rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

/* Tier name label */
.pricing-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

/* Price block */
.pricing-card-price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-2);
}

.price-setup {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-monthly {
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.price-monthly span { color: var(--text-3); }

/* Feature list */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
  margin-bottom: 2.25rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.45;
}

/* Checkmark before each feature */
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
  line-height: 1.45;
}

/* Dimmed note items (e.g. "domain billed separately") */
.pricing-feature--note {
  color: var(--text-3) !important;
  font-style: italic;
}
.pricing-feature--note::before {
  content: '·' !important;
  color: var(--text-3) !important;
  font-style: normal;
}

/* CTA button fills card width */
.pricing-card-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Small note below the pricing grid */
.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 1.75rem;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------------- */
.how-it-works {
  border-top: 1px solid var(--border-2);
  padding-top: 4.5rem;
  text-align: center;
}

.how-it-works-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3rem;
}

/* Step row */
.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.75rem;
  flex-wrap: wrap;
  row-gap: 2rem;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 140px;
  padding: 0 1.25rem;
}

/* Gold-outlined circle with step number */
.how-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
}
.how-step:hover .how-step-num {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.how-step-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Connector line between steps */
.how-step-connector {
  flex: 1;
  min-width: 24px;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,169,110,0.25) 50%,
    transparent 100%
  );
  flex-shrink: 0;
}

/* CTA row below steps */
.how-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   PRICING RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Stack the third card full-width on small tablets */
  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .price-amount { font-size: 2.75rem; }

  /* Stack steps vertically on mobile */
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
  }
  .how-step { max-width: 240px; }
  .how-step-connector {
    width: 1px;
    height: 28px;
    min-width: auto;
    max-width: none;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(201,169,110,0.25) 50%,
      transparent 100%
    );
  }
  .how-cta {
    flex-direction: column;
    align-items: center;
  }
  .how-cta .btn { max-width: 340px; width: 100%; justify-content: center; }
}

/* ================================================================
   END PRICING SECTION
   ================================================================ */


/* ================================================================
   27. ARTIST PAGE — STUDIO PROMO SECTION
   ================================================================ */
.ap-promo { border-top: 1px solid var(--border-2); }

/* Two-column: header text left, cards right */
.ap-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ap-promo-header .section-label { margin-bottom: 0.75rem; }
.ap-promo-header h2              { margin-bottom: 1.35rem; }

.ap-promo-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

/* Identity / Visibility / Control pillar list */
.ap-promo-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ap-promo-pillars li {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.promo-pillar-dot {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Stack of three tier cards */
.ap-promo-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual tier card — acts as a link row */
.ap-promo-card {
  display: grid;
  grid-template-columns: 2.75rem 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.65rem;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-card);
}
.ap-promo-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

/* Middle (featured) card gets persistent gold top accent */
.ap-promo-card--featured {
  border-color: rgba(201,169,110,0.3);
  border-top: 2px solid var(--gold);
  background: linear-gradient(155deg, var(--bg-4) 0%, var(--bg-3) 100%);
}

/* Small gold step number */
.ap-promo-card-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.65;
  flex-shrink: 0;
}

/* Tier name and price */
.ap-promo-card-body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.ap-promo-card-body p {
  font-size: 0.78rem;
  color: var(--text-3);
  margin: 0;
  line-height: 1.4;
}

/* Arrow — shifts and turns gold on hover */
.ap-promo-card-arrow {
  font-size: 1rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: color var(--t), transform var(--t);
}
.ap-promo-card:hover .ap-promo-card-arrow {
  color: var(--gold);
  transform: translate(4px, -2px);
}

/* Responsive */
@media (max-width: 900px) {
  .ap-promo-inner { gap: 3.5rem; }
}
@media (max-width: 768px) {
  .ap-promo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ap-promo-sub   { max-width: 100%; }
}

/* ---- Homepage hero metadata strip ---- */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.hero-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hero-meta-dot {
  color: var(--gold) !important;
  opacity: 0.55;
  letter-spacing: 0 !important;
}

/* ---- Artist hero location line ---- */
.ap-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
}

/* ---- Responsive adjustments for placeholder elements ---- */
@media (max-width: 640px) {
  .ap-hero-socials { gap: 0.4rem; }
  .social-btn      { font-size: 0.68rem; padding: 0.36rem 0.78rem; }

  .sp-embed-player { grid-template-columns: 56px 1fr auto; gap: 0.9rem; padding: 1.1rem 1.25rem; }
  .sp-embed-art    { width: 56px; height: 56px; }
  .sp-embed-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .yt-embed-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .project-cta-row        { flex-direction: column; gap: 0.5rem; }
  .project-cta-row .btn   { max-width: 100%; }
}


/* ================================================================
   28. PRICING CARD — SHORT DESCRIPTION
   ================================================================ */
.pricing-card-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  margin-top: -0.75rem;
}


/* ================================================================
   29. HOMEPAGE — EXAMPLES SECTION
   ================================================================ */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Base card shell */
.example-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-card);
}
.example-card:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* Visual area (placeholder for real screenshot) */
.example-card-visual {
  height: 180px;
  background: linear-gradient(145deg, var(--bg-4) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
  flex-shrink: 0;
}

/* Sample cards — subtle gold grid overlay */
.example-card-visual--grid {
  background: linear-gradient(145deg, var(--bg-4) 0%, rgba(201,169,110,0.03) 100%);
}
.example-card-visual--grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Centered "+" placeholder mark on sample cards */
.example-card-visual--grid::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 200;
  color: rgba(201,169,110,0.15);
  pointer-events: none;
}

/* Tier/type badge pill */
.example-card-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 0.28rem 0.65rem;
  border-radius: var(--r-sm);
  position: relative;
  z-index: 1;
}

/* Live / In Progress status pill */
.example-card-status {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 0.28rem 0.65rem;
  border-radius: var(--r-sm);
  position: relative;
  z-index: 1;
}
.example-card-status--live {
  color: #5de88a;
  background: rgba(93,232,138,0.08);
  border-color: rgba(93,232,138,0.25);
}

/* Text content */
.example-card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.example-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.example-card-body p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.35rem;
  flex: 1;
}

/* "View Page →" link */
.example-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  transition: opacity var(--t), gap var(--t);
}
.example-card-link:hover { opacity: 0.7; gap: 0.65rem; }

.example-card-link--muted {
  color: var(--text-3);
  font-style: italic;
  font-weight: 500;
  cursor: default;
}
.example-card-link--muted:hover { opacity: 1; gap: 0.4rem; }

/* CTA row below the grid */
.examples-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 640px) {
  .examples-grid         { grid-template-columns: 1fr; }
  .example-card-visual   { height: 130px; }
  .examples-cta          { flex-direction: column; align-items: center; }
  .examples-cta .btn     { width: 100%; max-width: 340px; justify-content: center; }
}


/* ================================================================
   30. HOMEPAGE — FAQ SECTION
   ================================================================ */
/* Two-column: label/heading left, accordion list right */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.faq-header .section-label { margin-bottom: 0.75rem; }
.faq-header h2              { margin-bottom: 1.25rem; }

.faq-header-sub {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.faq-header-cta { margin-top: 0.25rem; }

/* Accordion list */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-item:first-child { border-top: 1px solid var(--border-2); }

/* The clickable question row */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.65rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
  line-height: 1.45;
  transition: color var(--t);
}
/* Remove the default triangle in all browsers */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker                 { display: none; }

/* Plus icon that rotates to × when open */
.faq-question::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t), color var(--t);
}
.faq-item[open] > .faq-question       { color: var(--gold); }
.faq-item[open] > .faq-question::after { transform: rotate(45deg); }

/* Answer body */
.faq-answer { padding-bottom: 1.65rem; }
.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 860px) {
  .faq-inner { gap: 3.5rem; }
}
@media (max-width: 640px) {
  .faq-inner              { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-header-cta         { display: none; }
  .faq-question           { font-size: 0.925rem; padding: 1.4rem 0; }
}


/* ================================================================
   PLATFORM EVOLUTION — NEW SECTIONS
   ================================================================ */


/* ----------------------------------------------------------------
   FREE STRIP SECTION
   ---------------------------------------------------------------- */
.free-strip {
  background: linear-gradient(135deg, rgba(201,169,110,0.07) 0%, rgba(201,169,110,0.02) 50%, var(--bg-2) 100%);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: 4rem 0;
}

.free-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.free-strip h2 { margin-bottom: 1rem; }

.free-strip-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.free-strip-url {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: var(--r-sm);
  padding: 0.45rem 1rem;
  color: var(--text-2);
}
.free-strip-url-base { opacity: 0.5; }
.free-strip-url-name { color: var(--gold); }

.free-strip-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.free-strip-nudge {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 0;
  text-align: right;
}
.free-strip-nudge a {
  color: var(--gold);
  transition: opacity var(--t);
}
.free-strip-nudge a:hover { opacity: 0.7; }


/* ----------------------------------------------------------------
   FREE BUTTON VARIANT
   ---------------------------------------------------------------- */
.btn-free {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border: 1.5px solid rgba(201,169,110,0.45);
  font-weight: 800;
}
.btn-free:hover {
  background: rgba(201,169,110,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,169,110,0.18);
  transform: translateY(-1px);
}


/* ----------------------------------------------------------------
   FREE TIER PRICING CARD (banner treatment)
   ---------------------------------------------------------------- */
.pricing-card-free {
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 60%);
  border: 1.5px solid rgba(201,169,110,0.3);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-card-free::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-free-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  align-items: start;
}

.pricing-free-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: #090909;
  margin-bottom: 1rem;
}

.pricing-card-free-left .pricing-card-label { margin-bottom: 0.5rem; }
.pricing-card-free-left .pricing-card-desc  { max-width: 300px; }

.pricing-free-url {
  display: inline-block;
  font-size: 0.75rem;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: var(--text-3);
  margin-top: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
}
.pricing-free-url em { font-style: normal; color: var(--gold); }

.pricing-card-free-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  min-width: 160px;
}

.pricing-free-price {
  text-align: right;
}
.pricing-free-price .price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-free-price .price-period {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.pricing-free-nudge {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 0;
  text-align: right;
}
.pricing-free-nudge a {
  color: var(--gold);
  transition: opacity var(--t);
}
.pricing-free-nudge a:hover { opacity: 0.7; }

/* Paid tier grid label */
.pricing-grid--paid { margin-top: 0; }


/* ----------------------------------------------------------------
   CREATOR NETWORK SECTION
   ---------------------------------------------------------------- */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.creator-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  transition: border-color var(--t), transform var(--t-slow);
}
.creator-card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-2px);
}

.creator-card--open {
  border-style: dashed;
  border-color: var(--border-2);
  opacity: 0.7;
}
.creator-card--open:hover {
  opacity: 1;
  border-color: rgba(201,169,110,0.3);
  border-style: solid;
}

.creator-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border: 1.5px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
}

.creator-avatar--open {
  background: rgba(255,255,255,0.02);
  border-color: var(--border);
  color: var(--text-3);
  font-size: 1.2rem;
  font-weight: 300;
}

.creator-handle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.creator-tagline {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-bottom: 0;
}

.creator-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity var(--t);
  text-decoration: none;
}
.creator-link:hover { opacity: 0.65; }

.creator-link--soon {
  color: var(--text-3);
  cursor: default;
  pointer-events: none;
}

.network-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.network-cta-sub {
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
  flex: 1 1 100%;
  margin-bottom: 0.75rem;
}


/* ----------------------------------------------------------------
   GLOBAL PRESENCE SECTION
   ---------------------------------------------------------------- */
.section-header.text-center .section-sub.global-sub {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.text-center { text-align: center; }
.section-header.text-center .section-label,
.section-header.text-center h2 { display: block; }

.globe-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 1rem 0 3rem;
}

.globe {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 2 / 1;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.15);
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,169,110,0.03) 0%, transparent 70%),
    var(--bg-3);
  overflow: hidden;
}

/* CSS grid lines to simulate a globe wireframe */
.globe-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent calc(20% - 1px),
      rgba(201,169,110,0.06) calc(20% - 1px),
      rgba(201,169,110,0.06) 20%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(12.5% - 1px),
      rgba(201,169,110,0.06) calc(12.5% - 1px),
      rgba(201,169,110,0.06) 12.5%
    );
  pointer-events: none;
}

.globe-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.globe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,169,110,0.7), 0 0 20px rgba(201,169,110,0.3);
  flex-shrink: 0;
  animation: globe-pulse 2.5s ease-in-out infinite;
}

/* Stagger pulse animations so they don't all blink together */
.globe-pin:nth-child(2) .globe-dot { animation-delay: 0.4s; }
.globe-pin:nth-child(3) .globe-dot { animation-delay: 0.8s; }
.globe-pin:nth-child(4) .globe-dot { animation-delay: 1.2s; }
.globe-pin:nth-child(5) .globe-dot { animation-delay: 1.6s; }
.globe-pin:nth-child(6) .globe-dot { animation-delay: 0.2s; }
.globe-pin:nth-child(7) .globe-dot { animation-delay: 1.0s; }
.globe-pin:nth-child(8) .globe-dot { animation-delay: 1.8s; }

@keyframes globe-pulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 10px rgba(201,169,110,0.7), 0 0 20px rgba(201,169,110,0.3); }
  50%       { opacity: 0.5; box-shadow: 0 0 6px rgba(201,169,110,0.4), 0 0 12px rgba(201,169,110,0.15); }
}

.globe-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-3);
  white-space: nowrap;
  background: rgba(9,9,9,0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-2);
}

.global-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}


/* ----------------------------------------------------------------
   RESPONSIVE — NEW SECTIONS
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .pricing-card-free-inner { grid-template-columns: 1fr 1fr; }
  .pricing-card-free-right { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; }
  .pricing-free-nudge { text-align: left; }
  .pricing-free-price { text-align: left; }
}

@media (max-width: 860px) {
  .free-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .free-strip-cta-block { align-items: flex-start; }
  .free-strip-nudge { text-align: left; }
  .creator-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing-card-free        { padding: 1.75rem; }
  .pricing-card-free-inner  { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-card-free-right  { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .pricing-free-price       { text-align: left; }
  .pricing-free-nudge       { text-align: left; }
  .globe                    { aspect-ratio: 1.4 / 1; }
  .globe-label              { display: none; }
}

@media (max-width: 640px) {
  .free-strip               { padding: 3rem 0; }
  .creator-card             { grid-template-columns: 3rem 1fr; grid-template-rows: auto auto; gap: 0.75rem 1rem; }
  .creator-link             { grid-column: 2; }
  .globe                    { aspect-ratio: 1 / 1; }
  .globe-pin:nth-child(n+5) { display: none; }
}



/* ================================================================
   FACELESS SUPPLY — STORE SECTION
   ================================================================ */


/* ----------------------------------------------------------------
   SUPPLY INTRO
   ---------------------------------------------------------------- */
.supply-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.supply-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.supply-brand-line {
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 0;
  opacity: 0.9;
}


/* ----------------------------------------------------------------
   SUPPLY TAG CLOUD
   ---------------------------------------------------------------- */
.supply-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.supply-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid rgba(201,169,110,0.4);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.supply-tag--dim {
  border-color: var(--border);
  color: var(--text-3);
  background: rgba(255,255,255,0.02);
}


/* ----------------------------------------------------------------
   CATEGORY CARDS
   ---------------------------------------------------------------- */
.supply-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.supply-cat {
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t-slow);
}
.supply-cat:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-3px);
}

/* Category visual header */
.supply-cat-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.supply-cat-visual--merch {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201,169,110,0.04) 20px,
      rgba(201,169,110,0.04) 22px
    ),
    linear-gradient(135deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.03) 100%);
}

.supply-cat-visual--thrift {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(180,120,60,0.06) 18px,
      rgba(180,120,60,0.06) 20px
    ),
    linear-gradient(135deg, rgba(160,100,40,0.15) 0%, rgba(100,70,30,0.05) 100%);
}

.supply-cat-visual--tech {
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(80,160,200,0.05) 28px,
      rgba(80,160,200,0.05) 30px
    ),
    linear-gradient(135deg, rgba(40,100,160,0.15) 0%, rgba(10,40,80,0.05) 100%);
}

.supply-cat-visual--digital {
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 16px,
      rgba(140,60,200,0.05) 16px,
      rgba(140,60,200,0.05) 18px
    ),
    linear-gradient(135deg, rgba(100,40,160,0.15) 0%, rgba(40,10,80,0.05) 100%);
}

.supply-cat-icon-text {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.07);
  font-family: 'Courier New', monospace;
  user-select: none;
}

.supply-cat-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.supply-cat-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.supply-cat-name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.supply-cat-desc {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.btn-supply {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(201,169,110,0.35);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
  text-decoration: none;
  transition: background var(--t), border-color var(--t), transform var(--t);
  width: fit-content;
}
.btn-supply:hover {
  background: rgba(201,169,110,0.14);
  border-color: var(--gold);
  transform: translateY(-1px);
}


/* ----------------------------------------------------------------
   FEATURED PRODUCTS HEADER
   ---------------------------------------------------------------- */
.supply-products-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.supply-products-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.supply-products-sub {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 0;
}


/* ----------------------------------------------------------------
   PRODUCT GRID
   ---------------------------------------------------------------- */
.supply-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t-slow);
}
.product-card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-2px);
}

/* Product image placeholders — each category gets its own flavor */
.product-img {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img--hoodie {
  background: linear-gradient(135deg, #1a1408 0%, #2a1f0a 50%, #1a1408 100%);
}
.product-img--tee {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1505 50%, #0f0f0f 100%);
}
.product-img--jacket {
  background: linear-gradient(135deg, #120d05 0%, #1e1508 60%, #0a0a0a 100%);
}
.product-img--console {
  background: linear-gradient(135deg, #050b14 0%, #0a1628 50%, #050b14 100%);
}
.product-img--electronics {
  background: linear-gradient(135deg, #050c10 0%, #0a1a20 50%, #050c10 100%);
}
.product-img--digital {
  background: linear-gradient(135deg, #0a0514 0%, #140a2a 50%, #0a0514 100%);
}

.product-img-label {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.06);
  user-select: none;
}

/* Subtle scan-line texture on product images */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

.product-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.65rem;
}

.product-badge--merch {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
}
.product-badge--thrift {
  background: rgba(160,100,40,0.1);
  color: #c8844a;
  border: 1px solid rgba(160,100,40,0.3);
}
.product-badge--tech {
  background: rgba(40,100,160,0.12);
  color: #5aabdc;
  border: 1px solid rgba(40,100,160,0.3);
}
.product-badge--digital {
  background: rgba(100,40,160,0.12);
  color: #a06ae0;
  border: 1px solid rgba(100,40,160,0.3);
}

.product-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-2);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.btn-product:hover {
  border-color: rgba(201,169,110,0.35);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}


/* ----------------------------------------------------------------
   DIGITAL DROPS BANNER
   ---------------------------------------------------------------- */
.supply-digital-banner {
  background: linear-gradient(135deg, rgba(100,40,160,0.08) 0%, rgba(40,10,80,0.04) 40%, var(--bg-3) 100%);
  border: 1px solid rgba(140,60,200,0.2);
  border-radius: var(--r-xl);
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.supply-digital-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(140,60,200,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.supply-digital-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.supply-digital-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a06ae0;
  margin-bottom: 0.75rem;
}

.supply-digital-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.supply-digital-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 0;
}

.supply-digital-list {
  list-style: none;
  margin-bottom: 2rem;
}

.supply-digital-list li {
  font-size: 0.82rem;
  color: var(--text-2);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-2);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.supply-digital-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #a06ae0;
  font-size: 0.75rem;
}

.btn-supply-digital {
  border-color: rgba(140,60,200,0.35);
  color: #a06ae0;
}
.btn-supply-digital:hover {
  background: rgba(140,60,200,0.08);
  border-color: #a06ae0;
  color: #c090f0;
}


/* ----------------------------------------------------------------
   COMMUNITY & CULTURE CALLOUT
   ---------------------------------------------------------------- */
.supply-culture {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 0;
  border-top: 1px solid var(--border-2);
}

.supply-culture-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

.supply-culture-line {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.supply-culture-line em {
  font-style: normal;
  color: var(--gold);
}

.supply-culture-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  min-width: 200px;
}


/* ----------------------------------------------------------------
   RESPONSIVE — SUPPLY SECTION
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .supply-cats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .supply-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .supply-products { grid-template-columns: repeat(2, 1fr); }
  .supply-digital-banner-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .supply-culture { grid-template-columns: 1fr; gap: 2rem; }
  .supply-culture-ctas { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .supply-cats { grid-template-columns: 1fr; }
  .supply-products { grid-template-columns: 1fr; }
  .supply-digital-banner { padding: 1.75rem; }
  .supply-culture-ctas { flex-direction: column; }
}



/* ================================================================
   INNER PAGE — SHARED STYLES
   ================================================================ */

/* Page hero (simpler than main hero, used on all inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero--left { text-align: left; }

.page-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.07) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.page-hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.page-hero--left .page-hero-sub { margin-left: 0; }

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-hero--left .page-hero-actions { justify-content: flex-start; }

/* Page intro 2-col */
.page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  margin-top: 0.1rem;
}

/* Pillar grid (about page ecosystem) */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.pillar-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 2.25rem;
  transition: border-color var(--t), transform var(--t-slow);
}
.pillar-card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-2px);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 4rem;
}

.stat-item {
  padding: 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Quote / vision strip */
.vision-strip {
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  text-align: center;
  margin: 4rem 0;
}

.vision-quote {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.vision-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Free tier feature table */
.free-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.free-tier-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2.25rem;
}

.free-tier-box--gold {
  border-color: rgba(201,169,110,0.35);
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 60%);
}

.free-tier-box-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.free-tier-box-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.free-tier-box-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.free-tier-box-price sup {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: super;
}

.free-url-preview {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 2rem;
}

.free-url-preview em {
  font-style: normal;
  color: var(--gold);
}

/* Drop grid */
.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.drop-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t-slow);
}
.drop-card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-2px);
}

.drop-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.drop-img--pack  { background: linear-gradient(135deg, #0a0514 0%, #140a2a 100%); }
.drop-img--music { background: linear-gradient(135deg, #050b10 0%, #0a1622 100%); }
.drop-img--tool  { background: linear-gradient(135deg, #050e08 0%, #0a1e10 100%); }
.drop-img--art   { background: linear-gradient(135deg, #100508 0%, #1e0a0e 100%); }
.drop-img--coming { background: var(--bg-4); }

.drop-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

.drop-body { padding: 1.25rem 1.35rem 1.5rem; }

.drop-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.65rem;
  background: rgba(100,40,160,0.12);
  color: #a06ae0;
  border: 1px solid rgba(100,40,160,0.3);
}

.drop-badge--soon {
  background: rgba(255,255,255,0.03);
  color: var(--text-3);
  border-color: var(--border-2);
}

.drop-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.drop-desc {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.drop-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Start page path chooser */
.start-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.start-path {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t-slow);
  text-decoration: none;
  display: block;
}

.start-path:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-3px);
}

.start-path--featured {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 60%);
}

.start-path-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: #090909;
  margin-bottom: 1.25rem;
}

.start-path-badge--free {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
}

.start-path-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.start-path-sub {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.start-path-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
}

/* Sample artist/business page */
.sample-notice {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.ap-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ap-bio-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.ap-bio-text p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.ap-link-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ap-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color var(--t), color var(--t);
}

.ap-link-item:hover {
  border-color: rgba(201,169,110,0.3);
  color: var(--gold);
}

.ap-link-icon {
  font-size: 1rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Responsive — inner pages */
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip  { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { }
  .free-compare { grid-template-columns: 1fr; }
  .drop-grid  { grid-template-columns: repeat(2, 1fr); }
  .start-paths { grid-template-columns: 1fr; }
  .page-intro  { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-bio      { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .stat-strip  { grid-template-columns: 1fr; }
  .drop-grid   { grid-template-columns: 1fr; }
  .vision-strip { padding: 2rem; }
}



/* ================================================================
   ALIASES + DROPS-DIGITAL BANNER (added for store.html / drops.html)
   ================================================================ */

/* --drops aliases that match existing --digital styles */
.supply-cat-visual--drops {
  background: linear-gradient(135deg, #0a0514 0%, #180830 100%);
  border-color: rgba(100,40,160,0.35);
}
.supply-cat-visual--drops .supply-cat-icon-text { color: #a06ae0; opacity:0.8; }

.product-img--merch  { background: linear-gradient(135deg, #090909 0%, #151515 100%); color:rgba(255,255,255,0.04); }
.product-img--thrift { background: linear-gradient(135deg, #0a0a06 0%, #1a1810 100%); color:rgba(255,255,255,0.04); }
.product-img--tech   { background: linear-gradient(135deg, #050a10 0%, #0d1520 100%); color:rgba(255,255,255,0.04); }
.product-img--drops  { background: linear-gradient(135deg, #0a0514 0%, #140a2a 100%); color:rgba(255,255,255,0.04); }

.product-badge--drops {
  background: rgba(100,40,160,0.12);
  color: #a06ae0;
  border: 1px solid rgba(100,40,160,0.3);
}

/* Digital drops banner (used on store.html) */
.drops-digital {
  background: linear-gradient(135deg, rgba(80,20,130,0.08) 0%, transparent 55%);
}

.drops-digital-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  align-items: center;
}

.drops-digital-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.drops-digital-left h2 em { color: #a06ae0; }

.drops-digital-sub {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

.drops-digital-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drops-digital-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-2);
}

.drops-digital-icon { font-size: 1rem; flex-shrink: 0; }

@media (max-width: 860px) {
  .drops-digital-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}



/* ================================================================
   ABOUT PAGE — IDENTITY SECTIONS
   ================================================================ */

/* Section intro with large pull quote style */
.about-intro-block {
  max-width: 820px;
}

.about-intro-block h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.about-intro-block h2 em { color: var(--gold); font-style: italic; }

.about-intro-block p {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  color: var(--text-2);
  line-height: 1.95;
  margin-bottom: 1.1rem;
  max-width: 700px;
}

.about-intro-block p strong { color: var(--text); font-weight: 700; }

/* Dimension grid — street vs studio */
.dimension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 3.5rem 0;
}

.dimension-col {
  padding: 3rem 3rem 3.5rem;
  position: relative;
}

.dimension-col--street {
  background: var(--bg-3);
  border-right: 1px solid var(--border);
}

.dimension-col--studio {
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, var(--bg-3) 70%);
}

.dimension-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

.dimension-label::before {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--text-3);
}

.dimension-col--studio .dimension-label {
  color: var(--gold);
}
.dimension-col--studio .dimension-label::before {
  background: var(--gold);
}

.dimension-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.dimension-col--studio .dimension-title { color: var(--gold-bright); }

.dimension-sub {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.dimension-traits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.dimension-traits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}

.dimension-traits li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--text-3);
  font-weight: 700;
  margin-top: 0.05em;
}

.dimension-col--studio .dimension-traits li::before {
  color: var(--gold-dim);
}

/* Ecosystem section — expanded cards */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 4rem;
}

.eco-card {
  background: var(--bg-3);
  padding: 2.25rem 2rem 2.5rem;
  transition: background var(--t);
}

.eco-card:hover { background: var(--bg-4); }

.eco-icon {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.eco-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-3);
  margin-bottom: 0.85rem;
}

.eco-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

.eco-desc {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.8;
}

/* Why it exists — editorial block */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.why-heading-block h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.06;
  color: var(--text);
}
.why-heading-block h2 em { color: var(--gold); font-style: italic; }

.why-content p {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.why-content p strong { color: var(--text); font-weight: 700; }

.why-rejects {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.why-rejects-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.reject-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.reject-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: rgba(201,169,110,0.4);
}

.reject-item::before {
  content: '✕';
  flex-shrink: 0;
  font-size: 0.65rem;
  color: rgba(201,169,110,0.5);
  font-weight: 800;
}

/* CTA — about page terminal */
.about-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.about-cta-card {
  display: block;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 2.25rem;
  text-decoration: none;
  transition: border-color var(--t), transform var(--t-slow);
}

.about-cta-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-2px);
}

.about-cta-card--primary {
  background: linear-gradient(135deg, rgba(201,169,110,0.07) 0%, var(--bg-3) 60%);
  border-color: rgba(201,169,110,0.25);
}

.about-cta-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.about-cta-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.about-cta-sub {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-cta-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
  .dimension-grid { grid-template-columns: 1fr; }
  .dimension-col--street { border-right: none; border-bottom: 1px solid var(--border); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-cta-grid { grid-template-columns: 1fr; }
  .reject-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .eco-grid { grid-template-columns: 1fr; }
  .dimension-col { padding: 2rem 1.5rem 2.5rem; }
}



/* ================================================================
   FREE PAGE — SPECIFIC STYLES
   ================================================================ */

/* Hero badge — "$0 Forever" premium feel */
.free-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  background: rgba(201,169,110,0.07);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.free-hero-badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: heroPulse 2.4s ease-in-out infinite;
}

/* Mock page preview card */
.free-preview-wrap {
  position: relative;
  margin-bottom: 4rem;
}

.free-preview-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
  text-align: center;
}

.free-preview-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: var(--shadow-lift);
}

.free-preview-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.free-preview-dots {
  display: flex;
  gap: 0.35rem;
}

.free-preview-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--bg-4);
}

.free-preview-url {
  flex: 1;
  background: var(--bg-4);
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  font-size: 0.62rem;
  color: var(--text-3);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.free-preview-url em {
  font-style: normal;
  color: var(--gold);
}

.free-preview-body {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.free-preview-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-4) 0%, var(--bg-3) 100%);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-3);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.free-preview-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.free-preview-handle {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.free-preview-bio {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 240px;
}

.free-preview-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 1.25rem;
}

.free-preview-link {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.55rem 0.85rem;
  font-size: 0.68rem;
  color: var(--text-2);
  font-weight: 600;
  text-align: center;
}

.free-preview-powered {
  font-size: 0.56rem;
  color: var(--text-3);
  opacity: 0.55;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

/* What you get — horizontal feature rows */
.free-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 3rem;
}

.free-feature-item {
  background: var(--bg-3);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background var(--t);
}

.free-feature-item:hover { background: var(--bg-4); }

.free-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  line-height: 1;
}

.free-feature-body {}

.free-feature-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.free-feature-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.65;
}

/* Upgrade rail */
.upgrade-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 3rem;
}

.upgrade-step {
  padding: 2rem 1.75rem 2.25rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--t);
}

.upgrade-step:last-child { border-right: none; }

.upgrade-step--current {
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 70%);
  border-top: 2px solid var(--gold);
  padding-top: calc(2rem - 2px);
}

.upgrade-step-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.upgrade-step-badge--free {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.25);
}

.upgrade-step-badge--paid {
  background: var(--bg-4);
  color: var(--text-3);
  border: 1px solid var(--border);
}

.upgrade-step-tier {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.upgrade-step-price {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.upgrade-step-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0;
}

.upgrade-step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.upgrade-step-features li {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
}

.upgrade-step-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-weight: 800;
}

/* Who it's for — horizontal list */
.who-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.who-item {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr;
  align-items: start;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}

.who-item:last-child { border-bottom: none; }
.who-item:hover { background: var(--bg-3); }

.who-icon {
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 0.1rem;
}

.who-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.who-desc {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.7;
}

.who-use {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.7;
  font-style: italic;
}

/* Why start here — numbered points */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: why-counter;
}

.why-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.why-item:last-child { border-bottom: none; }

.why-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.why-item-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.why-item-body {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* Responsive — free page */
@media (max-width: 860px) {
  .free-features-grid { grid-template-columns: 1fr; }
  .upgrade-rail { grid-template-columns: repeat(2, 1fr); }
  .upgrade-step:nth-child(2) { border-right: none; }
  .upgrade-step:nth-child(3) { border-top: 1px solid var(--border); }
  .who-item { grid-template-columns: 2.5rem 1fr; }
  .who-use { display: none; }
}

@media (max-width: 560px) {
  .upgrade-rail { grid-template-columns: 1fr; }
  .upgrade-step { border-right: none; border-bottom: 1px solid var(--border); }
  .upgrade-step:last-child { border-bottom: none; }
  .who-item { grid-template-columns: 2rem 1fr; gap: 1rem; }
}



/* ================================================================
   PRICING PAGE — FEATURE COMPARISON TABLE + TIER DEEP-DIVES
   ================================================================ */

/* Comparison table */
.comp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.comp-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

/* Header row */
.comp-table thead tr {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.comp-table th {
  padding: 0;
  text-align: left;
  font-weight: 400;
}

.comp-th-feature {
  padding: 1.25rem 1.75rem;
  width: 38%;
}

.comp-th-feature-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.comp-tier-col {
  padding: 1.25rem 1.25rem;
  text-align: center;
  width: 15.5%;
  border-left: 1px solid var(--border);
  vertical-align: top;
}

.comp-tier-col--featured {
  background: linear-gradient(180deg, rgba(201,169,110,0.06) 0%, transparent 100%);
  border-left-color: rgba(201,169,110,0.2);
  border-right: 1px solid rgba(201,169,110,0.2);
  position: relative;
}

.comp-tier-col--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #090909;
  background: var(--gold);
  padding: 0.2rem 0.75rem;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

.comp-tier-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.2rem;
  margin-top: 0.75rem;
}

.comp-tier-col--featured .comp-tier-name { color: var(--gold-bright); }

.comp-tier-price {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.comp-tier-price-note {
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  display: block;
}

/* Category group rows */
.comp-cat-row td {
  padding: 0.65rem 1.75rem 0.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Feature rows */
.comp-row:last-child td { border-bottom: none; }

.comp-row td {
  border-bottom: 1px solid var(--border-2);
  vertical-align: middle;
}

.comp-row-label {
  padding: 0.9rem 1.75rem;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}

.comp-row-label small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 0.15rem;
}

.comp-cell {
  text-align: center;
  padding: 0.9rem 0.75rem;
  border-left: 1px solid var(--border-2);
  font-size: 0.82rem;
}

.comp-cell--featured {
  background: rgba(201,169,110,0.025);
  border-left-color: rgba(201,169,110,0.1);
  border-right: 1px solid rgba(201,169,110,0.1);
}

.comp-check {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.comp-dash {
  color: var(--text-3);
  font-size: 0.72rem;
  opacity: 0.45;
}

.comp-partial {
  font-size: 0.68rem;
  color: var(--text-3);
  font-style: italic;
}

/* Tier deep-dive grid — 4 cards below the comparison table */
.tier-deep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.tier-deep-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t-slow);
}

.tier-deep-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-2px);
}

.tier-deep-card--featured {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(160deg, rgba(201,169,110,0.05) 0%, var(--bg-3) 55%);
}

.tier-deep-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.tier-deep-badge--free {
  background: rgba(201,169,110,0.08);
  color: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.2);
}

.tier-deep-badge--paid {
  background: var(--bg-4);
  color: var(--text-3);
  border: 1px solid var(--border);
}

.tier-deep-badge--featured {
  background: var(--gold);
  color: #090909;
}

.tier-deep-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.tier-deep-price-note {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.tier-deep-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.tier-deep-for {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tier-deep-unlock {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.02em;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.tier-deep-unlock::before {
  content: '↑ ';
  color: var(--gold);
}

/* Domain add-on note */
.domain-note {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dim);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.domain-note-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.domain-note-text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.75;
}

.domain-note-text strong { color: var(--text); }

/* Upgrade prompt between tiers */
.upgrade-prompt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-3);
  margin: 1rem 0 2rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
}

.upgrade-prompt-arrow {
  font-size: 0.9rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.upgrade-prompt strong { color: var(--text-2); }

/* Responsive */
@media (max-width: 900px) {
  .tier-deep-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .tier-deep-grid { grid-template-columns: 1fr; }
  .domain-note { flex-direction: column; gap: 0.5rem; }
}



/* ================================================================
   STORE PAGE — ADDITIONS
   ================================================================ */

/* Product detail line (condition, size, specs) */
.product-detail {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

/* Supply manifesto / editorial strip */
.supply-manifesto {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.supply-manifesto-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.7;
}

.supply-manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.supply-manifesto-line {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text-2);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.supply-manifesto-line em {
  font-style: normal;
  color: var(--text);
}

.supply-manifesto-line strong {
  color: var(--gold);
  font-weight: 800;
}

/* Category editorial sidebar (thrift / retro section context) */
.supply-editorial {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dim);
  border-radius: var(--r-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 4rem;
}

.supply-editorial-eyebrow {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.65rem;
}

.supply-editorial-body {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.85;
}

/* Product img overlay glyph (large watermark style) */
.product-img-glyph {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.05);
  user-select: none;
  line-height: 1;
  position: relative;
  z-index: 0;
}

/* Featured section label strip */
.supply-section-ident {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.supply-section-ident-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.supply-section-ident-text {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 860px) {
  .supply-manifesto { flex-direction: column; gap: 1.5rem; }
  .supply-manifesto-label { writing-mode: horizontal-tb; transform: none; }
}



/* ================================================================
   NETWORK PAGE — CREATOR BOARD ADDITIONS
   ================================================================ */

/* Creator category tags */
.creator-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 0.45rem;
  align-self: flex-start;
  line-height: 1.6;
}

.creator-tag--dj       { color: var(--gold); border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.07); }
.creator-tag--artist   { color: #e07070; border-color: rgba(220,80,80,0.25); background: rgba(220,80,80,0.06); }
.creator-tag--gamer    { color: #5aabdc; border-color: rgba(40,130,200,0.25); background: rgba(40,130,200,0.06); }
.creator-tag--producer { color: #a06ae0; border-color: rgba(140,60,200,0.25); background: rgba(140,60,200,0.06); }
.creator-tag--business { color: #6abfa8; border-color: rgba(60,170,140,0.25); background: rgba(60,170,140,0.06); }
.creator-tag--visual   { color: #e09050; border-color: rgba(210,120,40,0.25); background: rgba(210,120,40,0.06); }
.creator-tag--game-dev { color: #5aabdc; border-color: rgba(40,130,200,0.25); background: rgba(40,130,200,0.06); }
.creator-tag--collective { color: #c8844a; border-color: rgba(180,100,50,0.25); background: rgba(180,100,50,0.06); }
.creator-tag--open     { color: var(--text-3); border-color: var(--border); background: transparent; }

/* Avatar color variants */
.creator-avatar--gold    { background: linear-gradient(135deg,rgba(201,169,110,0.18),rgba(201,169,110,0.06)); border-color: rgba(201,169,110,0.35); color: var(--gold); }
.creator-avatar--blue    { background: linear-gradient(135deg,rgba(40,130,200,0.18),rgba(40,130,200,0.06)); border-color: rgba(40,130,200,0.35); color: #5aabdc; }
.creator-avatar--purple  { background: linear-gradient(135deg,rgba(140,60,200,0.18),rgba(140,60,200,0.06)); border-color: rgba(140,60,200,0.35); color: #a06ae0; }
.creator-avatar--red     { background: linear-gradient(135deg,rgba(200,60,60,0.18),rgba(200,60,60,0.06)); border-color: rgba(200,60,60,0.35); color: #e07070; }
.creator-avatar--teal    { background: linear-gradient(135deg,rgba(40,160,130,0.18),rgba(40,160,130,0.06)); border-color: rgba(40,160,130,0.35); color: #6abfa8; }
.creator-avatar--amber   { background: linear-gradient(135deg,rgba(200,120,40,0.18),rgba(200,120,40,0.06)); border-color: rgba(200,120,40,0.35); color: #c8844a; }

/* Creator status / post message on each card */
.creator-status {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.65rem;
  border-left: 2px solid var(--border);
  padding-left: 0.85rem;
  font-style: italic;
}

/* Creator card — 3-col board layout */
.creator-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

/* Board-style card — taller, stacked column */
.board-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--t), transform var(--t-slow);
  position: relative;
}

.board-card:hover {
  border-color: rgba(201,169,110,0.22);
  transform: translateY(-2px);
}

.board-card--open {
  border-style: dashed;
  border-color: var(--border-2);
  opacity: 0.65;
}

.board-card--open:hover {
  opacity: 1;
  border-style: solid;
  border-color: rgba(201,169,110,0.25);
}

.board-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.board-card-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}

.board-card-meta {}

.board-card-handle {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.board-card-location {
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.board-card-status {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  flex: 1;
}

.board-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-2);
  gap: 0.75rem;
}

.board-card-link {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--t);
  white-space: nowrap;
}

.board-card-link:hover { opacity: 0.6; }

.board-card-link--dim {
  color: var(--text-3);
  cursor: default;
}

/* Featured creator — wide horizontal card */
.featured-creator {
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 60%);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--t);
}

.featured-creator:hover { border-color: rgba(201,169,110,0.35); }

.featured-creator-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg,rgba(201,169,110,0.18),rgba(201,169,110,0.05));
  border: 2px solid rgba(201,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
}

.featured-creator-badge {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.featured-creator-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.featured-creator-handle {
  font-size: 0.75rem;
  color: var(--gold-dim);
  margin-bottom: 0.65rem;
}

.featured-creator-bio {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
}

/* Network live ticker / status bar */
.network-status-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
}

.network-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4ae07a;
  flex-shrink: 0;
  animation: heroPulse 2s ease-in-out infinite;
}

.network-status-text {
  color: var(--text-2);
  flex: 1;
}

.network-status-text strong { color: var(--text); }

.network-status-count {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* Network growth note */
.network-growth-note {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(74,224,122,0.3);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.network-growth-icon {
  font-size: 1.1rem;
  line-height: 1;
  padding-top: 0.1rem;
}

.network-growth-body {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.8;
}

.network-growth-body strong { color: var(--text); }

/* How to join — 3 step strip */
.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 3rem;
}

.join-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.join-step:last-child { border-right: none; }

.join-step-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(201,169,110,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.join-step-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.join-step-desc {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px) {
  .creator-board { grid-template-columns: repeat(2, 1fr); }
  .featured-creator { grid-template-columns: auto 1fr; }
  .featured-creator > a { grid-column: 2; }
  .join-steps { grid-template-columns: 1fr; }
  .join-step { border-right: none; border-bottom: 1px solid var(--border); }
  .join-step:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .creator-board { grid-template-columns: 1fr; }
  .featured-creator { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .network-growth-note { grid-template-columns: 1fr; gap: 0.75rem; }
}



/* ================================================================
   START / INTAKE PAGE — FORM STRUCTURE + STEPS
   ================================================================ */

/* ---- Progress Steps ---- */
.intake-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
}

.intake-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Connector line between steps */
.intake-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: calc(50% + 1.1rem);
  right: calc(-50% + 1.1rem);
  height: 1px;
  background: var(--border);
}

.intake-step--done:not(:last-child)::after { background: rgba(201,169,110,0.35); }
.intake-step--active:not(:last-child)::after { background: var(--border); }

.intake-step-num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-3);
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
  transition: border-color var(--t), color var(--t), background var(--t);
}

.intake-step--active .intake-step-num {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
  color: var(--gold);
}

.intake-step--done .intake-step-num {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.08);
  color: var(--gold-dim);
}

.intake-step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

.intake-step--active .intake-step-label { color: var(--text-2); }
.intake-step--done  .intake-step-label  { color: var(--text-3); }

.intake-step-sub {
  font-size: 0.62rem;
  color: var(--text-3);
  line-height: 1.5;
  margin-top: 0.2rem;
}

/* ---- Fieldset groupings ---- */
.intake-fieldset {
  border: none;
  border-top: 1px solid var(--border);
  padding: 0;
  margin: 0 0 2rem;
}

.intake-fieldset:first-of-type { border-top-color: transparent; }

.intake-legend {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 1.25rem;
  float: left;
  width: 100%;
  border: none;
  opacity: 0.85;
}

.intake-legend::after { content: ''; display: block; clear: both; }

.intake-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* 2-col field grid for paired inputs */
.intake-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ---- Platform link rows ---- */
.intake-link-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intake-link-row {
  display: grid;
  grid-template-columns: 6rem 1fr;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t);
}

.intake-link-row:focus-within { border-color: rgba(201,169,110,0.4); }

.intake-link-label {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  user-select: none;
}

.intake-link-input {
  border: none;
  background: var(--bg-4);
  color: var(--text);
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  width: 100%;
  outline: none;
}

.intake-link-input::placeholder { color: var(--text-3); }
.intake-link-input:focus { background: var(--bg-3); }

/* ---- File upload zone ---- */
.file-upload-zone {
  border: 1.5px dashed var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  background: var(--bg-3);
  position: relative;
}

.file-upload-zone:hover {
  border-color: rgba(201,169,110,0.35);
  background: var(--bg-4);
}

.file-upload-zone:focus-within {
  border-color: rgba(201,169,110,0.45);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-3);
}

.file-upload-text {
  font-size: 0.82rem;
  color: var(--text-2);
  text-align: center;
}

.file-upload-hint {
  font-size: 0.7rem;
  color: var(--text-3);
  text-align: center;
}

/* ---- Plan radio cards ---- */
.plan-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.plan-select-card {
  position: relative;
  cursor: pointer;
}

.plan-select-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.plan-select-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.1rem 1.25rem;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}

.plan-select-label:hover { border-color: rgba(201,169,110,0.25); }

.plan-select-card input[type="radio"]:checked + .plan-select-label {
  border-color: var(--gold);
  background: rgba(201,169,110,0.07);
}

.plan-select-card input[type="radio"]:focus-visible + .plan-select-label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.plan-select-tier {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.plan-select-price {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.plan-select-note {
  font-size: 0.65rem;
  color: var(--text-3);
  line-height: 1.5;
  margin-top: 0.1rem;
}

.plan-select-card--featured .plan-select-label {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}

.plan-select-card--featured .plan-select-price { color: var(--gold-bright); }

.plan-select-card--featured input[type="radio"]:checked + .plan-select-label {
  background: rgba(201,169,110,0.1);
}

/* ---- Category radio chips ---- */
.category-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.category-chip {
  position: relative;
  cursor: pointer;
}

.category-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.category-chip-label {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-3);
  background: var(--bg-3);
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
  user-select: none;
}

.category-chip-label:hover {
  border-color: rgba(201,169,110,0.3);
  color: var(--text-2);
}

.category-chip input[type="radio"]:checked + .category-chip-label {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.07);
}

.category-chip input[type="radio"]:focus-visible + .category-chip-label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---- Form section note ---- */
.form-note {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.7;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  background: var(--bg-2);
}

/* ---- Start paths ---- */
.start-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.start-path {
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 2.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t), transform var(--t-slow);
}

.start-path:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-2px);
}

.start-path--featured {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(160deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 60%);
}

.start-path-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.start-path-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.start-path-sub {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex: 1;
}

.start-path-price {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .intake-grid-2   { grid-template-columns: 1fr; }
  .plan-select-grid { grid-template-columns: repeat(2, 1fr); }
  .start-paths     { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .plan-select-grid { grid-template-columns: 1fr 1fr; }
  .intake-link-row  { grid-template-columns: 5rem 1fr; }
  .intake-steps     { gap: 0; }
  .intake-step-sub  { display: none; }
}



/* ================================================================
   FAQ PAGE — JUMP NAV + ANSWER ENHANCEMENTS
   ================================================================ */

/* ---- Quick-jump category nav ---- */
.faq-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-jump-link {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-3);
  text-decoration: none;
  background: var(--bg-3);
  transition: border-color var(--t), color var(--t), background var(--t);
  white-space: nowrap;
}

.faq-jump-link:hover {
  border-color: rgba(201,169,110,0.35);
  color: var(--text-2);
  background: var(--bg-4);
}

/* ---- Section heading inside FAQ sections ---- */
.faq-section-heading {
  margin-bottom: 2rem;
}

.faq-section-heading .section-label {
  margin-bottom: 0.6rem;
}

.faq-section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

/* ---- Answer checklist (inside faq-answer) ---- */
.faq-check-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.faq-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-check-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.28rem;
}

/* ---- Answer callout block ---- */
.faq-callout {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(201,169,110,0.5);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.75;
}

.faq-callout strong { color: var(--text); }

/* ---- Section divider ---- */
.faq-section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}



/* ================================================================
   DROPS PAGE — CATEGORY LAYOUT + FEATURED + PIPELINE
   ================================================================ */

/* ---- Category filter strip (visual only) ---- */
.drops-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.drops-category-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-3);
  text-decoration: none;
  background: var(--bg-3);
  transition: border-color var(--t), color var(--t), background var(--t);
  cursor: default;
  user-select: none;
}

.drops-category-chip--active {
  border-color: rgba(160,106,224,0.5);
  color: #c084fc;
  background: rgba(160,106,224,0.07);
}

/* ---- Featured drop (lead card) ---- */
.drop-featured {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 3.5rem;
  transition: border-color var(--t-slow);
}

.drop-featured:hover { border-color: rgba(160,106,224,0.35); }

.drop-featured-art {
  position: relative;
  min-height: 280px;
  background: linear-gradient(145deg, #0a0514 0%, #110823 50%, #1a083a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drop-featured-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(160,106,224,0.18) 0%, transparent 65%);
}

.drop-featured-art-label {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(160,106,224,0.25);
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

.drop-featured-art-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(160,106,224,0.15);
  border: 1px solid rgba(160,106,224,0.35);
  border-radius: 100px;
  color: #c084fc;
  z-index: 2;
}

.drop-featured-body {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.drop-featured-category {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a06ae0;
  margin-bottom: 0.65rem;
}

.drop-featured-name {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.drop-featured-desc {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 1.5rem;
}

.drop-featured-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.drop-featured-price {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #c084fc;
  line-height: 1;
}

.drop-featured-format {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ---- Category section headings ---- */
.drop-section {
  margin-bottom: 3.5rem;
}

.drop-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.drop-section-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.drop-section-note {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 40ch;
  text-align: right;
}

/* ---- Status badges on cards ---- */
.drop-status {
  display: inline-block;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 0.5rem;
}

.drop-status--available {
  color: #4ade80;
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.07);
}

.drop-status--preview {
  color: #c084fc;
  border-color: rgba(192,132,252,0.3);
  background: rgba(192,132,252,0.07);
}

.drop-status--soon {
  color: var(--text-3);
  border-color: var(--border);
  background: transparent;
}

/* ---- Colour variants for drop-img ---- */
.drop-img--game   { background: linear-gradient(135deg, #050e14 0%, #0a1a24 100%); }
.drop-img--bundle { background: linear-gradient(135deg, #0e0c05 0%, #201a08 100%); }
.drop-img--music-2 { background: linear-gradient(135deg, #0e0514 0%, #1a0828 100%); }

/* ---- Studio manifesto strip ---- */
.studio-manifesto {
  border: 1px solid var(--border);
  border-left: 4px solid rgba(160,106,224,0.5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.75rem 2rem;
  background: var(--bg-3);
  margin-bottom: 3.5rem;
}

.studio-manifesto-eyebrow {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a06ae0;
  margin-bottom: 0.65rem;
}

.studio-manifesto-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.studio-manifesto-attr {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Pipeline (upcoming) cards ---- */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pipeline-card {
  background: var(--bg-3);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0.82;
  transition: opacity var(--t), border-color var(--t);
}

.pipeline-card:hover {
  opacity: 1;
  border-color: rgba(160,106,224,0.25);
}

.pipeline-card-category {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a06ae0;
}

.pipeline-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.pipeline-card-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.7;
  flex: 1;
}

.pipeline-card-timing {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.25rem;
}

/* ---- Early access strip ---- */
.drops-access-strip {
  background: linear-gradient(135deg, rgba(160,106,224,0.06) 0%, var(--bg-3) 60%);
  border: 1.5px solid rgba(160,106,224,0.2);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.drops-access-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a06ae0;
  margin-bottom: 0.5rem;
}

.drops-access-title {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.drops-access-sub {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.75;
}

.drops-access-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .drop-featured       { grid-template-columns: 1fr; }
  .drop-featured-art   { min-height: 180px; }
  .drop-featured-body  { padding: 1.75rem; }
  .pipeline-grid        { grid-template-columns: repeat(2, 1fr); }
  .drops-access-strip  { grid-template-columns: 1fr; }
  .drop-section-note   { text-align: left; max-width: 100%; }
}

@media (max-width: 560px) {
  .pipeline-grid { grid-template-columns: 1fr; }
  .drops-access-strip { padding: 2rem 1.5rem; }
}



/* ================================================================
   DJ FLAGSHIP PAGE — PROOF STRIP + UPGRADED PROMO OFFER
   ================================================================ */

/* ---- "This page is the proof" strip ---- */
.ap-proof-strip {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.ap-proof-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.ap-proof-eyebrow {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.ap-proof-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.ap-proof-heading em {
  font-style: italic;
  color: var(--gold);
}

.ap-proof-body {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 0;
}

.ap-proof-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.ap-proof-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.55;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ap-proof-feat::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.22rem;
  opacity: 0.8;
}

/* ---- Flagship plan offer cards (4-plan vertical stack) ---- */
.ap-offer-section {
  padding: 4.5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.ap-offer-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}

.ap-offer-header-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.ap-offer-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.ap-offer-heading em {
  font-style: italic;
  color: var(--gold);
}

.ap-offer-sub {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 38ch;
}

.ap-offer-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.ap-offer-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.55;
}

.ap-offer-pillar-dot {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ap-offer-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Plan cards — stacked vertical list */
.ap-offer-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.ap-offer-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.75rem;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background var(--t), padding-left var(--t-slow);
  position: relative;
}

.ap-offer-card:last-child { border-bottom: none; }

.ap-offer-card:hover {
  background: rgba(255,255,255,0.025);
  padding-left: 2.1rem;
}

.ap-offer-card--featured {
  background: linear-gradient(100deg, rgba(201,169,110,0.06) 0%, var(--bg-3) 70%);
  border-left: 3px solid rgba(201,169,110,0.5);
}

.ap-offer-card--featured:hover {
  background: linear-gradient(100deg, rgba(201,169,110,0.1) 0%, rgba(255,255,255,0.02) 70%);
}

.ap-offer-card-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-3);
  width: 1.75rem;
  flex-shrink: 0;
}

.ap-offer-card--featured .ap-offer-card-num { color: var(--gold-dim); }

.ap-offer-card-body { flex: 1; min-width: 0; }

.ap-offer-card-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.ap-offer-card--featured .ap-offer-card-body strong { color: var(--gold-bright); }

.ap-offer-card-body p {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

.ap-offer-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-2);
  flex-shrink: 0;
  text-align: right;
  line-height: 1;
}

.ap-offer-card--featured .ap-offer-card-price { color: var(--gold); }

.ap-offer-card-arrow {
  font-size: 0.85rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition: color var(--t), transform var(--t);
}

.ap-offer-card:hover .ap-offer-card-arrow {
  color: var(--gold);
  transform: translate(3px, -2px);
}

/* ---- Studio return CTA strip ---- */
.ap-return-strip {
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.ap-return-title {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.ap-return-sub {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.ap-return-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .ap-proof-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-offer-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-offer-sub    { max-width: 100%; }
}

@media (max-width: 600px) {
  .ap-proof-features       { grid-template-columns: 1fr; }
  .ap-offer-card           { grid-template-columns: auto 1fr; gap: 1rem; }
  .ap-offer-card-price     { display: none; }
  .ap-offer-card-arrow     { display: none; }
}



/* ================================================================
   SAMPLE CREATOR PAGE — KOLD VISUAL (FREE TIER DEMO)
   ================================================================ */

/* ---- Sample page notice banner ---- */
.sample-notice {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.1rem;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* ---- Large initials avatar in hero ---- */
.sc-hero-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a0808 0%, #2e0e10 60%, #3a1010 100%);
  border: 2px solid rgba(220,100,80,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(220,100,80,0.5);
  letter-spacing: -0.06em;
  user-select: none;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 60px rgba(180,60,40,0.12);
}

.sc-hero-avatar::after {
  content: 'Add Photo';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* ---- Work / media grid ---- */
.sc-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sc-work-card {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-slow), transform var(--t-slow);
}

.sc-work-card:hover {
  border-color: rgba(220,100,80,0.3);
  transform: translateY(-3px);
}

.sc-work-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-work-img--photo {
  background: linear-gradient(145deg, #0c0808 0%, #1a0a0a 50%, #100c0a 100%);
}

.sc-work-img--digital {
  background: linear-gradient(145deg, #080812 0%, #0a0a1e 50%, #0e0818 100%);
}

.sc-work-img--editorial {
  background: linear-gradient(145deg, #080c08 0%, #0a120a 50%, #0c1008 100%);
}

.sc-work-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(220,100,80,0.08) 0%, transparent 65%);
}

.sc-work-img-label {
  font-size: 3.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
  user-select: none;
  line-height: 1;
}

.sc-work-img-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  z-index: 2;
}

.sc-work-img-badge--photo    { background: rgba(220,100,80,0.15); border: 1px solid rgba(220,100,80,0.3); color: #e07060; }
.sc-work-img-badge--digital  { background: rgba(100,80,220,0.15); border: 1px solid rgba(100,80,220,0.3); color: #9080e0; }
.sc-work-img-badge--editorial{ background: rgba(80,160,100,0.12); border: 1px solid rgba(80,160,100,0.25); color: #60b878; }

.sc-work-img-ph {
  position: absolute;
  bottom: 0.75rem;
  right: 0.85rem;
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  z-index: 2;
}

.sc-work-body {
  padding: 1.1rem 1.25rem 1.4rem;
}

.sc-work-series {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.4rem;
}

.sc-work-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.sc-work-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* ---- Featured media embed placeholder ---- */
.sc-media-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-3);
  min-height: 200px;
  text-align: center;
}

.sc-media-ph-icon {
  font-size: 2rem;
  opacity: 0.3;
}

.sc-media-ph-text {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.65;
}

.sc-media-ph-note {
  font-size: 0.65rem;
  color: var(--text-3);
  opacity: 0.65;
}

/* ---- Powered by bar (Free tier badge) ---- */
.powered-by-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
  text-align: center;
}

.powered-by-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.powered-by-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.powered-by-link {
  color: var(--gold-dim);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color var(--t);
}

.powered-by-link:hover { color: var(--gold); }

/* ---- Upgrade prompt (below powered-by) ---- */
.sc-upgrade-prompt {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.sc-upgrade-prompt-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.sc-upgrade-prompt-sub {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sc-upgrade-prompt-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .sc-work-grid   { grid-template-columns: 1fr 1fr; }
  .sc-hero-avatar { width: 140px; height: 140px; font-size: 2.5rem; }
}

@media (max-width: 500px) {
  .sc-work-grid   { grid-template-columns: 1fr; }
}



/* ================================================================
   SAMPLE BUSINESS PAGE — BLACKOUT CUTS BARBERSHOP
   ================================================================ */

/* ---- Business hero monogram block ---- */
.biz-hero-monogram {
  width: 180px;
  height: 180px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, #06100e 0%, #0b1e18 60%, #0e2420 100%);
  border: 1.5px solid rgba(74,191,160,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(74,191,160,0.4);
  letter-spacing: -0.08em;
  user-select: none;
  flex-shrink: 0;
  box-shadow: 0 0 60px rgba(40,160,130,0.08);
  position: relative;
}

.biz-hero-monogram::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 40% 30%, rgba(74,191,160,0.06) 0%, transparent 60%);
}

.biz-hero-tagline-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.biz-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4abfa0;
  box-shadow: 0 0 8px rgba(74,191,160,0.6);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

/* ---- Menu-style service rows ---- */
.menu-list {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-2);
}

.menu-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 0 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-2);
  transition: padding-left var(--t-slow);
}

.menu-row:hover { padding-left: 0.3rem; }

.menu-row-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-3);
  padding-top: 0.2rem;
}

.menu-row:hover .menu-row-num { color: #4abfa0; }

.menu-row-body h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
  transition: color var(--t);
}

.menu-row:hover .menu-row-body h3 { color: #4abfa0; }

.menu-row-body p {
  font-size: 0.87rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 500px;
}

.menu-row-price {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4abfa0;
  white-space: nowrap;
  padding-top: 0.1rem;
}

.menu-row-addon {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  margin-top: 0.35rem;
  display: inline-block;
}

/* ---- Contact 2-col grid ---- */
.biz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---- Hours panel ---- */
.biz-hours-panel {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.biz-hours-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.biz-hours-header-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
}

.biz-hours-today {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4abfa0;
  background: rgba(74,191,160,0.1);
  border: 1px solid rgba(74,191,160,0.25);
  border-radius: 100px;
  padding: 0.18rem 0.6rem;
}

.biz-hours-list {
  padding: 0.5rem 0;
}

.biz-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
  border-radius: 0;
  transition: background var(--t);
}

.biz-hours-row--closed .biz-hours-day,
.biz-hours-row--closed .biz-hours-time { color: var(--text-3); opacity: 0.45; }

.biz-hours-day {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}

.biz-hours-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.biz-hours-row--closed .biz-hours-time {
  color: var(--text-3);
  font-weight: 500;
  font-style: italic;
}

/* ---- CTA strip at bottom of contact section ---- */
.biz-cta-strip {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.biz-cta-strip-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.biz-cta-strip-text p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}

/* ---- Platform icon — phone ---- */
.platform-icon--phone { color: #4abfa0; font-size: 1.1rem; }

/* ---- Responsive ---- */
@media (max-width: 840px) {
  .biz-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .biz-cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .menu-row { grid-template-columns: 2.5rem 1fr; gap: 0.5rem 1rem; }
  .menu-row-price { grid-column: 2; }
  .biz-hero-monogram { width: 130px; height: 130px; font-size: 2.8rem; }
}



/* ================================================================
   THANK YOU PAGE — POST-SUBMISSION CONFIRMATION
   ================================================================ */

.ty-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  text-align: center;
  position: relative;
}

.ty-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1.5px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 2rem;
  animation: ty-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes ty-pop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

.ty-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.ty-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}

.ty-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- 3-step status rail ---- */
.ty-rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 3.5rem auto 0;
  max-width: 680px;
  position: relative;
}

.ty-rail-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.ty-rail-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  background: var(--bg-2);
  color: var(--text-3);
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 2;
  transition: border-color var(--t-slow);
}

.ty-rail-step--complete .ty-rail-dot {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.5);
  color: var(--gold);
}

.ty-rail-step--active .ty-rail-dot {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.35);
  color: var(--gold-dim);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.08);
}

.ty-rail-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-2);
  text-align: center;
  line-height: 1.3;
}

.ty-rail-sub {
  font-size: 0.65rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.3rem;
  line-height: 1.5;
}

.ty-rail-step--complete .ty-rail-label { color: var(--gold); }
.ty-rail-step--active  .ty-rail-label { color: var(--text); }
.ty-rail-step--pending .ty-rail-label { color: var(--text-3); }

.ty-rail-connector {
  height: 1.5px;
  flex: 1;
  background: var(--border-2);
  margin-top: 20px;
  z-index: 0;
}

.ty-rail-connector--complete { background: rgba(201,169,110,0.4); }

/* ---- URL box ---- */
.ty-url-box {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.ty-url-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
  white-space: nowrap;
}

.ty-url-value {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-dim);
  font-family: monospace;
  word-break: break-all;
}

.ty-url-status {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Next steps list ---- */
.ty-next-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--border-2);
}

.ty-next-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border-2);
  align-items: start;
}

.ty-next-num {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-top: 0.2rem;
}

.ty-next-body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.ty-next-body p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.75;
  margin: 0;
}

/* ---- Preview mode warning on thankyou page ---- */
.ty-preview-notice {
  background: rgba(200,169,110,0.06);
  border: 1.5px solid rgba(200,169,110,0.2);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.ty-preview-notice-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.ty-preview-notice-body {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.75;
}

.ty-preview-notice-body strong { color: var(--text); }

@media (max-width: 600px) {
  .ty-rail { flex-direction: column; align-items: flex-start; gap: 0; }
  .ty-rail-connector { width: 1.5px; height: 2rem; margin: 0 20px; flex: none; }
  .ty-rail-step { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .ty-rail-dot { margin-bottom: 0; flex-shrink: 0; }
  .ty-url-box { flex-direction: column; gap: 0.65rem; }
  .ty-url-status { margin-left: 0; }
}


/* ================================================================
   ADMIN DASHBOARD — STATIC SHELL
   ================================================================ */

.admin-page { background: var(--bg); min-height: 100vh; }

.admin-topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-topbar-logo {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-2);
}

.admin-topbar-logo span { color: var(--gold); }

.admin-topbar-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
}

.admin-topbar-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-topbar-links a {
  font-size: 0.75rem;
  color: var(--text-3);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t);
}

.admin-topbar-links a:hover { color: var(--text); }

/* ---- Pipeline stat strip ---- */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pipeline-card {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
}

.pipeline-card-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pipeline-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.pipeline-card--pending  .pipeline-card-num { color: var(--text-2); }
.pipeline-card--review   .pipeline-card-num { color: #e0b050; }
.pipeline-card--building .pipeline-card-num { color: #5aabdc; }
.pipeline-card--live     .pipeline-card-num { color: var(--gold); }
.pipeline-card--total    .pipeline-card-num { color: var(--text-3); }

/* ---- Submissions table ---- */
.sub-table-wrap {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

.sub-table-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sub-table-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.sub-table-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sub-filter-btn {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-4);
  color: var(--text-3);
  cursor: pointer;
  transition: all var(--t);
}

.sub-filter-btn--active,
.sub-filter-btn:hover {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.3);
  color: var(--gold-dim);
}

.sub-table {
  width: 100%;
  border-collapse: collapse;
}

.sub-table th {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0.75rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-2);
  white-space: nowrap;
}

.sub-table td {
  font-size: 0.8rem;
  color: var(--text-2);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-2);
  vertical-align: middle;
}

.sub-table tr:last-child td { border-bottom: none; }

.sub-table tr:hover td { background: rgba(255,255,255,0.02); }

.sub-table-name {
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}

.sub-table-handle { font-size: 0.72rem; color: var(--text-3); }

/* ---- Status pills ---- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}

.status-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-pill--pending  { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-3); }
.status-pill--pending::before  { background: var(--text-3); }

.status-pill--review   { background: rgba(224,176,80,0.1); border: 1px solid rgba(224,176,80,0.3); color: #e0b050; }
.status-pill--review::before   { background: #e0b050; }

.status-pill--building { background: rgba(90,171,220,0.1); border: 1px solid rgba(90,171,220,0.3); color: #5aabdc; }
.status-pill--building::before { background: #5aabdc; box-shadow: 0 0 4px rgba(90,171,220,0.5); }

.status-pill--live     { background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.3); color: var(--gold); }
.status-pill--live::before     { background: var(--gold); box-shadow: 0 0 4px rgba(201,169,110,0.5); }

.status-pill--deferred { background: rgba(200,60,60,0.08); border: 1px solid rgba(200,60,60,0.2); color: #e07070; }
.status-pill--deferred::before { background: #e07070; }

/* ---- Plan pill ---- */
.plan-pill {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-3);
  background: var(--bg-4);
  white-space: nowrap;
}

.plan-pill--free    { color: var(--text-3); }
.plan-pill--starter { color: #6abfa8; border-color: rgba(60,170,140,0.3); background: rgba(60,170,140,0.07); }
.plan-pill--pro     { color: var(--gold-dim); border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.07); }
.plan-pill--premium { color: #a06ae0; border-color: rgba(140,60,200,0.25); background: rgba(140,60,200,0.06); }

/* ---- Admin action links ---- */
.admin-action-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-4);
  transition: all var(--t);
  white-space: nowrap;
}

.admin-action-link:hover { color: var(--gold); border-color: rgba(201,169,110,0.3); }

/* ---- Admin preview notice ---- */
.admin-preview-bar {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-sm);
  padding: 0.8rem 1.25rem;
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.admin-preview-bar strong { color: var(--gold-dim); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pipeline-grid { grid-template-columns: repeat(3, 1fr); }
  .sub-table th:nth-child(n+5),
  .sub-table td:nth-child(n+5) { display: none; }
}

@media (max-width: 600px) {
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-table th:nth-child(n+4),
  .sub-table td:nth-child(n+4) { display: none; }
  .admin-topbar-links { display: none; }
}



/* ============================================================
   FREE SIGNUP FORM — free.html
   ============================================================ */

/* Image tab switcher */
.img-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1rem;
  width: fit-content;
}

.img-tab-btn {
  background: var(--bg-3);
  border: none;
  color: var(--text-3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.img-tab-btn:first-child { border-right: 1px solid var(--border); }

.img-tab-btn.is-active {
  background: var(--bg-5);
  color: var(--text);
}

.img-tab-btn:hover:not(.is-active) {
  background: var(--bg-4);
  color: var(--text-2);
}

/* Template selection cards */
.template-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.template-select-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}

.template-select-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.template-select-card input[type="radio"]:checked ~ .template-card-body {
  border-color: var(--gold-dim);
}

.template-select-card:has(input:checked) {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold-dim);
}

.template-card-preview {
  background: var(--bg-2);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem;
}

.template-card-preview-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--border-2);
  width: 70%;
}

.template-card-preview-bar--short { width: 45%; }
.template-card-preview-bar--xshort { width: 55%; }

.template-card-preview-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  margin-bottom: 4px;
}

.template-card-preview-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 80%;
}

.template-card-preview-link {
  height: 6px;
  border-radius: 3px;
  background: var(--border-2);
  width: 100%;
}

.template-card-body {
  padding: 0.7rem 0.85rem;
  background: var(--bg-3);
}

.template-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.15rem;
  letter-spacing: 0.01em;
}

.template-card-desc {
  font-size: 0.68rem;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

/* Success state */
.free-signup-success {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  outline: none;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(180, 150, 80, 0.1);
  border: 1.5px solid rgba(180, 150, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 1.8rem;
  line-height: 1;
}

.success-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

.success-headline {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.success-display-name {
  color: var(--gold);
}

.success-handle {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.success-url-row {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0 auto 2rem;
  max-width: 380px;
  word-break: break-all;
  line-height: 1.5;
}

.success-url-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 0.2rem;
}

.success-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 400px;
  text-align: left;
}

.success-steps li {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.success-steps li:last-child { border-bottom: none; }

.success-step-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-3);
  min-width: 1.25rem;
  padding-top: 0.15rem;
}

.success-static-note {
  background: rgba(200,170,60,0.07);
  border: 1px solid rgba(200,170,60,0.18);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 640px) {
  .template-select-grid { grid-template-columns: 1fr; }
  .free-signup-success { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .template-select-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   PAID INTAKE — paid.html
   assets/style.css — appended
   ============================================================ */

/* ── Plan selection cards ──────────────────────────────────── */
.paid-plan-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .paid-plan-select-grid { grid-template-columns: 1fr; }
}

.paid-plan-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.paid-plan-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.paid-plan-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-2);
  padding: 1rem 1.1rem 1rem;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.paid-plan-card:hover .paid-plan-inner {
  border-color: var(--border-bright);
  background: var(--bg-3);
}

.paid-plan-card input:checked + .paid-plan-inner {
  border-color: var(--gold);
  background: rgba(200,170,60,0.06);
  box-shadow: 0 0 0 1px rgba(200,170,60,0.25);
}

.paid-plan-card--featured input:checked + .paid-plan-inner {
  border-color: var(--gold-bright);
  background: rgba(200,170,60,0.1);
  box-shadow: 0 0 0 2px rgba(200,170,60,0.3);
}

.paid-plan-tier {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-2);
}

.paid-plan-card input:checked + .paid-plan-inner .paid-plan-tier {
  color: var(--gold-bright);
}

.paid-plan-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-1);
  line-height: 1;
  margin: 0.15rem 0 0.2rem;
}

.paid-plan-note {
  font-size: 0.71rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* ── Progress step done state ──────────────────────────────── */
.intake-step--done .intake-step-num {
  background: rgba(60,200,100,0.12);
  border-color: rgba(60,200,100,0.4);
  color: #5de685;
  font-size: 0.9rem;
}

/* ── Form error ────────────────────────────────────────────── */
.paid-form-error {
  background: rgba(200,60,60,0.1);
  border: 1px solid rgba(200,60,60,0.28);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  color: #e07070;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── Submit row ────────────────────────────────────────────── */
.intake-submit-row {
  margin-top: 2rem;
  text-align: center;
}

.paid-submit-btn {
  width: 100%;
  max-width: 380px;
  justify-content: center;
}

.paid-submit-btn:disabled,
.paid-submit-btn[aria-disabled="true"] {
  opacity: 0.38;
  cursor: not-allowed;
}

.paid-submit-btn.is-submitting {
  opacity: 0.65;
  cursor: wait;
}

.intake-submit-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Success state ─────────────────────────────────────────── */
.paid-intake-success {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  animation: fadeIn 0.4s ease both;
}

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

.paid-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(60,200,100,0.12);
  border: 1.5px solid rgba(60,200,100,0.35);
  color: #5de685;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.paid-success-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin: 0 0 0.9rem;
}

.paid-success-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.paid-success-details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto 2rem;
  text-align: left;
}

.paid-success-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.paid-success-row:last-child { border-bottom: none; }

.paid-success-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  min-width: 5rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.paid-success-val {
  font-size: 0.88rem;
  color: var(--text-1);
  font-weight: 600;
  word-break: break-all;
}

/* ── Next steps ────────────────────────────────────────────── */
.paid-success-next {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.35rem;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.paid-success-next-heading {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin: 0 0 1rem;
}

.paid-success-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.paid-success-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}

.paid-success-checklist li::before {
  content: '→';
  color: var(--gold-dim);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.paid-success-contact {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.6;
}



/* ════════════════════════════════════════════════════════════════════
   BOARD POSTS FEED + POST FORM
   network.html — Creator board post cards and submission form.
   Added for Supabase-connected board posts feature.
   ════════════════════════════════════════════════════════════════════ */


/* ── POST CARD ─────────────────────────────────────────────────── */

.post-card {
  background:    var(--bg-3);
  border:        1px solid var(--border-1);
  border-radius: 14px;
  padding:       1.25rem 1.4rem;
  margin-bottom: 1rem;
  position:      relative;
  transition:    border-color 0.18s ease;
}

.post-card:hover {
  border-color: var(--border-2);
}

.post-card--featured {
  border-color: rgba(201,169,110,0.35);
  background:   linear-gradient(135deg, rgba(201,169,110,0.05) 0%, var(--bg-3) 70%);
}

.post-featured-badge {
  display:       inline-block;
  font-size:     0.7rem;
  font-weight:   700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:         var(--gold);
  background:    rgba(201,169,110,0.1);
  border:        1px solid rgba(201,169,110,0.25);
  border-radius: 6px;
  padding:       0.2em 0.6em;
  margin-bottom: 0.75rem;
}

.post-card-head {
  display:      flex;
  align-items:  center;
  gap:          0.85rem;
  margin-bottom: 0.85rem;
  flex-wrap:    wrap;
}

.post-card-avatar {
  width:         42px;
  height:        42px;
  flex-shrink:   0;
  border-radius: 50%;
  border:        1.5px solid var(--border-1);
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-size:     0.8rem;
  font-weight:   800;
  letter-spacing: 0.02em;
  overflow:      hidden;
}

.post-card-meta {
  flex:         1;
  min-width:    0;
}

.post-card-name {
  font-size:   0.88rem;
  font-weight: 700;
  color:       var(--text-1);
  margin:      0 0 0.1rem;
  white-space: nowrap;
  overflow:    hidden;
  text-overflow: ellipsis;
}

.post-card-handle {
  font-size: 0.78rem;
  color:     var(--text-3);
  margin:    0;
}

.post-card-dot {
  opacity: 0.5;
}

.post-category-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size:   0.7rem;
}

.post-card-text {
  font-size:   0.92rem;
  color:       var(--text-2);
  line-height: 1.65;
  margin:      0;
  white-space: pre-wrap;
  word-break:  break-word;
}

.post-card-image-wrap {
  margin-top:    1rem;
  border-radius: 10px;
  overflow:      hidden;
  border:        1px solid var(--border-1);
}

.post-card-image {
  width:   100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
}


/* ── EMPTY STATE ───────────────────────────────────────────────── */

.post-empty-state {
  text-align:    center;
  padding:       4rem 2rem;
  border:        1px dashed var(--border-1);
  border-radius: 14px;
  color:         var(--text-3);
}

.post-empty-icon {
  font-size:    2.5rem;
  margin:       0 0 0.75rem;
  line-height:  1;
}

.post-empty-title {
  font-size:   1.05rem;
  font-weight: 700;
  color:       var(--text-2);
  margin:      0 0 0.35rem;
}

.post-empty-sub {
  font-size: 0.88rem;
  margin:    0;
}


/* ── LOADING DOTS ─────────────────────────────────────────────── */

.post-loading {
  display:         flex;
  gap:             0.5rem;
  justify-content: center;
  align-items:     center;
  padding:         3rem 0;
}

.post-loading span {
  width:            8px;
  height:           8px;
  border-radius:    50%;
  background:       var(--border-2);
  animation:        postPulse 1.2s ease-in-out infinite;
}

.post-loading span:nth-child(2) { animation-delay: 0.2s; }
.post-loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes postPulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40%           { opacity: 1;    transform: scale(1.1);  }
}


/* ── BOARD POST FORM ──────────────────────────────────────────── */

.board-post-form {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

.bpf-field {
  display:        flex;
  flex-direction: column;
  gap:            0.4rem;
}

.bpf-label {
  font-size:   0.82rem;
  font-weight: 600;
  color:       var(--text-2);
  letter-spacing: 0.01em;
}

.bpf-required {
  color: var(--gold-dim);
}

.bpf-input-wrap {
  position: relative;
}

.bpf-input-prefix {
  display:     flex;
  align-items: center;
}

.bpf-prefix {
  position:    absolute;
  left:        0.9rem;
  color:       var(--text-3);
  font-weight: 600;
  font-size:   0.92rem;
  pointer-events: none;
  user-select: none;
}

.bpf-input,
.bpf-select,
.bpf-textarea {
  width:         100%;
  background:    var(--bg-3);
  border:        1px solid var(--border-1);
  border-radius: 10px;
  color:         var(--text-1);
  font-family:   inherit;
  font-size:     0.92rem;
  padding:       0.7rem 0.9rem;
  transition:    border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing:    border-box;
}

.bpf-input-prefix .bpf-input {
  padding-left: 1.8rem;
}

.bpf-input::placeholder,
.bpf-textarea::placeholder {
  color: var(--text-3);
}

.bpf-input:focus,
.bpf-select:focus,
.bpf-textarea:focus {
  outline:      none;
  border-color: rgba(201,169,110,0.45);
  box-shadow:   0 0 0 3px rgba(201,169,110,0.08);
}

.bpf-select {
  appearance:    none;
  -webkit-appearance: none;
  cursor:        pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.bpf-textarea {
  resize:     vertical;
  min-height: 100px;
  line-height: 1.6;
}

.bpf-hint {
  font-size: 0.77rem;
  color:     var(--text-3);
  margin:    0;
}

.bpf-char-row {
  display:         flex;
  justify-content: flex-end;
  margin:          0;
}

.post-char-count {
  font-size:   0.77rem;
  color:       var(--text-3);
  font-variant-numeric: tabular-nums;
  transition:  color 0.18s ease;
}

.post-char-count.post-char--warn {
  color: #e07070;
}

.bpf-note {
  font-size:   0.78rem;
  color:       var(--text-3);
  line-height: 1.6;
  margin:      0;
  text-align:  center;
}


/* ── FORM FEEDBACK ─────────────────────────────────────────────── */

.post-form-feedback {
  padding:       0.85rem 1rem;
  border-radius: 10px;
  font-size:     0.88rem;
  line-height:   1.55;
}

.post-form-feedback--error {
  background: rgba(200,60,60,0.1);
  border:     1px solid rgba(200,60,60,0.3);
  color:      #e07070;
}

.post-form-feedback--error a {
  color: #e07070;
  text-decoration: underline;
}

.post-form-feedback--success {
  background: rgba(60,180,100,0.1);
  border:     1px solid rgba(60,180,100,0.3);
  color:      #6abfa8;
}

.post-form-feedback--warning {
  background: rgba(201,169,110,0.1);
  border:     1px solid rgba(201,169,110,0.25);
  color:      var(--gold-dim);
}


/* ── AVATAR IMG (board cards + post cards) ─────────────────────── */

.board-card-avatar-img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  border-radius: inherit;
  display:    block;
}


/* ── RESPONSIVE ────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .post-card {
    padding: 1rem 1.1rem;
  }

  .post-card-head {
    gap: 0.65rem;
  }

  .post-category-tag {
    order:     3;
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .post-card-head {
    flex-wrap: wrap;
  }
}


/* ================================================================
   PLAN GATES — UPGRADE PATH SYSTEM
   Sections marked data-plan-gate="X" are hidden when the page's
   body[data-plan] attribute is below the required tier.
   Plan hierarchy: free < starter < pro < premium
   Set by: assets/js/page-renderer.js → document.body.dataset.plan
================================================================ */

/* Free plan: hide starter+ and pro+ features */
body[data-plan="free"] [data-plan-gate="starter"],
body[data-plan="free"] [data-plan-gate="pro"],
body[data-plan="free"] [data-plan-gate="premium"] {
  display: none !important;
}

/* Starter plan: hide pro+ features */
body[data-plan="starter"] [data-plan-gate="pro"],
body[data-plan="starter"] [data-plan-gate="premium"] {
  display: none !important;
}

/* Pro plan: hide premium-only features */
body[data-plan="pro"] [data-plan-gate="premium"] {
  display: none !important;
}


/* ── FAS FREE PLAN BADGE ──────────────────────────────────── */
/*
 * Shown in the hero of free plan pages only.
 * Identifies the page as a free-tier listing and links back to FAS.
 * Hidden on starter (powered-by bar handles branding there).
 * Hidden on pro/premium (no FAS branding at all).
 */

.fas-free-badge {
  display: none; /* hidden by default — JS+CSS turns it on */
}

body[data-plan="free"] .fas-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.35rem 0.85rem 0.35rem 0.65rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-3, #555);
  letter-spacing: 0.025em;
}

.fas-free-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c9a96e);
  opacity: 0.7;
  flex-shrink: 0;
}

.fas-free-badge-link {
  color: var(--gold, #c9a96e);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.fas-free-badge-link:hover {
  opacity: 0.8;
}


/* ── PREMIUM CUSTOM DOMAIN BADGE ─────────────────────────── */
/*
 * Shown in the hero when a premium page has a custom domain set.
 * Set to visible by page-renderer.js when page.custom_domain exists.
 */

.fas-domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.3rem 0.8rem 0.3rem 0.6rem;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-2, #a8a8a8);
}

.fas-domain-badge-icon {
  color: var(--gold, #c9a96e);
  font-size: 0.75rem;
}

.fas-domain-badge-link {
  color: var(--gold, #c9a96e);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.fas-domain-badge-link:hover {
  text-decoration: underline;
}


/* ── PLAN PILLS — admin dashboard ────────────────────────── */
/* Used in the admin profile rows to style plan_type values */

.adm-plan-select {
  font-size: 0.7rem;
  padding: 0.3rem 0.55rem;
  min-width: 110px;
}



/* ================================================================
   MASCOT BRAND THEME — PURPLE IDENTITY
   Inspired by: hooded figure, white fox mask, glowing violet eyes,
   urban underground atmosphere, Providence, RI street energy.
   Purple = atmosphere/mood. Gold = identity/text. Both coexist.
   ================================================================ */

/* -- Purple color tokens ---------------------------------------- */
:root {
  --purple:        #8B5CF6;
  --purple-bright: #A78BFA;
  --purple-dim:    #6D28D9;
  --purple-deep:   #3B1F6A;
  --purple-soft:   rgba(139, 92, 246, 0.10);
  --purple-glow:   rgba(139, 92, 246, 0.13);
  --purple-glow-2: rgba(139, 92, 246, 0.06);
  --shadow-purple: 0 0 40px rgba(139,92,246,0.22), 0 4px 14px rgba(0,0,0,0.55);
}

/* -- "Animal" in the logo becomes purple ------------------------ */
.navbar-logo span { color: var(--purple) !important; }

/* -- Eyebrow dot: purple pulse ---------------------------------- */
.eyebrow-dot {
  background: var(--purple) !important;
  box-shadow: 0 0 6px var(--purple), 0 0 12px rgba(139,92,246,0.4);
}

/* -- Page hero glow: purple atmospheric bloom ------------------- */
.page-hero-glow {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(139,92,246,0.13) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 72% 65%, rgba(139,92,246,0.05) 0%, transparent 58%) !important;
}

/* -- Homepage hero bg glow: purple + faint gold ----------------- */
.hero-bg-glow {
  background:
    radial-gradient(ellipse 60% 55% at 48% 35%, rgba(139,92,246,0.11) 0%, transparent 62%),
    radial-gradient(ellipse 35% 30% at 78% 60%, rgba(139,92,246,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 22% 68%, rgba(201,169,110,0.04) 0%, transparent 52%) !important;
}

/* -- Hero h1 em: gold text with purple ambient glow ------------- */
.hero h1 em {
  text-shadow: 0 0 60px rgba(139,92,246,0.25), 0 0 30px rgba(201,169,110,0.20) !important;
}

/* -- Division card top-border accent: purple on hover ----------- */
.division-card::before {
  background: linear-gradient(90deg, var(--purple), transparent) !important;
}
.division-card:hover {
  box-shadow: 0 0 40px rgba(139,92,246,0.07) !important;
}

/* -- Mascot: homepage hero —
     Positioned right side, ghosted with screen blend.
     White bg disappears on dark canvas; mask + eyes glow through. -- */
.mascot-hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(240px, 38vw, 500px);
  max-height: 88%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.13;
  mix-blend-mode: screen;
  filter: saturate(1.6) contrast(1.15) brightness(0.85);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.85) 45%,
    rgba(0,0,0,0.40) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.85) 45%,
    rgba(0,0,0,0.40) 72%,
    transparent 100%
  );
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* -- Mascot: music page hero — slightly more present ------------ */
.mascot-music-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(260px, 45vw, 580px);
  max-height: 92%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.17;
  mix-blend-mode: screen;
  filter: saturate(1.8) contrast(1.2) brightness(0.8) hue-rotate(10deg);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.85) 40%,
    rgba(0,0,0,0.40) 68%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.85) 40%,
    rgba(0,0,0,0.40) 68%,
    transparent 100%
  );
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* -- Mascot: services + about — faint left-side presence -------- */
.mascot-page-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(200px, 30vw, 400px);
  max-height: 85%;
  object-fit: contain;
  object-position: bottom left;
  opacity: 0.09;
  mix-blend-mode: screen;
  filter: saturate(1.4) contrast(1.1) brightness(0.8);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.60) 50%,
    transparent 85%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.60) 50%,
    transparent 85%
  );
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* -- Hero eyebrow badge: subtle purple tint --------------------- */
.hero-eyebrow {
  border-color: rgba(139,92,246,0.28) !important;
  background: rgba(139,92,246,0.06) !important;
  color: var(--purple-bright) !important;
}

/* -- page-hero-eyebrow color: purple ---------------------------- */
.page-hero-eyebrow { color: var(--purple-bright) !important; opacity: 1 !important; }

/* -- "Animal" in the footer logo: purple too -------------------- */
.footer-logo span { color: var(--purple) !important; }

/* -- Btn outline on dark: purple hover variant ------------------ */
.btn-outline:hover {
  border-color: var(--purple) !important;
  color: var(--purple-bright) !important;
  box-shadow: 0 0 18px rgba(139,92,246,0.15) !important;
}

/* -- Section-alt: imperceptible purple base tint ---------------- */
.section-alt {
  background: #0d0c10 !important;
}

/* -- Mobile: reduce mascot size, still atmospheric -------------- */
@media (max-width: 768px) {
  .mascot-hero-img  { width: clamp(160px, 52vw, 280px); opacity: 0.10; }
  .mascot-music-img { width: clamp(160px, 55vw, 300px); opacity: 0.12; }
  .mascot-page-img  { display: none; }
}


/* ================================================================
   PLATFORM MEMBERSHIP — "What Your Monthly Gets You"
   ================================================================ */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.membership-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.membership-item:hover { border-color: rgba(139,92,246,0.22); }
.membership-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  line-height: 1;
}
.membership-item-copy {}
.membership-item-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.22rem;
  letter-spacing: 0.01em;
}
.membership-item-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Membership badge */
.membership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-bright);
  background: rgba(139,92,246,0.10);
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: 999px;
  padding: 0.28em 0.9em;
  margin-bottom: 1.1rem;
}

/* Payment clarity breakdown */
.payment-clarity {
  margin-top: 2.75rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
}
.payment-clarity-title {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}
.payment-clarity-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.payment-clarity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.payment-clarity-row:last-child { border-bottom: none; padding-bottom: 0; }
.pcr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pcr-dot--purple { background: var(--purple); }
.pcr-dot--gold   { background: var(--gold); }
.pcr-dot--muted  { background: var(--text-3); }
.pcr-dot--green  { background: #22c55e; }
.pcr-label { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.pcr-label small { display: block; font-size: 0.74rem; font-weight: 400; color: var(--text-2); margin-top: 0.15rem; }
.pcr-price { font-size: 0.82rem; font-weight: 800; color: var(--text-2); white-space: nowrap; }
.pcr-price--purple { color: var(--purple-bright); }
.pcr-price--gold   { color: var(--gold); }
.pcr-price--green  { color: #22c55e; }

@media (max-width: 540px) {
  .payment-clarity-row { grid-template-columns: auto 1fr; }
  .pcr-price { grid-column: 2; margin-top: -0.3rem; }
}


/* ================================================================
   DJ FACELESS ANIMAL RADIO — Boombox + Live Chat Shell
   ================================================================ */

.radio-section { overflow: hidden; }

/* On Air badge */
.on-air-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ef4444;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 999px;
  padding: 0.3em 0.9em;
  margin-bottom: 1rem;
}
.on-air-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: radio-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes radio-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}

/* EQ bar animation */
.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  vertical-align: middle;
  margin-left: 0.4rem;
}
.eq-bar {
  width: 3px;
  background: var(--purple);
  border-radius: 2px;
  animation: eq-dance 0.9s ease-in-out infinite;
  transform-origin: bottom;
}
.eq-bar:nth-child(1) { height: 6px;  animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.eq-bar:nth-child(3) { height: 8px;  animation-delay: 0.3s; }
.eq-bar:nth-child(4) { height: 14px; animation-delay: 0.1s; }
.eq-bar:nth-child(5) { height: 5px;  animation-delay: 0.25s; }
@keyframes eq-dance {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.35); opacity: 1; }
}

/* Radio layout — 2-col desktop, stacked mobile */
.radio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.75rem;
}
@media (max-width: 820px) {
  .radio-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* Boombox */
.radio-boombox-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.boombox-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(139,92,246,0.30)) drop-shadow(0 0 80px rgba(139,92,246,0.12));
  animation: boombox-float 4s ease-in-out infinite;
}
@keyframes boombox-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* YouTube / player embed area */
.radio-player-wrap {
  width: 100%;
  max-width: 400px;
}
.radio-player-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0,0,0,0.6);
}
.radio-player-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: 10px;
}
.radio-player-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(139,92,246,0.25);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.radio-player-placeholder p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.7;
}
.radio-player-placeholder strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 0.4rem;
}

/* Live chat shell */
.radio-chat-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.radio-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.18);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}
.radio-chat-live-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-bright);
}
.radio-chat-sub {
  font-size: 0.72rem;
  color: var(--text-3);
}
.radio-chat-messages {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(139,92,246,0.12);
  border-top: none;
  border-bottom: none;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}
.radio-chat-msg {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.radio-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.radio-chat-msg-body {}
.radio-chat-handle {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--purple-bright);
  margin-bottom: 0.15rem;
}
.radio-chat-text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}
.radio-chat-input-bar {
  display: flex;
  gap: 0;
  border: 1px solid rgba(139,92,246,0.18);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.radio-chat-input-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font);
  padding: 0.85rem 1.25rem;
}
.radio-chat-input-bar input::placeholder { color: var(--text-3); }
.radio-chat-send {
  background: rgba(139,92,246,0.15);
  border: none;
  border-left: 1px solid rgba(139,92,246,0.18);
  color: var(--purple-bright);
  font-size: 1rem;
  padding: 0 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.radio-chat-send:hover { background: rgba(139,92,246,0.28); }
.radio-chat-phase-note {
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.7;
}

/* Station intro block */
.radio-station-intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.radio-station-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}
.radio-station-tagline {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* Future direction note */
.radio-future-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.14);
  border-radius: 12px;
  text-align: center;
}
.radio-future-note p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}
.radio-future-note strong {
  color: var(--purple-bright);
  font-weight: 700;
}

/* Compact radio teaser on homepage */
.radio-teaser {
  padding: 2rem;
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.16);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
.radio-teaser-boombox {
  width: clamp(80px, 20vw, 120px);
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(139,92,246,0.35));
}
.radio-teaser-copy { flex: 1; min-width: 200px; }
.radio-teaser-copy h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.radio-teaser-copy p { font-size: 0.84rem; color: var(--text-2); line-height: 1.7; }

/* ================================================================
   RS — DJ FACELESS ANIMAL RADIO (Upgraded Station UI)
   ================================================================ */

/* Section shell */
.rs-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding-bottom: 4rem;
}
.rs-container { max-width: 1100px; }

/* Station top bar */
.rs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.rs-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.rs-topbar-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.rs-topbar-eq { margin-left: 0.25rem; }

.rs-listener-count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rs-listener-dot { color: #4ade80; font-size: 0.5rem; animation: radio-pulse 2s ease-in-out infinite; }

/* Section heading */
.rs-section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.rs-section-heading em { color: var(--purple-bright); font-style: normal; }
.rs-section-sub {
  font-size: 0.92rem;
  color: var(--text-2);
  margin: 0 0 2.25rem;
  letter-spacing: 0.03em;
}

/* ── Main grid ── */
.rs-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .rs-main-grid { grid-template-columns: 1fr; }
}

/* ── Player card ── */
.rs-player-panel { display: flex; flex-direction: column; gap: 1rem; }
.rs-player-card {
  background: var(--bg-2);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 16px;
  overflow: hidden;
}

.rs-boombox-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(139,92,246,0.05);
}
.rs-boombox-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.45));
  animation: boombox-float 4s ease-in-out infinite;
}
.rs-station-identity { flex: 1; min-width: 0; }
.rs-station-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-station-tagline {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.5;
}

/* 16:9 YouTube embed */
.rs-embed-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.rs-embed-ratio iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Volume row */
.rs-vol-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.rs-vol-icon { font-size: 0.9rem; flex-shrink: 0; }
.rs-vol-track {
  position: relative;
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: default;
}
.rs-vol-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  border-radius: 2px;
  pointer-events: none;
}
.rs-vol-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--purple-bright);
  border-radius: 50%;
  border: 2px solid var(--bg);
  pointer-events: none;
}
.rs-vol-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
}
.rs-vol-tip {
  font-size: 0.65rem;
  color: var(--text-3);
  white-space: nowrap;
  display: none;
}
@media (min-width: 500px) { .rs-vol-tip { display: block; } }

/* ── Chat panel ── */
.rs-chat-panel {
  background: var(--bg-2);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  max-height: 600px;
}

/* Room selector bar */
.rs-rooms-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
.rs-rooms-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  padding: 0;
}
.rs-rooms-scroll::-webkit-scrollbar { display: none; }

.rs-room-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.rs-room-tab:hover { color: var(--text-2); }
.rs-room-tab--active {
  color: var(--purple-bright);
  border-bottom-color: var(--purple-bright);
}
.rs-room-tab-count {
  background: rgba(139,92,246,0.18);
  color: var(--purple-bright);
  border-radius: 20px;
  padding: 0 5px;
  font-size: 0.62rem;
  font-weight: 800;
}
.rs-room-tab--active .rs-room-tab-count {
  background: rgba(139,92,246,0.3);
}

.rs-create-room-btn {
  flex-shrink: 0;
  padding: 0.5rem 0.9rem;
  margin: 0.35rem 0.5rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 8px;
  color: var(--purple-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.rs-create-room-btn:hover { background: rgba(139,92,246,0.22); }

/* Active room indicator */
.rs-active-room-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(139,92,246,0.04);
}
.rs-active-dot { flex-shrink: 0; }
.rs-active-room-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-active-room-count {
  font-size: 0.66rem;
  color: var(--text-3);
  white-space: nowrap;
}

/* Chat feed */
.rs-chat-feed {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-behavior: smooth;
}
.rs-chat-feed::-webkit-scrollbar { width: 4px; }
.rs-chat-feed::-webkit-scrollbar-track { background: transparent; }
.rs-chat-feed::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 2px; }

.rs-msg {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.rs-avatar {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}
.rs-msg-body { flex: 1; min-width: 0; }
.rs-handle {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--purple-bright);
  display: block;
  margin-bottom: 0.15rem;
  letter-spacing: 0.04em;
}
.rs-msg-text {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  word-break: break-word;
}
.rs-msg--self .rs-handle { color: var(--gold); }
.rs-msg--self .rs-avatar { background: linear-gradient(135deg, var(--gold), #f59e0b); }

.rs-msg--system {
  justify-content: center;
  padding: 0.3rem 0;
}
.rs-msg--system p {
  font-size: 0.66rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

/* Chat input */
.rs-input-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rs-input {
  flex: 1;
  background: rgba(0,0,0,0.25);
  border: none;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  min-width: 0;
}
.rs-input::placeholder { color: var(--text-3); }
.rs-input:focus { background: rgba(139,92,246,0.06); }
.rs-send-btn {
  flex-shrink: 0;
  width: 48px;
  min-height: 44px;
  background: var(--purple);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rs-send-btn:hover { background: var(--purple-bright); }
.rs-send-btn:active { transform: scale(0.94); }

.rs-phase-note {
  font-size: 0.66rem;
  color: var(--text-3);
  text-align: center;
  padding: 0.5rem 1rem 0.75rem;
  letter-spacing: 0.04em;
}
.rs-phase-note a { color: var(--purple-bright); text-decoration: none; }
.rs-phase-note a:hover { text-decoration: underline; }

/* ── Future strip ── */
.rs-future-strip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.14);
  border-radius: 12px;
}
.rs-future-icon {
  font-size: 1.1rem;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.rs-future-strip p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}
.rs-future-strip strong { color: var(--text); }

/* ── Room Creation Modal ── */
.rs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.rs-modal-overlay.rs-modal--open {
  opacity: 1;
  pointer-events: all;
}
.rs-modal {
  background: var(--bg-2);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.2s;
}
.rs-modal-overlay.rs-modal--open .rs-modal {
  transform: translateY(0) scale(1);
}
.rs-modal-header {
  padding: 1.5rem 1.5rem 0;
  position: relative;
}
.rs-modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin: 0 0 0.35rem;
}
.rs-modal-header h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
  color: var(--text);
}
.rs-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--text-2);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.rs-modal-close:hover { background: rgba(255,255,255,0.14); }
.rs-modal-body {
  padding: 1.25rem 1.5rem 1.75rem;
}
.rs-modal-body > p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.rs-modal-room-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0;
}
.rs-modal-room-card {
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.rs-modal-room-card--yours {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.3);
  color: var(--purple-bright);
}

/* ================================================================
   PLATFORM ACCESS — status + access tags, gated overlays
   ================================================================ */

/* Status tags */
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.status-tag--live    { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.status-tag--dev     { background: rgba(251,191,36,0.1);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.status-tag--soon    { background: rgba(255,255,255,0.05);color: var(--text-3); border: 1px solid rgba(255,255,255,0.1); }
.status-tag--beta    { background: rgba(139,92,246,0.12); color: var(--purple-bright); border: 1px solid rgba(139,92,246,0.25); }
.status-tag-dot      { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.status-tag--live .status-tag-dot { animation: radio-pulse 2s ease-in-out infinite; }

/* Access tags */
.access-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.access-tag--free    { background: rgba(74,222,128,0.1); color: #4ade80; }
.access-tag--member  { background: rgba(139,92,246,0.15); color: var(--purple-bright); }
.access-tag--paid    { background: rgba(212,175,55,0.12); color: var(--gold); }
.access-tag--locked  { background: rgba(255,255,255,0.05); color: var(--text-3); }

/* Gated card overlay */
.gated-card {
  position: relative;
  overflow: hidden;
}
.gated-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  z-index: 10;
  border-radius: inherit;
}
.gated-overlay-icon { font-size: 1.75rem; }
.gated-overlay-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.04em;
}
.gated-overlay-sub {
  font-size: 0.74rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.6;
}

/* ── Directory cards ── */
.dir-filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.dir-filter-chip {
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s;
}
.dir-filter-chip:hover { border-color: rgba(139,92,246,0.4); color: var(--purple-bright); }
.dir-filter-chip--active {
  background: rgba(139,92,246,0.15);
  border-color: var(--purple-bright);
  color: var(--purple-bright);
}

.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.dir-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.dir-card:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-2px); }
.dir-card--featured { border-color: rgba(212,175,55,0.35); background: linear-gradient(135deg, rgba(212,175,55,0.05), var(--bg-2)); }
.dir-card-top { display: flex; align-items: center; gap: 0.85rem; }
.dir-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.dir-avatar--gold { background: linear-gradient(135deg, #d4af37, #f59e0b); }
.dir-card-meta { flex: 1; min-width: 0; }
.dir-card-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dir-card-slug {
  font-size: 0.68rem;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}
.dir-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.dir-card-bio {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.dir-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-bright);
  text-decoration: none;
  margin-top: auto;
}
.dir-featured-hero {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.dir-featured-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--bg);
  flex-shrink: 0;
  letter-spacing: 0;
}
@media (max-width: 480px) { .dir-featured-hero { flex-direction: column; align-items: flex-start; } }

/* ── Game & App cards ── */
.game-grid, .app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.game-card, .app-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}
.game-card:hover, .app-card:hover { border-color: rgba(139,92,246,0.3); }
.game-card--live { border-color: rgba(74,222,128,0.2); }
.game-card-thumb {
  height: 140px;
  background: linear-gradient(135deg, #0d0d1a, #1a0d2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(0,0,0,0.3));
}
.game-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.game-card-top { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: space-between; }
.game-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.game-card-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.game-card-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

/* ── Message UI ── */
.msg-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
  max-height: 85vh;
}
@media (max-width: 720px) {
  .msg-page { grid-template-columns: 1fr; height: auto; max-height: none; border-radius: 12px; }
  .msg-thread { display: none; }
  .msg-page.msg--thread-open .msg-inbox { display: none; }
  .msg-page.msg--thread-open .msg-thread { display: flex; }
}
.msg-inbox {
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.msg-inbox-header {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.15);
}
.msg-inbox-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.msg-inbox-count {
  background: var(--purple);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 20px;
}
.msg-inbox-list { overflow-y: auto; flex: 1; }
.msg-inbox-list::-webkit-scrollbar { width: 4px; }
.msg-inbox-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }
.msg-inbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.12s;
}
.msg-inbox-item:hover { background: rgba(255,255,255,0.03); }
.msg-inbox-item--active { background: rgba(139,92,246,0.1); border-left: 2px solid var(--purple-bright); }
.msg-inbox-item--unread .msg-inbox-name { color: var(--text); }
.msg-inbox-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.msg-inbox-info { flex: 1; min-width: 0; }
.msg-inbox-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msg-inbox-preview {
  font-size: 0.72rem;
  color: var(--text-3);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msg-inbox-time {
  font-size: 0.62rem;
  color: var(--text-3);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.msg-unread-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple-bright);
  flex-shrink: 0;
}

.msg-thread {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.msg-thread-header {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.msg-thread-back {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 1rem;
  cursor: pointer;
  display: none;
  padding: 0.1rem 0.5rem;
}
@media (max-width: 720px) { .msg-thread-back { display: block; } }
.msg-thread-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.msg-thread-sub {
  font-size: 0.66rem;
  color: var(--text-3);
  margin: 0;
}
.msg-feed {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-behavior: smooth;
}
.msg-feed::-webkit-scrollbar { width: 4px; }
.msg-feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 2px; }
.msg-bubble-wrap { display: flex; gap: 0.5rem; align-items: flex-end; }
.msg-bubble-wrap--sent { flex-direction: row-reverse; }
.msg-bubble-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.msg-bubble {
  max-width: 68%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: break-word;
}
.msg-bubble--received { background: rgba(255,255,255,0.06); color: var(--text); border-radius: 14px 14px 14px 4px; }
.msg-bubble--sent { background: var(--purple); color: #fff; border-radius: 14px 14px 4px 14px; }
.msg-timestamp {
  font-size: 0.6rem;
  color: var(--text-3);
  text-align: center;
  padding: 0.25rem 0;
  letter-spacing: 0.04em;
}
.msg-input-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.12);
}
.msg-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  min-width: 0;
}
.msg-input::placeholder { color: var(--text-3); }
.msg-send {
  flex-shrink: 0;
  width: 50px;
  background: var(--purple);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg-send:hover { background: var(--purple-bright); }

/* Access tier explainer */
.access-tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .access-tier-row { grid-template-columns: 1fr; } }
.access-tier-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.access-tier-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.access-tier-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.access-tier-label--free { color: #4ade80; }
.access-tier-label--member { color: var(--purple-bright); }
.access-tier-label--paid { color: var(--gold); }
.access-tier-desc { font-size: 0.78rem; color: var(--text-2); line-height: 1.65; margin: 0; }


/* ================================================================
   FREE SIGNUP FORM — MOBILE OVERFLOW FIX
   fieldset has min-width:min-content by default in browsers;
   override so it respects its container on narrow viewports.
   ================================================================ */
.intake-fieldset,
.intake-fields,
.intake-grid-2,
.intake-link-rows,
.intake-link-row {
  min-width: 0;
  width: 100%;
}

/* Ensure the form container itself never overflows */
#fas-free-signup-form {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

/* Force 1-col on every small screen — belt-and-suspenders */
@media (max-width: 640px) {
  .intake-grid-2 {
    grid-template-columns: 1fr !important;
  }
  .intake-link-row {
    grid-template-columns: 5rem 1fr !important;
  }
}


/* ================================================================
   TASK #8 — BOARD MEMBER GATING
   Guest banner + Post form gate block
   ================================================================ */

/* ── Guest Banner ────────────────────────────────────────────────── */
#fas-guest-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(201,169,110,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
}

.guest-banner-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  flex-shrink: 0;
}

.guest-banner-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
  flex-shrink: 0;
}
.guest-banner-cta:hover { color: var(--gold-bright); }

.guest-banner-dismiss {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.78rem;
  line-height: 1;
  padding: 0.2rem 0.45rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color var(--t), background var(--t);
  flex-shrink: 0;
}
.guest-banner-dismiss:hover {
  color: var(--text-2);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 540px) {
  #fas-guest-banner {
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
  }
  .guest-banner-dismiss { margin-left: 0; }
}

/* ── Post Form Gate Block ────────────────────────────────────────── */
.board-post-gate {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: var(--r-lg);
  max-width: 520px;
  margin: 0 auto;
}

.board-gate-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: var(--text);
}
.board-gate-title em {
  font-style: normal;
  color: var(--gold);
}

.board-gate-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.board-gate-note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 1.25rem;
  line-height: 1.6;
}

.board-gate-login-link {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.board-gate-login-link:hover { color: var(--gold); }

@media (max-width: 480px) {
  .board-post-gate {
    padding: 2rem 1.25rem;
  }
}


/* Platform Access plan card — monthly badge, purple tint, subscribe button */
.tier-deep-badge--monthly {
  background: rgba(139,92,246,0.1);
  color: var(--purple-bright);
  border: 1px solid rgba(139,92,246,0.28);
}

.tier-deep-card--monthly {
  border-color: rgba(139,92,246,0.2);
}
.tier-deep-card--monthly:hover {
  border-color: rgba(139,92,246,0.38);
}

.tier-deep-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tier-deep-feature-list li {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}
.tier-deep-feature-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--purple-bright);
  font-weight: 700;
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple-bright);
  border: 1px solid rgba(139,92,246,0.45);
}
.btn-outline-purple:hover {
  background: rgba(139,92,246,0.08);
  border-color: var(--purple-bright);
  box-shadow: 0 0 20px rgba(139,92,246,0.14);
  transform: translateY(-1px);
}


/* ================================================================
   FLOATING RADIO WIDGET
   Collapsed bottom bar with expandable quick-access panel.
   Injected on all pages except radio.html via radio-widget.js.
   ================================================================ */

/* ── Widget wrapper ──────────────────────────────────────────────── */
#fas-radio-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8900;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.3s ease;
}

/* ── Collapsed bar (always visible, ≤52px) ───────────────────────── */
#fas-rw-bar {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.65rem;
  background: rgba(12, 10, 18, 0.97);
  border-top: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.7), 0 -1px 0 rgba(139,92,246,0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  user-select: none;
}
#fas-rw-bar:hover { background: rgba(14, 12, 22, 0.99); }

/* ── Live pulse dot ──────────────────────────────────────────────── */
.fas-rw-live-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 0 0 rgba(139,92,246,0.7);
  animation: fas-rw-pulse 2.4s ease-out infinite;
}

@keyframes fas-rw-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(139,92,246,0.7); }
  60%  { box-shadow: 0 0 0 7px rgba(139,92,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
}

/* ── Bar label block ─────────────────────────────────────────────── */
.fas-rw-label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
  overflow: hidden;
  flex: 1;
}
.fas-rw-station {
  font-size: 0.76rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fas-rw-meta {
  font-size: 0.63rem;
  color: rgba(139,92,246,0.9);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Bar action buttons ──────────────────────────────────────────── */
.fas-rw-expand-btn {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b5cf6;
  padding: 0.33rem 0.78rem;
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 6px;
  background: rgba(139,92,246,0.08);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.fas-rw-expand-btn:hover {
  background: rgba(139,92,246,0.18);
  border-color: rgba(139,92,246,0.6);
}

.fas-rw-dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.22);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
}
.fas-rw-dismiss:hover {
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}

/* ── Expanded panel (above the collapsed bar) ────────────────────── */
#fas-rw-panel {
  background: rgba(10, 8, 16, 0.98);
  border-top: 1px solid rgba(139, 92, 246, 0.22);
  border-left: 0;
  border-right: 0;
  padding: 1.25rem 1rem 0.85rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
#fas-rw-panel.fas-rw-panel--open {
  display: flex;
}
.fas-rw-panel-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-bright, #a78bfa);
  margin: 0;
}
.fas-rw-panel-desc {
  font-size: 0.82rem;
  color: rgba(240,240,240,0.7);
  line-height: 1.65;
  margin: 0;
}
.fas-rw-panel-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.fas-rw-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.1rem;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
}
.fas-rw-panel-cta--primary {
  background: #8b5cf6;
  color: #fff;
}
.fas-rw-panel-cta--primary:hover {
  background: #a78bfa;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(139,92,246,0.35);
}
.fas-rw-panel-cta--ghost {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
}
.fas-rw-panel-cta--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #f0f0f0;
}

/* ── Footer "Radio Active" badge ─────────────────────────────────── */
.fas-radio-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(139,92,246,0.75);
  margin-top: 0.55rem;
}
.fas-radio-active-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  flex-shrink: 0;
  animation: fas-rw-pulse 2.4s ease-out infinite;
}

/* ── Mobile adjustments ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .fas-rw-expand-btn { padding: 0.3rem 0.6rem; font-size: 0.62rem; }
  .fas-rw-station    { font-size: 0.7rem; }
}

/* ── Pricing — Apps & Games Section ─────────────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
.apps-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.apps-card:hover {
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.06);
}
.apps-card-icon {
  font-size: 1.65rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}
.apps-card-body { display: flex; flex-direction: column; gap: 0.4rem; }
.apps-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}
.apps-card-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}
.apps-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-bright);
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
  transition: color 0.15s;
}
.apps-card-link:hover { color: var(--gold-bright); }

/* ================================================================
   FLOATING RADIO WIDGET — v2 (full playback + chat + DM)
   ================================================================ */

/* ── Expanded panel ────────────────────────────────────────────── */
#fas-rw-panel {
  display: none;
  flex-direction: column;
  background: rgba(10, 8, 18, 0.98);
  border-top: 1px solid rgba(139,92,246,0.3);
  border-bottom: 1px solid rgba(139,92,246,0.18);
  max-height: 420px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#fas-rw-panel.fas-rw-panel--open { display: flex; }

/* ── Bar layout ─────────────────────────────────────────────────── */
#fas-rw-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0.75rem 0 1rem;
  height: 52px;
  background: rgba(10, 8, 18, 0.98);
  border-top: 1px solid rgba(139,92,246,0.28);
  box-shadow: 0 -6px 32px rgba(0,0,0,0.75), 0 -1px 0 rgba(139,92,246,0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  user-select: none;
}
.fas-rw-bar-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}
.fas-rw-bar-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

/* ── Boombox + live dot + label ─────────────────────────────────── */
.fas-rw-boombox { font-size: 1.05rem; flex-shrink: 0; line-height: 1; }
.fas-rw-label { display: flex; flex-direction: column; min-width: 0; }
.fas-rw-station {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.fas-rw-meta {
  font-size: 0.63rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ── Playback controls in bar ───────────────────────────────────── */
.fas-rw-controls {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
  margin: 0 0.4rem;
}
.fas-rw-ctrl-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
  transition: color 0.15s, background 0.15s;
}
.fas-rw-ctrl-btn:hover { color: var(--purple-bright); background: rgba(139,92,246,0.1); }
.fas-rw-ctrl-btn--play {
  width: 34px;
  height: 34px;
  font-size: 1rem;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.32);
  border-radius: 50%;
  color: var(--purple-bright);
}
.fas-rw-ctrl-btn--play:hover { background: rgba(139,92,246,0.28); }

/* ── Volume ─────────────────────────────────────────────────────── */
.fas-rw-vol-icon {
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--text-3);
  line-height: 1;
  transition: color 0.15s;
}
.fas-rw-vol-icon:hover { color: var(--text-2); }
.fas-rw-vol-slider {
  width: 60px;
  flex-shrink: 0;
  accent-color: var(--purple-bright);
  height: 3px;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .fas-rw-vol-slider { display: none; }
  .fas-rw-station { max-width: 100px; }
}

/* ── Bar icon buttons (chat badge, expand, dismiss) ─────────────── */
.fas-rw-bar-icon-btn {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--text-3); font-size: 0.92rem;
  cursor: pointer; border-radius: 6px;
  font-family: inherit; position: relative;
  transition: color 0.15s, background 0.15s;
}
.fas-rw-bar-icon-btn:hover { color: var(--purple-bright); background: rgba(139,92,246,0.1); }
.fas-rw-expand-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text-3);
  font-size: 0.85rem; cursor: pointer; font-family: inherit;
  transition: all 0.15s;
  flex-shrink: 0;
}
.fas-rw-expand-btn:hover { border-color: rgba(139,92,246,0.3); color: var(--purple-bright); }
.fas-rw-dismiss {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--text-3); font-size: 0.75rem;
  cursor: pointer; border-radius: 50%; font-family: inherit;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.fas-rw-dismiss:hover { color: #f87171; background: rgba(239,68,68,0.1); }

/* ── Badge ──────────────────────────────────────────────────────── */
.fas-rw-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 16px; height: 16px;
  background: var(--purple);
  color: #fff;
  font-size: 0.58rem; font-weight: 900;
  border-radius: 10px;
  padding: 0 3px;
  position: absolute;
  top: 2px; right: 2px;
  pointer-events: none;
}

/* ── Tabs ───────────────────────────────────────────────────────── */
.fas-rw-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.fas-rw-tab {
  flex: 1;
  padding: 0.65rem 0.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  position: relative;
  transition: color 0.15s, border-color 0.15s;
}
.fas-rw-tab:hover { color: var(--text-2); }
.fas-rw-tab--active {
  color: var(--purple-bright);
  border-bottom-color: var(--purple-bright);
}

/* ── Tab bodies ─────────────────────────────────────────────────── */
.fas-rw-tab-body {
  padding: 0.85rem 1rem;
  overflow-y: auto;
  flex: 1;
}

/* ── Station row in panel ───────────────────────────────────────── */
.fas-rw-station-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.fas-rw-st-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  padding: 0.4rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.fas-rw-st-btn:hover { border-color: rgba(139,92,246,0.3); color: var(--text-2); }
.fas-rw-st-btn--active { background: rgba(139,92,246,0.14); border-color: rgba(139,92,246,0.4); color: var(--purple-bright); }
.fas-rw-st-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--purple-bright); flex-shrink: 0; animation: fas-rw-pulse 2.4s ease-out infinite; }
.fas-rw-st-dot--spotify { background: #1DB954; }

/* ── Now playing ────────────────────────────────────────────────── */
.fas-rw-now-playing-label {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 0.2rem;
}
.fas-rw-now-playing-title {
  font-size: 0.82rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.75rem; line-height: 1.4;
}

/* ── Panel playback controls ────────────────────────────────────── */
.fas-rw-panel-ctrl {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-bottom: 0.85rem;
}

/* ── Open link / link buttons ───────────────────────────────────── */
.fas-rw-open-link {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--purple-bright);
  text-decoration: none; letter-spacing: 0.04em;
  border: 1px solid rgba(139,92,246,0.28);
  padding: 0.4rem 0.85rem; border-radius: 8px;
  background: rgba(139,92,246,0.07);
  transition: all 0.15s;
}
.fas-rw-open-link:hover { background: rgba(139,92,246,0.18); border-color: rgba(139,92,246,0.5); }

/* ── Listener note ──────────────────────────────────────────────── */
.fas-rw-listener-note {
  font-size: 0.68rem; color: var(--text-3);
  margin-top: 0.75rem; text-align: center;
}

/* ── Chat feed ──────────────────────────────────────────────────── */
.fas-rw-chat-feed {
  max-height: 160px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding-right: 0.25rem;
}
.fas-rw-chat-msg {
  display: flex; gap: 0.35rem; align-items: flex-start;
  font-size: 0.78rem; line-height: 1.45;
}
.fas-rw-chat-user {
  font-weight: 800; color: var(--purple-bright);
  flex-shrink: 0; font-size: 0.72rem;
}
.fas-rw-chat-text { color: var(--text-2); word-break: break-word; }
.fas-rw-chat-empty, .fas-rw-chat-offline {
  font-size: 0.78rem; color: var(--text-3); text-align: center; padding: 0.75rem 0;
}

/* ── Chat input bar ─────────────────────────────────────────────── */
.fas-rw-chat-bar {
  display: flex; gap: 0.5rem; align-items: center;
}
.fas-rw-chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.8rem;
  padding: 0.5rem 0.7rem;
  outline: none; transition: border-color 0.15s;
}
.fas-rw-chat-input:focus { border-color: rgba(139,92,246,0.45); }
.fas-rw-chat-send {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple); border: none; border-radius: 8px;
  color: #fff; font-size: 0.9rem; cursor: pointer;
  font-family: inherit; flex-shrink: 0;
  transition: background 0.15s;
}
.fas-rw-chat-send:hover { background: var(--purple-bright); }
.fas-rw-chat-gate {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 1rem 0; gap: 0.5rem;
}

/* ── DM message preview items ───────────────────────────────────── */
.fas-rw-msgs-preview { display: flex; flex-direction: column; gap: 0.4rem; }
.fas-rw-msg-item {
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0.5rem 0.65rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.fas-rw-msg-item:hover { border-color: rgba(139,92,246,0.3); }
.fas-rw-msg-item--unread { border-left: 2px solid var(--purple-bright); }
.fas-rw-msg-from { font-size: 0.72rem; font-weight: 800; color: var(--purple-bright); }
.fas-rw-msg-text { font-size: 0.74rem; color: var(--text-2); }

/* ── Spotify info panel (inside radio tab) ──────────────────────── */
.fas-rw-spotify-panel {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 0.75rem 0; text-align: center;
}
