*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --bg: #0e1015; --surface: #14171e; --card: #1a1d26; --border: #22252f; --border2: #2c303d; --ink: #f0f2f8; --ink2: #c8ccdb; --muted: #6b6f80; --yellow: #e8b800; --sky: #38bdf8; --sky-lo: #0284c7; --hi: #22c55e; --mid: #f59e0b; --lo: #ef4444; --radius: 8px; }
body { background: var(--bg); color: var(--ink); font-family: 'DM Sans', sans-serif; min-height: 100vh; -webkit-font-smoothing: antialiased; }
nav { background: var(--bg); border-bottom: 1px solid var(--border); padding: 0 1.5rem; height: 66px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 1.55rem; font-weight: 700; letter-spacing: -0.04em; text-decoration: none; display: flex; align-items: baseline; gap: 0.1rem; }
.logo .me { color: var(--yellow); }
.logo .jobs { color: var(--sky); }
.logo .tld { font-size: 0.65rem; font-weight: 500; color: #fff; margin-left: 0.05rem; }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-link { display: inline-flex; align-items: center; justify-content: center; background: #171a22; border: 1px solid var(--border2); color: var(--ink2); text-decoration: none; border-radius: 999px; padding: 0.55rem 0.95rem; font-size: 0.78rem; font-weight: 700; transition: 0.15s; min-height: 38px; }
.nav-link:hover { color: var(--yellow); border-color: var(--yellow); background: #1b1f29; }
.member-trigger { background: var(--yellow); border: 1px solid #f4cf4f; color: #0e1015; border-radius: 999px; padding: 0.55rem 0.95rem; font: inherit; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: 0.15s; }
.member-trigger:hover { background: #f4cf4f; color: #0e1015; }
.hero { padding: 2.5rem 1.5rem 0; max-width: 960px; margin: 0 auto; }
.hero-tagline { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 0.9rem; }
.hero-tagline .red { color: var(--lo); }
.city-dropdown-wrap.hidden { display: none; }
.hero-attrs { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-attr { display: flex; align-items: center; gap: 0.38rem; font-size: 0.72rem; font-weight: 500; color: var(--ink2); }
.hero-attr-tick { width: 15px; height: 15px; background: var(--sky-lo); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.5rem; color: #fff; font-weight: 800; flex-shrink: 0; }
.hero-attr-sep { width: 3px; height: 3px; background: var(--border2); border-radius: 50%; }
.hero-ticker-row { display: flex; gap: 1rem; align-items: stretch; }
.ticker-wrap { flex: 1; height: 192px; overflow: hidden; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.ticker-inner { display: flex; flex-direction: column; will-change: transform; }
.ticker-row { display: grid; grid-template-columns: 1fr 100px 42px 42px; align-items: center; gap: 0.75rem; padding: 0 1rem; height: 48px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.1s; }
.ticker-row:hover { background: var(--card); }
.ticker-info { display: flex; align-items: baseline; gap: 0.5rem; min-width: 0; overflow: hidden; }
.ticker-title { font-size: 0.84rem; font-weight: 700; color: var(--sky); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-company { font-size: 0.7rem; font-weight: 500; color: var(--yellow); white-space: nowrap; font-family: 'Inter', sans-serif; }
.ticker-salary { font-size: 0.76rem; font-weight: 600; color: #fff; text-align: right; }
.ticker-score-num { font-size: 1.1rem; font-weight: 700; line-height: 1.15; }
.score-explainer { display: none; flex-direction: column; justify-content: flex-end; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; min-width: 200px; max-width: 220px; text-decoration: none; }
.score-explainer:hover { border-color: var(--yellow); }
@media (min-width: 860px) { .score-explainer { display: flex; } }
.score-ex-row { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.6rem; }
.score-ex-num { font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.score-ex-text strong { display: block; font-size: 0.68rem; font-weight: 700; color: var(--yellow); text-decoration: none; }
.score-ex-text span { font-size: 0.6rem; color: var(--muted); }
.city-dropdown-wrap { position: relative; display: inline-block; }
.city-trigger { color: var(--sky); cursor: pointer; border-bottom: 1px dashed rgba(56,189,248,0.4); }
.city-menu { position: absolute; top: 100%; left: 0; margin-top: 0.5rem; background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 0.4rem; min-width: 180px; z-index: 200; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: 0.15s; }
.city-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.city-menu-label { font-size: 0.55rem; color: var(--muted); padding: 0.3rem 0.6rem; display: block; }
.city-menu-item { display: block; width: 100%; text-align: left; padding: 0.5rem 0.6rem; font-family: 'DM Sans'; font-size: 0.78rem; font-weight: 500; color: var(--ink2); background: none; border: none; cursor: pointer; }
.city-menu-item:hover { background: var(--card); color: var(--sky); }
.search-section { padding: 1.25rem 1.5rem; max-width: 960px; margin: 0 auto; }
.search-row { display: flex; gap: 0.6rem; }
.search-main { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); color: var(--ink); padding: 0.7rem 1rem; outline: none; }
.sec-head { display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; max-width: 960px; margin: 0 auto 0.75rem; }
.sec-title { font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.sec-count { font-size: 0.68rem; color: var(--muted); }
.page-panel { max-width: 960px; margin: 0 auto 1.2rem; padding: 0 1.5rem; }
.panel-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.panel-title { font-size: 1.2rem; color: var(--sky); margin-bottom: 0.5rem; }
.panel-copy { color: var(--ink2); line-height: 1.7; font-size: 0.9rem; }
.panel-list { margin-top: 0.9rem; padding-left: 1.1rem; color: var(--ink2); line-height: 1.8; }
.landing-card { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.2rem; align-items: start; }
.landing-copy h2 { font-size: 1.3rem; color: var(--sky); margin-bottom: 0.55rem; }
.landing-copy p { color: var(--ink2); line-height: 1.7; font-size: 0.9rem; }
.landing-stats { display: grid; gap: 0.75rem; }
.landing-stat { background: var(--card); border: 1px solid var(--border2); border-radius: 12px; padding: 0.9rem; }
.landing-stat strong { display: block; color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.25rem; }
.landing-stat span { color: var(--ink2); font-size: 0.8rem; line-height: 1.6; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding: 0 1.5rem 2rem; max-width: 960px; margin: 0 auto; }
@media (max-width: 720px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } }
.jcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; cursor: pointer; transition: 0.15s; display: flex; flex-direction: column; gap: 0.6rem; }
.jcard:hover { border-color: var(--sky-lo); background: #1e2230; }
.jcard-scores { display: flex; align-items: center; gap: 0.4rem; }
.jscore { display: flex; flex-direction: column; align-items: center; }
.jscore-num { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.jscore-lbl { font-size: 0.44rem; font-weight: 700; color: #fff; text-transform: uppercase; margin-top: 0.1rem; }
.jscore-div { width: 1.5px; height: 2.5rem; background: var(--border2); margin: 0 0.2rem; }
.jcard-title { font-size: 0.98rem; font-weight: 700; color: var(--sky); line-height: 1.3; }
.jcard-company { font-size: 0.72rem; font-weight: 500; color: var(--yellow); font-family: 'Inter', sans-serif; }
.jcard-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 0.1rem; gap: 0.5rem; }
.jcard-salary { font-size: 0.78rem; font-weight: 600; color: #fff; }
.jcard-sector { font-size: 0.58rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 20px; background: rgba(56,189,248,0.1); color: var(--sky); border: 1px solid rgba(56,189,248,0.2); }
.empty-state { grid-column: 1/-1; padding: 2.5rem 1rem; text-align: center; }
.empty-state .et { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.empty-state .es { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.mbg { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); z-index: 500; display: none; align-items: center; justify-content: center; }
.drawer-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(8px); z-index: 510; display: none; justify-content: flex-end; }
.job-drawer { width: min(520px, 100vw); height: 100vh; background: var(--surface); border-left: 1px solid var(--border2); padding: 1.5rem 1.35rem 1.5rem; overflow-y: auto; position: relative; }
.mbox { background: var(--surface); border: 2px solid var(--border2); border-radius: 14px; width: 460px; max-width: 95vw; max-height: 90vh; overflow-y: auto; padding: 2rem; position: relative; }
.member-box { width: 720px; }
.mclose { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; color: var(--muted); cursor: pointer; }
.mclose:hover { color: var(--ink); }
.modal-desc { font-size: 0.9rem; color: var(--ink2); line-height: 1.5; margin: 1rem 0; padding-bottom: 1rem; border-bottom: 1px solid var(--border2); }
#google-delayed-box { display: none; text-align: center; margin-top: 1rem; }
.drawer-head { margin-bottom: 1rem; padding-right: 1.8rem; }
.drawer-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.55rem; }
.drawer-title { font-size: 1.6rem; line-height: 1.1; color: var(--sky); margin-bottom: 0.35rem; }
.drawer-company { color: var(--yellow); font-weight: 700; font-size: 0.92rem; }
.drawer-section { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
.drawer-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-bottom: 0.55rem; }
.drawer-copy { color: var(--ink2); line-height: 1.75; font-size: 0.9rem; white-space: pre-wrap; }
.drawer-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.drawer-pill { background: var(--card); border: 1px solid var(--border2); border-radius: 999px; padding: 0.45rem 0.7rem; font-size: 0.72rem; color: var(--ink2); }
.drawer-actions { margin-top: 1rem; }
.apply-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 0.95rem 1rem; background: var(--sky); color: #0e1015; text-decoration: none; border-radius: 10px; font-weight: 700; }
.join-inline { margin-top: 1rem; border: 1px solid var(--border2); border-radius: 12px; padding: 1rem; background: #12151c; }
.join-inline-title { font-size: 0.95rem; font-weight: 700; color: var(--sky); margin-bottom: 0.4rem; }
.join-inline-copy { color: var(--ink2); font-size: 0.84rem; line-height: 1.7; }
.join-inline-link { background: none; border: none; color: var(--yellow); font: inherit; font-weight: 700; cursor: pointer; padding: 0; }
.member-head { margin-bottom: 1.25rem; }
.member-kicker { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.55rem; }
.member-title { font-size: 1.8rem; line-height: 1.05; color: var(--sky); margin-bottom: 0.55rem; }
.member-copy { font-size: 0.92rem; line-height: 1.65; color: var(--ink2); }
.member-bullets { padding-left: 1.1rem; color: var(--ink2); line-height: 1.8; font-size: 0.92rem; }
.money { color: var(--yellow); font-weight: 700; }
.member-form { display: flex; flex-direction: column; gap: 1rem; }
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.plan-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.plan-pill { background: #1a1d26; border: 1px solid var(--border2); color: var(--ink2); border-radius: 999px; padding: 0.65rem 1rem; font: inherit; font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: 0.15s; }
.plan-pill.active { border-color: var(--sky); background: rgba(56,189,248,0.08); color: var(--sky); }
.paid-pill { color: var(--yellow); }
.paid-pill.active { border-color: var(--yellow); background: rgba(232,184,0,0.12); color: var(--yellow); }
.member-google { display: flex; align-items: center; gap: 0.95rem; flex-wrap: wrap; border: 1px solid var(--border); border-radius: 12px; background: #12151c; padding: 0.95rem; }
.member-google-copy { font-size: 0.76rem; line-height: 1.6; color: var(--muted); max-width: 320px; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field span, .member-boards legend { font-size: 0.74rem; font-weight: 700; color: var(--yellow); }
.field input, .field textarea { width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: 10px; color: var(--ink); padding: 0.82rem 0.95rem; font: inherit; outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--sky); }
.field textarea { resize: vertical; min-height: 110px; }
.file-field input { padding: 0.72rem 0.75rem; }
.member-boards { border: 1px solid var(--border); border-radius: 12px; padding: 0.95rem; background: #12151c; }
.board-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.65rem; }
.board-pill { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--card); border: 1px solid var(--border2); border-radius: 999px; padding: 0.5rem 0.75rem; font-size: 0.74rem; color: var(--ink2); }
.board-pill input { accent-color: var(--sky); }
.member-note { font-size: 0.77rem; line-height: 1.6; color: var(--muted); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem 0.95rem; background: #12151c; }
.member-status { min-height: 1.4rem; font-size: 0.82rem; line-height: 1.5; color: var(--ink2); }
.member-status.error { color: var(--lo); }
.member-status.success { color: var(--hi); }
.member-submit { border: none; border-radius: 10px; background: var(--sky); color: #0e1015; font: inherit; font-weight: 700; padding: 0.9rem 1.15rem; cursor: pointer; transition: 0.15s; }
.member-submit:hover { background: #67cdfa; }
.member-submit:disabled { opacity: 0.65; cursor: wait; }
.site-footer { border-top: 1px solid var(--border); margin-top: 2rem; padding: 1.5rem; background: #0c0e13; }
.footer-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 1rem; align-items: center; }
.footer-brand { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.04em; }
.footer-brand .me { color: var(--yellow); }
.footer-brand .jobs { color: var(--sky); }
.footer-brand .tld { font-size: 0.55rem; color: #fff; margin-left: 0.05rem; }
.footer-copy { color: var(--ink2); font-size: 0.82rem; line-height: 1.7; }
.footer-links { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-link { display: inline-flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border2); color: var(--ink2); text-decoration: none; border-radius: 999px; padding: 0.5rem 0.85rem; font-size: 0.76rem; font-weight: 700; min-height: 36px; }
.footer-button { font: inherit; cursor: pointer; border: 1px solid #f4cf4f; background: var(--yellow); color: #0e1015; }
.footer-button:hover { color: #0e1015; border-color: #f4cf4f; background: #f4cf4f; }
.footer-link:hover { color: var(--yellow); border-color: var(--yellow); }
@media (max-width: 720px) { .member-grid { grid-template-columns: 1fr; } .member-box { width: 95vw; padding: 1.35rem; } .nav-link { display: none; } .landing-card, .footer-inner { grid-template-columns: 1fr; } .footer-links { justify-content: flex-start; } }
