
:root {
    /* Backgrounds */
    --bg-primary: #09090B;
    --bg-secondary: #050506;
    --bg-card: #18181B;
    --bg-card-hover: #1f1f23;

    /* Brand Colors */
    --emerald: #10B981;
    --emerald-light: #34D399;
    --emerald-dark: #059669;
    --emerald-glow: rgba(16, 185, 129, 0.15);
    --emerald-ghost: rgba(16, 185, 129, 0.06);

    /* Text */
    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-muted: rgba(255, 255, 255, 0.35);

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);
    --border-emerald: rgba(16, 185, 129, 0.2);

    /* Status */
    --success: #4ade80;
    --warning: #fbbf24;
    --error: #f87171;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}
code, .mono {
    font-family: 'JetBrains Mono', monospace;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.container--narrow { max-width: 800px; }
.section { padding: var(--space-3xl) var(--space-lg); }
.section__header { text-align: center; margin-bottom: var(--space-2xl); }
.section__title { font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-sm); }
.section__subtitle { color: var(--text-secondary); font-size: 1.1rem; }

.header {
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}
.header__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg);
    height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { width: 36px; height: 36px; }
.logo__text { font-family: 'Lexend', sans-serif; font-size: 18px; font-weight: 700; color: #FAFAFA; }
.logo__text-accent { color: #10B981; font-weight: 700; }
.nav { display: flex; align-items: center; gap: var(--space-xl); }
.nav__link { color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; transition: color var(--transition-fast); }
.nav__link:hover { color: var(--emerald-light); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--space-sm); }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: var(--transition-fast); }

.mobile-nav {
    display: none; position: fixed; top: 0; right: -100%; width: 280px;
    height: 100vh; background: var(--bg-card); z-index: 200;
    padding: var(--space-xl); transition: right var(--transition-base);
}
.mobile-nav.active { right: 0; }
.mobile-nav__overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 150; opacity: 0; transition: opacity var(--transition-base);
}
.mobile-nav__overlay.active { display: block; opacity: 1; }
.mobile-nav__close { position: absolute; top: var(--space-lg); right: var(--space-lg); background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }
.mobile-nav__links { list-style: none; margin-top: var(--space-3xl); }
.mobile-nav__link { display: block; padding: var(--space-md) 0; color: var(--text-primary); font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--border); }

@media (max-width: 768px) {
    .nav, .header .btn { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav { display: block; }
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius-md);
    font-weight: 600; font-size: 0.95rem; transition: all var(--transition-fast);
    cursor: pointer; border: none; text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.btn--primary { background: var(--emerald); color: #09090B; box-shadow: var(--shadow-glow); }
.btn--primary:hover { background: var(--emerald-light); transform: translateY(-1px); box-shadow: 0 0 30px var(--emerald-glow); }
.btn--secondary { background: transparent; color: var(--emerald-light); border: 2px solid var(--emerald); }
.btn--secondary:hover { background: var(--emerald); color: #09090B; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: var(--space-lg);
    transition: all var(--transition-base);
}
.card:hover { border-color: var(--emerald); box-shadow: var(--shadow-glow); }

.category-card { display: flex; flex-direction: column; text-decoration: none; }
.category-card:hover { transform: translateY(-2px); }
.category-card__icon {
    width: 48px; height: 48px; background: var(--bg-secondary); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md);
    font-size: 1.25rem; color: var(--emerald-light); font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}
.category-card__title { font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-xs); }
.category-card__examples { font-size: 0.85rem; color: var(--text-muted); }

.company-card { display: block; text-decoration: none; }
.company-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-md); }
.company-card__name { font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--text-primary); font-size: 1.1rem; }
.company-card__type { font-size: 0.875rem; color: var(--text-secondary); margin-top: var(--space-xs); }
.company-card__salary {
    background: var(--bg-secondary); padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600;
    color: var(--emerald-light); white-space: nowrap;
    font-family: 'JetBrains Mono', monospace;
}
.company-card__meta { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.company-card__tag { display: inline-flex; align-items: center; gap: var(--space-xs); font-size: 0.8rem; color: var(--text-muted); }
.company-card__tag--remote { color: var(--success); font-weight: 500; }

.hero {
    padding: 10rem var(--space-lg) var(--space-3xl);
    text-align: center; max-width: 900px; margin: 0 auto; position: relative;
}
.hero::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 700px; height: 700px;
    background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 65%);
    pointer-events: none; z-index: -1;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    background: var(--bg-card); border: 1px solid var(--border-emerald);
    padding: var(--space-sm) var(--space-md); border-radius: var(--radius-full);
    font-size: 0.875rem; color: var(--text-secondary); margin-bottom: var(--space-xl);
}
.hero__badge-dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero__title { font-size: 3.5rem; font-weight: 700; line-height: 1.08; margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.hero__title-accent { color: var(--emerald-light); }
.hero__subtitle { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: var(--space-2xl); max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero__buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
    .hero { padding-top: 8rem; }
    .hero__title { font-size: 2.25rem; }
}

.stats { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--space-2xl) var(--space-lg); }
.stats__inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
.stat { text-align: center; }
.stat__value { font-family: 'JetBrains Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--emerald-light); line-height: 1; margin-bottom: var(--space-xs); }
.stat__label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
@media (max-width: 768px) { .stats__inner { grid-template-columns: repeat(2, 1fr); } .stat__value { font-size: 2rem; } }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.companies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
@media (max-width: 768px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-grid { grid-template-columns: 1fr; }
}

.cta-box {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 3rem 2.5rem; text-align: center; max-width: 700px;
    margin: var(--space-3xl) auto; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--emerald), transparent); }
.cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-box p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.05rem; }

.signup-form { display: flex; gap: 0.5rem; max-width: 440px; margin: 0 auto; }
.signup-form input[type="email"] {
    flex: 1; padding: 0.85rem 1rem; border-radius: var(--radius-md);
    border: 1px solid var(--border); background: var(--bg-secondary);
    color: var(--text-primary); font-size: 0.95rem; font-family: inherit;
    outline: none; transition: border-color var(--transition-fast);
}
.signup-form input[type="email"]::placeholder { color: var(--text-muted); }
.signup-form input[type="email"]:focus { border-color: var(--emerald); box-shadow: 0 0 0 2px var(--emerald-glow); }
.signup-form button {
    padding: 0.85rem 1.5rem; border-radius: var(--radius-md); border: none;
    background: var(--emerald); color: #09090B; font-size: 0.95rem; font-weight: 600;
    font-family: inherit; cursor: pointer; transition: all var(--transition-fast); white-space: nowrap;
}
.signup-form button:hover { background: var(--emerald-light); box-shadow: 0 0 30px var(--emerald-glow); transform: translateY(-1px); }
.signup-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.signup-msg { font-size: 0.85rem; margin-top: 0.5rem; min-height: 1.25rem; }
.signup-msg.success { color: var(--success); }
.signup-msg.error { color: var(--error); }
.signup-trust { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }
@media (max-width: 480px) { .signup-form { flex-direction: column; } .signup-form button { width: 100%; } }

.scroll-cta {
    position: fixed; bottom: -300px; right: 24px; width: 360px;
    max-width: calc(100vw - 48px);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem;
    z-index: 1000; box-shadow: 0 8px 32px rgba(0,0,0,0.5); transition: bottom 0.4s ease;
}
.scroll-cta.visible { bottom: 24px; }
.scroll-cta-close { position: absolute; top: 10px; right: 14px; background: none; border: none; color: var(--text-muted); font-size: 1.25rem; cursor: pointer; padding: 4px; line-height: 1; }
.scroll-cta-close:hover { color: var(--text-primary); }
.scroll-cta h4 { font-family: 'Lexend', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; padding-right: 1.5rem; }
.scroll-cta p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.4; }
.scroll-cta .signup-form { max-width: 100%; }
.scroll-cta .signup-form input[type="email"] { font-size: 0.85rem; padding: 0.7rem 0.85rem; }
.scroll-cta .signup-form button { font-size: 0.85rem; padding: 0.7rem 1rem; }
.scroll-cta .signup-trust { font-size: 0.75rem; }
@media (max-width: 480px) { .scroll-cta { right: 12px; left: 12px; width: auto; max-width: none; padding: 1.25rem; } }

.logo-strip { padding: 2.5rem 0 1rem; text-align: center; }
.logo-strip-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 1.25rem; font-family: 'JetBrains Mono', monospace; }
.logo-strip-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem 2rem; max-width: 800px; margin: 0 auto; }
.logo-icon { width: 36px; height: 36px; border-radius: 8px; filter: grayscale(100%) brightness(0.7); opacity: 0.5; transition: all 0.2s; }
.logo-icon:hover { filter: grayscale(0%) brightness(1); opacity: 1; }
@media (max-width: 768px) { .logo-strip-row { gap: 1rem 1.5rem; } .logo-icon { width: 30px; height: 30px; } }

.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: var(--space-3xl) var(--space-lg) var(--space-xl); }
.footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); }
.footer__brand { max-width: 280px; }
.footer__logo { margin-bottom: var(--space-md); display: flex; align-items: center; gap: 10px; }
.footer__logo-mark { width: 32px; height: 32px; }
.footer__logo-text { font-family: 'Lexend', sans-serif; font-size: 18px; font-weight: 700; color: #FAFAFA; }
.footer__logo-text-accent { color: #10B981; }
.footer__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.footer__col-title { font-family: 'Lexend', sans-serif; font-weight: 600; margin-bottom: var(--space-md); font-size: 0.95rem; }
.footer__links { list-style: none; }
.footer__link { color: var(--text-secondary); font-size: 0.9rem; display: block; padding: var(--space-xs) 0; transition: color var(--transition-fast); }
.footer__link:hover { color: var(--emerald-light); }
.footer__bottom { max-width: 1200px; margin: var(--space-2xl) auto 0; padding-top: var(--space-xl); border-top: 1px solid var(--border); font-size: 0.875rem; color: var(--text-muted); }
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

.content-page { padding: 7rem var(--space-lg) var(--space-3xl); max-width: 800px; margin: 0 auto; }
.content-page h1 { font-size: 2.5rem; margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.content-page h2 { font-size: 1.75rem; margin-top: var(--space-2xl); margin-bottom: var(--space-md); color: var(--text-primary); }
.content-page h3 { font-size: 1.25rem; margin-top: var(--space-xl); margin-bottom: var(--space-sm); color: var(--text-primary); }
.content-page p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.content-page ul, .content-page ol { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; padding-left: 1.5rem; }
.content-page li { margin-bottom: 0.5rem; }
.content-page a { color: var(--emerald-light); text-decoration: underline; text-underline-offset: 3px; }
.content-page a:hover { color: var(--emerald); }
.content-page blockquote {
    border-left: 3px solid var(--emerald); padding: var(--space-md) var(--space-lg);
    background: var(--emerald-ghost); border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0; font-style: italic; color: var(--text-secondary);
}
.content-page .highlight-box {
    background: var(--bg-card); border: 1px solid var(--border-emerald);
    border-radius: var(--radius-lg); padding: var(--space-lg);
    margin: var(--space-xl) 0;
}
.content-page table { width: 100%; border-collapse: collapse; margin: var(--space-xl) 0; font-size: 0.95rem; }
.content-page th { font-family: 'Lexend', sans-serif; text-align: left; padding: var(--space-md); background: var(--bg-card); border-bottom: 2px solid var(--emerald); color: var(--text-primary); font-weight: 600; }
.content-page td { padding: var(--space-md); border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.content-page tr:hover td { background: var(--bg-card); }
.salary-highlight { font-family: 'JetBrains Mono', monospace; color: var(--emerald-light); font-weight: 600; }
@media (max-width: 768px) { .content-page h1 { font-size: 1.75rem; } .content-page { padding-top: 6rem; } }

.breadcrumb { padding: 6rem var(--space-lg) 0; max-width: 1200px; margin: 0 auto; }
.breadcrumb__list { display: flex; align-items: center; gap: 0.5rem; list-style: none; font-size: 0.85rem; }
.breadcrumb__item { color: var(--text-muted); }
.breadcrumb__item a { color: var(--text-secondary); transition: color var(--transition-fast); }
.breadcrumb__item a:hover { color: var(--emerald-light); }
.breadcrumb__sep { color: var(--text-muted); }
.breadcrumb__current { color: var(--emerald-light); }

.faq-section { margin-top: var(--space-2xl); }
.faq-section h2 { font-size: 1.5rem; margin-bottom: var(--space-lg); }
.faq-item { border-bottom: 1px solid var(--border); padding: var(--space-lg) 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); font-size: 1.05rem; }
.faq-a { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }

.company-hero { padding: 7rem var(--space-lg) var(--space-2xl); max-width: 800px; margin: 0 auto; }
.company-hero__badge { display: inline-flex; align-items: center; gap: var(--space-sm); font-size: 0.85rem; color: var(--emerald-light); font-family: 'JetBrains Mono', monospace; margin-bottom: var(--space-md); text-transform: uppercase; letter-spacing: 1px; }
.company-hero h1 { font-size: 2.5rem; margin-bottom: var(--space-md); }
.company-hero__subtitle { color: var(--text-secondary); font-size: 1.15rem; line-height: 1.7; }

.company-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin: var(--space-xl) 0; }
.company-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-lg); text-align: center; }
.company-stat__value { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; font-weight: 700; color: var(--emerald-light); }
.company-stat__label { font-size: 0.85rem; color: var(--text-secondary); margin-top: var(--space-xs); }
@media (max-width: 768px) { .company-stats { grid-template-columns: 1fr; } .company-hero h1 { font-size: 1.75rem; } }

.salary-table-wrap { overflow-x: auto; margin: var(--space-xl) 0; }
.salary-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.salary-table th {
    font-family: 'Lexend', sans-serif; text-align: left; padding: var(--space-md) var(--space-lg);
    background: var(--bg-card); border-bottom: 2px solid var(--emerald); color: var(--text-primary);
    font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap;
}
.salary-table td {
    padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--border);
    color: var(--text-secondary); vertical-align: middle;
}
.salary-table tr:hover td { background: var(--bg-card); }
.salary-table .company-name { color: var(--text-primary); font-weight: 600; }
.salary-table .company-name a { color: var(--text-primary); text-decoration: none; }
.salary-table .company-name a:hover { color: var(--emerald-light); }
.salary-table .salary-range { font-family: 'JetBrains Mono', monospace; color: var(--emerald-light); font-weight: 500; }
