:root {
    /* Primary Brand */
    --primary: #2F6BF0;
    --primary-dark: #2444C8;
    --primary-light: #EEF4FF;

    /* Neutrals */
    --bg-page: #FAFBFF;
    --bg-card: #FFFFFF;
    --border: #D9DDE3;
    --text-main: #0D0D0F;
    --text-sec: #3A3A3D;
    --text-light: #73767C;

    /* Semantic */
    --success: #2AB66A;
    --danger: #E54848;
    --warning: #FFB100;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);

    /* Radii */
    --radius-card: 14px;
    --radius-btn: 999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-main);
}

h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-main);
    margin-bottom: 18px;
    padding-left: 4px;
}

p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-sec);
}

/* Layout */
.page-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 0 16px 90px 16px;
    background: linear-gradient(180deg, #FAFBFF 0%, #F4F6F8 100%);
    position: relative;
}

/* ========================================
   HOME SCREEN STYLES
======================================== */

/* Header */
.header {
    margin-top: 32px;
    margin-bottom: 28px;
    padding: 0 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    flex: 1;
}

.header-greeting {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.header-date {
    font-size: 14px;
    color: var(--text-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-wrapper {
    position: relative;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.completion-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    transform: rotate(-45deg);
}

.notification-bell {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.notification-bell:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--bg-page);
}

.bell-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-sec);
}

/* EVA Priority Card - Glassmorphic */
.eva-card {
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.08) 0%, rgba(91, 141, 246, 0.12) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(47, 107, 240, 0.2);
    border-radius: var(--radius-card);
    padding: 24px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(47, 107, 240, 0.12);
}

.eva-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 10px);
    }
}

.eva-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.eva-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.eva-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.eva-content {
    position: relative;
    z-index: 1;
}

.eva-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.eva-description {
    font-size: 15px;
    color: var(--text-sec);
    margin-bottom: 20px;
    line-height: 1.5;
}

.eva-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    height: 44px;
    padding: 0 24px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(47, 107, 240, 0.25);
}

.eva-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 107, 240, 0.35);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 4px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.section-link:hover {
    opacity: 0.7;
}

.section-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    padding-left: 4px;
    line-height: 1.5;
}

/* Opportunity Cards */
.opportunities-section {
    margin-bottom: 32px;
}

.opportunity-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opportunity-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.opportunity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.opportunity-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.1) 0%, rgba(47, 107, 240, 0.15) 100%);
    color: var(--primary);
}

.save-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-icon:hover {
    stroke: var(--primary);
    fill: var(--primary-light);
}

.opportunity-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.3;
}

.opportunity-company {
    font-size: 14px;
    color: var(--text-sec);
    margin-bottom: 14px;
}

.match-indicator {
    margin-bottom: 14px;
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 12px;
}

.match-percentage {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.match-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.match-tag {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    background: rgba(47, 107, 240, 0.08);
    color: var(--primary);
    font-weight: 500;
}

.match-bar {
    height: 4px;
    background: rgba(47, 107, 240, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.match-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #5B8DF6 100%);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.opportunity-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.opportunity-actions {
    display: flex;
    gap: 10px;
}

.btn-primary-small {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    height: 38px;
    padding: 0 18px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 107, 240, 0.3);
}

.btn-outline-small {
    flex: 1;
    background: transparent;
    color: var(--primary);
    height: 38px;
    padding: 0 18px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-small:hover {
    background: var(--primary-light);
}

/* Circles Section */
.circles-section {
    margin-bottom: 32px;
}

.circles-scroll {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 16px 16px;
    scrollbar-width: none;
}

.circles-scroll::-webkit-scrollbar {
    display: none;
}

.circle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 0;
    min-width: 180px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    overflow: hidden;
}

.circle-cover {
    width: 100%;
    height: 80px;
    overflow: hidden;
}

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

.circle-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.circle-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    margin: 12px 14px 10px 14px;
}

.circle-status.live {
    background: linear-gradient(135deg, rgba(229, 72, 72, 0.1) 0%, rgba(229, 72, 72, 0.15) 100%);
    color: var(--danger);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.circle-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
    padding: 0 14px;
}

.circle-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding: 0 14px;
}

.circle-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    height: 34px;
    padding: 0 16px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: calc(100% - 28px);
    margin: 0 14px 14px 14px;
    transition: all 0.2s ease;
}

.circle-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 107, 240, 0.3);
}

/* Network Activity */
.network-section {
    margin-bottom: 32px;
}

.network-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.avatar-stack {
    display: flex;
    margin-bottom: 12px;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -10px;
    background: #D9DDE3;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.network-text {
    font-size: 14px;
    color: var(--text-sec);
    margin-bottom: 14px;
    line-height: 1.5;
}

.network-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.network-link:hover {
    opacity: 0.7;
}

/* ========================================
   DISCOVER SCREEN STYLES
======================================== */

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(250, 251, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 50;
    padding-top: 16px;
    padding-bottom: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.search-bar {
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.04) 0%, rgba(91, 141, 246, 0.06) 100%);
    border-radius: var(--radius-btn);
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    transition: all 0.2s ease;
    border: 1.5px solid rgba(47, 107, 240, 0.12);
    margin-bottom: 16px;
}

.search-bar:focus-within {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.06) 0%, rgba(91, 141, 246, 0.08) 100%);
    box-shadow: 0 4px 16px rgba(47, 107, 240, 0.12);
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    margin-right: 12px;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-main);
    width: 100%;
    outline: none;
    font-weight: 500;
}

.search-input::placeholder {
    color: var(--text-light);
}

.filter-section {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none;
}

.filter-section::-webkit-scrollbar {
    display: none;
}

.chip {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 18px;
    border-radius: var(--radius-btn);
    border: 1.5px solid var(--border);
    color: var(--text-sec);
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--bg-card);
    cursor: pointer;
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
}

.chip.active {
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(47, 107, 240, 0.25);
}

/* Trending Section */
.trending-section {
    margin-bottom: 40px;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.skill-tile {
    background: linear-gradient(135deg, #F8FAFF 0%, #F0F4FF 100%);
    border: 1.5px solid rgba(47, 107, 240, 0.15);
    border-radius: var(--radius-card);
    padding: 18px 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: all 0.2s ease;
}

.skill-tile:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.08) 0%, rgba(91, 141, 246, 0.12) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Top People */
.people-section {
    margin-bottom: 40px;
}

.people-scroll {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 16px 16px;
    scrollbar-width: none;
}

.people-scroll::-webkit-scrollbar {
    display: none;
}

.person-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 18px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.person-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.person-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    margin-bottom: 14px;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--bg-card);
    box-shadow: 0 4px 12px rgba(47, 107, 240, 0.15);
}

.person-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
    text-align: center;
}

.person-role {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Opportunity List */
.opportunity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.opp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: var(--radius-btn);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge.consulting {
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.1) 0%, rgba(47, 107, 240, 0.15) 100%);
    color: var(--primary);
}

.badge.job {
    background: linear-gradient(135deg, rgba(115, 118, 124, 0.1) 0%, rgba(115, 118, 124, 0.15) 100%);
    color: var(--text-sec);
}

.badge.live {
    background: linear-gradient(135deg, rgba(229, 72, 72, 0.1) 0%, rgba(229, 72, 72, 0.15) 100%);
    color: var(--danger);
    padding-left: 10px;
    padding-right: 10px;
    gap: 6px;
}

.badge.live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.opp-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.opp-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(47, 107, 240, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 107, 240, 0.3);
}

/* Avatar Pile */
.avatar-pile {
    display: flex;
    margin-bottom: 14px;
}

.avatar-pile img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -10px;
    background: #D9DDE3;
}

.avatar-pile img:first-child {
    margin-left: 0;
}

/* More ways to explore */
.explore-section {
    margin-bottom: 32px;
}

.explore-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.explore-chip {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-btn);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sec);
    text-decoration: none;
    transition: all 0.2s ease;
}

.explore-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* ========================================
   CIRCLES SCREEN STYLES
======================================== */

.page-header {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   EVA SCREEN STYLES
======================================== */

.eva-screen .page-header {
    text-align: center;
    padding: 32px 0 24px 0;
    margin-bottom: 24px;
    position: relative;
}

.eva-screen .page-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.greeting-block {
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.03) 0%, rgba(91, 141, 246, 0.06) 100%);
    border-radius: var(--radius-card);
    border: 1px solid rgba(47, 107, 240, 0.08);
}

.greeting-line {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.greeting-sub {
    font-size: 15px;
    color: var(--text-sec);
}

.priority-section {
    margin-bottom: 36px;
}

.action-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.action-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.badge.opportunity {
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.1) 0%, rgba(47, 107, 240, 0.15) 100%);
    color: var(--primary);
}

.badge.connection {
    background: linear-gradient(135deg, rgba(42, 182, 106, 0.1) 0%, rgba(42, 182, 106, 0.15) 100%);
    color: var(--success);
}

.badge.reminder {
    background: linear-gradient(135deg, rgba(255, 177, 0, 0.1) 0%, rgba(255, 177, 0, 0.15) 100%);
    color: var(--warning);
}

.action-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.action-reason {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.profile-section {
    margin-bottom: 36px;
}

.profile-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 18px;
    transition: all 0.2s ease;
}

.profile-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.profile-suggestion {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.4;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    height: 36px;
    padding: 0 18px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--primary);
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary-light);
}

.insights-section {
    margin-bottom: 36px;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-card {
    background: linear-gradient(135deg, #F8FAFF 0%, #F0F4FF 100%);
    border: 1px solid rgba(47, 107, 240, 0.12);
    border-radius: var(--radius-card);
    padding: 18px;
    transition: all 0.2s ease;
}

.insight-card:hover {
    border-color: rgba(47, 107, 240, 0.25);
    transform: translateX(2px);
}

.insight-text {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.6;
    font-weight: 500;
}

.steps-section {
    margin-bottom: 36px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.step-pill {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 14px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.ask-eva-section {
    margin-bottom: 28px;
}

.ask-eva-input {
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.06) 0%, rgba(91, 141, 246, 0.08) 100%);
    border-radius: var(--radius-btn);
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border: 1.5px solid rgba(47, 107, 240, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ask-eva-input:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.08) 0%, rgba(91, 141, 246, 0.12) 100%);
    box-shadow: 0 4px 16px rgba(47, 107, 240, 0.12);
}

.eva-icon-input {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    margin-right: 14px;
    fill: none;
    stroke-width: 2;
}

.eva-placeholder {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   BOTTOM NAVIGATION
======================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.03);
}

.nav-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: #9CA3AF;
    font-size: 10px;
    font-weight: 500;
    width: 50px;
    transition: all 0.2s ease;
}

.nav-item.active {
    color: var(--primary);
}

.nav-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========================================
   FEED SCREEN STYLES
======================================== */

.feed-screen .page-wrapper {
    padding-top: 0;
}

/* Sticky Header */
.feed-sticky-header {
    position: sticky;
    top: 0;
    background: rgba(250, 251, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 50;
    padding: 16px 16px 12px 16px;
    margin: 0 -16px 24px -16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.feed-search-bar {
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.04) 0%, rgba(91, 141, 246, 0.06) 100%);
    border-radius: var(--radius-btn);
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    transition: all 0.2s ease;
    border: 1.5px solid rgba(47, 107, 240, 0.12);
    margin-bottom: 16px;
}

.feed-search-bar:focus-within {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(47, 107, 240, 0.06) 0%, rgba(91, 141, 246, 0.08) 100%);
    box-shadow: 0 4px 16px rgba(47, 107, 240, 0.12);
}

.search-icon-feed {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    margin-right: 12px;
    flex-shrink: 0;
}

.feed-search-input {
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-main);
    width: 100%;
    outline: none;
    font-weight: 500;
}

.feed-search-input::placeholder {
    color: var(--text-light);
}

/* Feed Tabs */
.feed-tabs {
    display: flex;
    gap: 8px;
}

.feed-tab {
    flex: 1;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: all 0.2s ease;
}

.feed-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(47, 107, 240, 0.25);
}

.feed-tab:not(.active):hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Feed Sections */
.feed-section {
    margin-bottom: 40px;
}

.feed-section-header {
    margin-bottom: 18px;
    padding: 0 4px;
}

.feed-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(42, 182, 106, 0.1) 0%, rgba(42, 182, 106, 0.15) 100%);
    color: var(--success);
}

.eva-reasoning {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.feed-view-all {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 12px;
    margin-top: 16px;
    transition: opacity 0.2s ease;
}

.feed-view-all:hover {
    opacity: 0.7;
}

/* Post Cards */
.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.post-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.post-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.post-author-info {
    flex: 1;
}

.post-author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.post-author-role {
    font-size: 14px;
    color: var(--text-sec);
}

.post-time {
    font-size: 13px;
    color: var(--text-light);
    margin-left: auto;
}

.post-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 1;
}

.post-menu-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.post-content {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 12px;
}

.post-image {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.post-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.post-card:hover .post-image img {
    transform: scale(1.02);
}

.post-continue-reading {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    transition: opacity 0.2s ease;
}

.post-continue-reading:hover {
    opacity: 0.7;
}

/* Post Engagement */
.post-engagement {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.engagement-separator {
    color: var(--text-light);
    font-size: 12px;
    padding: 0 4px;
    user-select: none;
}

.engagement-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 12px;
    border-radius: 18px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-sec);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.engagement-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.engagement-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Circle Cards in Feed */
.circle-card-feed {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.circle-card-feed:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Opportunity Highlights */
.opportunity-highlights {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Feed End Indicator */
.feed-end {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 32px;
}

.feed-end-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.feed-end-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.feed-end-message {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feed-end-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Floating Action Button */
.feed-fab {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #5B8DF6 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(47, 107, 240, 0.3);
    transition: all 0.2s ease;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(47, 107, 240, 0.4);
}

.feed-fab svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}