/* =========================================================
   GLOBAL / BASE LAYOUT
========================================================= */

body {
  font-family: "Nunito", sans-serif !important;
  font-optical-sizing: auto;
}

.create-account-page {
    min-height: 100vh;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at top,
            rgba(85, 202, 124, 0.14),
            transparent 38%
        ),
        #f6f8f5;
}

.create-account-card {
    width: 100%;
    max-width: 520px;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e4e9e2;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(23, 48, 30, 0.1);
}

.create-account-brand {
    margin-bottom: 28px;
    text-align: center;
}

.brand-logo {
    color: #1f8f4c;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
}

.create-account-header {
    margin-bottom: 28px;
    text-align: center;
}

.create-account-header h1 {
    margin: 0 0 10px;
    color: #152219;
    font-size: 32px;
    line-height: 1.15;
}

.create-account-header p {
    margin: 0;
    color: #66706a;
    font-size: 16px;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #26352c;
    font-size: 14px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    color: #172019;
    background: #ffffff;
    border: 1px solid #ccd5cf;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.form-group input:focus {
    border-color: #289b58;
    box-shadow: 0 0 0 4px rgba(40, 155, 88, 0.12);
}

.form-group small {
    display: block;
    margin-top: 7px;
    color: #778079;
    font-size: 13px;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 22px;
    color: #5c665f;
    font-size: 14px;
    line-height: 1.45;
}

.terms-checkbox input {
    margin-top: 3px;
}

.terms-checkbox a,
.create-account-footer a {
    color: #1f8f4c;
    font-weight: 700;
    text-decoration: none;
}

.create-account-button {
    width: 100%;
    padding: 15px 20px;
    color: #ffffff;
    background: #208f4d;
    border: 0;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.create-account-button:hover {
    background: #19773f;
}

.create-account-footer {
    margin-top: 24px;
    color: #68716b;
    text-align: center;
    font-size: 14px;
}

.form-messages {
    margin-bottom: 20px;
}

.form-message {
    padding: 13px 15px;
    border-radius: 11px;
    font-size: 14px;
}

.form-message-error {
    color: #922f2f;
    background: #fff0f0;
    border: 1px solid #f3caca;
}

.form-message-success {
    color: #21683a;
    background: #edf9f1;
    border: 1px solid #c8e9d2;
}

@media (max-width: 580px) {
    .create-account-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .create-account-header h1 {
        font-size: 28px;
    }
}
/* ---------- Layout ---------- */

html,
body{
    height:100%;
    margin:0;
}

body{
    display:flex;
    flex-direction:column;
    font-family:Inter,Arial,sans-serif;
    background:#f7f8fa;
    color:#222;
}

.site-main{
    flex:1;
}

/* ---------- Header ---------- */

.site-header{

    background:#ffffff;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:1000;

}

.site-header-inner{

    max-width:1280px;
    margin:auto;

    height:72px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 30px;

}

.site-logo{

    font-size:24px;
    font-weight:800;

    color:#000000;

    text-decoration:none;

}

.site-nav{

    display:flex;
    align-items:center;
    gap:28px;

}

.site-nav a{

    color:#444;
    text-decoration:none;
    font-weight:600;

}

.site-nav a:hover{

    color:#000000;

}

.site-nav-button{

    background:#000000;
    color:#fff !important;

    padding:10px 22px;

    border-radius:10px;

}

.site-nav-button:hover{

    background:#149049;

}

/* ---------- Footer ---------- */

.site-footer{

    background:#121417;
    color:#d2d5d8;

    margin-top:100px;

    padding-top:70px;

}

.site-footer h5{

    color:#fff;
    font-weight:700;

    margin-bottom:22px;

}

.footer-logo{

    color:#fff;
    font-size:34px;
    font-weight:800;

    margin-bottom:18px;

}

.footer-text{

    color:#9ea5ad;
    line-height:1.8;

    max-width:420px;

}

.footer-links{

    list-style:none;

    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#bfc4ca;
    text-decoration:none;

}

.footer-links a:hover{

    color:#fff;

}

.footer-contact{

    color:#9ea5ad;
    line-height:1.8;

}

.footer-contact a{

    color:#bfc4ca;
    text-decoration:none;

}

.footer-contact a:hover{

    color:#fff;

}

.site-footer hr{

    margin:55px 0 30px;

    border:none;
    border-top:1px solid #2a2f35;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;
    align-items:center;

    padding-bottom:35px;

    color:#7c848c;

    font-size:14px;

}

/* ---------- Mobile ---------- */

@media(max-width:768px){

    .site-header-inner{

        padding:0 18px;

    }

    .site-nav{

        gap:15px;
        font-size:14px;

    }

    .footer-bottom{

        flex-direction:column;
        gap:15px;

        text-align:center;

    }

}

.signup-confirmation-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    background:
        radial-gradient(
            circle at top,
            rgba(117, 132, 106, 0.18),
            transparent 42%
        ),
        #f6f5f0;
}

.signup-confirmation-page .container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.signup-confirmation-card {
    width: 100%;
    padding: 70px 65px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(35, 45, 32, 0.09);
    border-radius: 28px;
    box-shadow:
        0 25px 70px rgba(34, 43, 30, 0.10),
        0 3px 12px rgba(34, 43, 30, 0.05);
}

.confirmation-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(117, 132, 106, 0.14);
    color: #75846a;
    font-size: 38px;
}

.signup-confirmation-card h1 {
    margin: 0 0 22px;
    color: #20251e;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.signup-confirmation-card > p {
    max-width: 580px;
    margin: 0 auto;
    color: #646b60;
    font-size: 18px;
    line-height: 1.75;
}

.signup-confirmation-card .confirmation-note {
    margin-top: 18px;
    color: #8a9086;
    font-size: 15px;
}

.signup-confirmation-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    margin-top: 36px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    background: #75846a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(117, 132, 106, 0.25);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.signup-confirmation-card .btn:hover {
    background: #65745c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(117, 132, 106, 0.30);
}

.signup-confirmation-card .btn:active {
    transform: translateY(0);
}

@media (max-width: 700px) {
    .signup-confirmation-page {
        min-height: calc(100vh - 120px);
        padding: 55px 16px;
    }

    .signup-confirmation-card {
        padding: 50px 24px;
        border-radius: 22px;
    }

    .confirmation-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 25px;
        font-size: 32px;
    }

    .signup-confirmation-card h1 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .signup-confirmation-card > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .signup-confirmation-card .btn {
        width: 100%;
    }
}


.beans-dashboard {
    min-height: 100vh;
    background: #f5f4ef;
    color: #263024;
}

.beans-dashboard .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.dashboard-hero {
    padding: 72px 0 54px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 255, 255, 0.18),
            transparent 34%
        ),
        #75846a;
    color: #fff;
}

.dashboard-hero-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.dashboard-welcome {
    max-width: 690px;
}

.dashboard-eyebrow,
.dashboard-panel-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.dashboard-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-welcome h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 750;
    line-height: 1;
    letter-spacing: -2.8px;
}

.dashboard-welcome p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
}

.dashboard-hero-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.dashboard-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
}

.dashboard-btn-primary {
    background: #fff;
    color: #526148;
    box-shadow: 0 12px 28px rgba(35, 45, 31, 0.2);
}

.dashboard-btn-primary:hover {
    color: #526148;
    box-shadow: 0 16px 34px rgba(35, 45, 31, 0.25);
}

.dashboard-btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.dashboard-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
}

.dashboard-content {
    padding: 0 0 100px;
}

.dashboard-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -28px;
}

.dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(55, 65, 50, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(52, 61, 47, 0.08);
}

.dashboard-stat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    background: rgba(117, 132, 106, 0.13);
    color: #75846a;
    font-size: 20px;
}

.dashboard-stat-card span {
    display: block;
    margin-bottom: 4px;
    color: #858b82;
    font-size: 13px;
    font-weight: 650;
}

.dashboard-stat-card strong {
    color: #263024;
    font-size: 26px;
    font-weight: 780;
    letter-spacing: -0.8px;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.75fr);
    gap: 24px;
    margin-top: 34px;
}

.dashboard-panel {
    background: #fff;
    border: 1px solid rgba(55, 65, 50, 0.08);
    border-radius: 24px;
    box-shadow: 0 12px 38px rgba(52, 61, 47, 0.06);
}

.dashboard-campaign-panel {
    padding: 30px;
}

.dashboard-activity-panel {
    padding: 30px 26px;
}

.dashboard-panel-header,
.dashboard-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.dashboard-panel-header {
    margin-bottom: 26px;
}

.dashboard-panel-eyebrow {
    margin-bottom: 7px;
    color: #8a9483;
}

.dashboard-panel-header h2,
.dashboard-section-header h2 {
    margin: 0;
    color: #263024;
    font-size: 28px;
    font-weight: 760;
    letter-spacing: -1px;
}

.dashboard-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #66765d;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.dashboard-text-link:hover {
    color: #46543f;
}

.dashboard-current-campaign {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 28px;
}

.dashboard-campaign-image {
    min-height: 260px;
    overflow: hidden;
    border-radius: 19px;
    background: #e9ece6;
}

.dashboard-campaign-image img,
.dashboard-trending-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dashboard-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            145deg,
            rgba(117, 132, 106, 0.18),
            rgba(117, 132, 106, 0.05)
        );
    color: #75846a;
    font-size: 46px;
}

.dashboard-campaign-details {
    min-width: 0;
    padding: 8px 0;
}

.dashboard-campaign-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
    color: #8a9186;
    font-size: 13px;
    font-weight: 650;
}

.dashboard-campaign-details h3,
.dashboard-trending-body h3 {
    margin: 0;
    color: #273025;
    font-weight: 760;
    letter-spacing: -0.6px;
}

.dashboard-campaign-details h3 {
    font-size: 26px;
}

.dashboard-campaign-details > p,
.dashboard-trending-body > p {
    color: #737b70;
    line-height: 1.65;
}

.dashboard-campaign-details > p {
    margin: 14px 0 25px;
    font-size: 15px;
}

.dashboard-progress-header {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 9px;
}

.dashboard-progress-header strong {
    color: #526248;
    font-size: 19px;
}

.dashboard-progress-header span {
    color: #979d94;
    font-size: 13px;
}

.dashboard-progress-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7eae4;
}

.dashboard-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: #75846a;
}

.dashboard-campaign-footer,
.dashboard-trending-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dashboard-campaign-footer {
    margin-top: 18px;
    color: #80877d;
    font-size: 13px;
}

.dashboard-forward-badge,
.dashboard-image-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 750;
}

.dashboard-forward-badge {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(117, 132, 106, 0.12);
    color: #607057;
}

.dashboard-empty-state {
    padding: 58px 30px;
    text-align: center;
    border: 1px dashed rgba(117, 132, 106, 0.35);
    border-radius: 20px;
    background: rgba(117, 132, 106, 0.04);
}

.dashboard-empty-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(117, 132, 106, 0.12);
    color: #75846a;
    font-size: 28px;
}

.dashboard-empty-state h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.dashboard-empty-state p {
    max-width: 500px;
    margin: 0 auto 24px;
    color: #747c71;
    line-height: 1.65;
}

.dashboard-empty-state .dashboard-btn-primary {
    background: #75846a;
    color: #fff;
    box-shadow: none;
}

.dashboard-empty-state .dashboard-btn-primary:hover {
    color: #fff;
    background: #65745c;
}

.dashboard-activity-list {
    display: flex;
    flex-direction: column;
}

.dashboard-activity-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid #eceeea;
}

.dashboard-activity-item:last-child {
    border-bottom: 0;
}

.dashboard-activity-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f0f2ed;
    color: #66765d;
}

.dashboard-activity-copy strong,
.dashboard-activity-copy span {
    display: block;
}

.dashboard-activity-copy strong {
    color: #313a2e;
    font-size: 14px;
}

.dashboard-activity-copy span {
    margin-top: 4px;
    color: #999f97;
    font-size: 12px;
}

.dashboard-activity-amount {
    color: #5d6d54;
    font-size: 14px;
}

.dashboard-small-empty {
    padding: 28px 10px;
    color: #8d938a;
    line-height: 1.6;
    text-align: center;
}

.dashboard-trending-section {
    margin-top: 64px;
}

.dashboard-section-header {
    align-items: flex-end;
    margin-bottom: 25px;
}

.dashboard-section-header p {
    margin: 9px 0 0;
    color: #777f74;
}

.dashboard-trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dashboard-trending-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(55, 65, 50, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(52, 61, 47, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dashboard-trending-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(52, 61, 47, 0.1);
}

.dashboard-trending-image {
    position: relative;
    height: 210px;
    display: block;
    overflow: hidden;
    background: #e9ece6;
}

.dashboard-image-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #5f7056;
    font-size: 11px;
    backdrop-filter: blur(8px);
}

.dashboard-trending-body {
    padding: 22px;
}

.dashboard-card-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 11px;
    color: #87907f;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-trending-body h3 {
    font-size: 20px;
    line-height: 1.25;
}

.dashboard-trending-body h3 a {
    color: inherit;
    text-decoration: none;
}

.dashboard-trending-body > p {
    min-height: 72px;
    margin: 12px 0 21px;
    font-size: 14px;
}

.dashboard-trending-footer {
    margin-top: 17px;
    color: #8e958b;
    font-size: 12px;
}

.dashboard-trending-footer a {
    color: #607057;
    font-weight: 800;
    text-decoration: none;
}

.dashboard-wide-empty {
    grid-column: 1 / -1;
}

@media (max-width: 1050px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .beans-dashboard .container {
        width: min(100% - 28px, 1180px);
    }

    .dashboard-hero {
        padding: 52px 0 70px;
    }

    .dashboard-hero-grid {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .dashboard-welcome h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .dashboard-welcome p {
        font-size: 16px;
    }

    .dashboard-hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .dashboard-btn {
        width: 100%;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }

    .dashboard-current-campaign {
        grid-template-columns: 1fr;
    }

    .dashboard-campaign-image {
        min-height: 220px;
    }

    .dashboard-campaign-panel,
    .dashboard-activity-panel {
        padding: 22px;
    }

    .dashboard-panel-header,
    .dashboard-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-trending-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-trending-body > p {
        min-height: auto;
    }
}


/* =========================================================
   LANDING PAGE
   Scoped to .beans-home to prevent cross-page conflicts.
========================================================= */


.beans-home {
    --blue: #75846a;
    --blue-dark: #5f6d56;
    --blue-soft: #eef1eb;
    --black: #000000;
    --white: #ffffff;
    --page: #f5fafc;
    --border: #d7e7ed;
    --muted: #66767d;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.09);

    min-height: 100vh;
    overflow: hidden;
}


.beans-home .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 20px;
            border: 1px solid transparent;
            border-radius: 999px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 900;
            transition: 0.2s ease;
        }

        .beans-home .button:hover {
            transform: translateY(-2px);
        }

        .beans-home .button-light {
            border-color: var(--border);
            background: var(--white);
            color: var(--black);
        }

        .beans-home .button-dark {
            background: var(--black);
            color: var(--white);
        }

        .beans-home .button-blue {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 12px 24px rgba(37, 150, 190, 0.24);
        }

        .beans-home .hero {
            position: relative;
            padding: 76px 0 68px;
            background:
                radial-gradient(circle at 12% 8%, rgba(117, 132, 106, 0.40), transparent 34%),
                radial-gradient(circle at 100% 0%, rgba(117, 132, 106, 0.18), transparent 40%),
                linear-gradient(180deg, #ffffff 0%, #edf3e9 100%);        
            }

        .beans-home .hero::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            right: -180px;
            top: 80px;
            border-radius: 50%;
            background: rgba(37, 150, 190, 0.08);
        }

        .beans-home .hero-inner {
            position: relative;
            z-index: 2;
            width: min(1220px, calc(100% - 32px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 72px;
            align-items: center;
        }

        .beans-home .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            margin-bottom: 20px;
            border-radius: 999px;
            background: var(--blue-soft);
            color: var(--blue-dark);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .beans-home .hero h1 {
            max-width: 700px;
            margin: 0;
            font-size: clamp(58px, 7vw, 96px);
            line-height: 0.92;
            letter-spacing: -6px;
        }

        .beans-home .hero h1 span {
            color: var(--blue);
        }

        .beans-home .hero-copy {
            max-width: 640px;
            margin: 28px 0 0;
            color: var(--muted);
            font-size: 20px;
            line-height: 1.7;
        }

        .beans-home .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .beans-home .hero-note {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 24px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .beans-home .hero-note strong {
            color: var(--black);
        }

        .beans-home .hero-phone-wrap {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .beans-home .hero-phone {
            width: min(350px, 100%);
            padding: 12px;
            border: 7px solid var(--black);
            border-radius: 42px;
            background: var(--black);
            box-shadow: 0 36px 80px rgba(0, 0, 0, 0.2);
            transform: rotate(3deg);
        }

        .beans-home .phone-screen {
            position: relative;
            min-height: 610px;
            overflow: hidden;
            border-radius: 29px;
            background:
                linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.75)),
                url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=900&q=80") center/cover;
        }

        .beans-home .phone-top {
            display: flex;
            justify-content: space-between;
            padding: 20px;
            color: var(--white);
            font-size: 13px;
            font-weight: 900;
        }

        .beans-home .live-pill {
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(8px);
        }

        .beans-home .phone-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 24px;
            color: var(--white);
        }

        .beans-home .phone-content h3 {
            margin: 0;
            font-size: 27px;
            letter-spacing: -1px;
        }

        .beans-home .phone-content p {
            margin: 10px 0 18px;
            font-size: 15px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.84);
        }

        .beans-home .phone-progress {
            height: 8px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.22);
        }

        .beans-home .phone-progress span {
            display: block;
            height: 100%;
            width: 64%;
            border-radius: inherit;
            background: var(--blue);
        }

        .beans-home .phone-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 13px;
            font-weight: 900;
        }

        .beans-home .phone-give-button {
            width: 100%;
            margin-top: 18px;
            padding: 15px;
            border: 0;
            border-radius: 14px;
            background: var(--white);
            color: var(--black);
            font-weight: 900;
        }

        .beans-home .floating-card {
            position: absolute;
            left: -40px;
            bottom: 70px;
            width: 210px;
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: 18px;
            background: var(--white);
            box-shadow: var(--shadow);
            transform: rotate(-5deg);
        }

        .beans-home .floating-card strong {
            display: block;
            margin-bottom: 6px;
            font-size: 15px;
        }

        .beans-home .floating-card span {
            color: var(--muted);
            font-size: 12px;
            line-height: 1.5;
        }

        .beans-home .section {
            padding: 84px 0;
        }

        .beans-home .section-white {
            background: var(--white);
        }

        .beans-home .section-inner {
            width: min(1220px, calc(100% - 32px));
            margin: 0 auto;
        }

        .beans-home .section-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 34px;
        }

        .beans-home .section-heading h2 {
            margin: 0;
            font-size: clamp(38px, 5vw, 62px);
            line-height: 1;
            letter-spacing: -3px;
        }

        .beans-home .section-heading p {
            max-width: 480px;
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.6;
        }

        .beans-home .request-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .beans-home .request-card {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--white);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
            transition: 0.25s ease;
        }

        .beans-home .request-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 54px rgba(0, 0, 0, 0.1);
        }

        .beans-home .request-video {
            position: relative;
            aspect-ratio: 9 / 14;
            overflow: hidden;
            background: #111;
        }

        .beans-home .request-video img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .beans-home .request-video::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.76) 100%);
        }

        .beans-home .video-badge {
            position: absolute;
            z-index: 2;
            top: 14px;
            left: 14px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.5);
            color: var(--white);
            font-size: 11px;
            font-weight: 900;
            backdrop-filter: blur(8px);
        }

        .beans-home .play-button {
            position: absolute;
            z-index: 3;
            top: 50%;
            left: 50%;
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            color: var(--black);
            font-size: 20px;
            transform: translate(-50%, -50%);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
        }

        .beans-home .video-caption {
            position: absolute;
            z-index: 2;
            left: 16px;
            right: 16px;
            bottom: 16px;
            color: var(--white);
        }

        .beans-home .video-caption strong {
            display: block;
            margin-bottom: 5px;
            font-size: 17px;
            line-height: 1.2;
        }

        .beans-home .video-caption span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
        }

        .beans-home .request-

        .request-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .beans-home .request-name {
            font-size: 14px;
            font-weight: 900;
        }

        .beans-home .request-location {
            color: var(--muted);
            font-size: 11px;
        }

        .beans-home .request-amount {
            color: var(--blue);
            font-size: 20px;
            font-weight: 900;
        }

        .beans-home .request-progress {
            height: 7px;
            overflow: hidden;
            border-radius: 999px;
            background: #e8eff2;
        }

        .beans-home .request-progress span {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: var(--blue);
        }

        .beans-home .request-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 9px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 700;
        }

        .beans-home .request-action {
            display: block;
            width: 100%;
            margin-top: 14px;
            padding: 12px;
            border: 0;
            border-radius: 12px;
            background: var(--black);
            color: var(--white);
            text-align: center;
            text-decoration: none;
            font-size: 13px;
            font-weight: 900;
        }

        .beans-home .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-top: 38px;
        }

        .beans-home .how-card {
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--white);
        }

        .beans-home .how-icon {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            margin-bottom: 18px;
            border-radius: 16px;
            background: var(--blue);
            color: var(--white);
            font-size: 22px;
            font-weight: 900;
        }

        .beans-home .how-card h3 {
            margin: 0 0 10px;
            font-size: 22px;
            letter-spacing: -0.8px;
        }

        .beans-home .how-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.65;
        }

        .beans-home .testimonials {
            position: relative;
            overflow: hidden;
            background: var(--black);
            color: var(--white);
        }

        .beans-home .testimonials::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            left: -160px;
            top: -140px;
            border-radius: 50%;
            background: rgba(37, 150, 190, 0.18);
        }

        .beans-home .testimonial-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 38px;
        }

        .beans-home .testimonial-card {
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.06);
        }

        .beans-home .quote-mark {
            color: var(--blue);
            font-size: 50px;
            line-height: 0.8;
            font-weight: 900;
        }

        .beans-home .testimonial-card p {
            margin: 18px 0 24px;
            font-size: 19px;
            line-height: 1.55;
        }

        .beans-home .testimonial-person {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .beans-home .testimonial-avatar {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--blue);
            font-weight: 900;
        }

        .beans-home .testimonial-person strong {
            display: block;
            font-size: 14px;
        }

        .beans-home .testimonial-person span {
            color: rgba(255, 255, 255, 0.62);
            font-size: 12px;
        }

        .beans-home .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--border);
        }

        .beans-home .stat {
            padding: 28px;
            background: var(--white);
            text-align: center;
        }

        .beans-home .stat strong {
            display: block;
            color: var(--blue);
            font-size: 38px;
            letter-spacing: -2px;
        }

        .beans-home .stat span {
            color: var(--muted);
            font-size: 13px;
            font-weight: 800;
        }

        .beans-home .final-cta {
            padding: 90px 0;
            background:
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.16), transparent 25%),
                var(--blue);
            color: var(--white);
        }

        .beans-home .final-cta-inner {
            width: min(930px, calc(100% - 32px));
            margin: 0 auto;
            text-align: center;
        }

        .beans-home .final-cta h2 {
            margin: 0;
            font-size: clamp(50px, 7vw, 84px);
            line-height: 0.95;
            letter-spacing: -5px;
        }

        .beans-home .final-cta p {
            max-width: 650px;
            margin: 24px auto 0;
            color: rgba(255, 255, 255, 0.84);
            font-size: 18px;
            line-height: 1.7;
        }

        .beans-home .final-cta .hero-actions {
            justify-content: center;
        }

        

        

        

        

        @media (max-width: 1050px) {
            .beans-home .hero-inner {
                grid-template-columns: 1fr;
            }

            .beans-home .hero-copy {
                max-width: 720px;
            }

            .beans-home .hero-phone-wrap {
                margin-top: 20px;
            }

            .beans-home .request-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .beans-home .request-video {
                aspect-ratio: 9 / 13;
            }
        }

        @media (max-width: 760px) {
            

            .beans-home .header-actions .button-light {
                display: none;
            }

            .beans-home .hero {
                padding-top: 52px;
            }

            .beans-home .hero h1 {
                font-size: 62px;
                letter-spacing: -4px;
            }

            .beans-home .hero-copy {
                font-size: 18px;
            }

            .beans-home .section-heading {
                align-items: flex-start;
                flex-direction: column;
            }

            .beans-home .how-grid,
.beans-home .testimonial-grid,
.beans-home .stats-strip {
                grid-template-columns: 1fr;
            }

            
        }

        @media (max-width: 560px) {
            

            

            .beans-home .button {
                min-height: 42px;
                padding: 0 15px;
                font-size: 12px;
            }

            .beans-home .hero h1 {
                font-size: 52px;
                line-height: 0.96;
            }

            .beans-home .request-grid {
                grid-template-columns: 1fr;
            }

            .beans-home .request-video {
                aspect-ratio: 9 / 12;
            }

            .beans-home .floating-card {
                left: -8px;
                bottom: 30px;
                width: 180px;
            }

            .beans-home .hero-phone {
                width: 310px;
            }

            .beans-home .phone-screen {
                min-height: 550px;
            }
        }

.beans-request-page {
    --green: #75846a;
    --green-dark: #5f6d56;
    --black: #000000;
    --white: #ffffff;
    --soft-blue: #eef1eb;
    --border: #d9e0d5;
    --muted: #647067;
    --page: #f5f6f2;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.09);

    min-height: 100vh;
    color: var(--black);
    background:
        radial-gradient(circle at 10% 0%, rgba(117, 132, 106, 0.18), transparent 28%),
        var(--page);
}

.beans-request-page button,
.beans-request-page input,
.beans-request-page textarea,
.beans-request-page select {
    font: inherit;
}

.beans-request-page .page-shell {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
            padding: 56px 0 80px;
        }

        .beans-request-page .request-layout {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 46px;
            align-items: start;
        }

        .beans-request-page .intro {
            padding-top: 34px;
        }

        .beans-request-page .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            margin-bottom: 18px;
            border-radius: 999px;
            background: var(--soft-blue);
            color: var(--green);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .beans-request-page .intro h1 {
            margin: 0;
            max-width: 600px;
            font-size: clamp(48px, 6vw, 78px);
            line-height: 0.98;
            letter-spacing: -4px;
        }

        .beans-request-page .intro h1 span {
            color: var(--green);
        }

        .beans-request-page .intro > p {
            max-width: 600px;
            margin: 24px 0 0;
            color: var(--muted);
            font-size: 19px;
            line-height: 1.7;
        }

        .beans-request-page .tip-list {
            display: grid;
            gap: 14px;
            margin-top: 34px;
        }

        .beans-request-page .tip {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.72);
        }

        .beans-request-page .tip-number {
            flex: 0 0 34px;
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green);
            color: var(--white);
            font-weight: 900;
        }

        .beans-request-page .tip strong {
            display: block;
            margin-bottom: 4px;
            font-size: 15px;
        }

        .beans-request-page .tip span {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.5;
        }

        .beans-request-page .request-card {
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .beans-request-page .form-heading {
            margin-bottom: 22px;
        }

        .beans-request-page .form-heading h2 {
            margin: 0;
            font-size: 30px;
            letter-spacing: -1.5px;
        }

        .beans-request-page .form-heading p {
            margin: 8px 0 0;
            color: var(--muted);
            line-height: 1.6;
        }

        .beans-request-page .video-upload {
            position: relative;
            display: block;
            min-height: 285px;
            border: 2px dashed var(--green);
            border-radius: 22px;
            overflow: hidden;
            background:
                linear-gradient(rgba(37, 150, 190, 0.07), rgba(37, 150, 190, 0.07)),
                var(--white);
            cursor: pointer;
            transition: 0.2s ease;
        }

        .beans-request-page .video-upload:hover {
            transform: translateY(-2px);
            border-color: var(--black);
        }

        .beans-request-page .video-upload input {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .beans-request-page .video-upload-content {
            min-height: 285px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .beans-request-page .video-icon {
            width: 78px;
            height: 78px;
            display: grid;
            place-items: center;
            margin-bottom: 18px;
            border-radius: 50%;
            background: var(--green);
            color: var(--white);
            font-size: 30px;
            box-shadow: 0 14px 32px rgba(37, 150, 190, 0.3);
        }

        .beans-request-page .video-upload strong {
            font-size: 22px;
        }

        .beans-request-page .video-upload p {
            max-width: 370px;
            margin: 10px 0 0;
            color: var(--muted);
            line-height: 1.6;
        }

        .beans-request-page .video-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .beans-request-page .video-meta span {
            padding: 7px 10px;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: var(--white);
            font-size: 12px;
            font-weight: 800;
        }

        .beans-request-page .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 20px;
        }

        .beans-request-page .field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .beans-request-page .field-full {
            grid-column: 1 / -1;
        }

        .beans-request-page .field label {
            font-size: 14px;
            font-weight: 900;
        }

        .beans-request-page .field input,
.beans-request-page .field textarea,
.beans-request-page .field select {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--black);
            background: var(--white);
            outline: none;
            transition: 0.2s ease;
        }

        .beans-request-page .field input:focus,
.beans-request-page .field textarea:focus,
.beans-request-page .field select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 4px rgba(37, 150, 190, 0.12);
        }

        .beans-request-page .field textarea {
            min-height: 105px;
            resize: vertical;
        }

        .beans-request-page .field-note {
            color: var(--muted);
            font-size: 12px;
        }

        .beans-request-page .amount-wrap {
            position: relative;
        }

        .beans-request-page .amount-symbol {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--green-dark);
            font-weight: 900;
        }

        .beans-request-page .amount-wrap input {
            padding-left: 32px;
        }

        .beans-request-page .request-preview {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
            margin-top: 20px;
            padding: 18px;
            border: 1px solid rgba(37, 150, 190, 0.2);
            border-radius: 18px;
            background: var(--soft-blue);
        }

        .beans-request-page .request-preview strong {
            display: block;
            margin-bottom: 4px;
        }

        .beans-request-page .request-preview span {
            color: var(--muted);
            font-size: 13px;
        }

        .beans-request-page .preview-amount {
            color: var(--green);
            font-size: 28px;
            font-weight: 900;
            white-space: nowrap;
        }

        .beans-request-page .checkbox-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 18px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.5;
        }

        .beans-request-page .checkbox-row input {
            margin-top: 3px;
            accent-color: var(--green);
        }

        .beans-request-page .submit-button {
            width: 100%;
            margin-top: 20px;
            padding: 17px 20px;
            border: 0;
            border-radius: 16px;
            background: var(--black);
            color: var(--white);
            font-size: 16px;
            font-weight: 900;
            cursor: pointer;
            transition: 0.2s ease;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
        }

        .beans-request-page .submit-button:hover {
            transform: translateY(-2px);
            background: var(--green);
        }

        .beans-request-page .form-footer {
            margin-top: 14px;
            text-align: center;
            color: var(--muted);
            font-size: 12px;
        }

        @media (max-width: 900px) {
            .beans-request-page .request-layout {
                grid-template-columns: 1fr;
            }

            .beans-request-page .intro {
                padding-top: 0;
            }
        }

        @media (max-width: 640px) {
            

            

            

            

            .beans-request-page .page-shell {
                padding-top: 34px;
            }

            .beans-request-page .intro h1 {
                font-size: 50px;
                letter-spacing: -3px;
            }

            .beans-request-page .intro > p {
                font-size: 17px;
            }

            .beans-request-page .request-card {
                padding: 18px;
                border-radius: 22px;
            }

            .beans-request-page .form-grid {
                grid-template-columns: 1fr;
            }

            .beans-request-page .field-full {
                grid-column: auto;
            }

            .beans-request-page .request-preview {
                align-items: flex-start;
                flex-direction: column;
            }

            .beans-request-page .video-upload,
            .beans-request-page .video-upload-content {
                min-height: 250px;
            }
        }
.beans-campaign-page {
    --green: #75846a;
    --green-dark: #58634f;
    --green-soft: #eef1eb;
    --black: #000000;
    --white: #ffffff;
    --page: #f7f8f5;
    --border: #dde2d8;
    --muted: #6f776a;
    --shadow: 0 22px 65px rgba(0, 0, 0, 0.09);

    min-height: 100vh;
    color: var(--black);
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(117, 132, 106, 0.16),
            transparent 26%
        ),
        var(--page);
}

.beans-campaign-page button,
.beans-campaign-page input,
.beans-campaign-page textarea {
    font: inherit;
}

.beans-campaign-page .page-shell {
            width: min(1200px, calc(100% - 32px));
            margin: 0 auto;
            padding: 46px 0 80px;
        }

        .beans-campaign-page .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
        }

        .beans-campaign-page .request-layout {
            display: grid;
            grid-template-columns: minmax(340px, 0.88fr) minmax(420px, 1.12fr);
            gap: 42px;
            align-items: start;
        }

        .beans-campaign-page .video-column {
            position: sticky;
            top: 102px;
        }

        .beans-campaign-page .video-frame {
            position: relative;
            width: min(430px, 100%);
            margin: 0 auto;
            aspect-ratio: 9 / 16;
            overflow: hidden;
            border: 8px solid var(--black);
            border-radius: 36px;
            background: #111;
            box-shadow: 0 34px 80px rgba(0, 0, 0, 0.2);
        }

        .beans-campaign-page .video-frame video,
.beans-campaign-page .video-frame img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .beans-campaign-page .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.1), transparent 35%, rgba(0,0,0,0.72));
            pointer-events: none;
        }

        .beans-campaign-page .video-topbar {
            position: absolute;
            z-index: 3;
            top: 18px;
            left: 18px;
            right: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .beans-campaign-page .video-label {
            padding: 8px 11px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.5);
            color: var(--white);
            font-size: 11px;
            font-weight: 900;
            backdrop-filter: blur(8px);
        }

        .beans-campaign-page .mute-button {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            color: var(--white);
            cursor: pointer;
            backdrop-filter: blur(8px);
        }

        .beans-campaign-page .play-button {
            position: absolute;
            z-index: 4;
            top: 50%;
            left: 50%;
            width: 72px;
            height: 72px;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.94);
            color: var(--black);
            font-size: 25px;
            cursor: pointer;
            transform: translate(-50%, -50%);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
        }

        .beans-campaign-page .video-bottom {
            position: absolute;
            z-index: 3;
            left: 20px;
            right: 20px;
            bottom: 22px;
            color: var(--white);
        }

        .beans-campaign-page .video-bottom strong {
            display: block;
            font-size: 18px;
        }

        .beans-campaign-page .video-bottom span {
            display: block;
            margin-top: 5px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 12px;
        }

        .beans-campaign-page .share-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            width: min(430px, 100%);
            margin: 16px auto 0;
        }

        .beans-campaign-page .share-button {
            min-height: 48px;
            border: 1px solid var(--border);
            border-radius: 15px;
            background: var(--white);
            color: var(--black);
            font-weight: 900;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .beans-campaign-page .share-button:hover {
            transform: translateY(-2px);
            border-color: var(--green);
        }

        .beans-campaign-page .request-content {
            min-width: 0;
        }

        .beans-campaign-page .request-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--green-soft);
            color: var(--green-dark);
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .beans-campaign-page .request-content h1 {
            margin: 18px 0 0;
            font-size: clamp(44px, 5vw, 68px);
            line-height: 0.98;
            letter-spacing: -4px;
        }

        .beans-campaign-page .request-met

        .person-line {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .beans-campaign-page .avatar {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green);
            color: var(--white);
            font-weight: 900;
        }

        .beans-campaign-page .story-copy {
            margin: 24px 0 0;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.7;
        }

        .beans-campaign-page .funding-card {
            margin-top: 28px;
            padding: 25px;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .beans-campaign-page .funding-total {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: end;
        }

        .beans-campaign-page .funding-total strong {
            display: block;
            color: var(--green);
            font-size: 42px;
            letter-spacing: -2px;
        }

        .beans-campaign-page .funding-total span {
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        .beans-campaign-page .supporters {
            text-align: right;
        }

        .beans-campaign-page .supporters strong {
            color: var(--black);
            font-size: 24px;
            letter-spacing: -1px;
        }

        .beans-campaign-page .request-funding-progress {
            height: 11px;
            margin-top: 18px;
            overflow: hidden;
            border-radius: 999px;
            background: #e7ebe3;
        }

        .beans-campaign-page .request-funding-progress span {
            display: block;
            width: 64%;
            height: 100%;
            border-radius: inherit;
            background: var(--green);
        }

        .beans-campaign-page .funding-caption {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 10px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }

        .beans-campaign-page .donation-card {
            margin-top: 22px;
            padding: 25px;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--white);
        }

        .beans-campaign-page .donation-card h2 {
            margin: 0;
            font-size: 28px;
            letter-spacing: -1.5px;
        }

        .beans-campaign-page .donation-card > p {
            margin: 8px 0 0;
            color: var(--muted);
            line-height: 1.55;
        }

        .beans-campaign-page .amount-buttons {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .beans-campaign-page .amount-button {
            min-height: 52px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--white);
            color: var(--black);
            font-size: 15px;
            font-weight: 900;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .beans-campaign-page .amount-button:hover,
.beans-campaign-page .amount-button.active {
            border-color: var(--green);
            background: var(--green);
            color: var(--white);
            transform: translateY(-2px);
        }

        .beans-campaign-page .custom-wrap {
            position: relative;
            margin-top: 12px;
        }

        .beans-campaign-page .custom-wrap span {
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            color: var(--green-dark);
            font-weight: 900;
        }

        .beans-campaign-page .custom-wrap input {
            width: 100%;
            min-height: 54px;
            padding: 0 16px 0 34px;
            border: 1px solid var(--border);
            border-radius: 14px;
            outline: none;
        }

        .beans-campaign-page .custom-wrap input:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.13);
        }

        .beans-campaign-page .donor-comment {
            margin-top: 18px;
        }

        .beans-campaign-page .donor-comment label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 900;
        }

        .beans-campaign-page .donor-comment textare

        .donor-comment textarea:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.13);
        }

        .beans-campaign-page .comment-note {
            margin-top: 7px;
            color: var(--muted);
            font-size: 12px;
        }

        .beans-campaign-page .anonymous-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 16px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.45;
        }

        .beans-campaign-page .anonymous-row input {
            margin-top: 2px;
            accent-color: var(--green);
        }

        .beans-campaign-page .donate-button {
            width: 100%;
            min-height: 58px;
            margin-top: 18px;
            border: 0;
            border-radius: 16px;
            background: var(--black);
            color: var(--white);
            font-size: 17px;
            font-weight: 900;
            cursor: pointer;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
            transition: 0.2s ease;
        }

        .beans-campaign-page .donate-button:hover {
            transform: translateY(-2px);
            background: var(--green);
        }

        .beans-campaign-page .secure-note {
            margin-top: 12px;
            color: var(--muted);
            text-align: center;
            font-size: 12px;
        }

        .beans-campaign-page .updates-card,
.beans-campaign-page .comments-card {
            margin-top: 22px;
            padding: 25px;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--white);
        }

        .beans-campaign-page .section-title-row {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
        }

        .beans-campaign-page .section-title-row h2 {
            margin: 0;
            font-size: 25px;
            letter-spacing: -1px;
        }

        .beans-campaign-page .section-title-row span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
        }

        .beans-campaign-page .comment-list {
            display: grid;
            gap: 18px;
            margin-top: 20px;
        }

        .beans-campaign-page .comment {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .beans-campaign-page .comment-avatar {
            flex: 0 0 40px;
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green-soft);
            color: var(--green-dark);
            font-size: 13px;
            font-weight: 900;
        }

        .beans-campaign-page .comment-

        .comment-top {
            display: flex;
            justify-content: space-between;
            gap: 14px;
        }

        .beans-campaign-page .comment-top strong {
            font-size: 14px;
        }

        .beans-campaign-page .comment-top span {
            color: var(--muted);
            font-size: 11px;
        }

        .beans-campaign-page .comment-body p {
            margin: 7px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.55;
        }

        .beans-campaign-page .comment-donation {
            display: inline-flex;
            margin-top: 9px;
            padding: 6px 9px;
            border-radius: 999px;
            background: var(--green-soft);
            color: var(--green-dark);
            font-size: 11px;
            font-weight: 900;
        }

        .beans-campaign-page .safety-note {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-top: 22px;
            padding: 18px;
            border: 1px solid var(--border);
            border-radius: 18px;
            background: var(--green-soft);
        }

        .beans-campaign-page .safety-icon {
            flex: 0 0 38px;
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: var(--green);
            color: var(--white);
        }

        .beans-campaign-page .safety-note strong {
            display: block;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .beans-campaign-page .safety-note p {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.5;
        }

        @media (max-width: 950px) {
            .beans-campaign-page .request-layout {
                grid-template-columns: 1fr;
            }

            .beans-campaign-page .video-column {
                position: static;
            }

            .beans-campaign-page .video-frame {
                max-height: 720px;
            }
        }

        @media (max-width: 640px) {
            

            

            

            .beans-campaign-page .page-shell {
                padding-top: 28px;
            }

            .beans-campaign-page .request-content h1 {
                font-size: 46px;
                letter-spacing: -3px;
            }

            .beans-campaign-page .amount-buttons {
                grid-template-columns: repeat(3, 1fr);
            }

            .beans-campaign-page .funding-total {
                align-items: flex-start;
                flex-direction: column;
            }

            .beans-campaign-page .supporters {
                text-align: left;
            }

            .beans-campaign-page .share-row {
                grid-template-columns: 1fr;
            }
        }

        .beans-campaign-page .donor-comment textarea {
            width: 100%;
            min-height: 96px;
            padding: 14px 16px;
            box-sizing: border-box;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--white);
            color: var(--black);
            outline: none;
            resize: vertical;
        }
        .beans-campaign-page .request-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        .beans-campaign-page .person-line {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .beans-campaign-page .avatar {
            flex: 0 0 36px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--green);
            color: var(--white);
            font-weight: 900;
        }

        .beans-campaign-page .request-meta > span {
            display: inline-flex;
            align-items: center;
        }
        .beans-request-page .video-upload-section {
            width: 100%;
            margin-bottom: 28px;
        }

        .beans-request-page .video-upload {
            position: relative;
            display: flex;
            width: 100%;
            min-height: 280px;
            align-items: center;
            justify-content: center;
            padding: 32px;
            overflow: hidden;
            border: 2px dashed var(--border);
            border-radius: 22px;
            background: #f8faf7;
            cursor: pointer;
            transition:
                border-color 0.2s ease,
                background 0.2s ease,
                transform 0.2s ease;
        }

        .beans-request-page .video-upload:hover {
            border-color: var(--green);
            background: rgba(117, 132, 106, 0.08);
            transform: translateY(-2px);
        }

        .beans-request-page .video-upload input[type="file"] {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
        }

        .beans-request-page .video-upload-content {
            display: flex;
            max-width: 520px;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .beans-request-page .video-upload-content strong {
            color: var(--black);
            font-size: 20px;
            font-weight: 900;
        }

        .beans-request-page .video-upload-content p {
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.6;
        }

        .beans-request-page .video-icon {
            display: flex;
            width: 58px;
            height: 58px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-size: 20px;
            box-shadow: 0 10px 25px rgba(117, 132, 106, 0.25);
        }

        .beans-request-page .video-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 6px;
        }

        .beans-request-page .video-meta span {
            padding: 7px 10px;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: #fff;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }

        .beans-request-page .video-preview-wrap {
            width: 100%;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 22px;
            background: #111;
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
        }

        .beans-request-page .video-preview-wrap[hidden] {
            display: none;
        }

        .beans-request-page .video-preview-wrap video {
            display: block;
            width: 100%;
            max-height: 620px;
            aspect-ratio: 9 / 16;
            object-fit: contain;
            background: #111;
        }

        .beans-request-page .video-preview-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 16px;
            background: #fff;
        }

        .beans-request-page #videoFileName {
            min-width: 0;
            overflow: hidden;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .beans-request-page .change-video-button {
            flex: 0 0 auto;
            padding: 9px 14px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: #fff;
            color: var(--black);
            font-weight: 800;
            cursor: pointer;
        }

        .beans-request-page .change-video-button:hover {
            border-color: var(--green);
            color: var(--green);
        }

        .beans-profile-page {
            min-height: 100vh;
            padding: 72px 0 100px;
            background:
                radial-gradient(circle at 10% 0%, rgba(117, 132, 106, 0.28), transparent 32%),
                radial-gradient(circle at 100% 8%, rgba(117, 132, 106, 0.12), transparent 40%),
                linear-gradient(180deg, #ffffff 0%, #f1f5ee 100%);
            color: #263024;
        }

        .beans-profile-page .profile-shell {
            width: min(1040px, calc(100% - 32px));
            margin: 0 auto;
        }

        .beans-profile-page .profile-header {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 34px 0 38px;
        }

        .beans-profile-page .profile-avatar {
            width: 112px;
            height: 112px;
            display: grid;
            place-items: center;
            flex: 0 0 112px;
            border-radius: 34px;
            background: #75846a;
            color: #ffffff;
            font-size: 34px;
            font-weight: 900;
            letter-spacing: -1px;
            box-shadow: 0 18px 42px rgba(82, 97, 72, 0.24);
        }

        .beans-profile-page .profile-heading { min-width: 0; }

        .beans-profile-page .profile-name-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .beans-profile-page .profile-name-row h1 {
            margin: 0;
            color: #20281e;
            font-size: clamp(48px, 8vw, 82px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -4px;
        }

        .beans-profile-page .profile-verified {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(117, 132, 106, 0.13);
            color: #5f7056;
            font-size: 12px;
            font-weight: 850;
        }

        .beans-profile-page .profile-summary {
            margin: 18px 0 8px;
            color: #657060;
            font-size: 18px;
            line-height: 1.6;
        }

        .beans-profile-page .profile-member-since {
            color: #92998f;
            font-size: 13px;
            font-weight: 700;
        }

        .beans-profile-page .profile-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin: 12px 0 54px;
        }

        .beans-profile-page .profile-stat-card {
            padding: 25px;
            border: 1px solid rgba(55, 65, 50, 0.09);
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 16px 42px rgba(52, 61, 47, 0.07);
            backdrop-filter: blur(12px);
        }

        .beans-profile-page .profile-stat-label {
            display: block;
            margin-bottom: 14px;
            color: #7c8578;
            font-size: 12px;
            font-weight: 850;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .beans-profile-page .profile-stat-card strong {
            display: block;
            color: #2b3528;
            font-size: 38px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -1.5px;
        }

        .beans-profile-page .profile-stat-card small {
            display: block;
            margin-top: 8px;
            color: #90978d;
            font-size: 12px;
            font-weight: 650;
        }

        .beans-profile-page .profile-section-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 22px;
        }

        .beans-profile-page .profile-section-heading > div > span {
            display: block;
            margin-bottom: 7px;
            color: #879080;
            font-size: 12px;
            font-weight: 850;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .beans-profile-page .profile-section-heading h2 {
            margin: 0;
            color: #263024;
            font-size: clamp(30px, 5vw, 46px);
            font-weight: 900;
            letter-spacing: -2px;
        }

        .beans-profile-page .profile-section-heading > strong {
            color: #7a8376;
            font-size: 13px;
        }

        .beans-profile-page .profile-campaign-list {
            display: grid;
            gap: 16px;
        }

        .beans-profile-page .profile-campaign-card {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            gap: 22px;
            padding: 16px;
            border: 1px solid rgba(55, 65, 50, 0.09);
            border-radius: 22px;
            background: #ffffff;
            color: inherit;
            text-decoration: none;
            box-shadow: 0 12px 36px rgba(52, 61, 47, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .beans-profile-page .profile-campaign-card:hover {
            transform: translateY(-3px);
            border-color: rgba(117, 132, 106, 0.28);
            box-shadow: 0 18px 44px rgba(52, 61, 47, 0.10);
        }

        .beans-profile-page .profile-campaign-media {
            position: relative;
            min-height: 170px;
            overflow: hidden;
            border-radius: 17px;
            background: #e9ece6;
        }

        .beans-profile-page .profile-campaign-media img,
        .beans-profile-page .profile-campaign-placeholder {
            width: 100%;
            height: 100%;
        }

        .beans-profile-page .profile-campaign-media img {
            display: block;
            object-fit: cover;
        }

        .beans-profile-page .profile-campaign-placeholder {
            min-height: 170px;
            display: grid;
            place-items: center;
            background: linear-gradient(145deg, rgba(117, 132, 106, 0.20), rgba(117, 132, 106, 0.05));
            font-size: 42px;
        }

        .beans-profile-page .profile-campaign-category {
            position: absolute;
            top: 11px;
            left: 11px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(20, 25, 18, 0.62);
            color: #ffffff;
            font-size: 10px;
            font-weight: 850;
            backdrop-filter: blur(8px);
        }

        .beans-profile-page .profile-campaign-content {
            min-width: 0;
            padding: 7px 8px 7px 0;
        }

        .beans-profile-page .profile-campaign-topline,
        .beans-profile-page .profile-campaign-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .beans-profile-page .profile-campaign-topline {
            margin-bottom: 15px;
            color: #8a9186;
            font-size: 12px;
            font-weight: 700;
        }

        .beans-profile-page .profile-campaign-topline strong {
            color: #607057;
            font-size: 13px;
            font-weight: 900;
        }

        .beans-profile-page .profile-campaign-content h3 {
            margin: 0 0 24px;
            color: #263024;
            font-size: 25px;
            font-weight: 850;
            line-height: 1.2;
            letter-spacing: -0.8px;
        }

        .beans-profile-page .profile-progress-track {
            height: 9px;
            overflow: hidden;
            border-radius: 999px;
            background: #e7eae4;
        }

        .beans-profile-page .profile-progress-track span {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: #75846a;
        }

        .beans-profile-page .profile-campaign-footer {
            margin-top: 10px;
            color: #8a9186;
            font-size: 12px;
            font-weight: 650;
        }

        .beans-profile-page .profile-empty-state {
            padding: 64px 28px;
            border: 1px dashed rgba(117, 132, 106, 0.34);
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.64);
            text-align: center;
        }

        .beans-profile-page .profile-empty-icon {
            width: 74px;
            height: 74px;
            display: grid;
            place-items: center;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: rgba(117, 132, 106, 0.13);
            font-size: 30px;
        }

        .beans-profile-page .profile-empty-state h2 {
            margin: 0 0 9px;
            font-size: 27px;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .beans-profile-page .profile-empty-state p {
            margin: 0;
            color: #7c8578;
            line-height: 1.6;
        }

        @media (max-width: 760px) {
            .beans-profile-page { padding: 42px 0 72px; }

            .beans-profile-page .profile-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 22px;
            }

            .beans-profile-page .profile-avatar {
                width: 88px;
                height: 88px;
                flex-basis: 88px;
                border-radius: 27px;
                font-size: 28px;
            }

            .beans-profile-page .profile-name-row h1 {
                font-size: 54px;
                letter-spacing: -3px;
            }

            .beans-profile-page .profile-stats {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 42px;
            }

            .beans-profile-page .profile-stat-card {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: center;
                column-gap: 18px;
            }

            .beans-profile-page .profile-stat-label { margin: 0; }

            .beans-profile-page .profile-stat-card strong {
                grid-column: 2;
                grid-row: 1 / span 2;
                font-size: 32px;
            }

            .beans-profile-page .profile-stat-card small { margin-top: 4px; }

            .beans-profile-page .profile-section-heading {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }

            .beans-profile-page .profile-campaign-card {
                grid-template-columns: 108px minmax(0, 1fr);
                gap: 15px;
                padding: 12px;
            }

            .beans-profile-page .profile-campaign-media,
            .beans-profile-page .profile-campaign-placeholder {
                min-height: 142px;
            }

            .beans-profile-page .profile-campaign-content h3 {
                margin-bottom: 18px;
                font-size: 19px;
            }

            .beans-profile-page .profile-campaign-footer {
                align-items: flex-start;
                flex-direction: column;
                gap: 4px;
            }
        }

        @media (max-width: 480px) {
            .beans-profile-page .profile-campaign-card { grid-template-columns: 1fr; }

            .beans-profile-page .profile-campaign-media,
            .beans-profile-page .profile-campaign-placeholder {
                min-height: 240px;
            }
        }

        .login-card {
            max-width: 520px;
        }

        .password-label-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .forgot-password-link {
            color: #75846a;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
        }

        .forgot-password-link:hover {
            text-decoration: underline;
        }

        .password-input-wrap {
            position: relative;
        }

        .password-input-wrap input {
            padding-right: 78px;
        }

        .password-toggle {
            position: absolute;
            top: 50%;
            right: 14px;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            color: #75846a;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
        }

        .login-remember {
            margin-top: -4px;
            margin-bottom: 22px;
        }



/* ========================================
   FORGOT PASSWORD
======================================== */

.login-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    background:
        radial-gradient(circle at top left, rgba(117, 132, 106, 0.12), transparent 36%),
        #f7f7f3;
}

.login-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1px solid rgba(22, 29, 22, 0.08);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 20px 55px rgba(22, 29, 22, 0.10);
}

.login-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.login-brand .brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-brand .brand-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    margin: 0 0 12px;
    color: #20251f;
    font-size: clamp(2rem, 5vw, 2.65rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.login-header p {
    max-width: 390px;
    margin: 0 auto;
    color: #6b7269;
    font-size: 1rem;
    line-height: 1.65;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.login-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.login-card .form-group label {
    color: #252b24;
    font-size: 0.92rem;
    font-weight: 800;
}

.login-card .form-control {
    width: 100%;
    height: 56px;
    padding: 0 17px;
    color: #20251f;
    background: #fafaf7;
    border: 1px solid #dfe3db;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.login-card .form-control::placeholder {
    color: #a0a69d;
}

.login-card .form-control:hover {
    border-color: #c4cbc0;
}

.login-card .form-control:focus {
    background: #ffffff;
    border-color: #75846a;
    box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.14);
}

.login-card .btn-primary {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    color: #ffffff;
    background: #75846a;
    border: 1px solid #75846a;
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.login-card .btn-primary:hover {
    background: #65745b;
    border-color: #65745b;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(117, 132, 106, 0.24);
}

.login-card .btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.login-footer {
    margin-top: 28px;
    padding-top: 24px;
    text-align: center;
    border-top: 1px solid #eceee9;
}

.login-footer a {
    color: #65745b;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.login-footer a:hover {
    color: #20251f;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .login-page {
        align-items: flex-start;
        padding: 40px 16px;
    }

    .login-card {
        padding: 32px 22px;
        border-radius: 20px;
    }

    .login-header h1 {
        font-size: 2rem;
    }
}

/* ========================================
   USER SETTINGS
======================================== */

.settings-page {
    min-height: 100vh;
    padding: 70px 20px 100px;
    background: #f6f7f3;
}

.settings-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.settings-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.settings-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #75846a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.settings-heading h1 {
    margin: 0 0 10px;
    color: #20251f;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
}

.settings-heading p {
    margin: 0;
    color: #6f756d;
    font-size: 1.05rem;
}

.settings-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #65745b;
    font-weight: 800;
    text-decoration: none;
}

.settings-back-link:hover {
    color: #20251f;
}

.settings-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.settings-sidebar {
    position: sticky;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e3e7df;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(31, 39, 29, 0.05);
}

.settings-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    padding: 11px 13px;
    color: #62695f;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.settings-nav-link:hover,
.settings-nav-link.active {
    color: #ffffff;
    background: #75846a;
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.settings-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e2e6df;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(31, 39, 29, 0.06);
}

.settings-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.settings-card-header h2 {
    margin: 0 0 7px;
    color: #20251f;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.settings-card-header p {
    max-width: 600px;
    margin: 0;
    color: #777d74;
    line-height: 1.55;
}

.settings-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65745b;
    background: #eef1eb;
    border-radius: 14px;
    font-size: 1.25rem;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.settings-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.settings-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-field label {
    color: #282e27;
    font-size: 0.9rem;
    font-weight: 850;
}

.settings-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    color: #222721;
    background: #fafbf8;
    border: 1px solid #dfe4dc;
    border-radius: 13px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
}

.settings-field input:focus {
    background: #ffffff;
    border-color: #75846a;
    box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.14);
}

.settings-field input:disabled {
    color: #7c8279;
    background: #f0f1ee;
    cursor: not-allowed;
}

.settings-field small {
    color: #8a9087;
    font-size: 0.82rem;
}

.settings-actions,
.settings-button-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.settings-btn-primary {
    color: #ffffff;
    background: #75846a;
    border-color: #75846a;
}

.settings-btn-primary:hover {
    color: #ffffff;
    background: #65745b;
    border-color: #65745b;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(117, 132, 106, 0.23);
}

.settings-btn-secondary {
    color: #596350;
    background: #ffffff;
    border-color: #d8ded4;
}

.settings-btn-secondary:hover {
    color: #20251f;
    background: #f4f6f1;
    border-color: #c7cfc2;
}

.payout-status {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 16px;
}

.payout-status-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.payout-status strong {
    display: block;
    margin-bottom: 4px;
    color: #252a24;
    font-size: 1rem;
}

.payout-status p {
    margin: 0;
    color: #697067;
    line-height: 1.5;
}

.payout-status-not-connected,
.payout-status-incomplete {
    background: #fff8e8;
    border: 1px solid #f0dfb2;
}

.payout-status-not-connected .payout-status-icon,
.payout-status-incomplete .payout-status-icon {
    color: #9a6c0a;
    background: #ffedbd;
}

.payout-status-review {
    background: #edf4ff;
    border: 1px solid #cadcf6;
}

.payout-status-review .payout-status-icon {
    color: #41668e;
    background: #dceaff;
}

.payout-status-ready {
    background: #edf6ec;
    border: 1px solid #cce1c9;
}

.payout-status-ready .payout-status-icon {
    color: #4f7149;
    background: #d9ead6;
}

.payout-security-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 25px;
    padding-top: 22px;
    color: #777e74;
    border-top: 1px solid #ebeee8;
    font-size: 0.86rem;
    line-height: 1.5;
}

.payout-security-note i {
    margin-top: 2px;
    color: #75846a;
}

.stripe-refresh-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f6f7f3;
}

.stripe-refresh-card {
    width: 100%;
    max-width: 500px;
    padding: 42px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e6df;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(31, 39, 29, 0.08);
}

.stripe-refresh-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #65745b;
    background: #edf1ea;
    border-radius: 20px;
    font-size: 1.65rem;
}

.stripe-refresh-card h1 {
    margin: 0 0 13px;
    color: #20251f;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.stripe-refresh-card p {
    margin: 0 0 26px;
    color: #747a71;
    line-height: 1.6;
}

.stripe-refresh-back {
    display: inline-block;
    margin-top: 20px;
    color: #65745b;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 850px) {
    .settings-layout {
        grid-template-columns: 1fr;
    }

    .settings-sidebar {
        position: static;
        flex-direction: row;
        overflow-x: auto;
    }

    .settings-nav-link {
        flex: 0 0 auto;
    }
}

@media (max-width: 620px) {
    .settings-page {
        padding: 40px 14px 70px;
    }

    .settings-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .settings-form-row {
        grid-template-columns: 1fr;
    }

    .settings-card {
        padding: 24px 19px;
        border-radius: 20px;
    }

    .settings-card-header {
        gap: 15px;
    }

    .settings-btn {
        width: 100%;
    }

    .settings-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .settings-button-row form {
        width: 100%;
    }
}
.pay-it-forward-card {
    display: flex;
    gap: 18px;
    margin: 28px 0;
    padding: 22px;
    background: #f6faf4;
    border: 1px solid rgba(117,132,106,.25);
    border-radius: 16px;
}

.pay-it-forward-icon {
    font-size: 34px;
    line-height: 1;
}

.pay-it-forward-content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 800;
    color: rgb(117,132,106);
}

.pay-it-forward-content p {
    margin: 0 0 14px;
    color: #666;
    line-height: 1.6;
}

.pay-it-forward-checkbox {
    margin-bottom: 0;
}



/* ========================================
   CAMPAIGN SUBMITTED
======================================== */

.campaign-submitted-page {
    min-height: calc(100vh - 140px);
    padding: 70px 20px 100px;
    background:
        radial-gradient(
            circle at top left,
            rgba(117, 132, 106, 0.13),
            transparent 35%
        ),
        #f6f7f3;
}

.campaign-submitted-card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e1e6dd;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(31, 39, 29, 0.09);
}

.campaign-submitted-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #65745b;
    background: #edf1ea;
    border-radius: 20px;
    font-size: 1.7rem;
}

.campaign-submitted-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #75846a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.campaign-submitted-card > h1 {
    margin: 0 0 14px;
    color: #20251f;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.campaign-submitted-lead {
    max-width: 620px;
    margin: 0 0 30px;
    color: #70776d;
    font-size: 1.05rem;
    line-height: 1.65;
}

.campaign-submitted-preview {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 30px;
    padding: 16px;
    background: #f8f9f6;
    border: 1px solid #e4e8e1;
    border-radius: 20px;
}

.campaign-submitted-preview img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

.campaign-submitted-preview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-submitted-preview-content > span {
    margin-bottom: 7px;
    color: #75846a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.campaign-submitted-preview-content strong {
    margin-bottom: 8px;
    color: #252a24;
    font-size: 1.25rem;
    font-weight: 900;
}

.campaign-submitted-preview-content p {
    margin: 0 0 16px;
    color: #737970;
    line-height: 1.55;
}

.campaign-submitted-goal {
    color: #596550;
    font-weight: 900;
}

.campaign-review-status {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    padding: 22px;
    background: #fafbf8;
    border: 1px solid #e4e8e0;
    border-radius: 18px;
}

.campaign-review-status-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #a0a69d;
}

.campaign-review-status-item > i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.campaign-review-status-item strong,
.campaign-review-status-item span {
    display: block;
}

.campaign-review-status-item strong {
    margin-bottom: 2px;
    color: #7c8279;
}

.campaign-review-status-item span {
    font-size: 0.9rem;
    line-height: 1.45;
}

.campaign-review-status-item.complete {
    color: #63815d;
}

.campaign-review-status-item.complete strong {
    color: #435c3e;
}

.campaign-review-status-item.current {
    color: #a87916;
}

.campaign-review-status-item.current strong {
    color: #74530f;
}

.campaign-stripe-warning,
.campaign-stripe-ready {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 18px;
}

.campaign-stripe-warning {
    background: #fff7e6;
    border: 1px solid #eedcae;
}

.campaign-stripe-warning-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #91640a;
    background: #ffeab6;
    border-radius: 14px;
    font-size: 1.2rem;
}

.campaign-stripe-warning-content strong {
    display: block;
    margin-bottom: 5px;
    color: #60450e;
    font-size: 1rem;
}

.campaign-stripe-warning-content p {
    margin: 0 0 16px;
    color: #7c672f;
    line-height: 1.5;
}

.campaign-stripe-ready {
    color: #466940;
    background: #edf6eb;
    border: 1px solid #cde0c9;
}

.campaign-stripe-ready > i {
    margin-top: 2px;
    font-size: 1.25rem;
}

.campaign-stripe-ready strong,
.campaign-stripe-ready span {
    display: block;
}

.campaign-stripe-ready strong {
    margin-bottom: 3px;
}

.campaign-stripe-ready span {
    color: #688063;
    font-size: 0.9rem;
}

.campaign-submitted-actions {
    display: flex;
    gap: 12px;
}

.campaign-submitted-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 850;
    text-decoration: none;
}

.campaign-submitted-button.primary {
    color: #ffffff;
    background: #75846a;
    border-color: #75846a;
}

.campaign-submitted-button.primary:hover {
    color: #ffffff;
    background: #65745b;
}

.campaign-submitted-button.secondary {
    color: #596350;
    background: #ffffff;
    border-color: #d8ded4;
}

.campaign-submitted-button.secondary:hover {
    color: #20251f;
    background: #f4f6f1;
}

@media (max-width: 650px) {
    .campaign-submitted-page {
        padding: 40px 14px 70px;
    }

    .campaign-submitted-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .campaign-submitted-preview {
        grid-template-columns: 1fr;
    }

    .campaign-submitted-preview img {
        height: 360px;
    }

    .campaign-submitted-actions {
        flex-direction: column;
    }

    .campaign-submitted-button {
        width: 100%;
    }
}

.notification-toast{
    position:fixed;
    right:24px;
    bottom:24px;
    background:#111827;
    color:#fff;
    padding:16px 20px;
    border-radius:18px;
    box-shadow:0 18px 50px rgba(0,0,0,.25);
    z-index:9999;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.notification-toast span{
    color:#cbd5e1;
    font-size:13px;
}


.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(247, 248, 251, 0.92);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-card {
    background: white;
    border-radius: 24px;
    padding: 38px;
    width: min(420px, 90vw);
    text-align: center;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.14);
}

.loading-card h3 {
    color: #111827;
    font-weight: 900;
}

.loading-card p {
    color: #6b7280;
}

.dashboard-campaign-owner-tools {
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid rgba(117, 132, 106, 0.18);
}

.dashboard-update-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-update-form label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #263126;
}

.dashboard-update-form textarea {
    width: 100%;
    min-height: 130px;
    padding: 16px;
    border: 1px solid rgba(117, 132, 106, 0.3);
    border-radius: 14px;
    background: #ffffff;
    color: #202620;
    font: inherit;
    line-height: 1.55;
    resize: vertical;
    outline: none;
}

.dashboard-update-form textarea:focus {
    border-color: #75846a;
    box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.12);
}

.dashboard-update-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-update-form-footer span {
    color: #747b74;
    font-size: 0.85rem;
}

.dashboard-campaign-updates {
    margin-top: 34px;
}

.dashboard-campaign-updates > h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 800;
}

.dashboard-campaign-update {
    padding: 18px 0;
    border-bottom: 1px solid rgba(117, 132, 106, 0.14);
}

.dashboard-campaign-update:last-child {
    border-bottom: 0;
}

.dashboard-campaign-update p {
    margin: 0 0 9px;
    line-height: 1.6;
}

.dashboard-campaign-update span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7a817a;
    font-size: 0.82rem;
}

.dashboard-danger-zone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
    padding: 20px;
    border: 1px solid rgba(170, 56, 56, 0.2);
    border-radius: 16px;
    background: rgba(170, 56, 56, 0.04);
}

.dashboard-danger-zone strong {
    display: block;
    margin-bottom: 5px;
    color: #872f2f;
}

.dashboard-danger-zone p {
    max-width: 650px;
    margin: 0;
    color: #6f6565;
    font-size: 0.9rem;
    line-height: 1.5;
}

.dashboard-btn-danger {
    flex-shrink: 0;
    border: 1px solid #a33b3b;
    background: #a33b3b;
    color: #ffffff;
}

.dashboard-btn-danger:hover {
    background: #872f2f;
    border-color: #872f2f;
    color: #ffffff;
}

@media (max-width: 700px) {
    .dashboard-update-form-footer,
    .dashboard-danger-zone {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-update-form-footer .dashboard-btn,
    .dashboard-danger-zone .dashboard-btn {
        width: 100%;
        justify-content: center;
    }
}

.donor-name {
    margin-bottom: 1.5rem;
}

.donor-name label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #243024;
}

.donor-name input {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid #d8e0d5;
    border-radius: 14px;
    background: #ffffff;
    color: #202620;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.donor-name input::placeholder {
    color: #9aa39b;
}

.donor-name input:focus {
    outline: none;
    border-color: rgb(117, 132, 106);
    box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.12);
}

.donor-name .comment-note {
    margin-top: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #6d756d;
}

.donor-name .comment-note strong {
    color: #243024;
    font-weight: 700;
}

.campaign-updates-card {
    margin-top: 22px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid rgba(30, 35, 28, 0.1);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(24, 30, 21, 0.06);
}

.campaign-updates-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.campaign-updates-heading h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 850;
    color: #20251f;
}

.campaign-updates-heading span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #75846a;
}

.campaign-updates-list {
    display: flex;
    flex-direction: column;
}

.campaign-update {
    padding: 18px 0;
    border-top: 1px solid rgba(30, 35, 28, 0.08);
}

.campaign-update:first-child {
    padding-top: 0;
    border-top: 0;
}

.campaign-update:last-child {
    padding-bottom: 0;
}

.campaign-update-top {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
}

.campaign-update-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    object-fit: cover;
}

.campaign-update-avatar-fallback {
    display: grid;
    place-items: center;
    background: #e9eee5;
    color: #596651;
    font-size: 0.9rem;
    font-weight: 850;
}

.campaign-update-top > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.campaign-update-top strong {
    color: #20251f;
    font-size: 0.92rem;
    font-weight: 800;
}

.campaign-update-top span {
    color: #858b82;
    font-size: 0.78rem;
}

.campaign-update p {
    margin: 0;
    color: #51584e;
    font-size: 0.94rem;
    line-height: 1.65;
    white-space: pre-line;
}

@media (max-width: 900px) {
    .campaign-updates-card {
        margin-top: 18px;
    }
}

.payment-confirmed-page {
    display: flex;
    justify-content: center;
    padding: 80px 20px 100px;
    background:
        radial-gradient(
            circle at top,
            rgba(117, 132, 106, 0.15),
            transparent 42%
        ),
        #f6f8f4;
}

.payment-confirmed-card {
    width: 100%;
    max-width: 720px;
    padding: 54px;
    border: 1px solid rgba(117, 132, 106, 0.18);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(41, 54, 39, 0.1);
    text-align: center;
}

.payment-confirmed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(117, 132, 106, 0.12);
    color: #75846a;
    font-size: 32px;
}

.payment-confirmed-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #75846a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-confirmed-card h1 {
    max-width: 580px;
    margin: 0 auto 18px;
    color: #20271f;
    font-size: clamp(36px, 6vw, 58px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.payment-confirmed-lead {
    max-width: 560px;
    margin: 0 auto 18px;
    color: #3d483b;
    font-size: 20px;
    line-height: 1.55;
}

.payment-confirmed-lead strong {
    color: #75846a;
    font-weight: 900;
}

.payment-confirmed-message {
    max-width: 580px;
    margin: 0 auto;
    color: #687066;
    font-size: 16px;
    line-height: 1.7;
}

.payment-confirmed-summary {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 32px;
    padding: 20px 22px;
    border: 1px solid #e2e8df;
    border-radius: 18px;
    background: #fafbf9;
    text-align: left;
}

.payment-confirmed-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.payment-confirmed-summary span {
    color: #687066;
    font-size: 14px;
    font-weight: 700;
}

.payment-confirmed-summary strong {
    color: #263024;
    font-size: 18px;
    font-weight: 900;
}

.payment-confirmed-quote {
    position: relative;
    margin-top: 28px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(117, 132, 106, 0.08);
    color: #354033;
}

.payment-confirmed-quote > i {
    display: block;
    margin-bottom: 8px;
    color: #75846a;
    font-size: 24px;
}

.payment-confirmed-quote p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.payment-confirmed-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.payment-confirmed-primary,
.payment-confirmed-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.payment-confirmed-primary {
    border: 1px solid #75846a;
    background: #75846a;
    color: #ffffff;
}

.payment-confirmed-primary:hover {
    background: #66745d;
    border-color: #66745d;
    color: #ffffff;
    transform: translateY(-2px);
}

.payment-confirmed-secondary {
    border: 1px solid #d8dfd4;
    background: #ffffff;
    color: #354033;
}

.payment-confirmed-secondary:hover {
    border-color: #75846a;
    color: #75846a;
    transform: translateY(-2px);
}

.payment-confirmed-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 24px;
    color: #7a8378;
    font-size: 13px;
}

.payment-confirmed-secure i {
    color: #75846a;
}

@media (max-width: 650px) {
    .payment-confirmed-page {
        padding: 40px 14px 70px;
    }

    .payment-confirmed-card {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .payment-confirmed-actions {
        flex-direction: column;
    }

    .payment-confirmed-primary,
    .payment-confirmed-secondary {
        width: 100%;
    }
}
/* =========================================================
   FEWBEANS PAYMENT PAGES
========================================================= */

.beans-payment-page {
    min-height: 100vh;
    padding: 54px 20px 90px;
    background:
        radial-gradient(
            circle at top left,
            rgba(117, 132, 106, 0.12),
            transparent 34%
        ),
        #f5f3ed;
}

.payment-shell {
    width: min(100%, 720px);
    margin: 0 auto;
}

.beans-payment-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    color: #596451;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.beans-payment-page .back-link:hover {
    color: #30372d;
    transform: translateX(-3px);
}


/* =========================================================
   MAIN CARD
========================================================= */

.payment-confirm-card,
.payment-card {
    overflow: hidden;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(45, 53, 41, 0.09);
    border-radius: 28px;
    box-shadow:
        0 24px 70px rgba(38, 46, 34, 0.09),
        0 3px 12px rgba(38, 46, 34, 0.04);
}

.payment-confirm-heading {
    margin-bottom: 25px;
}

.payment-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: #75846a;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-confirm-heading h1,
.payment-card h1 {
    margin: 0 0 10px;
    color: #222820;
    font-size: clamp(1.8rem, 4vw, 2.45rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.payment-confirm-heading > p,
.payment-card > p {
    margin: 0;
    color: #6e746b;
    font-size: 1rem;
    line-height: 1.6;
}


/* =========================================================
   CAMPAIGN SUMMARY
========================================================= */

.payment-campaign-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
    padding: 14px;
    background: #f4f6f1;
    border: 1px solid rgba(117, 132, 106, 0.14);
    border-radius: 18px;
}

.payment-campaign-summary img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    object-fit: cover;
    border-radius: 14px;
}

.payment-campaign-summary > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.payment-campaign-summary strong {
    overflow: hidden;
    color: #252b23;
    font-size: 0.98rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-campaign-summary span {
    color: #777e74;
    font-size: 0.86rem;
}


/* =========================================================
   DONATION LINE ITEMS
========================================================= */

.payment-line,
.payment-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.payment-line {
    padding: 18px 0;
    border-top: 1px solid rgba(37, 43, 35, 0.08);
    border-bottom: 1px solid rgba(37, 43, 35, 0.08);
}

.payment-line span {
    color: #626960;
    font-size: 0.95rem;
    font-weight: 650;
}

.payment-line strong {
    color: #272e25;
    font-size: 1.08rem;
    font-weight: 900;
}

.payment-total-line {
    margin-top: 25px;
    padding: 20px 22px;
    background: #edf1e9;
    border: 1px solid rgba(117, 132, 106, 0.18);
    border-radius: 18px;
}

.payment-total-line span {
    color: #3f493b;
    font-size: 1rem;
    font-weight: 800;
}

.payment-total-line strong {
    color: #253021;
    font-size: 1.45rem;
    font-weight: 950;
    letter-spacing: -0.03em;
}


/* =========================================================
   TIP SECTION
========================================================= */

.tip-selection {
    margin-top: 24px;
    padding: 22px;
    background: #fafaf7;
    border: 1px solid rgba(37, 43, 35, 0.09);
    border-radius: 20px;
}

.tip-selection-heading {
    margin-bottom: 17px;
}

.tip-selection-heading strong {
    display: block;
    margin-bottom: 5px;
    color: #252b23;
    font-size: 1rem;
    font-weight: 900;
}

.tip-selection-heading p {
    margin: 0;
    color: #747a71;
    font-size: 0.88rem;
    line-height: 1.55;
}

.tip-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tip-button {
    min-height: 46px;
    padding: 10px;
    color: #4e5849;
    background: #ffffff;
    border: 1px solid rgba(78, 88, 73, 0.16);
    border-radius: 12px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.tip-button:hover {
    border-color: rgba(117, 132, 106, 0.48);
    transform: translateY(-1px);
}

.tip-button.active {
    color: #ffffff;
    background: #75846a;
    border-color: #75846a;
    box-shadow: 0 8px 20px rgba(117, 132, 106, 0.22);
}

.custom-tip-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.custom-tip-wrap > span {
    position: absolute;
    left: 16px;
    z-index: 1;
    color: #687062;
    font-size: 0.95rem;
    font-weight: 800;
}

.custom-tip-wrap input {
    width: 100%;
    height: 49px;
    padding: 0 15px 0 34px;
    color: #282e26;
    background: #ffffff;
    border: 1px solid rgba(45, 53, 41, 0.14);
    border-radius: 13px;
    outline: none;
    font: inherit;
    font-size: 0.94rem;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.custom-tip-wrap input:focus {
    border-color: #75846a;
    box-shadow: 0 0 0 4px rgba(117, 132, 106, 0.12);
}


/* =========================================================
   DONOR REVIEW
========================================================= */

.donor-review {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 22px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(37, 43, 35, 0.09);
    border-radius: 18px;
}

.donor-review > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.donor-review span {
    color: #8a9087;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.donor-review strong {
    color: #272d25;
    font-size: 0.95rem;
    font-weight: 850;
}

.donor-review p {
    margin: 0;
    color: #575f54;
    font-size: 0.92rem;
    line-height: 1.6;
    white-space: pre-line;
}


/* =========================================================
   BUTTONS AND SECURE NOTE
========================================================= */

.beans-payment-page .donate-button,
.payment-submit-button {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 20px;
    color: #ffffff;
    background: #75846a;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 13px 30px rgba(117, 132, 106, 0.25);
    font: inherit;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.beans-payment-page .donate-button:hover,
.payment-submit-button:hover {
    background: #68775e;
    box-shadow: 0 16px 34px rgba(117, 132, 106, 0.3);
    transform: translateY(-1px);
}

.beans-payment-page .donate-button:active,
.payment-submit-button:active {
    transform: translateY(0);
}

.beans-payment-page .donate-button:disabled,
.payment-submit-button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.beans-payment-page .secure-note {
    margin-top: 13px;
    color: #8a9087;
    font-size: 0.78rem;
    font-weight: 650;
    text-align: center;
}


/* =========================================================
   STRIPE PAYMENT ELEMENT PAGE
========================================================= */

.payment-summary-card {
    margin: 24px 0;
    padding: 20px;
    background: #f4f6f1;
    border: 1px solid rgba(117, 132, 106, 0.15);
    border-radius: 20px;
}

.payment-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    color: #62695e;
    font-size: 0.93rem;
}

.payment-summary-row + .payment-summary-row {
    border-top: 1px solid rgba(37, 43, 35, 0.07);
}

.payment-summary-row strong {
    color: #2b3228;
    font-weight: 850;
}

.payment-summary-row.payment-summary-total {
    margin-top: 5px;
    padding-top: 16px;
    color: #30382d;
    font-size: 1rem;
    font-weight: 850;
}

.payment-summary-row.payment-summary-total strong {
    font-size: 1.3rem;
    font-weight: 950;
}

.stripe-payment-wrap {
    margin-top: 22px;
    padding: 20px;
    background: #fafaf7;
    border: 1px solid rgba(37, 43, 35, 0.09);
    border-radius: 20px;
}

#payment-element {
    min-height: 80px;
}

#payment-message {
    display: none;
    margin-top: 15px;
    padding: 12px 14px;
    color: #912f2f;
    background: #fff2f2;
    border: 1px solid rgba(170, 47, 47, 0.14);
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.5;
}

#payment-message:not(:empty) {
    display: block;
}

.payment-loading {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.payment-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: fewbeans-spin 0.7s linear infinite;
}

@keyframes fewbeans-spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   PAYMENT TRUST ROW
========================================================= */

.payment-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.payment-trust-item {
    padding: 13px 10px;
    color: #71786e;
    background: #f7f8f5;
    border: 1px solid rgba(37, 43, 35, 0.07);
    border-radius: 13px;
    font-size: 0.74rem;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 680px) {
    .beans-payment-page {
        padding: 25px 13px 60px;
    }

    .payment-confirm-card,
    .payment-card {
        padding: 23px 18px;
        border-radius: 22px;
    }

    .payment-confirm-heading h1,
    .payment-card h1 {
        font-size: 1.8rem;
    }

    .payment-campaign-summary img {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .tip-selection {
        padding: 17px;
    }

    .tip-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-total-line {
        padding: 17px;
    }

    .payment-trust-row {
        grid-template-columns: 1fr;
    }
}