/**
 * AsiaWorker — static site styles (edit this file without running npm build).
 * Loaded from /css/site.css via asset().
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --aw-text: #0f172a;
    --aw-muted: #64748b;
    --aw-border: #e2e8f0;
    --aw-bg: #f8fafc;
    --aw-white: #ffffff;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--aw-text);
    background: var(--aw-bg);
}

main {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}
.menu-link-active{
    color :white !important
}
img,
svg {
    max-width: 100%;
    height: auto;
}

/* ------------------------------------------------------------------------- */
/* Footer                                                                    */
/* ------------------------------------------------------------------------- */

.site-footer {
    border-top: 1px solid var(--aw-border);
    background: var(--aw-white);
    color: var(--aw-text);
}

.site-footer__inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem;
}

.site-footer__grid {
    display: grid;
    gap: 2.5rem 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.site-footer__brand-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--aw-text);
}

.site-footer__intro {
    margin: 0.75rem 0 0;
    max-width: 15rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--aw-muted);
}

.site-footer__col-title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--aw-text);
}

.site-footer__links {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__link {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--aw-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
    color: var(--aw-text);
    outline: none;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--aw-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--aw-muted);
}

@media (min-width: 640px) {
    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.site-footer__copyright {
    margin: 0;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__social a {
    font-size: 0.75rem;
    color: var(--aw-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    color: var(--aw-text);
    outline: none;
}

/* ------------------------------------------------------------------------- */
/* Home banner — demo panel + dark form                                       */
/* ------------------------------------------------------------------------- */

.aw-banner-card {
    border: 1px solid var(--aw-border) !important;
    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.08);
}

/* Active tab = white pill (Tailwind adds .bg-white); enforce full pill radius */
.aw-banner-card .inline-flex.rounded-full.bg-slate-100 > .banner-tab.bg-white {
    border-radius: 100px;
}

.aw-banner-card__kicker {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--aw-muted);
}

.aw-banner-card__heading {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--aw-text);
}

@media (min-width: 576px) {
    .aw-banner-card__heading {
        font-size: 1.75rem;
    }
}

/* Dark form shell */
.aw-banner-dark {
    padding: 1.75rem 1.5rem 2rem;
    color: #ffffff;
    background: #02092b;
    border-radius: 1.5rem;
}

@media (min-width: 576px) {
    .aw-banner-dark {
        padding: 2.25rem 2rem 2.25rem;
    }
}

.aw-banner-dark__eyebrow {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.aw-banner-dark__title {
    margin: 0;
    font-size: 1.625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

@media (min-width: 576px) {
    .aw-banner-dark__title {
        font-size: 1.875rem;
    }
}

/* Form inputs: vertical space between fields (company + candidate) */
.aw-banner-input-stack {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 0.75rem;
}

.aw-banner-input {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: inherit;
    line-height: 1.5;
    color: #ffffff;
    background: #0a1034;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 8px;
    outline: none;
    box-shadow: none;
}

.aw-banner-input::placeholder {
    color: #94a3b8;
}

.aw-banner-input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.aw-banner-submit {
    display: block;
    width: 100%;
    margin: 1.5rem 0 0;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.5;
    color: #0f172a;
    background: #ffffff;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.aw-banner-submit:hover {
    background: #f1f5f9;
}

.aw-banner-submit:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

/*
 * Do NOT define a global `.hidden { display: none !important }` here — it breaks
 * Tailwind responsive utilities on the header (e.g. `hidden lg:flex`, `hidden lg:inline-flex`).
 */

/* ------------------------------------------------------------------------- */
/* Jobs board (/jobs) — Bootstrap + scoped tokens                             */
/* ------------------------------------------------------------------------- */

.aw-auth-page .btn-primary,
.aw-contact-page .btn-primary {
    background-color: #0284c7;
    border-color: #0284c7;
}

.aw-auth-page .btn-primary:hover,
.aw-contact-page .btn-primary:hover {
    background-color: #0369a1;
    border-color: #0369a1;
}

/* ------------------------------------------------------------------------- */
/* About page (/about) — self-contained (works with or without Tailwind/Vite) */
/* ------------------------------------------------------------------------- */

.about-page {
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

.about-page__inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.about-page__hero {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

@media (min-width: 1024px) {
    .about-page__hero {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

.about-page__hero-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-page__hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3rem;
    }
}

.about-page__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0284c7;
}

.about-page__title {
    margin: 0;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-page__title-accent {
    color: #0284c7;
}

.about-page__lead {
    margin: 1.5rem 0 0;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #475569;
    max-width: 38rem;
}

.about-page__text {
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
    max-width: 38rem;
}

.about-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.about-page__btn--primary {
    background: #0284c7;
    border-color: #0284c7;
    color: #fff;
}

.about-page__btn--primary:hover {
    background: #0369a1;
    border-color: #0369a1;
    color: #fff;
}

.about-page__btn--outline {
    background: #fff;
    border-color: #cbd5e1;
    color: #1e293b;
}

.about-page__btn--outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.about-page__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
    min-height: 0;
}

@media (min-width: 1024px) {
    .about-page__gallery {
        gap: 1rem;
    }
}

.about-page__gallery-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

@media (min-width: 1024px) {
    .about-page__gallery-col {
        gap: 1rem;
    }
}

.about-page__figure {
    margin: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    background: #e2e8f0;
}

.about-page__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__figure--tall {
    min-height: 17rem;
}

@media (min-width: 1024px) {
    .about-page__figure--tall {
        min-height: 28rem;
    }
}

.about-page__figure--short {
    flex-shrink: 0;
    height: 10rem;
}

@media (min-width: 640px) {
    .about-page__figure--short {
        height: 11rem;
    }
}

@media (min-width: 1024px) {
    .about-page__figure--short {
        height: 12rem;
    }
}

.about-page__figure--flex {
    flex: 1 1 auto;
    min-height: 10rem;
}

.about-page__band {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.about-page__band-inner {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

@media (min-width: 1024px) {
    .about-page__band-inner {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.about-page__columns {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .about-page__columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3rem;
    }
}

.about-page__col-title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
}

.about-page__col-text {
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
}

.about-page__split-wrap {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

@media (min-width: 1024px) {
    .about-page__split-wrap {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

.about-page__split {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-page__split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3rem;
    }
}

.about-page__split-media {
    margin: 0;
    order: 2;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    background: #e2e8f0;
    min-height: 16rem;
}

@media (min-width: 1024px) {
    .about-page__split-media {
        order: 1;
        min-height: 20rem;
    }
}

.about-page__split-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 16rem;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .about-page__split-media img {
        min-height: 20rem;
    }
}

.about-page__split-body {
    order: 1;
}

@media (min-width: 1024px) {
    .about-page__split-body {
        order: 2;
    }
}

.about-page__split-heading {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-page__list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #334155;
}

.about-page__list li {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.about-page__list li:first-child {
    margin-top: 0;
}

.about-page__list-dot {
    flex-shrink: 0;
    width: 0.375rem;
    height: 0.375rem;
    margin-top: 0.35rem;
    border-radius: 9999px;
    background: #0ea5e9;
}

.about-page__cta-outer {
    padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
    .about-page__cta-outer {
        padding-bottom: 5.5rem;
    }
}

.about-page__cta {
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    padding: 2rem 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .about-page__cta {
        padding: 3rem 2.5rem;
    }
}

.about-page__cta-eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #64748b;
}

.about-page__cta-title {
    margin: 0.75rem 0 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-page__cta-text {
    margin: 0.75rem auto 0;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
}

.about-page__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.about-page__cta-actions .about-page__btn {
    margin-top: 0;
}

.aw-jobs-page {
    --aw-jobs-border: #e5e7eb;
    --aw-jobs-primary: #0284c7;
    --aw-jobs-primary-hover: #0369a1;
    --aw-jobs-green-bg: #ecfdf5;
    --aw-jobs-green-text: #065f46;
    --aw-jobs-purple-bg: #f5f3ff;
    --aw-jobs-purple-text: #5b21b6;
    --aw-jobs-grey-bg: #f1f5f9;
    --aw-jobs-grey-text: #475569;
}

.aw-jobs-page .aw-jobs-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--aw-jobs-primary) !important;
}

.aw-jobs-page .aw-jobs-input {
    font-size: 0.9375rem;
}

.aw-jobs-page .aw-jobs-btn-find {
    background-color: var(--aw-jobs-primary);
    border-color: var(--aw-jobs-primary);
}

.aw-jobs-page .aw-jobs-btn-find:hover {
    background-color: var(--aw-jobs-primary-hover);
    border-color: var(--aw-jobs-primary-hover);
}

.aw-jobs-page .btn-primary {
    background-color: var(--aw-jobs-primary);
    border-color: var(--aw-jobs-primary);
}

.aw-jobs-page .btn-primary:hover {
    background-color: var(--aw-jobs-primary-hover);
    border-color: var(--aw-jobs-primary-hover);
}

.aw-jobs-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.95rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--aw-jobs-grey-text);
    background: #fff;
    border: 1px solid var(--aw-jobs-border);
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.aw-jobs-filter-pill:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

.aw-jobs-filter-pill.is-active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.aw-jobs-list-scroll {
    min-height: 0;
}

@media (min-width: 992px) {
    .aw-jobs-list-scroll {
        max-height: calc(100vh - 13.5rem);
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 0.25rem;
    }
}

.aw-jobs-card {
    border: 1px solid var(--aw-jobs-border) !important;
    border-radius: 0.75rem !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    color: inherit;
}

.aw-jobs-card:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.aw-jobs-card.is-selected {
    border-color: var(--aw-jobs-primary) !important;
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
    background-color: #f0f9ff;
}

.aw-jobs-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aw-badge-location {
    background: var(--aw-jobs-grey-bg) !important;
    color: var(--aw-jobs-grey-text) !important;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.aw-badge-salary {
    background: var(--aw-jobs-green-bg) !important;
    color: var(--aw-jobs-green-text) !important;
    font-weight: 600;
}

.aw-badge-type {
    background: var(--aw-jobs-purple-bg) !important;
    color: var(--aw-jobs-purple-text) !important;
    font-weight: 600;
}

.aw-badge-type-neutral {
    background: #f1f5f9 !important;
    color: #334155 !important;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.aw-badge-featured-sm {
    background: #e0f2fe !important;
    color: #075985 !important;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.aw-badge-featured-detail {
    background: #0284c7 !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.8rem;
}

.aw-jobs-info-tile {
    border-color: var(--aw-jobs-border) !important;
}

.aw-jobs-perk {
    border-color: var(--aw-jobs-border) !important;
}

.aw-jobs-footnote {
    background: #02092b;
}

.aw-jobs-detail .btn-outline-secondary {
    border-color: var(--aw-jobs-border);
    color: #334155;
}

.aw-jobs-detail .btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}
