/* ==========================================================================
   Collabverse Landing - V7 Light Theme
   Three-role colors: Coral=Brands, Amber=Creators, Emerald=Action
   ========================================================================== */

/* CSS Variables - V7 Light Palette */
:root {
    /* Three-role semantic colors */
    --color-brand: #F43F5E;
    --color-brand-hover: #E11D48;
    --color-brand-light: #FFF1F2;
    --color-brand-glow: rgba(244, 63, 94, 0.12);
    --color-creator: #D97706;
    --color-creator-hover: #B45309;
    --color-creator-light: #FEF3C7;
    --color-creator-glow: rgba(217, 119, 6, 0.12);
    --color-action: #059669;
    --color-action-hover: #047857;
    --color-action-light: #ECFDF5;
    --color-action-glow: rgba(5, 150, 105, 0.1);

    /* Legacy aliases (used throughout CSS) */
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-accent: #F43F5E;
    --color-accent-hover: #E11D48;

    /* Backgrounds - light slate theme */
    --color-bg: #F1F5F9;
    --color-bg-alt: #FFFFFF;
    --color-bg-deep: #E8ECF1;

    /* Text - dark on light */
    --color-text-primary: #0F172A;
    --color-text-secondary: #64748B;
    --color-text-muted: #94A3B8;

    /* Cards & borders */
    --color-card-bg: #FFFFFF;
    --color-border: #E2E8F0;
    --color-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    --color-glow-green: rgba(5, 150, 105, 0.08);
    --color-glow-gold: rgba(244, 63, 94, 0.08);

    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__logo-icon {
    display: block;
    flex-shrink: 0;
}

.nav__logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
}

.nav__logo-accent {
    color: var(--color-accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--color-text-primary);
}

.nav__cta {
    background: var(--color-action);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav__cta:hover {
    background: var(--color-action-hover);
    color: #FFFFFF;
}

.nav__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Sections Base
   ========================================================================== */

.section {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.section--alt {
    background: var(--color-bg-alt);
}

.section__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Accent word in section titles (matches logo color) */
.section__title-accent {
    color: var(--color-accent);
}

/* Thin centered underline */
.section__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-action));
    border-radius: 2px;
    margin: 14px auto 0;
}

.section__subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section__transition {
    text-align: center;
    font-size: 22px;
    color: var(--color-text-primary);
    font-weight: 600;
    margin-top: 48px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 600px 400px at 10% 25%, rgba(244, 63, 94, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 90% 15%, rgba(5, 150, 105, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 600px 350px at 60% 90%, rgba(217, 119, 6, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 80% 70%, rgba(244, 63, 94, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 30% 65%, rgba(5, 150, 105, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        linear-gradient(160deg, #E4F5EE 0%, #ECF8F2 25%, #F5FFF8 50%, #FFF9ED 80%, #FEF0C7 100%);
    overflow: hidden;
    padding: 100px 24px 80px;
}

.hero--cta {
    min-height: auto;
    padding: 120px 24px;
}

.hero__constellation {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 660px;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 44px 36px 36px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Sun glow - content box radiates like the center of a solar system */
.hero__content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 160%;
    background: radial-gradient(ellipse,
        rgba(244, 63, 94, 0.06) 0%,
        rgba(217, 119, 6, 0.04) 25%,
        rgba(5, 150, 105, 0.02) 45%,
        transparent 70%);
    z-index: -1;
    border-radius: 50%;
    animation: sunPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sunPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero__title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero__form {
    max-width: 520px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero CTA pair (brand / creator sign-up)
   ========================================================================== */

.hero__cta-pair {
    display: flex;
    flex-direction: row;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__cta-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-primary);
    text-decoration: none;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 320px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(8px);
}

.hero__cta-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero__cta-button--brand {
    border-color: rgba(5, 150, 105, 0.45);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(5, 150, 105, 0.04));
}

.hero__cta-button--brand:hover {
    border-color: rgba(5, 150, 105, 0.85);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.22), rgba(5, 150, 105, 0.08));
}

.hero__cta-button--creator {
    border-color: rgba(217, 119, 6, 0.45);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.04));
}

.hero__cta-button--creator:hover {
    border-color: rgba(217, 119, 6, 0.85);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.22), rgba(217, 119, 6, 0.08));
}

.hero__cta-button-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text-primary);
}

.hero__cta-button-sub {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

@media (max-width: 540px) {
    .hero__cta-pair {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
    }
    .hero__cta-button {
        max-width: none;
    }
}

/* ==========================================================================
   Constellation
   ========================================================================== */

.constellation {
    position: relative;
    width: 100%;
    height: 100%;
}

.constellation__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.constellation__stardust {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.constellation__node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    border: 2px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translate(-50%, -50%);
    will-change: left, top;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.constellation__node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.constellation__node:hover {
    transform: translate(-50%, -50%) scale(1.12);
    z-index: 5;
}

/* Brand nodes - larger, bolder, more prominent */
.constellation__node--brand {
    width: 82px;
    height: 82px;
    border: 3px solid var(--color-brand);
    background: #FFFFFF;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.15), 0 4px 12px rgba(244, 63, 94, 0.08);
    animation: pulseGlowBrand 4s ease-in-out infinite;
}

.constellation__node--brand:hover {
    border-color: var(--color-brand-hover);
    box-shadow: 0 0 32px rgba(244, 63, 94, 0.4), 0 4px 20px var(--color-brand-glow);
    animation: none;
}

.constellation__node--brand img {
    padding: 6px;
    object-fit: contain;
}

/* Creator nodes - smaller, lighter */
.constellation__node--creator {
    width: 64px;
    height: 64px;
    border: 2px solid var(--color-creator);
    background: #FFFFFF;
    animation: pulseGlowCreator 4s ease-in-out infinite;
}

.constellation__node--creator:hover {
    border-color: var(--color-creator-hover);
    box-shadow: 0 0 24px rgba(217, 119, 6, 0.35), 0 4px 16px var(--color-creator-glow);
    animation: none;
}

@keyframes pulseGlowBrand {
    0%, 100% { box-shadow: 0 0 12px rgba(244, 63, 94, 0.15), 0 4px 12px rgba(244, 63, 94, 0.08); }
    50% { box-shadow: 0 0 28px rgba(244, 63, 94, 0.30), 0 4px 16px rgba(244, 63, 94, 0.15); }
}

@keyframes pulseGlowCreator {
    0%, 100% { box-shadow: 0 0 8px rgba(217, 119, 6, 0.10), 0 2px 8px rgba(217, 119, 6, 0.05); }
    50% { box-shadow: 0 0 18px rgba(217, 119, 6, 0.20), 0 2px 12px rgba(217, 119, 6, 0.08); }
}

/* Size modifiers - brands get bigger, creators smaller */
.constellation__node--brand.constellation__node--lg {
    width: 104px;
    height: 104px;
}

.constellation__node--brand.constellation__node--sm {
    width: 68px;
    height: 68px;
}

.constellation__node--creator.constellation__node--lg {
    width: 80px;
    height: 80px;
}

.constellation__node--creator.constellation__node--sm {
    width: 50px;
    height: 50px;
}

/* Fallback for untyped size modifiers */
.constellation__node--lg {
    width: 88px;
    height: 88px;
}

.constellation__node--sm {
    width: 52px;
    height: 52px;
}


/* ==========================================================================
   Pain Cards (Section 2: Outside the Verse)
   ========================================================================== */

/* Pain Section - Excel background */
.pain-section {
    position: relative;
    overflow: hidden;
}

.pain-excel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 120%;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.pain-excel table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Consolas, monospace;
    font-size: 14px;
    color: #1e293b;
}

.pain-excel th,
.pain-excel td {
    border: 1px solid #64748B;
    padding: 8px 16px;
    white-space: nowrap;
    text-align: left;
}

.pain-excel thead th {
    background: #94a3b8;
    font-weight: 700;
    text-align: center;
    padding: 6px 16px;
    font-size: 12px;
    color: #1e293b;
}

.pain-excel tbody td:first-child {
    background: #cbd5e1;
    text-align: center;
    font-weight: 600;
    width: 36px;
    font-size: 12px;
}

.pain-excel tbody tr:nth-child(even) td {
    background: rgba(241, 245, 249, 0.5);
}

.pain-excel tbody tr:nth-child(even) td:first-child {
    background: #cbd5e1;
}

.pain-section > .container {
    position: relative;
    z-index: 1;
}

/* Pain Chat Mockups */
.pain-chats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pain-chat {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: chatFloat 4s ease-in-out infinite;
}

.pain-chat:nth-child(2) {
    animation-delay: -1.3s;
}

.pain-chat:nth-child(3) {
    animation-delay: -2.6s;
}

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

.pain-chat--brand {
    border-color: rgba(244, 63, 94, 0.25);
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.08), 0 0 0 1px rgba(244, 63, 94, 0.06);
}

.pain-chat--creator {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08), 0 0 0 1px rgba(217, 119, 6, 0.06);
}

.pain-chat--both {
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08), 0 0 0 1px rgba(5, 150, 105, 0.06);
}

.pain-chat:hover {
    transform: translateY(-8px) !important;
    animation-play-state: paused;
}

.pain-chat--brand:hover {
    box-shadow: 0 12px 32px rgba(244, 63, 94, 0.15), 0 0 0 2px rgba(244, 63, 94, 0.18);
    border-color: rgba(244, 63, 94, 0.4);
}

.pain-chat--creator:hover {
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.15), 0 0 0 2px rgba(217, 119, 6, 0.18);
    border-color: rgba(217, 119, 6, 0.4);
}

.pain-chat--both:hover {
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.15), 0 0 0 2px rgba(5, 150, 105, 0.18);
    border-color: rgba(5, 150, 105, 0.4);
}

.pain-chat__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.pain-chat__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
}

.pain-chat__dot--brand { background: var(--color-brand); color: var(--color-brand); }
.pain-chat__dot--creator { background: var(--color-creator); color: var(--color-creator); }
.pain-chat__dot--both { background: var(--color-action); color: var(--color-action); }

.pain-chat__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.pain-chat__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

.pain-chat__msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    position: relative;
}

.pain-chat__msg p {
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-text-primary);
    margin: 0;
}

.pain-chat__msg--sent {
    align-self: flex-end;
    background: #d1fae5;
    border-bottom-right-radius: 4px;
}

.pain-chat__msg--received {
    align-self: flex-start;
    background: #f1f5f9;
    border-bottom-left-radius: 4px;
}

.pain-chat__msg--ghost {
    opacity: 0.5;
}

.pain-chat__time {
    display: block;
    font-size: 10px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.pain-chat__msg--sent .pain-chat__time {
    text-align: right;
}

.pain-chat__verdict {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: #fef2f2;
    border-top: 2px solid #fca5a5;
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: -0.01em;
}

.pain-chat__verdict--creator {
    background: #fffbeb;
    border-top-color: #f59e0b;
    color: #92400e;
}

.pain-chat__verdict--both {
    background: #ecfdf5;
    border-top-color: #34d399;
    color: #065f46;
}

.pain-chat__verdict svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Journey (Section 3: Inside the Verse)
   ========================================================================== */

.journey {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

/* Vertical connector between row 1 and row 2 */
.journey__connector-vert {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(180deg, var(--color-action), rgba(5, 150, 105, 0.2));
}
.journey__connector-vert::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--color-action);
    border-right: 2px solid var(--color-action);
    transform: translateX(-50%) rotate(45deg);
}

/* Card */
.journey__card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    box-shadow: 0 2px 12px rgba(5, 150, 105, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journey__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.14);
}

/* Header: badge + title */
.journey__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.journey__badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-action);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--color-action-glow);
}
.journey__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-action);
    margin: 0;
}

/* Connector line between cards */
.journey__connector {
    width: 32px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.journey__connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-action), rgba(5, 150, 105, 0.2));
}
.journey__connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-action);
    border-right: 2px solid var(--color-action);
    transform: translateY(-50%) rotate(45deg);
}

/* Mini preview (shared) */
.journey__preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
    font-size: 11px;
    flex-grow: 1;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Description text */
.journey__card-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ---- Step 1: Discover preview ---- */
.jp-search {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 10px;
    color: #94a3b8;
}
.jp-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
}
.jp-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
}
.jp-avatar--1 { background: linear-gradient(135deg, #f472b6, #e879f9); }
.jp-avatar--2 { background: linear-gradient(135deg, #34d399, #6ee7b7); }
.jp-avatar--3 { background: linear-gradient(135deg, #fbbf24, #f97316); }
.jp-name {
    font-weight: 600;
    color: #334155;
    flex: 1;
    font-size: 11px;
}
.jp-stat {
    font-size: 10px;
    color: #94a3b8;
}
.jp-match {
    font-size: 10px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ---- Step 2: Connect preview ---- */
.jp-form-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.jp-label {
    font-size: 9px;
    color: #94a3b8;
    width: 58px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}
.jp-field {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 11px;
    color: #334155;
    font-weight: 500;
}
.jp-btn {
    margin-top: 4px;
    background: var(--color-action);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ---- Step 3: Protect preview ---- */
.jp-contract-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 4px;
}
.jp-contract-line {
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 4px;
}
.jp-contract-line--short {
    width: 65%;
}
.jp-sigs {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px dashed #cbd5e1;
}
.jp-sig {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #64748b;
}
.jp-sig-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* ---- Step 4: Pay preview ---- */
.jp-pay-status {
    display: flex;
    align-items: center;
    gap: 6px;
}
.jp-pay-icon {
    display: flex;
    align-items: center;
}
.jp-pay-label {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
}
.jp-pay-amount {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 4px 0;
    letter-spacing: -0.5px;
}
.jp-pay-detail {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #94a3b8;
}
.jp-pay-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}
.jp-pay-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border-radius: 2px;
}
.jp-pay-sub {
    font-size: 9px;
    color: #94a3b8;
    text-align: right;
    margin-top: 4px;
}

/* ---- Step 5: Grow preview ---- */
.jp-trust-score {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}
.jp-trust-num {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.jp-trust-stars {
    font-size: 14px;
    color: #d97706;
    letter-spacing: 1px;
}
.jp-trust-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #64748b;
    margin-bottom: 4px;
}
.jp-trust-row span:first-child {
    width: 80px;
    flex-shrink: 0;
}
.jp-trust-row span:last-child {
    width: 28px;
    text-align: right;
    font-weight: 700;
    color: #334155;
}
.jp-bar {
    flex: 1;
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}
.jp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-action), #34d399);
    border-radius: 3px;
}
.jp-repeat-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding-top: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #d97706;
    background: #fffbeb;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid #fde68a;
}

/* ==========================================================================
   Showcase (Section 4: Brands & Creators)
   ========================================================================== */

.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.showcase__heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
}

.showcase__heading--brand {
    border-color: var(--color-brand);
}

.showcase__heading--creator {
    border-color: var(--color-creator);
}

.showcase__grid {
    display: grid;
    gap: 20px;
}

.showcase__grid--brands {
    grid-template-columns: repeat(4, 1fr);
}

.showcase__grid--creators {
    grid-template-columns: repeat(4, 1fr);
}

.showcase__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.showcase__node img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--color-bg);
}

.showcase__node--brand img {
    border-color: rgba(244, 63, 94, 0.3);
    padding: 10px;
    object-fit: contain;
}

.showcase__node--brand:hover img {
    border-color: var(--color-brand);
    box-shadow: 0 0 16px var(--color-brand-glow);
}

.showcase__node--creator img {
    border-color: rgba(217, 119, 6, 0.3);
}

.showcase__node--creator:hover img {
    border-color: var(--color-creator);
    box-shadow: 0 0 16px var(--color-creator-glow);
}

.showcase__node span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.showcase__node small {
    font-size: 11px;
    color: var(--color-text-muted);
}

.showcase__footer {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-top: 48px;
}

/* App Mockup - fake platform preview */
.app-mock {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
    background: #fff;
}

.app-mock__titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.app-mock__dots {
    display: flex;
    gap: 6px;
}

.app-mock__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.app-mock__dots span:nth-child(1) { background: #ef4444; }
.app-mock__dots span:nth-child(2) { background: #f59e0b; }
.app-mock__dots span:nth-child(3) { background: #22c55e; }

.app-mock__title {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.app-mock__body {
    padding: 20px;
}

.app-mock__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: #f8fafc;
    margin-bottom: 12px;
}

.app-mock__search svg {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.app-mock__search span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.app-mock__filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.app-mock__tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--color-bg);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.app-mock__tag--active {
    background: var(--color-brand-light);
    color: var(--color-brand);
    border-color: rgba(244, 63, 94, 0.25);
}

.app-mock__results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.app-mock__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.app-mock__card:first-child {
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.08);
    background: linear-gradient(135deg, #fff 0%, #fff5f6 100%);
}

.app-mock__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-creator);
    flex-shrink: 0;
}

.app-mock__info {
    flex: 1;
    min-width: 0;
}

.app-mock__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.app-mock__meta {
    font-size: 12px;
    color: var(--color-text-muted);
}

.app-mock__match {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.app-mock__match-score {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-brand);
    line-height: 1;
}

.app-mock__match-label {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-mock__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.app-mock__bottom span:first-child {
    font-size: 12px;
    color: var(--color-text-muted);
}

.app-mock__cta-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    background: var(--color-action);
    color: #fff;
}

/* Showcase - Text / Feature column */
.showcase__col--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase__text-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 28px;
}

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

.showcase__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.showcase__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-light);
    color: var(--color-brand);
}

.showcase__feature-icon--brand {
    background: var(--color-brand-light);
    color: var(--color-brand);
}

.showcase__feature-icon svg {
    width: 22px;
    height: 22px;
}

.showcase__feature strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.showcase__feature p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ==========================================================================
   Trust Cards (Section 5)
   ========================================================================== */

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

.trust-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.trust-card--brand {
    border-top-color: var(--color-brand);
}

.trust-card--creator {
    border-top-color: var(--color-creator);
}

.trust-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-card__icon {
    color: var(--color-action);
    margin-bottom: 16px;
}

.trust-card--brand .trust-card__icon {
    color: var(--color-brand);
}

.trust-card--creator .trust-card__icon {
    color: var(--color-creator);
}

.trust-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.trust-card__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   FAQ (Section 6)
   ========================================================================== */

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

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq__question span {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq__icon {
    color: var(--color-action);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item.open .faq__icon {
    transform: rotate(180deg);
}

.faq__item.open .faq__question {
    border-left: 3px solid var(--color-primary);
    padding-left: 16px;
    margin-left: -16px;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding-left: 0;
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 0;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer__logo-icon {
    display: block;
    flex-shrink: 0;
}

.footer__tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 12px;
    line-height: 1.5;
    max-width: 240px;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer__social-link {
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.footer__social-link:hover {
    color: var(--color-primary);
}

.footer__social-link--disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.footer__social-link--disabled:hover {
    color: var(--color-text-muted);
}

.footer__col-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer__email {
    color: var(--color-accent);
}

.footer__email:hover {
    color: var(--color-accent-hover);
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    padding: 16px 24px;
}

.cookie-banner__content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.cookie-banner__content a {
    color: var(--color-primary);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__accept {
    padding: 8px 20px;
    background: var(--color-action);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.cookie-banner__accept:hover {
    background: var(--color-action-hover);
}

.cookie-banner__decline {
    padding: 8px 20px;
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s;
}

.cookie-banner__decline:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
    padding: 120px 24px 80px;
    background: var(--color-bg);
    min-height: 100vh;
}

.legal-page__container {
    max-width: 720px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.legal-page__updated {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page strong {
    color: var(--color-text-primary);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for cards in same row */
.pain-chat.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.pain-chat.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* Journey cards stagger: cards are at positions 1,3,5,7,9 (connectors at 2,4,6,8) */
.journey__card.animate-on-scroll:nth-of-type(2) { transition-delay: 0.1s; }
.journey__card.animate-on-scroll:nth-of-type(3) { transition-delay: 0.2s; }
.journey__card.animate-on-scroll:nth-of-type(4) { transition-delay: 0.3s; }
.journey__card.animate-on-scroll:nth-of-type(5) { transition-delay: 0.4s; }

.trust-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.trust-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.trust-card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================================
   Shooting Star Trail (follows native cursor)
   ========================================================================== */

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
}

/* ==========================================================================
   Blog Listing
   ========================================================================== */

.blog-listing {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.blog-listing__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.blog-listing__subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    line-height: 1.5;
}

/* Masonry layout using CSS columns */
.blog-grid {
    columns: 2;
    column-gap: 24px;
}

.blog-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-shadow: var(--color-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    break-inside: avoid;
    margin-bottom: 24px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Color accent top borders */
.blog-card--brand { border-top: 3px solid var(--color-brand); }
.blog-card--creator { border-top: 3px solid var(--color-creator); }
.blog-card--action { border-top: 3px solid var(--color-action); }

.blog-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
}

.blog-card__title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card__title a:hover {
    color: var(--color-action);
}

.blog-card__meta {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-card__excerpt {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card__link:hover {
    color: var(--color-accent-hover);
}

/* ==========================================================================
   Blog Post
   ========================================================================== */

.blog-post {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.blog-post__back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.blog-post__back:hover {
    color: var(--color-action);
}

.blog-post h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

.blog-post__meta {
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.blog-post p {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}

.blog-post__cta {
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--color-action-light);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.blog-post__cta strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-size: 17px;
}

.blog-post__cta a {
    color: var(--color-action);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post__cta a:hover {
    color: var(--color-action-hover);
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */

.pricing-page {
    padding-top: 64px;
}

/* -- Top section (merged hero + flow) -- */
.pricing-top-section {
    padding-top: 80px;
}

.pricing-top-title {
    font-size: 44px;
}

/* -- Flow / Steps -- */
.pricing-flow {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-step {
    display: flex;
    gap: 24px;
    position: relative;
}

.pricing-step__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.pricing-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.pricing-step--highlight .pricing-step__num {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.pricing-step__line {
    width: 2px;
    flex: 1;
    background: var(--color-border);
    min-height: 12px;
}

.pricing-step__content {
    padding-bottom: 24px;
}

.pricing-step__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.pricing-step__header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.pricing-step__content > p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* Tags */
.pricing-step__tag {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pricing-step__tag--free {
    background: #ECFDF5;
    color: #047857;
}

.pricing-step__tag--paid {
    background: var(--color-brand-light);
    color: var(--color-brand);
}

.pricing-step__tag--green {
    background: #ECFDF5;
    color: #047857;
}

/* Highlight card */
.pricing-step--highlight .pricing-step__content {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-accent);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(244, 63, 94, 0.08);
    margin-bottom: 24px;
}

/* Info note inside highlight */
.pricing-step__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--color-bg);
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.pricing-step__note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-text-muted);
}

/* -- What's Included Grid -- */
.pricing-includes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-includes__card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.pricing-includes__card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.08);
}

.pricing-includes__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-action-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-action);
}

.pricing-includes__card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.pricing-includes__card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* -- CTA Button -- */
.pricing-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-action);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.pricing-cta-btn:hover {
    background: var(--color-action-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* -- Two-path CTA cards -- */
.pricing-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-path {
    display: block;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.pricing-path:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    color: inherit;
}

.pricing-path--brand:hover {
    border-color: var(--color-brand);
}

.pricing-path--creator:hover {
    border-color: var(--color-creator);
}

.pricing-path h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 20px 0 6px;
}

.pricing-path > p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Brand card mini preview */
.pricing-path__preview {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 16px;
}

.pp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pp-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 72px;
    flex-shrink: 0;
}

.pp-field {
    flex: 1;
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 5px 10px;
    background: var(--color-bg);
    border-radius: 5px;
    border: 1px solid var(--color-border);
}

.pp-field--empty {
    height: 28px;
}

.pp-btn {
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-top: 4px;
}

.pp-btn--brand {
    background: var(--color-brand);
}

.pp-btn--creator {
    background: var(--color-creator);
}

/* Creator card mini preview */
.pp-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-creator-light), var(--color-creator-glow));
    border: 2px solid var(--color-creator);
    flex-shrink: 0;
}

.pp-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.pp-stat {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
}

.pp-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pp-trust-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.pp-trust-bar {
    flex: 1;
    height: 6px;
    background: var(--color-bg-deep);
    border-radius: 3px;
    overflow: hidden;
}

.pp-trust-fill {
    display: block;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-creator), var(--color-creator-hover));
    border-radius: 3px;
    animation: trustGrow 1.5s ease-out forwards;
    animation-play-state: paused;
}

.pricing-path--creator:hover .pp-trust-fill {
    animation-play-state: running;
}

@keyframes trustGrow {
    from { width: 30%; }
    to { width: 82%; }
}

/* ==========================================================================
   Responsive - Tablet (768px)
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav__links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-bg-alt);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .nav__links.active {
        display: flex;
    }

    .nav__links .nav__link {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--color-border);
    }

    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .section__title {
        font-size: 30px;
    }

    .pain-chats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pain-chat__body {
        min-height: auto;
    }

    .journey {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .journey__card {
        padding: 20px 16px 16px;
    }

    .journey__connector {
        width: auto;
        height: 24px;
        flex-shrink: unset;
    }
    .journey__connector::before {
        top: 50%;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        transform: translate(-50%, -50%);
    }
    .journey__connector::after {
        top: auto;
        bottom: -3px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(135deg);
    }

    .journey__connector-vert {
        height: 24px;
    }

    .showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase__grid--brands {
        grid-template-columns: repeat(4, 1fr);
    }

    .showcase__grid--creators {
        grid-template-columns: repeat(4, 1fr);
    }

    .showcase__text-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .showcase__features {
        gap: 20px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Simplify constellation on tablet */
    .constellation__node--sm {
        display: none;
    }

    .hero__content {
        padding: 32px 24px;
    }

    /* Blog responsive */
    .blog-listing {
        padding: 100px 16px 60px;
    }

    .blog-listing__title {
        font-size: 30px;
    }

    .blog-listing__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .blog-grid {
        columns: 1;
    }

    .blog-card {
        padding: 20px 20px 18px;
    }

    .blog-card__title {
        font-size: 18px;
    }

    .blog-post {
        padding: 100px 16px 60px;
    }

    .blog-post h1 {
        font-size: 28px;
    }

    .blog-post h2 {
        font-size: 20px;
    }

    .blog-post p {
        font-size: 16px;
    }

    .blog-post__cta {
        padding: 20px;
    }
}

/* ==========================================================================
   Responsive - Mobile (375px)
   ========================================================================== */

@media (max-width: 480px) {
    .hero {
        padding: 80px 16px 60px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .section__title {
        font-size: 26px;
    }

    .section__subtitle {
        font-size: 16px;
    }



    .showcase__grid--brands {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .showcase__text-heading {
        font-size: 20px;
    }

    .showcase__feature-icon {
        width: 38px;
        height: 38px;
    }

    .showcase__feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .showcase__feature strong {
        font-size: 14px;
    }

    .showcase__feature p {
        font-size: 13px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-callout__number {
        font-size: 36px;
    }

    /* Constellation on mobile */
    .constellation__node {
        width: 44px;
        height: 44px;
    }

    .constellation__node--brand {
        width: 56px;
        height: 56px;
    }

    .constellation__node--lg {
        width: 60px;
        height: 60px;
    }

    .constellation__node--sm {
        display: none;
    }

    /* Pricing page mobile */
    .pricing-top-section {
        padding-top: 60px;
    }

    .pricing-top-title {
        font-size: 30px;
    }

    .pricing-step {
        gap: 16px;
    }

    .pricing-step--highlight .pricing-step__content {
        padding: 18px;
    }

    .pricing-includes {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-paths {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
    .site-header,
    .cookie-banner,
    .constellation,
    .hero__constellation,
    .nav__burger {
        display: none !important;
    }

    body {
        background: #fff;
        color: #333;
    }

    .hero {
        min-height: auto;
        background: #fff;
    }

    .section, .section--alt {
        background: #fff;
    }

    .hero__title, .section__title, h1, h2, h3 {
        color: #111;
    }

    a {
        color: #333;
    }
}
