header {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-default);
}

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

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.3px;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    border: 1px solid var(--border-default);
    background: transparent;
    color: var(--text-primary);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover { filter: brightness(1.03); }
.btn-secondary:hover { background: rgba(255,255,255,0.04); }

.btn-primary:focus,
.btn-secondary:focus,
input:focus {
    outline: 2px solid rgba(79,107,255,0.55);
    outline-offset: 2px;
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(1px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 24px;
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    padding: 24px;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: var(--text-secondary);
}

footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-default);
    color: var(--text-muted);
    font-size: 13px;
}

.ark-footer {
    background: transparent; /* keeps your page background */
    color: var(--text-secondary);
    padding: 0 0 28px;
    margin-top: 56px;
}

.ark-footer__divider {
    height: 1px;
    width: 100%;
    background: rgba(197, 202, 232, 0.18); /* subtle Arkpace divider on dark */
    margin-bottom: 18px;
}

.ark-footer__inner {
    padding-top: 6px;
}

.ark-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.ark-footer__left,
.ark-footer__right {
    white-space: nowrap;
}

.ark-footer__heart {
    color: #ff4d6d; /* small accent; keep as literal so it reads clearly */
    position: relative;
    top: 1px;
}

.ark-footer__bottom {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.ark-footer__link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.ark-footer__link:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .ark-footer__top {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .ark-footer__left,
    .ark-footer__right {
        white-space: normal;
    }
}
