:root {
  --bg-black: #000000;
  --bg-deep: #020617;
  --bg-ivory: #ffffff;
  --gold-primary: #D4AF37;
  --gold-light: #F9E58B;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
  --platinum: #E5E7EB;
  --text-white: #ffffff;
  --text-dark: #111111;
  --text-muted: #888888;
  --glass-gold: rgba(212, 175, 55, 0.05);
  --glass-white: rgba(255, 255, 255, 0.85);
  --shadow-lavish: 0 50px 100px rgba(0,0,0,0.15);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --tracking-glamour: 0.25em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

/* Lavish Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Red Carpet Buttons */
.btn-lavish {
  padding: 1.5rem 4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: none;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
}

.btn-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Hero Section: Celebrity Spotlight */
.hero-exclusive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.2) sepia(0.1);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-exclusive h1 {
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 2.5rem;
  font-weight: 800;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
}

/* Video Section: Dramatic Frame */
.video-theater {
  background-color: #050510;
  padding: 150px 0;
}

.video-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 100px rgba(212, 175, 55, 0.15);
  border-radius: 30px;
}

/* Lavish Journey Timeline */
.lavish-timeline {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
  color: #000;
}

.timeline-step {
  flex: 1;
  min-width: 25%;
  padding: 5rem 3rem;
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: all 0.6s ease;
}

.timeline-step:hover {
  background: var(--bg-deep);
  color: #fff;
}

.timeline-step .step-num {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.timeline-step:hover .step-num {
  color: rgba(255,255,255,0.05);
}

/* Dashboard: Membership Elite */
.dash-elite {
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
  padding: 5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-lavish);
}

/* Shimmer Effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-text {
  background: linear-gradient(90deg, #fff 0%, var(--gold-primary) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s infinite linear;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-exclusive h1 { font-size: 3.5rem; }
  .timeline-step { min-width: 50%; }
}
.video-frame iframe {
    border-radius: 30px;
}

.video-frame {
    border-radius: 30px;
}
.voice-line {
    opacity: 1 !important;
    margin: 0 !IMPORTANT;
    font-size: 45px !IMPORTANT;
}
.dash-elite h3 {
    color: #000 !important;
}

.dash-elite p {
    color: #000 !important;
}
.logo img {
    width: 250px;
}

/* New Refactored Classes */

/* Navigation */
.glass-nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 12px;
    color: var(--gold-primary);
}

.nav-links-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link-item {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
}

.btn-nav-small {
    padding: 0.8rem 2.5rem;
    font-size: 0.65rem;
}

/* Hero Section */
.hero-content-reveal {
    position: relative;
    z-index: 10;
}

.hero-sub-title {
    color: var(--gold-primary);
    letter-spacing: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 2.5rem;
}

.hero-p-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #ddd;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Video Section */
.video-theater-bg {
    background: #000;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 6rem;
}

.section-badge-gold {
    color: var(--gold-primary);
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.7rem;
}

.section-title-large {
    font-size: 4rem;
    margin-top: 1rem;
    color: #fff;
}

.section-p-muted {
    color: var(--text-muted);
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 30px;
}

.video-player-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Script Sequence */
.script-sequence-bg {
    background: #020617;
    padding: 180px 5%;
}

.text-center-centered {
    text-align: center;
}

.voice-lines-box {
    max-width: 1000px;
    margin: 0 auto;
}

.voice-line-p {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 3rem;
}

.voice-line-active {
    opacity: 1;
}

.voice-line-dim {
    opacity: 0.1;
}

.visualizer-container {
    margin-top: 6rem;
}

.visualizer-bar-gold {
    background: var(--gold-primary);
}

/* Protocol Section */
.protocol-bg-white {
    background: #fff;
    color: #000;
    padding: 150px 0;
}

.protocol-header-left {
    text-align: left;
    max-width: 800px;
    margin-bottom: 6rem;
}

.protocol-label {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 5px;
}

.protocol-h2-black {
    font-size: 4rem;
    color: #000;
    margin-top: 1rem;
}

.protocol-p-secondary {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.protocol-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.card-elite-padded {
    padding: 4rem;
    border-radius: 20px;
}

.card-logo-img {
    width: 80%;
}

.card-sub-p {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.card-sub-p-dark {
    color: #333;
}

.card-desc-p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
}

.card-desc-p-dark {
    color: #222;
}

/* Growth Journey */
.growth-section-padded {
    background: var(--bg-deep);
    padding: 150px 5%;
}

.growth-header-margin {
    margin-bottom: 5rem;
}

.growth-h2-white {
    font-size: 4rem;
    color: #fff;
}

.growth-p-muted {
    color: var(--text-muted);
    max-width: 700px;
    margin-top: 2rem;
}

.stage-desc-p {
    margin-top: 1.5rem;
}

/* Homeless Pathway */
.pathway-section-clean {
    background: #fff;
    padding: 0;
}

.pathway-flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.pathway-media-column {
    flex: 1;
    min-width: 50%;
    position: relative;
    overflow: hidden;
}

.pathway-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pathway-quote-overlay {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    background: rgba(0,0,0,0.8);
    border-left: 5px solid var(--gold-primary);
    padding: 3rem;
    color: #fff;
}

.pathway-quote-h2 {
    font-size: 3rem;
}

.pathway-content-column {
    flex: 1;
    min-width: 50%;
    padding: 10% 8%;
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pathway-badge-gold {
    color: var(--gold-primary);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.7rem;
}

.pathway-p-main {
    font-size: 1.35rem;
    color: #333;
    margin-top: 2rem;
    line-height: 1.8;
}

.pathway-card-black {
    padding: 2rem;
    background: #000;
    border-radius: 0;
    border: none;
    border-left: 3px solid var(--gold-primary);
    margin-top: 3rem;
}

.pathway-card-h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.pathway-card-p-dim {
    font-size: 0.9rem;
    color: #aaa !important;
}

/* Sponsor Portfolio */
.portfolio-section-deep {
    background: #000;
    padding: 150px 5%;
}

.portfolio-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 3rem;
}

.portfolio-title-h2 {
    font-size: 3rem;
    margin-top: 1rem;
    color: #fff;
}

.portfolio-tier-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
}

.portfolio-tier-value {
    color: var(--gold-primary) !important;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted) !important;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: #fff !important;
}

/* Final Invitation */
.invitation-section-centered {
    background: #fff;
    text-align: center;
    padding: 250px 0;
}

.invitation-badge-gold {
    color: var(--gold-primary);
    font-weight: 800;
    letter-spacing: 12px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 2rem;
}

.invitation-h2-black {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #000;
}

.btn-invite-large {
    padding: 2.5rem 8rem;
    font-size: 1rem;
}

/* Footer Section */
.footer-sovereign {
    padding: 8rem 5%;
    background: #000;
    border-top: 1px solid rgba(212,175,55,0.2);
    text-align: center;
}

.footer-logo-text {
    opacity: 0.8;
    margin-bottom: 4rem;
    font-weight: 900;
    letter-spacing: 20px;
    color: var(--gold-primary);
}

.footer-nav-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-nav-link {
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.footer-copyright {
    color: #444;
    font-size: 0.7rem;
    letter-spacing: 2px;
}


/* ============================================================
   SPONSOR FORM PAGE STYLES
   ============================================================ */

/* Hero */
.sponsor-hero-section {
    position: relative;
    background: var(--bg-deep);
    padding: 220px 5% 140px;
    text-align: center;
    overflow: hidden;
}

.sponsor-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.sponsor-hero-content {
    position: relative;
    z-index: 2;
}

.sponsor-hero-h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin: 2rem 0;
    filter: drop-shadow(0 0 40px rgba(212,175,55,0.2));
}

.sponsor-italic {
    font-style: italic;
}

/* Form Section */
.sponsor-form-section {
    background: #000;
    padding: 120px 5%;
}

/* Alert boxes */
.sponsor-alert-success,
.sponsor-alert-error {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 1.5rem 2.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.sponsor-alert-success {
    background: rgba(212,175,55,0.1);
    border-left: 4px solid var(--gold-primary);
    color: var(--gold-light);
}

.sponsor-alert-error {
    background: rgba(220,50,50,0.1);
    border-left: 4px solid #dc3232;
    color: #ff6b6b;
}

/* Two-column wrapper */
.sponsor-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Left info panel */
.sponsor-form-left {
    padding-top: 1rem;
}

.sponsor-side-h2 {
    font-size: 3rem;
    color: #fff;
    margin: 1.5rem 0 2rem;
    line-height: 1.15;
}

.sponsor-side-p {
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.sponsor-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.sponsor-benefit-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    margin-top: 0.55rem;
}

.sponsor-benefit-item p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sponsor-tier-box {
    margin-top: 4rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(212,175,55,0.25);
    border-left: 4px solid var(--gold-primary);
    background: rgba(212,175,55,0.04);
}

.sponsor-tier-name {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.1rem;
    margin: 0.5rem 0 0.4rem;
}

.sponsor-tier-sub {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Right form panel */
.sponsor-form-right {
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.15);
    padding: 4rem;
    border-radius: 4px;
}

.sponsor-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
}

.form-required {
    color: var(--gold-primary);
}

.form-input {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 1.1rem 1.4rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}

.form-input::placeholder {
    color: #444;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    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 d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    cursor: pointer;
}

.form-select option {
    background: #111;
    color: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.sponsor-submit-btn {
    width: 100%;
    padding: 1.6rem;
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.form-disclaimer {
    color: #444;
    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
    .sponsor-form-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .sponsor-hero-h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .sponsor-form-right {
        padding: 2.5rem 1.8rem;
    }

    .sponsor-hero-h1 {
        font-size: 2.8rem;
    }
}
