:root {
    --patron-gold: #d4af37;
    --patron-gold-dim: #8b7355;
    --patron-gold-bright: #f0d878;
    --patron-void: #050505;
    --patron-surface: rgba(12, 12, 14, 0.92);
    --patron-border: rgba(212, 175, 55, 0.18);
    --patron-glow: rgba(212, 175, 55, 0.10);
    --patron-marble: linear-gradient(145deg, #0e0e10 0%, #08080a 50%, #0c0c0e 100%);
    --global-strip-height: 54px;
}

@media (max-width: 640px) {
    :root {
        --global-strip-height: 72px;
    }
}

.temple-patron-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 20%, rgba(65, 105, 225, 0.03) 0%, transparent 35%),
        linear-gradient(180deg, #050505 0%, #08080a 40%, #050505 100%);
    color: #e8e6e3;
}

/* Hero */
.patron-hero-section {
    padding: calc(var(--global-strip-height) + var(--nav-height) + 96px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.patron-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 25%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(65, 105, 225, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.patron-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 140%;
    height: 100%;
    transform: translateX(-50%);
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 120px,
            rgba(212, 175, 55, 0.015) 120px,
            rgba(212, 175, 55, 0.015) 121px
        );
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 80%);
}

.patron-hero-section .container {
    position: relative;
    z-index: 1;
}

.patron-hero-seal {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
}

.patron-seal-svg {
    width: 100%;
    height: 100%;
    animation: seal-rotate 60s linear infinite;
}

.patron-seal-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--patron-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}

@keyframes seal-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.patron-hero-section .section-eyebrow {
    color: var(--patron-gold-dim);
    letter-spacing: 0.28em;
    margin-bottom: 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.patron-hero-section .section-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    margin-bottom: 22px;
    background: linear-gradient(135deg, #fff 0%, var(--patron-gold-bright) 55%, var(--patron-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.04em;
}

.patron-hero-lead {
    max-width: 680px;
    margin: 0 auto 44px;
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    line-height: 1.85;
    color: #a0a0a0;
    font-weight: 300;
}

.patron-hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.patron-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    padding: 24px 28px;
    background: var(--patron-surface);
    border: 1px solid var(--patron-border);
    border-top: 2px solid var(--patron-gold);
    border-radius: 2px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.patron-stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--patron-gold);
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
    line-height: 1;
}

.patron-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
}

/* Section headers */
.patron-section-header,
.patron-wall-header {
    text-align: center;
    margin-bottom: 56px;
}

.patron-section-header .section-eyebrow,
.patron-wall-header .section-eyebrow {
    color: var(--patron-gold-dim);
    letter-spacing: 0.22em;
    margin-bottom: 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.patron-section-header .section-title,
.patron-wall-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

.patron-wall-subtitle {
    color: #888;
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Wall */
.patron-wall-section {
    padding: 96px 0;
    position: relative;
}

.patron-wall-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.patron-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Plaques */
.patron-plaque {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--patron-marble);
    border: 1px solid var(--patron-border);
    border-radius: 3px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease, border-color 0.45s ease;
    cursor: default;
}

.patron-plaque::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 1px;
    pointer-events: none;
}

.patron-plaque::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(212, 175, 55, 0.06) 45%, transparent 60%);
    pointer-events: none;
    transition: left 0.8s ease;
}

.patron-plaque:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.patron-plaque:hover::after {
    left: 100%;
}

.plaque-number {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--patron-gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.plaque-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.plaque-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--patron-gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.plaque-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.plaque-name a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.plaque-name a:hover {
    color: var(--patron-gold-bright);
    border-bottom-color: var(--patron-gold);
}

.plaque-title {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--patron-gold-dim);
    margin: 0 0 14px;
    letter-spacing: 0.03em;
}

.plaque-message {
    font-size: 0.82rem;
    color: #aaa;
    line-height: 1.55;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.plaque-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.plaque-platform {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Available plaque */
.patron-plaque--available {
    border-style: dashed;
    border-color: rgba(212, 175, 55, 0.12);
    background: rgba(8, 8, 10, 0.55);
    cursor: pointer;
}

.patron-plaque--available .plaque-content {
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

.patron-plaque--available:hover .plaque-content {
    opacity: 1;
}

.patron-plaque--available .plaque-available-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--patron-gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.18);
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.patron-plaque--available:hover .plaque-available-icon {
    color: var(--patron-gold);
    border-color: var(--patron-gold);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.patron-plaque--available .plaque-name {
    color: var(--patron-gold-dim);
    font-weight: 500;
}

.patron-plaque--available .plaque-title {
    color: #666;
}

/* Claimed plaque accent */
.patron-plaque--claimed {
    border-color: rgba(212, 175, 55, 0.28);
}

.patron-plaque--claimed::before {
    border-color: rgba(212, 175, 55, 0.14);
}

.patron-plaque--claimed .plaque-number {
    color: var(--patron-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Form */
.patron-form-section {
    padding: 96px 0;
    position: relative;
}

.patron-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.patron-form-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.patron-form-card {
    background:
        linear-gradient(160deg, rgba(16, 16, 18, 0.96), rgba(8, 8, 10, 0.98));
    border: 1px solid var(--patron-border);
    border-radius: 3px;
    padding: 48px;
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.04);
    position: relative;
}

.patron-form-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 1px;
    pointer-events: none;
}

.patron-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.patron-form-header .section-eyebrow {
    color: var(--patron-gold-dim);
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.patron-form-header .section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin-bottom: 8px;
}

.patron-form-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.6;
}

/* Sold-out state */
.patron-sold-out {
    text-align: center;
    padding: 56px 24px;
}

.patron-sold-out-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--patron-gold);
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.patron-sold-out-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 1.9rem);
    color: #fff;
    margin-bottom: 12px;
}

.patron-sold-out-body {
    max-width: 460px;
    margin: 0 auto 28px;
    color: #999;
    line-height: 1.7;
}

/* Form fields */
.patron-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.patron-field label,
.patron-amount-field > label,
.patron-social-field > label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--patron-gold-bright);
}

.patron-field input,
.patron-field textarea,
.patron-social-input-wrap input {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 3px;
    padding: 14px 16px;
    color: #f0f0f0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.patron-field input:hover,
.patron-field textarea:hover,
.patron-social-input-wrap:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.patron-field input:focus,
.patron-field textarea:focus,
.patron-social-input-wrap input:focus {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.patron-field-hint {
    color: #777;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.7rem;
}

.patron-amount-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.patron-amount-slider-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.patron-amount-slider-wrap input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 2px;
    outline: none;
}

.patron-amount-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--patron-gold);
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

.patron-amount-display {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--patron-gold);
    white-space: nowrap;
}

.patron-amount-period {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

.patron-amount-presets {
    display: flex;
    gap: 10px;
}

.patron-amount-presets button {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: #999;
    padding: 8px 18px;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.25s ease;
}

.patron-amount-presets button:hover,
.patron-amount-presets button.active {
    background: rgba(212, 175, 55, 0.16);
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--patron-gold-bright);
}

.patron-social-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.patron-social-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.patron-social-tabs button {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.12);
    color: #888;
    padding: 7px 12px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
}

.patron-social-tabs button:hover,
.patron-social-tabs button.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--patron-gold-bright);
}

.patron-social-input-wrap {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.patron-social-input-wrap:focus-within {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.06);
}

.patron-social-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(212, 175, 55, 0.05);
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    color: var(--patron-gold-dim);
    font-size: 0.8rem;
    font-family: var(--font-mono, monospace);
    white-space: nowrap;
}

.patron-social-input-wrap input {
    flex: 1;
    border: none;
    border-radius: 0;
    background: transparent;
}

.patron-social-help {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
}

.patron-social-error,
.patron-form-error {
    color: #ff7a7a;
    font-size: 0.85rem;
    margin: 0;
}

.patron-submit {
    width: 100%;
    margin-top: 6px;
    padding: 16px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(135deg, var(--patron-gold) 0%, var(--patron-gold-dim) 100%);
    color: #000;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.patron-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.7s ease;
}

.patron-submit:hover::before {
    left: 100%;
}

.patron-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(212, 175, 55, 0.22);
}

.patron-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.patron-form-note {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

/* Fixed price */
.patron-fixed-price {
    text-align: center;
    padding: 22px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
}

.patron-price-mark {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.patron-price-amount {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--patron-gold);
    line-height: 1;
}

.patron-price-period {
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 0.04em;
}

.patron-price-note {
    font-size: 0.75rem;
    color: #777;
    margin: 0;
}

/* Preview */
.patron-preview-card {
    position: sticky;
    top: calc(var(--global-strip-height) + var(--nav-height) + 24px);
    background: var(--patron-marble);
    border: 1px solid var(--patron-border);
    border-radius: 3px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.patron-preview-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    pointer-events: none;
}

.patron-preview-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--patron-gold-dim);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.patron-preview-seal {
    color: var(--patron-gold);
}

.patron-preview-plaque {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--patron-marble);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 3px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.patron-preview-plaque::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

.patron-preview-number {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--patron-gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
}

.patron-preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.patron-preview-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--patron-gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 18px;
}

.patron-preview-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.patron-preview-title {
    font-size: 0.72rem;
    font-style: italic;
    color: var(--patron-gold-dim);
    margin: 0 0 12px;
}

.patron-preview-message {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.patron-preview-message.is-placeholder {
    color: #666;
}

.patron-preview-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.patron-preview-platform {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.patron-preview-hint {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin: 18px 0 0;
    line-height: 1.5;
}

/* Sponsor CTA */
.patron-sponsor-section {
    padding: 80px 0 120px;
}

.patron-sponsor-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--patron-surface);
    border: 1px solid var(--patron-border);
    border-radius: 3px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.patron-sponsor-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    pointer-events: none;
}

.patron-sponsor-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.patron-sponsor-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.patron-sponsor-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    font-size: 0.92rem;
}

.patron-sponsor-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--patron-gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .patron-wall {
        grid-template-columns: repeat(3, 1fr);
    }

    .patron-form-layout {
        grid-template-columns: 1fr;
    }

    .patron-preview-card {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }

    .patron-sponsor-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .patron-hero-section {
        padding: calc(var(--global-strip-height) + var(--nav-height) + 64px) 0 60px;
    }

    .patron-hero-stats {
        gap: 12px;
    }

    .patron-stat {
        min-width: 120px;
        padding: 18px 16px;
    }

    .patron-stat-value {
        font-size: 1.9rem;
    }

    .patron-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .patron-plaque {
        padding: 16px;
    }

    .plaque-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .plaque-name {
        font-size: 0.95rem;
    }

    .plaque-title {
        font-size: 0.68rem;
    }

    .plaque-message {
        font-size: 0.72rem;
    }

    .plaque-number {
        width: 26px;
        height: 26px;
        font-size: 0.6rem;
        top: 10px;
        right: 10px;
    }

    .patron-form-card {
        padding: 28px;
    }

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

    .patron-amount-slider-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .patron-social-tabs button {
        padding: 6px 9px;
        font-size: 0.7rem;
    }

    .patron-sponsor-card {
        padding: 32px;
    }
}

@media (max-width: 380px) {
    .patron-wall {
        grid-template-columns: 1fr;
    }
}
