:root {
    --black: #080808;
    --white: #f5f2ee;
    --cream: #f0ebe3;
    --accent: #ff4d00;
    --accent2: #ffb347;
    --muted: #888;
    --card-bg: #111;
    --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 6%;
    backdrop-filter: blur(20px);
    background: rgba(8,8,8,0.75);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--accent); color: #fff;
    padding: 10px 24px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 500;
    text-decoration: none; letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #e04400; transform: translateY(-1px); }

/* HERO */
.hero {
    min-height: 100vh;
    display: grid; place-items: center;
    padding: 140px 6% 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
            radial-gradient(ellipse 70% 60% at 60% 40%, rgba(255,77,0,0.18) 0%, transparent 70%),
            radial-gradient(ellipse 50% 40% at 20% 70%, rgba(255,179,71,0.09) 0%, transparent 60%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: 900px; text-align: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,77,0,0.1); border: 1px solid rgba(255,77,0,0.3);
    color: var(--accent2); border-radius: 100px;
    padding: 6px 16px; font-size: 0.8rem; letter-spacing: 0.5px;
    margin-bottom: 32px;
    animation: fadeUp 0.7s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800; line-height: 1.0;
    letter-spacing: -2px; color: var(--white);
    animation: fadeUp 0.7s 0.1s ease both;
}
h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
    max-width: 560px; margin: 24px auto 0;
    color: #aaa; font-size: 1.1rem; font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-top: 44px;
    animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
    background: var(--accent); color: #fff;
    padding: 16px 36px; border-radius: 100px;
    font-size: 1rem; font-weight: 500; text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 40px rgba(255,77,0,0.25);
}
.btn-primary:hover { background: #e04400; transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,77,0,0.4); }
.btn-ghost {
    background: transparent; color: var(--white);
    padding: 16px 36px; border-radius: 100px;
    font-size: 1rem; font-weight: 500; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }


/* STATS BAR */
.stats-bar {
    background: #0e0e0e; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 40px 10%;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800;
    color: var(--white); letter-spacing: -1px;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* SECTIONS */
section { padding: 100px 15%; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800; letter-spacing: -1px; line-height: 1.1;
    color: var(--white); margin-bottom: 20px;
}
h2 em { color: var(--accent); font-style: normal; }
.section-sub { color: #888; font-size: 1rem; max-width: 540px; line-height: 1.7; }

/* FEATURES BENTO */
.features-section { background: #070707; }
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px; margin-top: 60px;
}
.bento-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 24px; padding: 32px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.bento-card:hover { border-color: rgba(255,77,0,0.3); transform: translateY(-3px); }
.bento-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at top left, rgba(255,77,0,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.3s;
}
.bento-card:hover::before { opacity: 1; }
.bc-1 { grid-column: span 5; }
.bc-2 { grid-column: span 7; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 4; }
.bc-6 { grid-column: span 7; }
.bc-7 { grid-column: span 5; }
.bento-icon { font-size: 2rem; margin-bottom: 16px; }
.bento-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.bento-body { font-size: 0.88rem; color: #888; line-height: 1.65; }
.bento-highlight {
    display: inline-block; background: rgba(255,77,0,0.12);
    border: 1px solid rgba(255,77,0,0.2); border-radius: 8px;
    padding: 3px 10px; font-size: 0.75rem; color: var(--accent);
    margin-top: 16px; font-weight: 600;
}

/* BIG CARD */
.bc-big {
    background: linear-gradient(135deg, #161616, #111);
    display: flex; flex-direction: column; justify-content: space-between;
}
.bc-big .score-bar-wrap { margin-top: 24px; }
.score-bar-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: #888; margin-bottom: 6px; }
.score-bar-track { background: #222; border-radius: 100px; height: 6px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.score-bar-wrap + .score-bar-wrap { margin-top: 12px; }

/* HOW IT WORKS */
.how-section { background: var(--black); }
.steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px; margin-top: 60px;
    background: var(--border); border-radius: 24px; overflow: hidden;
}
.step {
    background: #0c0c0c; padding: 40px 32px;
    position: relative; transition: background 0.3s;
}
.step:hover { background: #111; }
.step-num {
    font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
    color: rgba(255,77,0,0.3); line-height: 1; margin-bottom: 20px;
    transition: color 0.3s;
}
.step:hover .step-num { color: rgba(255,77,0,1); }
.step-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-body { font-size: 0.85rem; color: #777; line-height: 1.65; }

/* AI SECTION */
.ai-section {
    background: #080808;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ai-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.ai-feat {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: #111; border: 1px solid var(--border);
    border-radius: 16px; transition: border-color 0.3s;
}
.ai-feat:hover { border-color: rgba(255,77,0,0.25); }
.ai-feat-icon {
    width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
    background: rgba(255,77,0,0.1); border: 1px solid rgba(255,77,0,0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.ai-feat-text h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ai-feat-text p { font-size: 0.82rem; color: #777; line-height: 1.6; }
.ai-visual {
    background: #0f0f0f; border: 1px solid var(--border);
    border-radius: 28px; padding: 32px; position: relative;
    overflow: hidden;
}
.ai-visual::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,77,0,0.08), transparent 60%);
}
.ai-vis-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.skill-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #181818; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px; padding: 6px 14px; margin: 5px;
    font-size: 0.8rem; color: var(--white);
}
.skill-pill.match { border-color: rgba(80,220,120,0.4); color: #50dc78; background: rgba(80,220,120,0.06); }
.skill-pill.missing { border-color: rgba(255,77,0,0.4); color: var(--accent); background: rgba(255,77,0,0.06); }
.skill-pill.match::before { content:'✓'; font-size:0.7rem; }
.skill-pill.missing::before { content:'+'; font-size:0.7rem; }
.cover-letter-box {
    background: #141414; border: 1px solid var(--border); border-radius: 16px;
    padding: 18px; margin-top: 20px; font-size: 0.8rem; color: #999; line-height: 1.7;
    font-style: italic;
}
.cover-letter-box::before {
    content: '✦ Cover Letter Generated';
    display: block; font-style: normal; font-weight: 600; color: var(--accent2);
    font-family: 'Syne', sans-serif; font-size: 0.75rem; letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* TRACKING SECTION */
.tracking-section { background: var(--black); }
.tracker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.track-col { background: #0c0c0c; border-radius: 20px; padding: 24px; }
.track-col-header {
    font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; padding-bottom: 16px;
    border-bottom: 1px solid var(--border); margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.track-dot { width: 8px; height: 8px; border-radius: 50%; }
.track-dot.applied { background: #64b4ff; }
.track-dot.interview { background: #ffb347; }
.track-dot.offer { background: #50dc78; }
.track-dot.rejected { background: #ff4444; }
.track-job-card {
    background: #141414; border: 1px solid var(--border); border-radius: 12px;
    padding: 14px; margin-bottom: 10px;
}
.track-job-name { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.track-job-co { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.track-job-date { font-size: 0.68rem; color: #555; margin-top: 6px; }

/* AUDIENCE */
.audience-section {
    background: linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
    text-align: center;
}
.audience-section h2 { margin: 0 auto 16px; }
.audience-section .section-sub { margin: 0 auto 60px; }
.audience-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.audience-card {
    background: #111; border: 1px solid var(--border); border-radius: 24px;
    padding: 36px 28px; text-align: left; transition: border-color 0.3s, transform 0.3s;
}
.audience-card:hover { border-color: rgba(255,77,0,0.3); transform: translateY(-4px); }
.aud-icon { font-size: 2.2rem; margin-bottom: 20px; }
.aud-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.aud-body { font-size: 0.85rem; color: #777; line-height: 1.65; }

/* CTA */
.cta-section {
    background: #0a0a0a; text-align: center;
    padding: 120px 6%;
    position: relative; overflow: hidden;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,77,0,0.12), transparent 70%);
    pointer-events: none;
}
.cta-section h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.cta-section .section-sub { margin: 16px auto 48px; position: relative; z-index: 1; }
.cta-form {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.cta-input {
    background: #151515; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px; padding: 14px 24px;
    color: var(--white); font-size: 0.95rem; outline: none;
    width: 300px; transition: border-color 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.cta-input:focus { border-color: var(--accent); }
.cta-input::placeholder { color: #555; }

/* FOOTER */
footer {
    background: #060606; border-top: 1px solid var(--border);
    padding: 60px 6% 40px;
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; color: #555; line-height: 1.7; }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; color: #555; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #666; font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
    background: #060606; border-top: 1px solid var(--border);
    padding: 20px 6%; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: #444;
}
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal { opacity: 0; transform: translateY(30px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7 { grid-column: span 12; }
    .ai-section { grid-template-columns: 1fr; }
    .tracker-grid { grid-template-columns: 1fr 1fr; }
    footer { grid-template-columns: 1fr 1fr; }
    .float-card { display: none; }
    nav .nav-links { display: none; }
}
@media (max-width: 600px) {
    .tracker-grid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════
   HERO MOCKUP — INTERACTIVE APP SCENE
═══════════════════════════════════════ */

.hero-mockup {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s 0.4s ease both;
}

.mockup-scene {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 720px;
    max-width: 100%;
}

/* ── Phone frame ── */
.phone-frame {
    width: 300px;
    height: 580px;
    background: #101010;
    border-radius: 44px;
    border: 1.5px solid rgba(255,255,255,0.12);
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    box-shadow:
            0 50px 120px rgba(0,0,0,0.7),
            0 0 80px rgba(255,77,0,0.08),
            inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.1s ease;
    flex-shrink: 0;
}

/* ── Status bar ── */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 4px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

/* ── App screens container ── */
.app-screens {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.app-screen {
    position: absolute;
    inset: 0;
    padding: 0 14px 8px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    scrollbar-width: none;
}
.app-screen::-webkit-scrollbar { display: none; }
.app-screen.active {
    opacity: 1;
    pointer-events: all;
}

/* ── App header ── */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 12px;
    flex-shrink: 0;
}
.app-header-left { display: flex; align-items: center; gap: 10px; }
.app-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 800; color: white;
}
.app-greeting { font-size: 0.65rem; color: var(--muted); }
.app-name { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--white); }
.app-notif-btn { position: relative; font-size: 1.1rem; cursor: pointer; }
.notif-dot {
    width: 7px; height: 7px; background: var(--accent);
    border-radius: 50%; position: absolute; top: -1px; right: -1px;
    animation: pulse 1.5s infinite;
}

/* ── Card stack ── */
.card-stack {
    position: relative;
    height: 320px;
    margin-bottom: 8px;
}

.swipe-card {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 16px;
    cursor: grab;
    user-select: none;
    will-change: transform;
}
.swipe-card:active { cursor: grabbing; }

.sc-bg2 {
    transform: rotate(-4deg) scale(0.93) translateY(12px);
    z-index: 1;
    background: #161616;
    display: flex; align-items: center; gap: 10px;
}
.sc-bg1 {
    transform: rotate(2deg) scale(0.96) translateY(6px);
    z-index: 2;
    background: #191919;
    display: flex; align-items: center; gap: 10px;
}
.sc-bg1 .sc-info, .sc-bg2 .sc-info { pointer-events: none; }
.sc-bg1 .sc-title, .sc-bg2 .sc-title { font-family: 'Syne',sans-serif; font-size:0.85rem; font-weight:700; color:var(--white); }
.sc-bg1 .sc-company, .sc-bg2 .sc-company { font-size:0.72rem; color:var(--muted); margin-top:2px; }

.sc-top {
    z-index: 3;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

/* Card contents */
.sc-top-header { display: flex; justify-content: space-between; align-items: flex-start; }
.sc-logo {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.75rem; color: white;
    flex-shrink: 0;
}
.sc-logo-lg { width: 44px; height: 44px; border-radius: 12px; font-size: 0.9rem; }
.sc-match-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.sc-match-pct {
    position: absolute;
    font-family: 'Syne', sans-serif; font-size: 0.6rem; font-weight: 800;
    color: var(--accent);
}
.sc-title-lg {
    font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
    color: var(--white); line-height: 1.2; margin-top: 4px;
}
.sc-company-row {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.72rem; color: var(--muted); flex-wrap: wrap;
}
.sc-company-name { font-weight: 600; color: #bbb; }
.sc-dot { color: #444; }
.sc-type-badge {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px; padding: 1px 7px; font-size: 0.65rem;
}
.sc-location { font-size: 0.65rem; }
.sc-salary {
    font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700;
    color: var(--accent2); margin-top: 2px;
}
.sc-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.sc-tag {
    border-radius: 100px; padding: 2px 8px; font-size: 0.62rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); color: #aaa;
}
.sc-tag-match { background: rgba(80,220,120,0.08); border-color: rgba(80,220,120,0.3); color: #50dc78; }
.sc-tag-miss  { background: rgba(255,77,0,0.08);   border-color: rgba(255,77,0,0.3);   color: var(--accent); }
.sc-desc { font-size: 0.72rem; color: #666; line-height: 1.55; }

/* Swipe overlays */
.swipe-overlay {
    position: absolute; top: 16px;
    font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
    border-radius: 8px; padding: 4px 14px;
    opacity: 0; pointer-events: none; transition: opacity 0.1s;
    border: 2.5px solid; transform: rotate(-12deg);
}
.apply-overlay { right: 16px; color: #50dc78; border-color: #50dc78; transform: rotate(12deg); }
.skip-overlay  { left: 16px;  color: #ff4444; border-color: #ff4444; transform: rotate(-12deg); }

/* ── Swipe hint ── */
.swipe-hint {
    text-align: center; font-size: 0.6rem; color: #444; margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* ── Action buttons ── */
.action-btns {
    display: flex; justify-content: center; gap: 16px; align-items: center;
    padding-bottom: 4px;
}
.act-btn {
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: transform 0.15s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.act-btn:hover { transform: scale(1.12); }
.act-skip {
    width: 48px; height: 48px;
    background: rgba(255,60,60,0.08); border: 2px solid rgba(255,60,60,0.4);
    color: #ff4444;
}
.act-save {
    width: 40px; height: 40px;
    background: rgba(100,180,255,0.08); border: 2px solid rgba(100,180,255,0.3);
    color: #64b4ff; font-size: 0.85rem;
}
.act-apply {
    width: 48px; height: 48px;
    background: rgba(80,220,120,0.1); border: 2px solid rgba(80,220,120,0.4);
    color: #50dc78;
}
.act-apply:hover { box-shadow: 0 0 20px rgba(80,220,120,0.3); }
.act-skip:hover  { box-shadow: 0 0 20px rgba(255,60,60,0.3); }

/* ── Dashboard screen ── */
.dash-stats {
    display: flex; gap: 8px; margin-bottom: 14px;
}
.dash-stat {
    flex: 1; background: #141414; border: 1px solid var(--border);
    border-radius: 14px; padding: 12px 8px; text-align: center;
}
.dash-stat-num { font-family: 'Syne',sans-serif; font-size: 1.4rem; font-weight: 800; }
.dash-stat-label { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.dash-pipeline { display: flex; flex-direction: column; gap: 8px; }
.pipe-item {
    display: flex; align-items: center; gap: 10px;
    background: #141414; border: 1px solid var(--border);
    border-radius: 12px; padding: 10px 12px;
}
.pipe-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pipe-info { flex: 1; min-width: 0; }
.pipe-role { font-size: 0.75rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pipe-co { font-size: 0.65rem; color: var(--muted); margin-top: 1px; }
.pipe-badge { font-size: 0.62rem; font-weight: 600; border-radius: 100px; padding: 2px 8px; white-space: nowrap; }

/* ── AI screen ── */
.ai-screen-job {
    display: flex; align-items: center; gap: 10px;
    background: #141414; border: 1px solid var(--border);
    border-radius: 14px; padding: 10px 12px; margin-bottom: 12px;
}
.ai-typing-box {
    background: #141414; border: 1px solid rgba(255,77,0,0.2);
    border-radius: 14px; padding: 12px; margin-bottom: 10px;
    min-height: 140px; max-height: 160px; overflow-y: auto;
    scrollbar-width: none; position: relative;
}
.ai-typing-box::-webkit-scrollbar { display: none; }
.ai-typing-label {
    font-size: 0.65rem; font-weight: 700; color: var(--accent2);
    font-family: 'Syne', sans-serif; letter-spacing: 0.5px; margin-bottom: 8px;
}
.ai-typing-text { font-size: 0.72rem; color: #999; line-height: 1.6; white-space: pre-wrap; }
.typing-cursor {
    display: inline-block; color: var(--accent);
    animation: blink 0.8s step-end infinite;
    font-size: 0.9rem;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0} }
.ai-actions-row { display: flex; gap: 8px; margin-bottom: 12px; }
.ai-action-btn {
    flex: 1; background: #141414; border: 1px solid var(--border);
    border-radius: 10px; padding: 8px; font-size: 0.7rem; color: var(--muted);
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
}
.ai-action-btn:hover { border-color: rgba(255,77,0,0.3); color: var(--white); }
.ai-action-primary { background: rgba(255,77,0,0.1); border-color: rgba(255,77,0,0.3); color: var(--accent); }
.ai-tips { background: #141414; border: 1px solid var(--border); border-radius: 14px; padding: 12px; }
.ai-tip-label { font-size: 0.68rem; font-weight: 700; color: var(--accent2); margin-bottom: 8px; font-family: 'Syne',sans-serif; }
.ai-tip-item { font-size: 0.68rem; color: #777; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.ai-tip-item:last-child { border: none; }

/* ── Tab bar ── */
.tab-bar {
    display: flex;
    background: #0c0c0c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 8px 0 12px;
    flex-shrink: 0;
}
.tab-btn {
    flex: 1; background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: #555; font-size: 0.55rem; font-family: 'DM Sans', sans-serif;
    transition: color 0.2s; padding: 4px 0;
}
.tab-btn svg { transition: stroke 0.2s; }
.tab-btn.active { color: var(--accent); }
.tab-btn.active svg { stroke: var(--accent); }
.tab-btn:hover { color: #aaa; }

/* ── Floating info cards ── */
.hf-card {
    position: absolute;
    background: rgba(14,14,14,0.95);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 14px 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 3;
    min-width: 170px;
}
.hf-card-title {
    font-size: 0.68rem; font-weight: 700; color: #777;
    font-family: 'Syne', sans-serif; letter-spacing: 0.3px;
    margin-bottom: 10px;
}
/* Left: match breakdown */
.hf-left {
    left: 0; top: 80px;
    animation: floatLeft 3.5s ease-in-out infinite;
}
.hf-skill-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.hf-skill-name { font-size: 0.65rem; color: #aaa; width: 58px; flex-shrink: 0; }
.hf-bar-track { flex: 1; height: 4px; background: #222; border-radius: 100px; overflow: hidden; }
.hf-bar-fill { height: 100%; background: linear-gradient(90deg,var(--accent),var(--accent2)); border-radius: 100px; }
.hf-pct { font-size: 0.6rem; color: var(--muted); width: 26px; text-align: right; }
.hf-missing-label { font-size: 0.6rem; color: #555; margin-top: 6px; margin-bottom: 4px; }
.hf-missing-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.hf-miss-tag {
    background: rgba(255,77,0,0.08); border: 1px solid rgba(255,77,0,0.25);
    border-radius: 100px; padding: 2px 7px; font-size: 0.6rem; color: var(--accent);
}

/* Right: activity feed */
.hf-right {
    right: 0; top: 120px;
    animation: floatRight 4s ease-in-out infinite;
    min-width: 180px;
}
.hf-activity-list { display: flex; flex-direction: column; gap: 6px; overflow: hidden; max-height: 110px; }
.hf-activity-item {
    font-size: 0.65rem; color: #888; padding: 5px 8px;
    background: #161616; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hf-act-apply { color: #50dc78; background: rgba(80,220,120,0.06); border-color: rgba(80,220,120,0.15); }
.hf-act-skip  { color: #ff4444; background: rgba(255,60,60,0.06);  border-color: rgba(255,60,60,0.15); }
.hf-act-save  { color: #64b4ff; background: rgba(100,180,255,0.06);border-color: rgba(100,180,255,0.15); }
.hf-act-match { color: var(--accent2); background: rgba(255,179,71,0.06); border-color: rgba(255,179,71,0.15); }
.hf-act-alert { color: #c084fc; background: rgba(192,132,252,0.06); border-color: rgba(192,132,252,0.15); }

/* Bottom: salary card */
.hf-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    animation: floatBottom 3.8s ease-in-out infinite;
    z-index: 3;
}
@keyframes floatBottom { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }

@keyframes floatLeft  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatRight { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ── Responsive: hide floating cards on small screens ── */
@media (max-width: 760px) {
    .hf-left, .hf-right, .hf-bottom { display: none; }
    .mockup-scene { width: auto; }
}