@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --color-teal: #09bda4;
    --color-teal-dark: #0f766e;
    --color-teal-light: #14c7be;
    --color-teal-alpha: rgba(9, 189, 164, 0.08);
    --color-teal-glow: rgba(9, 189, 164, 0.25);
    --color-primary: #0284c7;
    --color-primary-dark: #0369a1;
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-hover: #09bda4;
    --text-title: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --tag-tech-bg: #e0f2fe;
    --tag-tech-color: #0284c7;
    --tag-design-bg: #fef3c7;
    --tag-design-color: #d97706;
    --tag-product-bg: #fce7f3;
    --tag-product-color: #db2777;
    --tag-marketing-bg: #f3e8ff;
    --tag-marketing-color: #9333ea;
    --tag-hr-bg: #ccfbf1;
    --tag-hr-color: #0f766e;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 36px -4px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 25px rgba(9, 189, 164, 0.2);
    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
button, input, select { font: inherit; }
img { max-width: 100%; display: block; }

.hero-wrapper {
    position: relative;
    padding: 72px 24px 52px 24px;
    background: radial-gradient(circle at 50% 0%, rgba(9, 189, 164, 0.07) 0%, transparent 70%);
    text-align: center;
    overflow: hidden;
}
.hero-glow-blob {
    position: absolute;
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(9, 189, 164, 0.1) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    cursor: pointer;
    user-select: none;
}
.brand-logo {
    width: 260px;
    max-width: 70vw;
    height: auto;
    object-fit: contain;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-title);
    margin-bottom: 16px;
    line-height: 1.18;
}
.hero-title-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #09bda4 60%, #0284c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.search-filter-section {
    max-width: 640px;
    margin: 24px auto 36px auto;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}
.search-box-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 6px 8px 6px 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-light);
}
.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 9px 12px 9px 36px;
    font-size: 0.88rem;
    color: var(--text-title);
    outline: none;
}
.search-input::placeholder { color: var(--text-light); }
.search-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}
.search-select {
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-body);
    outline: none;
    cursor: pointer;
}
.filter-pills-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}
.filter-pill {
    font-size: 0.74rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.filter-pill:hover { border-color: var(--color-teal); color: var(--color-teal-dark); }
.filter-pill.active {
    background: linear-gradient(135deg, #09bda4 0%, #0d9488 100%);
    border-color: #09bda4;
    color: #ffffff;
    box-shadow: 0 3px 10px var(--color-teal-glow);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    width: 100%;
}
.section-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}
.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-title);
    letter-spacing: -0.4px;
}
.section-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #09bda4, #0284c7);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(9, 189, 164, 0.4);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(9, 189, 164, 0.1);
}
.job-card:hover::before { opacity: 1; }
.job-card-header { margin-bottom: 16px; }
.job-card-top-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.job-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}
.tag-tech { background: var(--tag-tech-bg); color: var(--tag-tech-color); }
.tag-design { background: var(--tag-design-bg); color: var(--tag-design-color); }
.tag-product { background: var(--tag-product-bg); color: var(--tag-product-color); }
.tag-marketing { background: var(--tag-marketing-bg); color: var(--tag-marketing-color); }
.tag-hr { background: var(--tag-hr-bg); color: var(--tag-hr-color); }
.job-posted-time {
    font-size: 0.72rem;
    color: var(--text-light);
    font-family: var(--font-mono);
}
.job-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 10px;
    line-height: 1.3;
}
.job-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 20px;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-light);
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.meta-icon {
    width: 15px;
    height: 15px;
    color: var(--color-teal-dark);
}
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
}
.btn-detail {
    background: #f8fafc;
    color: var(--text-body);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 11px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-detail:hover {
    background: #ffffff;
    border-color: var(--color-teal);
    color: var(--color-teal-dark);
}
.btn-apply {
    background: linear-gradient(135deg, #09bda4 0%, #0f766e 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 11px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    box-shadow: 0 4px 12px var(--color-teal-alpha);
}
.btn-apply:hover {
    background: linear-gradient(135deg, #14c7be 0%, #09bda4 100%);
    box-shadow: 0 6px 18px var(--color-teal-glow);
    transform: translateY(-1px);
}

.perks-section {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 70px 24px;
    margin-top: 40px;
}
.perks-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px auto;
}
.perks-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-title);
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}
.perks-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.perk-card {
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition-fast);
}
.perk-card:hover { transform: translateY(-4px); border-color: var(--color-teal); }
.perk-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(9, 189, 164, 0.15), rgba(2, 132, 199, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-dark);
    margin-bottom: 16px;
}
.perk-title { font-size: 1.05rem; font-weight: 700; color: var(--text-title); margin-bottom: 8px; }
.perk-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.process-section {
    padding: 70px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
}
.process-step-num {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 8px;
}
.process-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 6px;
}
.process-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 38px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    animation: modalUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalUp {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-surface);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
}
.modal-job-header { margin-bottom: 22px; padding-right: 36px; }
.modal-job-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-title);
    margin-top: 8px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.modal-job-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.modal-section-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-title);
    margin-top: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.modal-list { padding-left: 20px; color: var(--text-body); font-size: 0.92rem; line-height: 1.65; }
.modal-list li { margin-bottom: 8px; }
.modal-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #09bda4 0%, #0f766e 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 6px 20px var(--color-teal-glow);
}
.application-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 12px;
}
.application-fields input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
}
.application-fields input:focus {
    border-color: #09bda4;
    box-shadow: 0 0 0 2px rgba(9, 189, 164, 0.12);
}
.dropzone {
    border: 2px dashed #09bda4;
    background: rgba(9, 189, 164, 0.04);
    border-radius: var(--radius-lg);
    padding: 44px 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-bottom: 20px;
}
.dropzone:hover, .dropzone.drag-over {
    background: rgba(9, 189, 164, 0.1);
    border-color: #0d9488;
    box-shadow: 0 0 25px var(--color-teal-alpha);
}
.dropzone-icon-bg {
    width: 58px;
    height: 58px;
    background: rgba(9, 189, 164, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: #0f766e;
}
.dropzone-title { font-size: 1.15rem; font-weight: 800; color: var(--text-title); margin-bottom: 6px; }
.dropzone-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.dropzone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-teal-dark);
    background: var(--color-teal-alpha);
    border: 1px solid rgba(9, 189, 164, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-full);
}
.file-input { display: none; }
.selected-file-info {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #0f766e;
    font-weight: 700;
    background: #ecfdf5;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid #a7f3d0;
}
.file-error-info {
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: #ef4444;
    font-weight: 600;
}
.success-modal-body { text-align: center; padding: 10px; }
.success-badge-circle {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(9, 189, 164, 0.15), rgba(16, 185, 129, 0.2));
    border: 2px solid var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--color-teal-dark);
    box-shadow: 0 0 24px var(--color-teal-glow);
}
.success-title { font-size: 1.8rem; font-weight: 800; color: var(--text-title); margin-bottom: 8px; }
.success-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.55; }

.footer {
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    background-color: #ffffff;
    padding: 36px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-link { color: var(--text-muted); text-decoration: none; font-weight: 500; }
.footer-link:hover { color: var(--color-teal-dark); }

@media (max-width: 1024px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } .perks-grid { grid-template-columns: repeat(2, 1fr); } .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
    .hero-title { font-size: 2rem; }
    .jobs-grid, .perks-grid, .process-grid { grid-template-columns: 1fr; }
    .section-header-wrap { flex-direction: column; align-items: flex-start; }
    .application-fields { grid-template-columns: 1fr; }
}
