/* ============================================================
   NAKEDHUSTLE.MEDIA — HYBRID v2026 (Editorial × Neon Heritage)
   The 2017 club-poster energy elevated through editorial typography.
   Foundation: cream + black + oxblood (Esquire/Document Journal canvas)
   Signature: hot pink #FF1493 with subtle neon glow (heritage thread)
   Accent: neon green for selective high-impact moments
   Gilt: elegant secondary
   Type: Playfair Display (display) · Bebas Neue (wordmark) · Caveat (heritage cursive) · Cormorant (italic deck) · Inter (body)
   ============================================================ */

:root {
  --oxblood: #4A0E1A;
  --oxblood-deep: #2D0710;
  --oxblood-light: #6B1B2D;
  --cream: #F5EBDC;
  --cream-light: #FCF6EC;
  --black: #0A0608;
  --black-soft: #1A0F14;
  --black-rich: #050203;
  --gilt: #B8956A;
  --gilt-light: #D4B485;
  --hot-pink: #FF1493;
  --hot-pink-glow: #FF6BB8;
  --neon-green: #39FF14;
  --neon-green-glow: #7FFF5C;
  --ash: #2A2422;
  --text-cream-dim: #C4B8A4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.hidden { display: none !important; }

/* Subtle glow utilities */
.glow-pink-subtle { text-shadow: 0 0 12px rgba(255,20,147,0.5), 0 0 32px rgba(255,20,147,0.25); }
.glow-pink-strong { text-shadow: 0 0 14px var(--hot-pink), 0 0 36px rgba(255,20,147,0.6), 0 0 80px rgba(255,20,147,0.3); }
.glow-green-subtle { text-shadow: 0 0 10px rgba(57,255,20,0.4), 0 0 28px rgba(57,255,20,0.2); }

/* AGE GATE */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, var(--oxblood-deep) 0%, var(--black) 80%);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.age-gate-inner {
  max-width: 580px; text-align: center;
  border: 1px solid var(--oxblood-light);
  padding: 64px 48px;
  background: rgba(10,6,8,0.93);
  box-shadow: 0 0 40px rgba(255,20,147,0.2), inset 0 0 30px rgba(74,14,26,0.4);
}
.age-gate-mark {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 900;
  letter-spacing: 4px;
  color: var(--cream);
  margin-bottom: -8px;
  display: inline-block;
}
.age-gate-mark-2 {
  font-family: 'Caveat', cursive;
  font-size: 56px;
  color: var(--hot-pink);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px var(--hot-pink), 0 0 28px rgba(255,20,147,0.5);
  display: inline-block;
  margin-left: 8px;
  transform: translateY(4px);
}
.age-gate-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 400; font-style: italic;
  color: var(--cream); margin-bottom: 24px;
}
.age-gate-sub {
  font-size: 14px; color: var(--text-cream-dim);
  line-height: 1.7; max-width: 460px; margin: 0 auto 40px;
}
.age-gate-actions {
  display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto 32px;
}
.age-gate-fine {
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--ash); text-transform: uppercase;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
}
.btn-primary {
  background: var(--hot-pink);
  color: var(--cream);
  border-color: var(--hot-pink);
  box-shadow: 0 0 18px rgba(255,20,147,0.5);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--hot-pink);
  box-shadow: 0 0 28px rgba(255,20,147,0.8);
}
.btn-neon-green {
  background: transparent;
  color: var(--neon-green);
  border-color: var(--neon-green);
  text-shadow: 0 0 6px rgba(57,255,20,0.6);
  box-shadow: 0 0 12px rgba(57,255,20,0.3);
}
.btn-neon-green:hover {
  background: var(--neon-green);
  color: var(--black);
  text-shadow: none;
  box-shadow: 0 0 24px rgba(57,255,20,0.8);
}
.btn-ghost {
  background: transparent;
  color: var(--text-cream-dim);
  border-color: var(--ash);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--text-cream-dim);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--oxblood);
}

/* MASTHEAD */
.masthead {
  position: relative; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--oxblood);
}
.masthead-bar {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid var(--ash);
  max-width: 1280px; margin: 0 auto;
}
.issue {
  font-size: 11px; letter-spacing: 3px;
  color: var(--neon-green);
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(57,255,20,0.4);
}
.logo {
  text-align: center;
}
.logo-naked {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900;
  letter-spacing: 7px;
  color: var(--cream);
  display: inline-block;
}
.logo-hustle {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  color: var(--hot-pink);
  font-weight: 700;
  display: inline-block;
  margin-left: 10px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px var(--hot-pink), 0 0 24px rgba(255,20,147,0.6);
  transform: translateY(4px);
}
.logo a { text-decoration: none; }
.member { text-align: right; }
.member a {
  font-size: 11px; letter-spacing: 2.5px;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hot-pink);
  padding-bottom: 4px;
  transition: all 0.3s;
  font-weight: 600;
}
.member a:hover {
  color: var(--hot-pink);
  text-shadow: 0 0 8px rgba(255,20,147,0.5);
}
.nav {
  display: flex; justify-content: center; gap: 48px;
  padding: 16px 32px;
}
.nav a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--text-cream-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.nav a:hover {
  color: var(--hot-pink);
  text-shadow: 0 0 8px rgba(255,20,147,0.5);
}
.nav-founder { color: var(--gilt); font-weight: 500; }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: var(--black);
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.08) saturate(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,20,147,0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,6,8,0.5) 0%, rgba(10,6,8,0.35) 50%, rgba(10,6,8,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 96px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--neon-green);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 0 10px rgba(57,255,20,0.45);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--cream);
  letter-spacing: 6px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 900;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -3px;
  margin-bottom: 0;
}
.hero-headline-2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(56px, 9vw, 124px);
  color: var(--hot-pink);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 32px;
  margin-top: -8px;
  text-shadow:
    0 0 16px var(--hot-pink),
    0 0 40px rgba(255,20,147,0.7),
    0 0 90px rgba(255,20,147,0.4);
}
.hero-deck {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--cream);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* TAGLINE BAR */
.tagline-bar {
  background: linear-gradient(90deg, var(--black-rich) 0%, var(--oxblood-deep) 50%, var(--black-rich) 100%);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
}
.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.tagline-attr {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--hot-pink);
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255,20,147,0.4);
}

/* PILLARS */
.pillars { padding: 120px 0; background: var(--black); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title-light { color: var(--cream); }
.section-deck {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--hot-pink);
  text-align: center;
  margin-bottom: 72px;
  text-shadow: 0 0 10px rgba(255,20,147,0.35);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
}
.pillar {
  background: var(--black);
  padding: 56px 40px;
  transition: all 0.4s ease;
  position: relative;
}
.pillar:hover {
  background: var(--black-soft);
  box-shadow: inset 0 0 60px rgba(255,20,147,0.06);
}
.pillar:hover .pillar-number {
  color: var(--hot-pink);
  text-shadow: 0 0 14px rgba(255,20,147,0.6);
}
.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--oxblood-light);
  margin-bottom: 24px;
  transition: all 0.4s;
  line-height: 1;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.pillar-deck {
  font-size: 15px;
  color: var(--text-cream-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 100px;
}
.pillar-meta {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--neon-green);
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(57,255,20,0.3);
}
.pillar-link {
  color: var(--hot-pink);
  text-decoration: none;
  border-bottom: 1px solid var(--hot-pink);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.pillar-link:hover {
  color: var(--cream);
  border-color: var(--cream);
  text-shadow: 0 0 6px rgba(255,20,147,0.4);
}

/* FOUNDER */
.founder-section {
  background: var(--black-soft);
  padding: 120px 0;
  border-top: 1px solid var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.founder-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) brightness(0.9);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(255,20,147,0.2);
  border: 1px solid var(--hot-pink);
}
.founder-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  color: var(--cream);
  margin: 16px 0 8px;
  letter-spacing: -0.5px;
}
.founder-credit {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--hot-pink);
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255,20,147,0.4);
}
.founder-body {
  font-size: 17px;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 620px;
}
.founder-body em {
  color: var(--hot-pink);
  font-style: italic;
}
.founder-signoff {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  color: var(--hot-pink);
  margin-top: 32px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255,20,147,0.5);
}
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; gap: 48px; } }

/* MEMBERSHIP */
.membership {
  background: radial-gradient(ellipse at center, var(--oxblood-deep) 0%, var(--black-rich) 80%);
  padding: 120px 0;
  text-align: center;
}
.membership-eyebrow { color: var(--hot-pink); text-align: center; text-shadow: 0 0 10px rgba(255,20,147,0.5); }
.membership .section-deck { color: var(--text-cream-dim); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 72px;
  text-align: left;
}
.tier {
  background: var(--black);
  border: 1px solid var(--oxblood-light);
  padding: 48px 32px;
  position: relative;
  transition: all 0.3s;
}
.tier:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 0 30px rgba(255,20,147,0.25);
}
.tier-featured {
  background: linear-gradient(180deg, var(--ash) 0%, var(--black) 100%);
  border-color: var(--hot-pink);
  transform: translateY(-12px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.4),
    0 0 32px rgba(255,20,147,0.3);
}
.tier-name {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--hot-pink);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  text-shadow: 0 0 8px rgba(255,20,147,0.4);
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.tier-period {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-cream-dim);
  font-weight: 300;
  letter-spacing: 0;
  margin-left: 4px;
}
.tier-list {
  list-style: none;
  margin-bottom: 32px;
  min-height: 180px;
}
.tier-list li {
  color: var(--text-cream-dim);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ash);
  padding-left: 20px;
  position: relative;
}
.tier-list li:before {
  content: "·";
  position: absolute; left: 0;
  color: var(--hot-pink);
  font-size: 24px; line-height: 1;
  top: 6px;
  text-shadow: 0 0 6px rgba(255,20,147,0.5);
}
.btn-tier-free, .btn-tier-member, .btn-tier-founder {
  width: 100%; display: block; padding: 14px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  text-align: center; border: 1px solid; font-weight: 600;
}
.btn-tier-free { background: transparent; color: var(--cream); border-color: var(--ash); }
.btn-tier-free:hover { border-color: var(--cream); }
.btn-tier-member { background: var(--hot-pink); color: var(--cream); border-color: var(--hot-pink); box-shadow: 0 0 14px rgba(255,20,147,0.5); }
.btn-tier-member:hover { background: var(--cream); color: var(--hot-pink); }
.btn-tier-founder { background: transparent; color: var(--neon-green); border-color: var(--neon-green); text-shadow: 0 0 6px rgba(57,255,20,0.5); }
.btn-tier-founder:hover { background: var(--neon-green); color: var(--black); text-shadow: none; }

/* NEWSLETTER */
.newsletter {
  background: var(--black);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--oxblood);
}
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 400;
  color: var(--cream);
  margin: 16px 0 16px;
}
.newsletter-deck {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--hot-pink);
  margin-bottom: 48px;
  text-shadow: 0 0 10px rgba(255,20,147,0.4);
}
.newsletter-form {
  display: flex; gap: 12px;
  margin-bottom: 16px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--ash);
  color: var(--cream);
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--hot-pink);
  box-shadow: 0 0 14px rgba(255,20,147,0.3);
}
.newsletter-input::placeholder { color: var(--ash); letter-spacing: 1px; }
.newsletter-fine {
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 540px) { .newsletter-form { flex-direction: column; } }

/* FOOTER */
.footer {
  background: var(--black-rich);
  padding: 80px 0 32px;
  border-top: 1px solid var(--hot-pink);
  box-shadow: 0 -2px 24px rgba(255,20,147,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 5px;
  color: var(--cream);
  margin-bottom: 4px;
  display: inline-block;
}
.footer-logo-2 {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--hot-pink);
  display: inline-block;
  margin-left: 6px;
  text-shadow: 0 0 8px rgba(255,20,147,0.5);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-cream-dim);
  margin-top: 12px;
}
.footer-h {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--hot-pink);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(255,20,147,0.3);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-cream-dim);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-fine {
  text-align: center;
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 1.5px;
  border-top: 1px solid var(--ash);
  padding-top: 32px;
  text-transform: uppercase;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav { flex-wrap: wrap; gap: 20px; }
  .masthead-bar { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .member { text-align: center; }
}
