/* Pluto CSS - Modern Swiss / Minimal Corporate Theme (Personalized for Ayush) */
:root {
  --bg-primary: #FED451;
  --bg-secondary: #FEBE3E;
  --text-primary: #111417;
  --surface: #FDFEFD;
  --surface-alt: #E7E7E7;
  
  --font-family: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* 100vh lock with comfortable zoom */
html, body {
    height: 100vh;
    overflow: hidden; 
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Abstract Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: var(--bg-secondary);
}

.shape-1 {
    width: 800px;
    height: 800px;
    right: -150px;
    top: -100px;
    opacity: 0.6;
}

.shape-2 {
    width: 400px;
    height: 400px;
    right: 250px;
    bottom: -50px;
    opacity: 0.4;
}

.shape-3 {
    width: 600px;
    height: 600px;
    right: 40vw;
    top: 10%;
    opacity: 0.3;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    width: 100%;
    max-width: 1280px; /* Reduced from 1600px to fix zoomed out feel */
    margin: 0 auto;
    position: relative;
    z-index: 10;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--text-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-pill {
    background-color: var(--surface);
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(17, 20, 23, 0.05);
    font-size: 16px;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(17, 20, 23, 0.1);
}

.btn-large {
    font-size: 18px;
    padding: 20px 40px;
}

.btn-transparent {
    background-color: transparent;
    box-shadow: none;
    border: 2px solid transparent;
}

.btn-transparent:hover {
    box-shadow: none;
    background-color: rgba(253, 254, 253, 0.3);
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    width: 100%;
    max-width: 1280px; /* Reduced from 1600px */
    margin: 0 auto;
    flex: 1;
    position: relative;
    z-index: 5;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-left h1 {
    font-size: 76px; /* Increased to feel more prominent */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-left p {
    font-size: 20px; /* Increased slightly */
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 48px;
    color: rgba(17, 20, 23, 0.85);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Right - Geometric Composition */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 600px;
}

/* Cards */
.composition-card {
    background-color: var(--surface);
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(17, 20, 23, 0.08);
}

.card-main {
    width: 440px; /* Increased size to feel more natural on desktop */
    padding: 32px;
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.avatar-group {
    display: flex;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--surface);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.company-logo:first-child {
    margin-left: 0;
}

.badge {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background-color: var(--surface-alt);
    margin-bottom: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.job-item:last-child {
    margin-bottom: 0;
}

.job-item:hover {
    background-color: var(--bg-primary);
    transform: scale(1.02);
}

.job-icon {
    width: 52px;
    height: 52px;
    background-color: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.job-info {
    flex: 1;
}

.job-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.job-info span {
    font-size: 14px;
    color: rgba(17, 20, 23, 0.7);
    font-weight: 500;
}

.job-action {
    width: 36px;
    height: 36px;
    background-color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-floating {
    position: absolute;
    bottom: 20px;
    left: -20px; /* Pushed left slightly for depth */
    padding: 24px 28px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.floating-text span {
    font-size: 14px;
    color: rgba(17, 20, 23, 0.7);
    font-weight: 500;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Extra safety for smaller laptop screens to PREVENT scroll */
@media (max-height: 800px) {
    .hero-left h1 { font-size: 64px; margin-bottom: 16px; }
    .hero-left p { font-size: 18px; margin-bottom: 32px; }
    .card-main { width: 380px; padding: 24px; }
    .navbar { height: 80px; }
}

/* Tablets & Mobile: Disable 100vh lock since elements have to stack */
@media (max-width: 1024px) {
    html, body {
        height: auto;
        overflow: auto;
        overflow-x: hidden;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 60px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links { display: none; }
    
    .hero-right {
        width: 100%;
        height: auto;
        max-height: none;
    }
    
    .card-floating {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
    }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .navbar { padding: 16px 20px; height: 80px; }
    .logo { font-size: 24px; }
    .logo-icon { width: 40px; height: 40px; font-size: 24px; }
    
    .hero-section { padding: 20px; gap: 40px; }
    .hero-left h1 { font-size: 48px; margin-bottom: 12px; }
    .hero-left p { font-size: 16px; }
    
    .hero-buttons { flex-direction: column; width: 100%; gap: 12px; }
    .hero-buttons .btn { width: 100%; }
    
    .card-main { width: 100%; max-width: 380px; padding: 20px; }
    .job-item { padding: 12px; }
    .job-icon { width: 40px; height: 40px; }
    
    .modal-overlay { padding: 16px; }
    .login-modal-box { padding: 24px; border-radius: 16px; }
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 20, 23, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-box {
    background-color: var(--surface);
    width: 100%;
    max-width: 440px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(17, 20, 23, 0.15);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .login-modal-box {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.close-btn {
    background: var(--surface-alt);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.close-btn:hover {
    background-color: var(--bg-primary);
    transform: rotate(90deg);
}

.login-form .input-group {
    margin-bottom: 24px;
}

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.login-form input {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--surface-alt);
    background-color: var(--surface-alt);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.login-form input:focus {
    border-color: var(--bg-primary);
    background-color: var(--surface);
}

.login-form input::placeholder {
    color: rgba(17, 20, 23, 0.4);
}
