/* ═══════════════════════════════════════════
   NavPrompts — Design System v2
   Bold. Clean. Gumroad-energy.
   ═══════════════════════════════════════════ */

:root {
    /* Core palette */
    --bg: #FBF7F1;          /* warm cream */
    --bg-2: #FFFFFF;        /* card white */
    --bg-3: #F1EBE1;        /* soft sand */
    --text: #16130E;        /* near black */
    --muted: #6B655C;       /* warm grey */
    --border: #16130E;      /* black borders */

    --primary: #6C5CE7;     /* electric purple */
    --primary-dark: #5546C8;
    --accent: #FF90E8;      /* pink pop */
    --yellow: #FFC900;      /* marker yellow */
    --green: #16A34A;
    --red: #DC2626;
    --amber: #D97706;

    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 4px 4px 0 var(--border);
    --shadow-lg: 6px 6px 0 var(--border);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a { color: var(--primary); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--yellow); color: var(--text); }

/* ─── Header ─── */

.site-header {
    background: var(--bg);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--text);
    font-size: 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--border);
}

.brand b { color: var(--primary); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 26px; }

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color .15s;
}

.main-nav a:hover { color: var(--primary); }

.main-nav .nav-btn {
    background: var(--text);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid var(--border);
    transition: all .15s;
}

.main-nav .nav-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.main-nav .nav-admin { color: var(--primary); }

.nav-toggle, .nav-toggle-cb { display: none; }

/* ─── Buttons ─── */

.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .15s;
    line-height: 1.4;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
    color: #fff;
}

.btn-primary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--border); }

.btn-outline {
    background: var(--bg-2);
    color: var(--text);
    box-shadow: var(--shadow);
}

.btn-outline:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
    background: var(--yellow);
    color: var(--text);
}

.btn-lg { padding: 17px 40px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13.5px; box-shadow: 2px 2px 0 var(--border); }
.btn-sm:hover { box-shadow: 3px 3px 0 var(--border); }

.btn-danger { background: var(--red); color: #fff; box-shadow: 2px 2px 0 var(--border); }
.btn-green { background: var(--green); color: #fff; box-shadow: 2px 2px 0 var(--border); }
.btn-block { display: block; width: 100%; }

/* ─── Hero ─── */

.hero {
    text-align: center;
    padding: 90px 24px 60px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    background: var(--accent);
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: 3px 3px 0 var(--border);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 68px);
    font-weight: 700;
    margin-bottom: 22px;
}

.grad {
    background: var(--yellow);
    padding: 0 14px 4px;
    border-radius: 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: var(--text);
    -webkit-text-fill-color: currentColor;
}

.hero p.sub {
    font-size: 19px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 36px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 60px auto 0;
    max-width: 640px;
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 22px 10px;
}

.stat + .stat { border-left: 2px solid var(--border); }

.stat .num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
}

.stat .lbl {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* ─── Sections ─── */

.section { padding: 70px 0; }

.section-title {
    font-size: clamp(28px, 4vw, 38px);
    text-align: center;
    margin-bottom: 10px;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 44px;
    font-size: 17px;
    font-weight: 500;
}

/* ─── Category grid ─── */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 16px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    background: var(--bg-2);
    transition: all .15s;
    text-align: center;
    box-shadow: var(--shadow);
}

.cat-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
    background: #FFF9EC;
}

.cat-card .ico { font-size: 34px; margin-bottom: 10px; }
.cat-card .nm { font-size: 14px; font-weight: 700; }
.cat-card .ct { font-size: 12.5px; color: var(--muted); margin-top: 4px; font-weight: 600; }

/* ─── Steps ─── */

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid var(--border);
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); font-weight: 500; }

.step-arrow {
    font-size: 26px;
    color: var(--text);
    font-weight: bold;
    align-self: center;
}

/* ─── Prompt cards ─── */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
}

.pcard {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .15s;
    box-shadow: var(--shadow);
}

.pcard:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.pcard-thumb {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcard-thumb img { width: 100%; height: 100%; object-fit: cover; }
.locked .pcard-thumb img { filter: blur(6px); }

.thumb-emoji {
    font-size: 52px;
    filter: drop-shadow(2px 2px 0 rgba(0,0,0,.15));
}

/* gradient thumbs (when no image) */
.g0 { background: linear-gradient(135deg, #FFD3A5, #FD6585); }
.g1 { background: linear-gradient(135deg, #A8E6CF, #3EECAC); }
.g2 { background: linear-gradient(135deg, #C2E9FB, #A1C4FD); }
.g3 { background: linear-gradient(135deg, #FBC2EB, #A6C1EE); }
.g4 { background: linear-gradient(135deg, #FDEB71, #F8D800); }
.g5 { background: linear-gradient(135deg, #ABDCFF, #0396FF); }
.g6 { background: linear-gradient(135deg, #FEB692, #EA5455); }
.g7 { background: linear-gradient(135deg, #CE9FFC, #7367F0); }

.lock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--text);
    color: var(--yellow);
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.pcard-body { padding: 18px 18px 10px; flex: 1; }

.pcard-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    background: var(--accent);
    border: 1.5px solid var(--border);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.pcard-title { font-size: 16.5px; margin: 0 0 6px; font-weight: 700; }
.pcard-title a { color: var(--text); text-decoration: none; }
.pcard-title a:hover { color: var(--primary); }

.pcard-ex { font-size: 13.5px; color: var(--muted); font-weight: 500; }

.pcard-foot { padding: 12px 18px 18px; }

/* ─── Filters ─── */

.filters { margin-bottom: 30px; }

.search-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 20px;
}

.search-form input {
    flex: 1;
    padding: 13px 20px;
    border: 2px solid var(--border);
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    box-shadow: 3px 3px 0 var(--border);
}

.search-form input:focus { outline: none; box-shadow: 4px 4px 0 var(--primary); }
.search-form input::placeholder { color: var(--muted); }

.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.pill {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--border);
    color: var(--text);
    background: var(--bg-2);
    transition: all .12s;
}

.pill:hover { background: var(--yellow); }

.pill.active {
    background: var(--text);
    color: #fff;
}

/* ─── Banner ─── */

.mem-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--primary);
    padding: 18px 26px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    flex-wrap: wrap;
}

.mem-banner .btn {
    background: var(--yellow);
    color: var(--text);
    box-shadow: 2px 2px 0 var(--border);
}

/* ─── Pagination ─── */

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 44px; flex-wrap: wrap; }

.page-link {
    padding: 9px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    background: var(--bg-2);
    box-shadow: 2px 2px 0 var(--border);
    transition: all .12s;
}

.page-link.active, .page-link:hover {
    background: var(--primary);
    color: #fff;
}

/* ─── Single prompt ─── */

.prompt-single { max-width: 860px; margin: 48px auto; padding: 0 24px; }

.back-link {
    display: inline-block;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    box-shadow: 2px 2px 0 var(--border);
    transition: all .12s;
}

.back-link:hover { background: var(--yellow); }

.prompt-head h1 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }

.prompt-meta {
    display: flex;
    gap: 12px;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 30px;
    font-weight: 600;
    flex-wrap: wrap;
}

.prompt-meta span {
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    padding: 4px 13px;
    border-radius: 999px;
}

.prompt-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.prompt-gallery img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    cursor: zoom-in;
    box-shadow: 3px 3px 0 var(--border);
    transition: all .12s;
}

.prompt-gallery img:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--border); }

.copy-bar { display: flex; justify-content: flex-end; margin-bottom: 12px; }

.prompt-content {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    font-size: 15.5px;
    line-height: 1.9;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-weight: 500;
}

/* ─── Locked view ─── */

.locked-box { text-align: center; padding: 40px 25px 20px; }

.teaser {
    color: var(--muted);
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    max-height: 120px;
    overflow: hidden;
    margin-bottom: -50px;
    font-weight: 500;
}

.lock-panel {
    position: relative;
    background: linear-gradient(180deg, transparent, var(--bg) 30%);
    padding-top: 80px;
}

.lock-panel .ico { font-size: 46px; margin-bottom: 14px; }
.lock-panel h3 { font-size: 26px; margin-bottom: 10px; }
.lock-panel p { color: var(--muted); margin-bottom: 26px; font-weight: 500; }

.lock-buttons {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 340px;
    margin: 0 auto;
}

/* ─── Pricing ─── */

.pricing-wrap { max-width: 540px; margin: 44px auto 36px; padding: 0 24px; }

.price-card {
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 44px 36px 38px;
    background: var(--bg-2);
    text-align: center;
    position: relative;
    box-shadow: 8px 8px 0 var(--primary);
}

.price-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--text);
    border: 2px solid var(--border);
    padding: 6px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.price-num {
    font-size: 62px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.price-per { font-size: 18px; color: var(--muted); font-weight: 600; }

.features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features li {
    padding: 11px 0;
    border-bottom: 1.5px dashed #D8D0C2;
    font-size: 15px;
    font-weight: 500;
}

.features li:last-child { border-bottom: none; }

.features li::before {
    content: "✓";
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 12px;
    margin-right: 11px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.trust {
    text-align: center;
    padding: 18px 14px;
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 3px 3px 0 var(--border);
}

.trust b { display: block; font-size: 14.5px; margin-bottom: 3px; }
.trust span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ─── FAQ ─── */

.faq-list { max-width: 720px; margin: 0 auto; }

.faq {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-2);
    box-shadow: 3px 3px 0 var(--border);
}

.faq summary {
    padding: 17px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15.5px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 700; }
.faq[open] summary::after { content: "−"; }
.faq[open] summary { background: #FFF9EC; border-bottom: 2px solid var(--border); }
.faq p { padding: 15px 22px; font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ─── CTA ─── */

.final-cta {
    text-align: center;
    padding: 64px 24px;
    background: var(--text);
    border-radius: 20px;
    margin: 20px auto 60px;
    max-width: 1092px;
    color: #fff;
}

.final-cta h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 12px; color: #fff; }
.final-cta p { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 16.5px; font-weight: 500; }
.final-cta .btn-primary { box-shadow: 4px 4px 0 var(--yellow); }
.final-cta .btn-primary:hover { box-shadow: 6px 6px 0 var(--yellow); }

/* ─── Forms / Auth ─── */

.auth-box { max-width: 440px; margin: 70px auto; padding: 0 24px; }

.auth-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 38px 34px;
    box-shadow: var(--shadow-lg);
}

.auth-card h1 { font-size: 26px; margin-bottom: 26px; text-align: center; }

.fld { margin-bottom: 18px; }

.fld label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fld input, .fld select, .fld textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
}

.fld input:focus, .fld textarea:focus, .fld select:focus {
    outline: none;
    box-shadow: 3px 3px 0 var(--primary);
}

.fld textarea { min-height: 320px; line-height: 1.75; resize: vertical; }

.auth-alt { text-align: center; margin-top: 18px; font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ─── Alerts ─── */

.alert {
    padding: 13px 19px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14.5px;
    font-weight: 600;
    border: 2px solid var(--border);
}

.alert-error { background: #FEE2E2; color: #991B1B; }
.alert-ok { background: #DCFCE7; color: #166534; }

/* ─── Account ─── */

.account-wrap { max-width: 680px; margin: 52px auto; padding: 0 24px; }

.acc-card {
    background: var(--bg-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 22px;
}

.acc-card h3 { margin-bottom: 16px; font-size: 18px; }
.acc-card p { font-size: 15px; margin-bottom: 8px; font-weight: 500; }

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    border: 2px solid var(--border);
}

.badge-active { background: #BBF7D0; color: #14532D; }
.badge-inactive { background: #FECACA; color: #7F1D1D; }

/* ─── Footer ─── */

.site-footer {
    border-top: 2px solid var(--border);
    padding: 44px 0;
    margin-top: 60px;
    text-align: center;
    background: var(--bg-2);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand img { width: 32px; height: 32px; border-radius: 8px; border: 2px solid var(--border); }
.footer-brand b { color: var(--primary); }

.footer-tag { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; font-weight: 500; }

.footer-nav { display: flex; justify-content: center; gap: 26px; margin-bottom: 18px; flex-wrap: wrap; }

.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-nav a:hover { color: var(--primary); }

.footer-copy { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ─── Lightbox ─── */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(22, 19, 14, .93);
    z-index: 999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 12px; }

/* ─── Responsive ─── */

@media (max-width: 860px) {
    .steps { flex-direction: column; align-items: center; }
    .step { max-width: 420px; width: 100%; }
    .step-arrow { transform: rotate(90deg); }
    .trust-row { grid-template-columns: 1fr; max-width: 420px; }

    .nav-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: var(--text);
        user-select: none;
        line-height: 1;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 14px;
    }

    .nav-toggle-cb:checked ~ .main-nav { display: flex; }

    .main-nav a {
        padding: 14px 4px;
        border-top: 1.5px solid #E5DDD0;
        text-align: left;
    }

    .main-nav .nav-btn {
        background: none;
        color: var(--primary);
        border: none;
        border-top: 1.5px solid #E5DDD0;
        border-radius: 0;
        padding: 14px 4px;
        box-shadow: none;
    }
}

@media (max-width: 520px) {
    .hero { padding: 56px 20px 44px; }
    .grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card { padding: 20px 10px 16px; }
    .price-num { font-size: 50px; }
    .prompt-content { padding: 22px; font-size: 14.5px; }
    .section { padding: 48px 0; }
    .hero-stats { flex-direction: column; }
    .stat + .stat { border-left: none; border-top: 2px solid var(--border); }
    .mem-banner { flex-direction: column; text-align: center; }
    .auth-card { padding: 30px 24px; }
}
