:root {
    --bg: #0a0c10;
    --bg-mid: #12151c;
    --panel: #161a24;
    --panel-soft: #1e2433;
    --elevated: #1a2030;
    --text: #eef1ff;
    --muted: #9aa3b8;
    --primary: #8b9bff;
    --primary-hover: #aab6ff;
    --border: #2a3142;
    --danger: #ff7a8a;
    --success: #5ee0b3;
    --ring: rgba(139, 155, 255, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 112, 255, 0.18), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(45, 212, 191, 0.06), transparent 45%),
        linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 55%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.55;
}

body.page-landing {
    padding-bottom: 48px;
}

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

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.container {
    width: min(1080px, 92vw);
    margin: 0 auto;
    padding: 28px 0 56px;
}

/* —— Auth (login / register) —— */
body.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 16px;
}

body.auth-page.page-inner.theme-warm-premium {
    display: block;
    padding: 0;
}

body.auth-page .container {
    width: min(440px, 100%);
    padding: 0;
}

.auth-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    width: min(1080px, 92vw);
    margin: 0 auto;
    padding: 20px 16px 32px;
}

.auth-layout .auth-nav-minimal {
    flex-shrink: 0;
    margin-bottom: 8px;
}

.auth-layout .auth-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    align-self: center;
}

.auth-layout .site-footer {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 8px;
}

.auth-card {
    padding: 28px 26px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

body.auth-page.theme-warm-premium .auth-card {
    box-shadow: 0 20px 44px rgba(28, 26, 24, 0.12);
}

body.auth-page.theme-warm-premium .auth-card-title {
    font-size: clamp(1.45rem, 3.2vw, 1.9rem);
    margin-bottom: 10px;
}

/* —— Nav —— */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: rgba(22, 26, 36, 0.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
}

.brand {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.btn-nav {
    padding: 8px 16px !important;
    border-radius: 10px;
    font-size: 0.92rem;
}

/* —— Cards —— */
.card {
    background: linear-gradient(165deg, var(--panel) 0%, var(--elevated) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
}

.card-elevated {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.hero {
    padding: 36px 32px;
}

.hero-main {
    border-color: rgba(139, 155, 255, 0.25);
    background: linear-gradient(165deg, #1a1f2e 0%, #141824 100%);
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-main h1 {
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-strong {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

h1, h2, h3 {
    margin-top: 0;
}

.muted {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 18px;
}

.grid.two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.92rem;
}

input, select, textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid var(--border);
    background: var(--panel-soft);
    color: var(--text);
    border-radius: 10px;
    padding: 11px 13px;
    font-size: 0.96rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

input:hover, select:hover, textarea:hover {
    border-color: rgba(139, 155, 255, 0.35);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button, .btn {
    border: none;
    background: linear-gradient(180deg, #9aa6ff 0%, var(--primary) 100%);
    color: #0a0c10;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(99, 112, 255, 0.25);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

button:hover, .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 112, 255, 0.35);
    text-decoration: none;
}

button:active, .btn:active {
    transform: translateY(0);
}

.btn.alt {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: none;
}

.message {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid transparent;
}

.message.error {
    background: rgba(255, 122, 138, 0.12);
    border-color: rgba(255, 122, 138, 0.45);
    color: #ffd0d6;
}

.message.success {
    background: rgba(94, 224, 179, 0.1);
    border-color: rgba(94, 224, 179, 0.45);
    color: #c8fff0;
}

.post {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
}

.post:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.small {
    font-size: 0.9rem;
}

.card-footer-links .nav-links {
    margin-top: 8px;
}

/* —— Landing sections (chapters / features) —— */
.section-block {
    scroll-margin-top: 24px;
}

.section-heading {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.section-lead {
    margin: 0 0 20px;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.steps li {
    counter-increment: step;
    position: relative;
    padding: 16px 0 16px 52px;
    border-top: 1px solid var(--border);
}

.steps li:first-child {
    border-top: none;
    padding-top: 0;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #0a0c10;
    background: linear-gradient(180deg, #9aa6ff 0%, var(--primary) 100%);
    border-radius: 10px;
}

.steps li:first-child::before {
    top: -2px;
}

.step-title {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.grid.three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid {
    margin-top: 4px;
}

.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.cta-row {
    margin: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cta-row .btn.alt {
    margin-left: 0;
}

.wish-get-block {
    border-color: rgba(139, 155, 255, 0.28);
}

.wish-get-grid .feature {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    background: rgba(30, 36, 51, 0.45);
}

/* —— Interior pages (discovery, dashboards, legal) —— */
body.page-inner .top-nav {
    margin-bottom: 22px;
}

.prose {
    max-width: 52rem;
}

.prose h2 {
    font-size: 1.12rem;
    margin: 1.75rem 0 0.65rem;
    color: var(--text);
}

.prose h2:first-child {
    margin-top: 0;
}

.card.prose .section-heading.supporter-next {
    margin-top: 0;
    font-size: 1.15rem;
}

.prose p {
    margin: 0 0 0.85rem;
}

.prose ul {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.prose li {
    margin-bottom: 0.45rem;
}

.prose .doc-meta {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.faq-item {
    margin-bottom: 1.25rem;
}

.faq-item h3 {
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.search-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.creator-tagline {
    max-width: 52rem;
}

.creator-cta-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.support-inline-form {
    margin: 0;
}

.creator-highlights .feature {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 14px 10px;
    background: rgba(30, 36, 51, 0.45);
}

.creator-avatar {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--border);
    background: var(--panel-soft);
}

.post-image {
    width: min(100%, 620px);
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--panel-soft);
}

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

.creator-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(30, 36, 51, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.creator-card-media {
    aspect-ratio: 16 / 10;
    background: #0f1320;
}

.creator-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creator-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    background: linear-gradient(180deg, #26314c 0%, #1b2233 100%);
}

.creator-card-body {
    padding: 12px 12px 14px;
}

.creator-card-body h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.creator-card-bio {
    min-height: 44px;
    margin: 8px 0 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.creator-card-cta {
    width: 100%;
    text-align: center;
}

.creator-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 6px;
}

.creator-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffd2dd;
    border: 1px solid rgba(255, 120, 150, 0.45);
    background: rgba(255, 120, 150, 0.16);
}

.creator-badge-soft {
    color: var(--muted);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.creator-card-cta-pink {
    color: #fff;
    background: linear-gradient(180deg, #ff6f94 0%, #e54b74 100%);
    box-shadow: 0 8px 18px rgba(229, 75, 116, 0.28);
}

.creator-card-cta-pink:hover {
    box-shadow: 0 10px 22px rgba(229, 75, 116, 0.38);
}

.catalog-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.catalog-card-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.banner-error,
.banner-success,
.banner-notice {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.banner-error {
    color: #ffd0d6;
    border-color: rgba(255, 122, 138, 0.45);
    background: rgba(255, 122, 138, 0.12);
}

.banner-success {
    color: #d6fff0;
    border-color: rgba(94, 224, 179, 0.45);
    background: rgba(94, 224, 179, 0.12);
}

.banner-notice {
    color: var(--text);
    border-color: rgba(139, 155, 255, 0.35);
    background: rgba(139, 155, 255, 0.1);
}

.gift-intent-summary {
    border-color: rgba(139, 155, 255, 0.35);
    background: linear-gradient(165deg, rgba(22, 26, 36, 0.95) 0%, rgba(26, 32, 48, 0.95) 100%);
}

.gift-intent-summary h2 {
    margin-bottom: 8px;
}

.site-footer {
    width: min(1080px, 92vw);
    margin: 0 auto 28px;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
}

.site-footer p {
    margin: 4px 0;
}

.site-footer .footer-trust-links {
    margin-top: 12px;
    justify-content: center;
}

.site-footer .footer-trust-links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.92;
}

.site-footer .footer-trust-links a:hover {
    text-decoration: underline;
    opacity: 1;
}

body.page-landing .card-footer-links .footer-trust-links {
    margin-top: 8px;
    justify-content: flex-start;
}

/* —— Landing: Wishly-style warmth + premium lift (reference: https://www.wish.ly/wishlist ) —— */
body.page-landing {
    --bg: #ebe6df;
    --bg-mid: #f4f0ea;
    --panel: #fdfcfa;
    --panel-soft: #faf8f5;
    --elevated: #ffffff;
    --text: #1c1a18;
    --muted: #6a635c;
    --primary: #b8526f;
    --primary-hover: #cc6a85;
    --accent-champagne: #b8956c;
    --border: #e0d8cf;
    --danger: #b83232;
    --success: #1f7a5c;
    --ring: rgba(184, 82, 111, 0.38);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(184, 82, 111, 0.09), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 20%, rgba(184, 149, 108, 0.07), transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(255, 255, 255, 0.45), transparent 45%),
        linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
}

body.page-landing .top-nav-landing {
    background: rgba(255, 252, 248, 0.92);
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(34, 31, 29, 0.06);
}

body.page-landing .hero-main {
    border-color: rgba(199, 91, 122, 0.22);
    background: linear-gradient(155deg, #fffdfb 0%, #f7f0ea 55%, #efe8df 100%);
    overflow: hidden;
}

body.page-landing .hero-wishly-grid {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 38%);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

@media (max-width: 820px) {
    body.page-landing .hero-wishly-grid {
        grid-template-columns: 1fr;
    }

    body.page-landing .hero-wishly-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }
}

body.page-landing .hero-wishly-title {
    font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: clamp(1.85rem, 4.8vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

body.page-landing .hero-wishly-accent {
    color: var(--primary);
    font-weight: 600;
}

body.page-landing .hero-eyebrow {
    letter-spacing: 0.12em;
}

body.page-landing .hero-wishly-lead {
    font-size: 1.05rem;
    max-width: 36rem;
}

body.page-landing .hero-wishly-figure {
    margin: 0;
    position: relative;
}

body.page-landing .hero-wishly-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow:
        0 24px 48px rgba(34, 31, 29, 0.12),
        0 4px 12px rgba(199, 91, 122, 0.08);
    display: block;
    animation: wishlyFloat 7s ease-in-out infinite;
}

body.page-landing .hero-wishly-caption {
    margin-top: 10px;
    font-size: 0.82rem;
    text-align: center;
}

body.page-landing .hero-wishly {
    position: relative;
}

body.page-landing .hero-wishly-glow {
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 70%;
    background: radial-gradient(ellipse closest-side, rgba(184, 82, 111, 0.14), transparent 70%);
    pointer-events: none;
    animation: wishlyGlowPulse 9s ease-in-out infinite;
}

body.page-landing .hero-line {
    display: block;
}

body.page-landing .hero-line-where {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--muted);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin: 0.12em 0;
}

body.page-landing .hero-wishly-visual {
    position: relative;
    animation: wishlyFadeUp 0.85s ease 0.12s backwards;
}

body.page-landing .hero-wishly-ring {
    position: absolute;
    inset: -12px -8px auto -12px;
    height: 72%;
    border-radius: 28px;
    border: 1px solid rgba(184, 149, 108, 0.35);
    opacity: 0.85;
    pointer-events: none;
    animation: wishlyRingPulse 5s ease-in-out infinite;
}

body.page-landing .landing-marquee {
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffefb 0%, #f7f2eb 100%);
    box-shadow: 0 16px 40px rgba(28, 26, 24, 0.06);
}

body.page-landing .landing-marquee-inner {
    padding: 14px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body.page-landing .landing-marquee-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: wishlyMarquee 42s linear infinite;
}

body.page-landing .landing-marquee-group {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

body.page-landing .landing-marquee-track img {
    width: clamp(160px, 22vw, 220px);
    height: clamp(100px, 14vw, 150px);
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(28, 26, 24, 0.07);
}

body.page-landing .landing-catalog-spotlight {
    border-color: rgba(184, 149, 108, 0.28);
    background: linear-gradient(125deg, #fffdfb 0%, #f5ebe4 100%);
    overflow: hidden;
}

body.page-landing .landing-catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

@media (max-width: 720px) {
    body.page-landing .landing-catalog-grid {
        grid-template-columns: 1fr;
    }
}

body.page-landing .landing-catalog-visual {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 44px rgba(28, 26, 24, 0.1);
}

body.page-landing .landing-catalog-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-landing .landing-catalog-spotlight:hover .landing-catalog-img {
    transform: scale(1.06);
}

body.page-landing .landing-catalog-eyebrow {
    color: var(--accent-champagne);
}

body.page-landing .landing-catalog-title {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

body.page-landing .landing-catalog-lead {
    font-size: 1.02rem;
    max-width: 28rem;
}

body.page-landing .section-heading-serif {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    letter-spacing: -0.02em;
}

body.page-landing .landing-feature-grid .landing-feature-card {
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--elevated);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

body.page-landing .landing-feature-grid .landing-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(28, 26, 24, 0.1);
}

body.page-landing .landing-feature-visual {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

body.page-landing .landing-feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-landing .landing-feature-card:hover .landing-feature-visual img {
    transform: scale(1.05);
}

body.page-landing .landing-feature-grid .landing-feature-card h3,
body.page-landing .landing-feature-grid .landing-feature-card p {
    padding: 0 14px;
}

body.page-landing .landing-feature-grid .landing-feature-card h3 {
    margin-top: 14px;
}

body.page-landing .landing-feature-grid .landing-feature-card p {
    margin-bottom: 16px;
}

body.page-landing .landing-trust-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    background: rgba(255, 253, 251, 0.85);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.page-landing .landing-trust-card:hover {
    border-color: rgba(184, 82, 111, 0.22);
    box-shadow: 0 12px 28px rgba(28, 26, 24, 0.06);
}

body.page-landing .landing-cta-banner {
    position: relative;
    border-radius: 20px;
    padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 44px);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(184, 82, 111, 0.22);
}

body.page-landing .landing-cta-bg {
    position: absolute;
    inset: 0;
    /* Same-origin photo (/assets/marketing/hero.jpg) + tint — avoids blocked third-party CDNs */
    background:
        linear-gradient(135deg, rgba(28, 26, 24, 0.52) 0%, rgba(184, 82, 111, 0.35) 100%),
        url("/marketing-image.php?f=hero.jpg") center / cover no-repeat;
    animation: wishlyCtaKenburns 22s ease-in-out infinite alternate;
}

body.page-landing .landing-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

body.page-landing .landing-cta-title {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    color: #fff;
    margin: 0 0 12px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

body.page-landing .landing-cta-lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

body.page-landing .landing-cta-buttons .btn {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

body.page-landing .landing-cta-buttons .btn.alt {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    backdrop-filter: blur(8px);
}

body.page-landing .landing-cta-buttons .btn.alt:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Scroll reveals */
body.page-landing .wishly-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-landing .wishly-reveal.is-visible {
    opacity: 1;
    transform: none;
}

body.page-landing .wishly-reveal:not(.is-visible) .wish-get-panel,
body.page-landing .wishly-reveal:not(.is-visible) .landing-feature-card,
body.page-landing .wishly-reveal:not(.is-visible) .landing-trust-card {
    opacity: 0;
    transform: translateY(18px);
}

body.page-landing .wishly-reveal.is-visible .wish-get-panel,
body.page-landing .wishly-reveal.is-visible .landing-feature-card,
body.page-landing .wishly-reveal.is-visible .landing-trust-card {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}

body.page-landing .wishly-reveal.is-visible .wish-get-panel:nth-child(2),
body.page-landing .wishly-reveal.is-visible .landing-feature-card:nth-child(2),
body.page-landing .wishly-reveal.is-visible .landing-trust-card:nth-child(2) {
    transition-delay: 0.12s;
}

body.page-landing .wishly-reveal.is-visible .landing-feature-card:nth-child(3),
body.page-landing .wishly-reveal.is-visible .landing-trust-card:nth-child(3) {
    transition-delay: 0.22s;
}

body.page-landing .wish-get-showcase {
    border-color: rgba(199, 91, 122, 0.2);
    background: linear-gradient(180deg, #fffcf8 0%, #f8f4ee 100%);
}

body.page-landing .wish-get-heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
    margin-bottom: 22px;
}

body.page-landing .wish-get-mega {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--text);
}

body.page-landing .wish-get-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0.85;
    animation: wishlyPulse 2.4s ease-in-out infinite;
}

body.page-landing .wish-get-panel {
    background: var(--elevated);
    border-color: var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-landing .wish-get-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(34, 31, 29, 0.08);
}

body.page-landing .wish-get-media {
    border-radius: 12px;
    overflow: hidden;
    margin: -6px -6px 12px;
    border: 1px solid var(--border);
}

body.page-landing .wish-get-media img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

body.page-landing button,
body.page-landing .btn {
    background: linear-gradient(180deg, var(--primary-hover) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(199, 91, 122, 0.28);
}

body.page-landing button:hover,
body.page-landing .btn:hover {
    box-shadow: 0 10px 26px rgba(199, 91, 122, 0.34);
}

body.page-landing .btn.alt {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

body.page-landing .steps li::before {
    background: linear-gradient(180deg, var(--primary-hover) 0%, var(--primary) 100%);
    color: #fff;
}

body.page-landing .steps li {
    padding: 0;
}

body.page-landing .steps li a.landing-step-link {
    display: block;
    padding: 16px 0 16px 52px;
    text-decoration: none;
    color: inherit;
}

body.page-landing .steps li:first-child a.landing-step-link {
    padding-top: 0;
}

body.page-landing a.landing-step-link:hover .step-title,
body.page-landing a.landing-step-link:focus-visible .step-title {
    text-decoration: underline;
}

body.page-landing a.landing-step-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

body.page-landing a.landing-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

body.page-landing a.landing-card-link h3 {
    color: var(--text);
}

body.page-landing a.landing-card-link:hover h3,
body.page-landing a.landing-card-link:focus-visible h3 {
    text-decoration: underline;
}

body.page-landing a.landing-card-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 14px;
}

body.page-landing .landing-card-cta {
    margin: 0 14px 16px;
    font-size: 0.92rem;
    font-weight: 600;
}

body.page-landing .hero-wishly-copy > .eyebrow {
    animation: wishlyFadeUp 0.55s ease backwards;
}

body.page-landing .hero-wishly-copy > .hero-wishly-title {
    animation: wishlyFadeUp 0.65s ease 0.08s backwards;
}

body.page-landing .hero-wishly-copy > .hero-wishly-lead {
    animation: wishlyFadeUp 0.65s ease 0.16s backwards;
}

body.page-landing .hero-wishly-copy > .hero-wishly-cta {
    animation: wishlyFadeUp 0.65s ease 0.24s backwards;
}

body.page-landing .wish-animate {
    animation: wishlyFadeUp 0.7s ease backwards;
}

body.page-landing .wish-animate-delay {
    animation-delay: 0.15s;
}

@keyframes wishlyFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wishlyFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes wishlyPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes wishlyGlowPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.03);
    }
}

@keyframes wishlyRingPulse {
    0%, 100% {
        opacity: 0.65;
    }
    50% {
        opacity: 1;
    }
}

@keyframes wishlyMarquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes wishlyCtaKenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-landing .hero-wishly-copy > *,
    body.page-landing .hero-wishly-visual,
    body.page-landing .wish-animate,
    body.page-landing .wish-animate-delay,
    body.page-landing .hero-wishly-img,
    body.page-landing .wish-get-dot,
    body.page-landing .hero-wishly-glow,
    body.page-landing .hero-wishly-ring,
    body.page-landing .landing-marquee-track,
    body.page-landing .landing-cta-bg {
        animation: none !important;
    }

    body.page-landing .wishly-reveal {
        opacity: 1;
        transform: none;
    }

    body.page-landing .wishly-reveal .wish-get-panel,
    body.page-landing .wishly-reveal .landing-feature-card,
    body.page-landing .wishly-reveal .landing-trust-card {
        opacity: 1;
        transform: none;
    }

    body.page-landing .wish-get-panel:hover,
    body.page-landing .landing-feature-grid .landing-feature-card:hover,
    body.page-landing .landing-catalog-spotlight:hover .landing-catalog-img {
        transform: none;
    }
}

/* —— Discovery: catalog & creators (warm premium, matches homepage) —— */
body.page-inner.theme-warm-premium {
    --bg: #ebe6df;
    --bg-mid: #f4f0ea;
    --panel: #fdfcfa;
    --panel-soft: #faf8f5;
    --elevated: #ffffff;
    --text: #1c1a18;
    --muted: #6a635c;
    --primary: #b8526f;
    --primary-hover: #cc6a85;
    --accent-champagne: #b8956c;
    --border: #e0d8cf;
    --danger: #b83232;
    --success: #1f7a5c;
    --ring: rgba(184, 82, 111, 0.38);
    background:
        radial-gradient(ellipse 100% 80% at 50% -25%, rgba(184, 82, 111, 0.07), transparent 52%),
        radial-gradient(ellipse 70% 45% at 100% 10%, rgba(184, 149, 108, 0.06), transparent 48%),
        linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
    color: var(--text);
}

body.page-inner.theme-warm-premium a {
    color: var(--primary);
}

body.page-inner.theme-warm-premium a:hover {
    color: var(--primary-hover);
}

body.page-inner.theme-warm-premium .discovery-shell {
    padding-bottom: 48px;
}

body.page-inner.theme-warm-premium .top-nav-landing {
    background: rgba(255, 252, 248, 0.92);
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(34, 31, 29, 0.06);
    backdrop-filter: blur(10px);
}

body.page-inner.theme-warm-premium .card {
    background: linear-gradient(165deg, var(--panel) 0%, var(--elevated) 100%);
    border-color: var(--border);
}

body.page-inner.theme-warm-premium .discovery-intro-card {
    border-color: rgba(184, 149, 108, 0.28);
    background: linear-gradient(125deg, #fffdfb 0%, #f5ebe4 100%);
}

body.page-inner.theme-warm-premium .discovery-eyebrow {
    letter-spacing: 0.12em;
    color: var(--accent-champagne);
    margin: 0 0 10px;
}

body.page-inner.theme-warm-premium .discovery-page-title {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--text);
}

body.page-inner.theme-warm-premium .discovery-lead {
    font-size: 1.02rem;
    max-width: 40rem;
}

body.page-inner.theme-warm-premium label {
    color: var(--text);
}

body.page-inner.theme-warm-premium input,
body.page-inner.theme-warm-premium select,
body.page-inner.theme-warm-premium textarea {
    background: var(--panel-soft);
    border-color: var(--border);
    color: var(--text);
}

body.page-inner.theme-warm-premium input:hover,
body.page-inner.theme-warm-premium select:hover,
body.page-inner.theme-warm-premium textarea:hover {
    border-color: rgba(184, 82, 111, 0.28);
}

body.page-inner.theme-warm-premium button,
body.page-inner.theme-warm-premium .btn {
    background: linear-gradient(180deg, var(--primary-hover) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(184, 82, 111, 0.26);
}

body.page-inner.theme-warm-premium button:hover,
body.page-inner.theme-warm-premium .btn:hover {
    box-shadow: 0 10px 26px rgba(184, 82, 111, 0.32);
    color: #fff;
}

body.page-inner.theme-warm-premium .btn.alt {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

body.page-inner.theme-warm-premium .creator-card {
    background: var(--elevated);
    border-color: var(--border);
    box-shadow: 0 10px 28px rgba(28, 26, 24, 0.06);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease;
}

body.page-inner.theme-warm-premium .creator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(28, 26, 24, 0.11);
}

body.page-inner.theme-warm-premium .creator-card-media {
    background: #ebe7e2;
}

body.page-inner.theme-warm-premium .creator-card-placeholder {
    background: linear-gradient(160deg, #efe9e3 0%, #dfd6cd 100%);
    color: var(--text);
}

body.page-inner.theme-warm-premium .creator-card-bio {
    color: var(--muted);
}

body.page-inner.theme-warm-premium .creator-badge-soft {
    color: var(--muted);
    border-color: rgba(184, 82, 111, 0.22);
    background: rgba(184, 82, 111, 0.07);
}

body.page-inner.theme-warm-premium .catalog-chip-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

body.page-inner.theme-warm-premium .banner-error {
    color: #5c1018;
    border-color: rgba(184, 50, 50, 0.35);
    background: rgba(255, 200, 206, 0.35);
}

body.page-inner.theme-warm-premium .banner-success {
    color: #0d3d2e;
    border-color: rgba(31, 122, 92, 0.35);
    background: rgba(200, 245, 228, 0.45);
}

body.page-inner.theme-warm-premium .banner-notice {
    color: var(--text);
    border-color: rgba(184, 82, 111, 0.28);
    background: rgba(184, 82, 111, 0.08);
}

body.page-inner.theme-warm-premium .message.error {
    color: #5c1018;
    border-color: rgba(184, 50, 50, 0.35);
    background: rgba(255, 200, 206, 0.35);
}

body.page-inner.theme-warm-premium .message.success {
    color: #0d3d2e;
    border-color: rgba(31, 122, 92, 0.35);
    background: rgba(200, 245, 228, 0.45);
}

body.page-inner.theme-warm-premium .site-footer {
    color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
    body.page-inner.theme-warm-premium .creator-card:hover {
        transform: none;
    }
}

/* Creator profile — warm premium */
body.page-inner.theme-warm-premium .discovery-section-title {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: 1.28rem;
    letter-spacing: -0.02em;
    margin-top: 0;
    color: var(--text);
}

body.page-inner.theme-warm-premium section.gift-intent-summary {
    border-color: rgba(184, 82, 111, 0.24);
    background: linear-gradient(125deg, rgba(255, 253, 251, 0.98) 0%, rgba(248, 238, 232, 0.95) 100%);
}

body.page-inner.theme-warm-premium .gift-intent-heading {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--text);
}

body.page-inner.theme-warm-premium .gift-intent-eyebrow {
    margin-bottom: 8px;
}

body.page-inner.theme-warm-premium .creator-profile-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(16px, 3vw, 28px);
    align-items: start;
}

@media (max-width: 640px) {
    body.page-inner.theme-warm-premium .creator-profile-head {
        grid-template-columns: 1fr;
    }

    body.page-inner.theme-warm-premium .creator-profile-avatar-wrap {
        justify-self: center;
        order: -1;
    }
}

body.page-inner.theme-warm-premium .creator-profile-title {
    margin-bottom: 8px;
}

body.page-inner.theme-warm-premium .creator-avatar-hero {
    width: min(140px, 28vw);
    height: min(140px, 28vw);
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 32px rgba(28, 26, 24, 0.12);
}

body.page-inner.theme-warm-premium .creator-highlights .feature {
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(28, 26, 24, 0.05);
}

body.page-inner.theme-warm-premium .creator-highlights .feature:hover {
    border-color: rgba(184, 82, 111, 0.18);
}

body.page-inner.theme-warm-premium .wishlist-section-warm {
    border-color: rgba(184, 149, 108, 0.22);
    background: linear-gradient(180deg, #fffcf8 0%, #faf6f1 100%);
}

body.page-inner.theme-warm-premium .support-inline-form select {
    max-width: 200px;
}

body.page-inner.theme-warm-premium .post-image {
    border-color: var(--border);
}

/* Checkout confirmation */
body.page-inner.theme-warm-premium .checkout-order-summary-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 12px;
}

body.page-inner.theme-warm-premium .checkout-order-thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}

body.page-inner.theme-warm-premium .checkout-order-item-title {
    font-size: 1.1rem;
    margin: 6px 0;
}

body.page-inner.theme-warm-premium .wp-checkout-note {
    margin: 12px 0 0;
}

body.page-inner.theme-warm-premium .checkout-confirmation-details .discovery-section-title,
body.page-inner.theme-warm-premium .checkout-confirmation-next .discovery-section-title,
body.page-inner.theme-warm-premium .checkout-order-summary .discovery-section-title {
    margin-bottom: 14px;
}

body.page-inner.theme-warm-premium .confirmation-details {
    display: grid;
    grid-template-columns: minmax(104px, 34%) 1fr;
    gap: 10px 18px;
    margin: 0;
    align-items: baseline;
}

body.page-inner.theme-warm-premium .confirmation-details dt {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

body.page-inner.theme-warm-premium .confirmation-details dd {
    margin: 0;
}

body.page-inner.theme-warm-premium .confirmation-ref {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--panel-soft);
    border: 1px solid var(--border);
    word-break: break-all;
}

body.page-inner.theme-warm-premium .checkout-status-pill {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.page-inner.theme-warm-premium .checkout-status-pill--processing {
    color: #5c2840;
    border: 1px solid rgba(184, 82, 111, 0.35);
    background: rgba(184, 82, 111, 0.1);
}

body.page-inner.theme-warm-premium .checkout-status-pill--confirmed {
    color: #0d3d2e;
    border: 1px solid rgba(31, 122, 92, 0.35);
    background: rgba(200, 245, 228, 0.45);
}

body.page-inner.theme-warm-premium .checkout-status-pill--warning {
    color: #5c1018;
    border: 1px solid rgba(184, 50, 50, 0.35);
    background: rgba(255, 200, 206, 0.35);
}

body.page-inner.theme-warm-premium .checkout-status-pill--paused {
    color: #4a3d22;
    border: 1px solid rgba(184, 149, 108, 0.45);
    background: rgba(248, 232, 210, 0.55);
}

body.page-inner.theme-warm-premium .checkout-status-pill--canceled {
    color: var(--muted);
    border: 1px solid var(--border);
    background: rgba(255, 252, 248, 0.9);
}

@media (max-width: 520px) {
    body.page-inner.theme-warm-premium .confirmation-details {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }

    body.page-inner.theme-warm-premium .confirmation-details dt {
        margin-top: 12px;
    }

    body.page-inner.theme-warm-premium .confirmation-details dt:first-child {
        margin-top: 0;
    }
}

/* Catalog — marquee-lite (mood strip before results) */
body.page-inner.theme-warm-premium .catalog-marquee-lite {
    margin: 4px 0 18px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 149, 108, 0.22);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 253, 251, 0.96) 0%, rgba(245, 237, 230, 0.92) 100%);
    box-shadow: 0 10px 28px rgba(28, 26, 24, 0.05);
}

body.page-inner.theme-warm-premium .catalog-marquee-lite-inner {
    padding: 10px 0;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

body.page-inner.theme-warm-premium .catalog-marquee-lite-track {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: wishlyMarquee 52s linear infinite;
}

body.page-inner.theme-warm-premium .catalog-marquee-lite-group {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

body.page-inner.theme-warm-premium .catalog-marquee-lite-track img {
    width: clamp(120px, 16vw, 168px);
    height: clamp(76px, 10vw, 104px);
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(184, 149, 108, 0.2);
    box-shadow: 0 6px 16px rgba(28, 26, 24, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    body.page-inner.theme-warm-premium .catalog-marquee-lite-track {
        animation: none !important;
    }
}

/* Legal / trust pages — warm discovery shell */
body.page-inner.theme-warm-premium .nav-links .nav-link-current {
    color: var(--primary);
    font-weight: 600;
    cursor: default;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(184, 82, 111, 0.28);
    background: rgba(184, 82, 111, 0.07);
}

body.page-inner.theme-warm-premium .payment-security-hero .discovery-lead {
    margin-bottom: 0;
}

body.page-inner.theme-warm-premium .discovery-legal-body.prose h2 {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

body.page-inner.theme-warm-premium .discovery-legal-body.prose h1 {
    font-family: Georgia, "Palatino Linotype", Palatino, serif;
    letter-spacing: -0.02em;
}

body.page-inner.theme-warm-premium .discovery-legal-body.prose a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.page-inner.theme-warm-premium .discovery-legal-body.prose a:hover {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    body.page-inner.theme-warm-premium .top-nav.top-nav-landing {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    body.page-inner.theme-warm-premium .top-nav.top-nav-landing .brand {
        text-align: center;
    }

    body.page-inner.theme-warm-premium .top-nav.top-nav-landing .nav-links {
        justify-content: center;
        gap: 8px 14px;
    }

    body.page-inner.theme-warm-premium .nav-links .nav-link-current {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

/* —— PSP / marketplace trust: compliance strip, homepage steps, footer business —— */
.trust-strip {
    max-width: 720px;
    margin: 16px auto 0;
    text-align: left;
    line-height: 1.5;
}

.trust-strip-line {
    margin: 0.35rem 0;
}

.site-footer .trust-strip a {
    color: inherit;
    text-decoration: underline;
}

.footer-business {
    max-width: 720px;
    margin: 0 auto;
}

.comp-notice {
    max-width: 720px;
    margin: 1rem auto 0;
}

.landing-step-static {
    display: block;
    cursor: default;
    text-decoration: none;
    color: inherit;
}

.landing-step-static .step-title {
    color: inherit;
}

/* —— TalkSocal Wishlist Marketplace (landing + brand) —— */
body.page-talksocal {
    --primary: #0d9488;
    --primary-hover: #14b8a6;
    --accent-blue: #2563eb;
    --border: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f8fafc;
    --bg-mid: #f1f5f9;
    --panel: #ffffff;
    --panel-soft: #f8fafc;
    --elevated: #ffffff;
    --ring: rgba(13, 148, 136, 0.35);
    background:
        radial-gradient(ellipse 90% 60% at 50% -20%, rgba(37, 99, 235, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(13, 148, 136, 0.07), transparent 50%),
        linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
}

body.page-talksocal .top-nav-landing {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--border);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.brand-link:hover {
    text-decoration: none;
    color: var(--text);
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

body.page-talksocal .btn {
    background: linear-gradient(135deg, var(--primary) 0%, #0f766e 100%);
    border-color: transparent;
    color: #fff;
}

body.page-talksocal .btn:hover {
    filter: brightness(1.05);
}

body.page-talksocal .btn.alt {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
}

.grid.four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

@media (max-width: 560px) {
    .grid.four {
        grid-template-columns: 1fr;
    }
}

.ts-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.ts-reveal.is-visible,
.wishly-reveal.is-visible {
    opacity: 1;
    transform: none;
}

body.page-talksocal .hero-ts {
    border-color: rgba(13, 148, 136, 0.2);
    background: linear-gradient(155deg, #ffffff 0%, #f0fdfa 55%, #eff6ff 100%);
    overflow: hidden;
    position: relative;
}

.hero-ts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

@media (max-width: 820px) {
    .hero-ts-grid {
        grid-template-columns: 1fr;
    }

    .hero-ts-visual {
        order: -1;
    }
}

.hero-ts-title {
    font-size: clamp(1.75rem, 4.2vw, 2.55rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    font-weight: 700;
}

.hero-ts-lead {
    font-size: 1.06rem;
    max-width: 38rem;
}

.hero-ts-glow {
    position: absolute;
    inset: -30% -10% auto;
    height: 60%;
    background: radial-gradient(ellipse closest-side, rgba(37, 99, 235, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-ts-card-stack {
    position: relative;
}

.hero-ts-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
    display: block;
}

.hero-ts-float-card {
    position: absolute;
    bottom: 12%;
    left: -8%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 140px;
}

.hero-ts-float-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 600;
}

.ts-step-card,
.ts-trust-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ts-step-card:hover,
.ts-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.ts-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.ts-trust-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f0fdfa;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ts-compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 720px) {
    .ts-compliance-grid {
        grid-template-columns: 1fr;
    }
}

.ts-compliance-list {
    margin: 0;
    padding-left: 1.1rem;
    line-height: 1.65;
}

.ts-compliance-list li {
    margin-bottom: 10px;
}

.ts-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.ts-wishlist-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.ts-wishlist-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ts-wishlist-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ts-wishlist-card:hover .ts-wishlist-media img {
    transform: scale(1.03);
}

.ts-wishlist-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ts-wishlist-member {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ts-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ts-wishlist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ts-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f0fdfa;
    color: #0f766e;
}

.ts-price {
    font-weight: 600;
    font-size: 0.88rem;
}

.ts-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.ts-progress-bar {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
    border-radius: 999px;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.88rem;
    margin-top: auto;
    align-self: flex-start;
}

.ts-faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #fff;
}

.ts-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

.ts-faq-item p {
    margin: 10px 0 0;
}

.section-heading {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.section-lead {
    max-width: 42rem;
    margin-bottom: 20px;
}

/* —— SaaS-style dashboards —— */
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.dash-stat-card {
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
}

.dash-stat-card .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    font-weight: 600;
    margin: 0 0 6px;
}

.dash-stat-card .stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.dash-stat-card .stat-hint {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 6px 0 0;
}

.dash-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 800px) {
    .dash-panels {
        grid-template-columns: 1fr;
    }
}
