/*
Theme Name: Dollar Earnings Theme
Theme URI: https://dollarearnings.com
Author: Dollar Earnings Team
Description: Tiered premium networking platform - Elite Modern Luxe UI
Version: 5.0.0
License: GNU General Public License v2 or later
Text Domain: dollarearnings-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@600;700;800&display=swap');

/* ===================================
   MODERN LUXE DESIGN SYSTEM
   =================================== */
:root {
    --primary-emerald: #10b981;
    --primary-dark: #065f46;
    --accent-gold: #d4af37;
    --accent-gold-light: #f59e0b;
    --bg-ivory: #fcfbf7;
    --bg-white: #ffffff;
    --text-charcoal: #1a1a1a;
    --text-muted: #525252;
    --text-ivory: #fcfbf7;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -10px rgba(16, 185, 129, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-ivory);
    color: var(--text-charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-charcoal);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: var(--primary-emerald);
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 0;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-charcoal);
}

.logo-text span {
    color: var(--primary-emerald);
}

/* Navigation Menu */
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 24px;
}

.main-navigation a {
    text-decoration: none;
    display: inline-block;
}

.nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-emerald);
}

.nav-link.btn-login, .nav-link.btn-dashboard, .nav-link.btn-connections {
    background: var(--bg-white);
    color: var(--primary-emerald);
    padding: 10px 24px;
    border-radius: 40px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-soft);
}

.nav-link.btn-login:hover, .nav-link.btn-dashboard:hover, .nav-link.btn-connections:hover {
    background: var(--primary-emerald);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.nav-link.btn-logout {
    color: #ef4444;
}
.nav-link.btn-logout:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-charcoal);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-soft);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===================================
   FRONT PAGE
   =================================== */
.tiered-system {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.main-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-charcoal);
}

.main-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.main-category-box {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    text-align: center;
    flex: 1;
    max-width: 450px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.main-category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-emerald);
    transform: scaleX(0);
    transition: var(--transition);
}

.main-category-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(16, 185, 129, 0.1);
}

.main-category-box:hover::before {
    transform: scaleX(1);
}

.main-category-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-emerald);
}

.main-category-box p {
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 400;
}

/* ===================================
   CATEGORY SWITCHER TABS
   =================================== */
.category-switcher-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.cat-tab {
    padding: 14px 40px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.cat-tab:hover {
    color: var(--primary-emerald);
    transform: translateY(-2px);
}

.cat-tab.active {
    background: var(--primary-emerald);
    color: #fff;
    border-color: var(--primary-emerald);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

/* ===================================
   TIER SELECTION
   =================================== */
.tier-selection-section {
    padding: 60px 0;
}

.page-title {
    font-size: 56px;
    text-align: center;
    margin-bottom: 12px;
}

.page-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 64px;
    font-size: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tier-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.tier-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 28px;
    padding: 48px 40px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    text-align: center;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-emerald);
}

.tier-label {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-charcoal);
}

.tier-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ===================================
   MODALS & FORMS
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-ivory);
    max-width: 500px;
    margin: 2% auto;
    padding: 40px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-height: 95vh;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.close-modal {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-charcoal);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: #111;
}

.form-instruction {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.registration-form .form-group {
    margin-bottom: 24px;
}

.registration-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
}

.registration-form input {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    font-size: 16px;
    font-family: var(--font-body);
    background: #fff;
    transition: var(--transition);
    color: #333;
}

.registration-form input:focus {
    outline: none;
    border-color: #e0eaff;
    background: #ebf2ff;
    box-shadow: 0 0 0 4px rgba(224, 234, 255, 0.4);
}

.registration-form input:-webkit-autofill,
.registration-form input:-webkit-autofill:hover, 
.registration-form input:-webkit-autofill:focus {
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: 0 0 0px 1000px #ebf2ff inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Method Tabs */
.method-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.method-btn {
    flex: 1;
    padding: 14px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: #444;
}

.method-btn:hover {
    background: #fdfdfd;
    border-color: var(--primary-emerald);
    color: var(--text-charcoal);
}

.method-btn.active {
    background: var(--primary-emerald);
    color: #fff;
    border-color: var(--primary-emerald);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-weight: 700;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 18px;
}

.btn-primary {
    background: var(--primary-emerald);
    color: #fff;
    width: 100%;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .main-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .main-category-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }
    
    .modal-content {
        margin: 0;
        height: 100%;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 40px 24px;
        overflow-y: auto;
    }
    
    .premium-network-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   WOOCOMMERCE CHECKOUT (2-COLUMN CLONE)
   =================================== */
.woocommerce-checkout {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background: transparent;
    padding: 0 20px;
}

.woocommerce-checkout h3#order_review_heading {
    display: none !important;
}

.woocommerce-checkout form.checkout_coupon,
.woocommerce-additional-fields,
.woocommerce-checkout-payment .place-order {
    display: none !important;
}

.woocommerce-billing-fields h3 {
    font-size: 20px;
    font-family: 'Merriweather', serif;
    color: #444;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

form.checkout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.left-checkout-col {
    width: 48%;
}

.right-checkout-col {
    width: 48%;
}

.woocommerce-checkout .col2-set {
    display: block !important;
    width: 100% !important;
}

.woocommerce-checkout .col2-set .col-1, 
.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.woocommerce form .form-row {
    padding: 0;
    margin-bottom: 20px;
    width: 100% !important;
}

.woocommerce form .form-row label {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c9302c;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}

.woocommerce form .form-row input.input-text {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.woocommerce form .form-row input.input-text:focus {
    border-color: #66afe9;
    background: #fff;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

#order_review {
    background: transparent;
    padding: 0;
    border: none;
}

#order_review::before {
    content: "Your order";
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #444;
    font-family: 'Merriweather', serif;
    margin-bottom: 25px;
}

.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 40px;
}

.woocommerce table.shop_table th {
    border: none;
    padding: 12px 0;
    border-bottom: 2px solid #000;
    text-transform: none;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.woocommerce table.shop_table th.product-total {
    text-align: right;
}

.woocommerce table.shop_table td {
    border: none;
    padding: 18px 0;
    border-bottom: 1px solid #000;
    font-weight: 400;
    font-size: 15px;
    color: #555;
}

.woocommerce table.shop_table tbody td.product-total,
.woocommerce table.shop_table tfoot td {
    text-align: right;
    font-weight: 700;
    color: #000;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    font-size: 18px;
    border-top: 2px solid #000;
    padding-top: 20px;
    color: #000;
    font-weight: 800;
}

.woocommerce table.shop_table tr.cart-subtotal th,
.woocommerce table.shop_table tr.cart-subtotal td {
    border-top: none;
    border-bottom: 2px solid #000;
    font-weight: 400;
    font-size: 15px;
    padding: 20px 0;
}

.woocommerce table.shop_table tr.order-total th,
.woocommerce table.shop_table tr.order-total td {
    font-size: 20px;
    border-top: none;
}

.woocommerce-checkout-payment {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.woocommerce-checkout-payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.woocommerce-privacy-policy-text {
    font-size: 13px !important;
    color: #777 !important;
    margin-top: 20px !important;
    line-height: 1.4 !important;
}

@media (max-width: 900px) {
    .left-checkout-col, .right-checkout-col {
        width: 100%;
    }
    .right-checkout-col {
        margin-top: 40px;
    }
}

/* ===================================
   DASHBOARD / OUTPUT PAGE
   =================================== */
.dashboard-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 56px;
    color: var(--text-charcoal);
}

.dashboard-title span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--primary-emerald);
    letter-spacing: 0.5px;
}

.section-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading::before {
    content: '';
    width: 24px;
    height: 4px;
    background: var(--primary-emerald);
    border-radius: 4px;
}

.mt-60 { margin-top: 60px; }

.connections-list, .available-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connection-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: var(--transition);
}

.premium-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(16, 185, 129, 0.2);
}

.unlocked-card {
    background: linear-gradient(to right, #ffffff, #fdfdfd);
    position: relative;
    overflow: hidden;
}

.unlocked-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--primary-emerald);
}

.info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 800;
}

.avail-name {
    color: var(--text-charcoal);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.unlock-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-emerald);
}

.meta-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.meta-date svg {
    color: var(--primary-emerald);
}

.action-box {
    background: rgba(0, 0, 0, 0.02);
    padding: 20px 32px;
    border-radius: 16px;
    text-align: center;
    min-width: 250px;
}

.action-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-handle-display {
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--text-charcoal);
    letter-spacing: 0.5px;
}

.btn-premium {
    background: var(--primary-emerald);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-premium:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.empty-state {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-white);
    border-radius: 24px;
    border: 1px dashed rgba(0,0,0,0.1);
    color: var(--text-muted);
    font-size: 18px;
}

/* ===================================
   PREMIUM NETWORK GRID (Cards)
   =================================== */
.premium-network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.network-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #111;
    font-weight: 800;
    font-family: 'Merriweather', serif;
    background: #f0f0f0;
    border: 1px solid #ddd;
}

.card-info {
    flex-grow: 1;
    margin-bottom: 25px;
}

.card-nickname {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-charcoal);
    margin-bottom: 8px;
    font-family: 'Merriweather', serif;
}

.card-meta {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.premium-connect-btn {
    width: 100%;
    background: var(--text-charcoal);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-connect-btn:hover {
    background: var(--primary-emerald);
    transform: scale(1.02);
}

/* ===================================
   MY CONNECTIONS PAGE
   =================================== */
.my-connections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-emerald);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Merriweather', serif;
    color: #333;
    flex-shrink: 0;
}

.contact-card-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-charcoal);
}

.contact-card-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-emerald);
    background: rgba(16,185,129,0.1);
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
}

.contact-card-body {
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
    padding: 16px;
}

.contact-card-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-card-handle {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-charcoal);
    word-break: break-all;
}

.contact-card-date {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .my-connections-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--text-charcoal);
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}
