/* Student landing page — mirrors recruiter layout, pink brand */

.stu-hero {
    position: relative;
    padding: 7.5rem 0 5rem;
    background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 45%, #4c1d95 100%);
    color: #fff;
    overflow: hidden;
}

.stu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 15% 30%, rgba(236, 72, 153, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 90% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.stu-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.stu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(165, 180, 252, 0.35);
    font-size: 0.8rem;
    font-weight: 600;
    color: #c7d2fe;
    margin-bottom: 1.25rem;
}

.stu-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.stu-hero-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.stu-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stu-hero-actions .hp-btn-primary {
    box-shadow: 0 8px 28px rgba(236, 72, 153, 0.45);
}

.stu-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.stu-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.stu-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.stu-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.stu-hero-trust i {
    color: #a5b4fc;
}

/* Journey mock */
.stu-mock {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.stu-mock-bar {
    padding: 0.85rem 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.stu-mock-bar i {
    color: #a5b4fc;
}

.stu-mock-body {
    padding: 1.25rem;
}

.stu-mock-journey {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.stu-mock-step {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.stu-mock-step.done {
    background: linear-gradient(90deg, #ec4899, #a855f7);
}

.stu-mock-step.active {
    background: #a5b4fc;
}

.stu-mock-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stu-chat-bubble {
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    max-width: 92%;
}

.stu-chat-bubble.ai {
    background: rgba(99, 102, 241, 0.25);
    color: rgba(255, 255, 255, 0.92);
    border-bottom-left-radius: 4px;
}

.stu-chat-bubble.user {
    background: rgba(236, 72, 153, 0.2);
    color: #fbcfe8;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.stu-skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.stu-skill-bar span {
    display: block;
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, #ec4899, #818cf8);
    border-radius: 999px;
}

.stu-skill-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.35rem;
}

/* Stats */
.stu-stats {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.stu-stats-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.stu-stats-intro h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stu-stats-intro p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

.stu-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stu-stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stu-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Journey timeline */
.stu-journey {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stu-journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.stu-journey-num {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--gradient-vibrant);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
}

.stu-journey-content {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.06);
}

.stu-journey-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stu-journey-content h3 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.stu-journey-content > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stu-journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.stu-journey-list li {
    font-size: 0.88rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.stu-journey-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 0.75rem;
}

.stu-journey-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.08);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Tool cards */
.stu-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stu-tool-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.25s, box-shadow 0.25s;
}

.stu-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.1);
}

.stu-tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stu-tool-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.stu-tool-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Interview confidence */
.stu-confidence {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: center;
}

.stu-confidence-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
}

.stu-confidence-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stu-confidence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stu-confidence-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stu-confidence-list li:last-child {
    border-bottom: none;
}

.stu-confidence-list i {
    color: #a5b4fc;
    margin-top: 0.15rem;
}

.stu-interview-mock {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.08);
}

.stu-interview-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-vibrant);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.stu-interview-mock h4 {
    margin-bottom: 0.35rem;
}

.stu-interview-mock p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.stu-interview-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stu-interview-btns span {
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stu-interview-btns .join {
    background: var(--gradient-vibrant);
    color: #fff;
}

.stu-interview-btns .prep {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

/* FAQ */
.stu-faq {
    max-width: 720px;
    margin: 2.5rem auto 0;
}

.stu-faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.stu-faq-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stu-faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.stu-cta {
    background: linear-gradient(135deg, #312e81 0%, #7c3aed 50%, #db2777 100%);
    padding: 4.5rem 0;
    text-align: center;
    color: #fff;
}

.stu-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.stu-cta p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.stu-cta .hp-btn-primary {
    background: #fff;
    color: #7c3aed;
    -webkit-text-fill-color: #7c3aed;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.stu-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .stu-hero-grid,
    .stu-confidence {
        grid-template-columns: 1fr;
    }

    .stu-tools {
        grid-template-columns: repeat(2, 1fr);
    }

    .stu-journey-list {
        grid-template-columns: 1fr;
    }

    .stu-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stu-tools,
    .stu-stats-grid {
        grid-template-columns: 1fr;
    }

    .stu-journey-step {
        grid-template-columns: 1fr;
    }
}

/* Student signup form */
.stu-signup-hero {
    padding: 6.5rem 0 4rem;
    background: linear-gradient(180deg, #f5f3ff 0%, #fff 50%);
    min-height: 80vh;
}

.stu-signup-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.stu-signup-intro h1 {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.stu-signup-intro > p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.stu-signup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.stu-signup-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.stu-signup-benefits i {
    color: var(--primary-color);
}

.stu-signup-note {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.stu-signup-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.stu-signup-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.08);
}

.stu-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.stu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stu-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.stu-form-group input,
.stu-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.stu-form-group input:focus,
.stu-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.12);
}

.stu-file-upload input[type="file"] {
    padding: 0.6rem;
    background: #fef3f9;
    border-style: dashed;
    border-color: rgba(236, 72, 153, 0.35);
}

.stu-file-hint {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0.4rem 0 0;
}

.stu-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.85rem;
    font-size: 1rem;
}

.stu-alert {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.stu-alert i {
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.stu-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
}

.stu-alert-success i {
    color: #10b981;
}

.stu-alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.stu-alert-error i {
    color: #ef4444;
}

.stu-alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}

.stu-alert p {
    margin: 0.35rem 0 0;
}

@media (max-width: 992px) {
    .stu-signup-layout {
        grid-template-columns: 1fr;
    }

    .stu-form-row {
        grid-template-columns: 1fr;
    }
}
