/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Mode Color Palette */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;

    /* Brand Colors */
    --instagram-gradient-start: #833ab4;
    --instagram-gradient-mid: #fd1d1d;
    --instagram-gradient-end: #fcb045;
    --tiktok-cyan: #00f2ea;
    --tiktok-pink: #ff0050;
    --youtube-red: #ff0000;

    /* Hot Pink Luxury Accent */
    --hot-pink: #ff006e;
    --hot-pink-glow: rgba(255, 0, 110, 0.6);
    --hot-pink-soft: rgba(255, 0, 110, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* Navbar Height */
    --nav-height: 70px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000000;
    min-height: 100vh;
    min-height: 100dvh;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   BACKGROUND LAYERS
   ============================================ */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center 25%;
    z-index: 0;
    pointer-events: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
}

.nav-logo {
    font-weight: 900;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-back-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #ffffff;
}


/* ============================================
   CONTENT CONTAINER
   ============================================ */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 35vh; /* Pushes content down to under the head/chest area */
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 var(--spacing-md);
}

.handle {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bio {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================
   ============================================ */
.form-wrapper {
    position: relative;
    z-index: 10;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 5rem;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.form-container {
    width: 100%;
    max-width: 580px;
    padding: 0 var(--spacing-md);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-label {
    display: block;
    color: var(--hot-pink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--hot-pink);
    box-shadow: 0 0 15px var(--hot-pink-soft);
}

.form-group textarea {
    resize: vertical;
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.radio-item input[type="radio"] {
    accent-color: var(--hot-pink);
    transform: scale(1.2);
}

.radio-label {
    font-weight: 500;
}

.radio-item:has(input:checked) {
    background: rgba(255, 0, 110, 0.1);
    border-color: var(--hot-pink);
}

/* Submit Section */
.form-submit {
    margin-top: 3rem;
}

.submit-btn {
    width: 100%;
    background: var(--hot-pink);
    color: #ffffff;
    border: none;
    padding: 1.25rem;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--hot-pink-soft);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--hot-pink-glow);
    filter: brightness(1.1);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-content {
    text-align: center;
    padding: 4rem 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.return-home {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.return-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cascading stagger for form groups */
.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.15s;
}

.form-group:nth-child(3) {
    animation-delay: 0.2s;
}

.form-group:nth-child(4) {
    animation-delay: 0.25s;
}

.form-group:nth-child(5) {
    animation-delay: 0.3s;
}

.form-group:nth-child(6) {
    animation-delay: 0.35s;
}

.form-group:nth-child(7) {
    animation-delay: 0.4s;
}

.form-group:nth-child(8) {
    animation-delay: 0.45s;
}

.form-group:nth-child(9) {
    animation-delay: 0.5s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   MULTI-STEP FORM STYLES
   ============================================ */
.progress-bar-container {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--hot-pink);
    box-shadow: 0 0 10px var(--hot-pink-glow);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-steps-wrapper {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hint-btn {
    background: none;
    border: none;
    padding: 0;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
    cursor: pointer;
    font-family: inherit;
    display: block;
    pointer-events: auto !important;
    z-index: 100;
}

.hint-btn strong {
    color: #ffffff;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: monospace;
}

.hint-btn:hover {
    opacity: 1;
}

/* Next Button for each step */
.next-btn {
    display: inline-flex;
    align-items: center;
    background: var(--hot-pink);
    color: #ffffff;
    border: none;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--hot-pink-soft);
    pointer-events: auto !important;
    z-index: 100;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--hot-pink-glow);
}

/* Nav Controls (Bottom Arrows) */
.nav-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 9999;
    pointer-events: auto !important;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--hot-pink);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto !important;
}

.control-btn:hover {
    transform: scale(1.05);
    background: #ff1a82;
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn:disabled {
    opacity: 0.3;
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    transform: none;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .form-wrapper {
        padding-top: calc(var(--nav-height) + 2rem);
    }

    .form-header h1 {
        font-size: 1.8rem;
    }

    .form-step.active {
        margin-bottom: 5rem;
        /* Space for nav controls */
    }

    .nav-controls {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .control-btn {
        width: 50px;
        height: 50px;
    }

    .next-btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem;
        font-size: 1.2rem;
        touch-action: manipulation;
    }

    .hint {
        display: none;
        /* Hide keyboard hints on mobile */
    }

    /* Prevent accidental zoom on mobile inputs */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Ensure fixed layers don't intercept taps */
    .hero-bg,
    .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}
}
/* ============================================
   SOCIAL LINKS SECTION
   ============================================ */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
    justify-content: center;
}

.button-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.social-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-button:hover .icon {
    transform: scale(1.1);
}

/* Brand Specific Colors on Hover/Active */
.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.tiktok:hover {
    border-color: #00f2ea;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}

.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.apply-cta {
    background: rgba(255, 0, 110, 0.15);
    border-color: var(--hot-pink);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.2);
}

.apply-cta:hover {
    background: var(--hot-pink);
    box-shadow: 0 0 25px var(--hot-pink-glow);
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */
@media (max-width: 600px) {
    .links-section {
        padding: 0 1.5rem;
        gap: 0.85rem;
    }

    .social-button {
        padding: 1.2rem;
    }

    .button-text {
        font-size: 1.2rem;
    }

    /* Enforce Icon Size constraints for Mobile */
    .icon {
        width: 40px !important;
        height: 40px !important;
        max-width: 60px;
        min-width: 40px;
        /* Ensure specific icons don't overflow */
        flex-shrink: 0; 
    }
}

/* ============================================
   NEW PREMIUM HERO SECTION
   ============================================ */
.hero-container {
    max-width: 100% !important;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 55px !important; /* Under navbar */
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 600px;
    padding: 0 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.top-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 1.2rem;
    font-family: inherit;
}

.headline {
    font-size: clamp(2.2rem, 8vw, 3.8rem) !important;
    font-weight: 900 !important;
    line-height: 1.1;
    margin-bottom: 1.5rem !important;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    letter-spacing: -0.01em;
}

.subtext {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, #ff2d75 0%, #ff6b9a 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(255, 45, 117, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.hero-button:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 45, 117, 0.5), 
                0 0 30px rgba(255, 45, 117, 0.3);
    filter: brightness(1.05);
}

.hero-button:active {
    transform: scale(0.98);
}

/* Glass shine effect */
.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.hero-button:hover::before {
    left: 100%;
}

@media (max-width: 600px) {
    .hero-container {
        padding-top: 70px !important;
    }
    
    .hero-button {
        width: calc(100% - 3rem);
        margin: 0 1.5rem;
    }
    
    .headline {
        margin-bottom: 1.2rem !important;
    }
}
