/* === Mentor Program Landing — mentor.css === */
/* Standalone luxury dark page. Gold accent to differentiate from IP Scan red. */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:      #0a0a0c;
    --bg2:     #111114;
    --card:    #16161a;
    --card2:   #1c1c22;

    --gold:    #c9a84c;
    --gold2:   #e8c97a;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-border: rgba(201, 168, 76, 0.25);

    --text:    #f0f0f5;
    --text2:   #a0a0b0;
    --text3:   #60607a;
    --border:  #2a2a35;

    --font: 'Manrope', -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Manrope', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === HEADER === */
.m-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.m-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--text2);
    text-decoration: none;
}
.m-logo span { color: var(--gold); }

.m-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: transparent;
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    color: var(--gold);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: var(--transition);
    cursor: pointer;
}
.m-header-cta:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

/* === HERO === */
.m-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.m-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 30% 80%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.m-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.m-hero-left {
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

.m-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.m-hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.m-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}
.m-hero-title .gold { color: var(--gold); }
.m-hero-title .dim { color: var(--text2); }

.m-hero-sub {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 40px;
}

.m-hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 44px;
}
.m-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.m-stat b {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}
.m-stat span {
    font-size: 12px;
    color: var(--text3);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.m-hero-cta-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold);
    color: #0a0a0c;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-secondary:hover { color: var(--text); }
.btn-secondary svg { opacity: 0.5; }

.m-spots-tag {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text3);
}
.m-spots-dot {
    display: flex;
    gap: 4px;
}
.m-spots-dot span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}
.m-spots-dot span.empty {
    background: var(--border);
}

/* === HERO RIGHT (PHOTO) === */
.m-hero-right {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.m-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.1);
    display: block;
}
.m-hero-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, transparent 30%),
        linear-gradient(0deg, var(--bg) 0%, transparent 25%),
        linear-gradient(180deg, var(--bg) 0%, transparent 15%);
}
.m-hero-photo-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(10,10,12,0.9);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    backdrop-filter: blur(12px);
    max-width: 220px;
}
.m-hero-photo-badge p {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.5;
}
.m-hero-photo-badge strong {
    display: block;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

/* === TRUST STRIP === */
.m-trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--bg2);
    overflow: hidden;
}
.m-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.m-trust-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.m-trust-text b {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.m-trust-text span {
    font-size: 12px;
    color: var(--text3);
}
.m-trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

/* === SECTIONS === */
.m-section {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.m-section-sm {
    padding: 80px 80px;
}

.m-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.m-section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.m-section-desc {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.65;
    max-width: 560px;
}

/* === OFFER CARDS === */
.m-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}
.m-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.m-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.m-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.m-card:hover::before { opacity: 1; }

.m-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 22px;
}
.m-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.m-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
}
.m-card-value {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 12px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

/* === PROGRAM TIMELINE === */
.m-timeline {
    margin-top: 52px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.m-timeline::before {
    content: '';
    position: absolute;
    left: 23px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--border) 100%);
}
.m-tl-item {
    display: flex;
    gap: 28px;
    padding: 0 0 40px 0;
    position: relative;
}
.m-tl-item:last-child { padding-bottom: 0; }
.m-tl-num {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
}
.m-tl-content {
    padding-top: 10px;
    flex: 1;
}
.m-tl-week {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
}
.m-tl-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.m-tl-content p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
}
.m-tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.m-tag {
    padding: 3px 10px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text2);
}

/* === REQUIREMENTS === */
.m-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 52px;
}
.m-req-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.m-req-card:hover {
    border-color: var(--gold-border);
}
.m-req-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.m-req-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.m-req-card p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.5;
}

/* === FORM === */
.m-form-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.m-form-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}
.m-form-inner .m-section-title {
    text-align: center;
}
.m-form-inner .m-section-desc {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 48px;
}

form#mentorForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.m-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.m-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.m-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text3);
}
.m-field input,
.m-field textarea,
.m-field select {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    width: 100%;
    resize: none;
    appearance: none;
}
.m-field input:focus,
.m-field textarea:focus,
.m-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.m-field input::placeholder,
.m-field textarea::placeholder {
    color: var(--text3);
}
.m-field textarea { height: 110px; }

.btn-submit {
    padding: 18px 36px;
    background: var(--gold);
    color: #0a0a0c;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}
.btn-submit:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.m-form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text3);
    margin-top: 8px;
}

#formSuccess {
    display: none;
    text-align: center;
    padding: 48px;
    background: var(--card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
}
#formSuccess .success-icon { font-size: 48px; margin-bottom: 16px; display: block; }
#formSuccess h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}
#formSuccess p { font-size: 15px; color: var(--text2); }

/* === FOOTER === */
.m-footer {
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}
.m-footer p {
    font-size: 13px;
    color: var(--text3);
}
.m-footer a {
    color: var(--text2);
    text-decoration: none;
    transition: var(--transition);
}
.m-footer a:hover { color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .m-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .m-hero-left {
        padding: 100px 32px 60px;
    }
    .m-hero-right {
        height: 400px;
    }
    .m-trust {
        padding: 20px 32px;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .m-trust-divider { display: none; }
    .m-section, .m-section-sm {
        padding: 60px 32px;
    }
    .m-cards { grid-template-columns: 1fr; }
    .m-req-grid { grid-template-columns: 1fr; }
    .m-form-row { grid-template-columns: 1fr; }
    .m-form-inner { padding: 60px 24px; }
    .m-hero-stats { gap: 20px; }
    .m-footer {
        padding: 24px 32px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
