/* ==========================================================================
   Collabverse Landing - V7 Light Theme
   Three-role colors: Coral=Brands, Amber=Creators, Navy=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: #1E40AF;
    --color-action-hover: #1E3A8A;
    --color-action-light: #EFF6FF;
    --color-action-glow: rgba(30, 64, 175, 0.1);

    /* Legacy aliases (used throughout CSS) */
    --color-primary: #1E40AF;
    --color-primary-hover: #1E3A8A;
    --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-blue: rgba(30, 64, 175, 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(30, 64, 175, 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(30, 64, 175, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        linear-gradient(160deg, #E4EBF5 0%, #ECF0F8 25%, #F8FAFF 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(30, 64, 175, 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;
}

/* ==========================================================================
   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(30, 64, 175, 0.25);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08), 0 0 0 1px rgba(30, 64, 175, 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(30, 64, 175, 0.15), 0 0 0 2px rgba(30, 64, 175, 0.18);
    border-color: rgba(30, 64, 175, 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: #e0edff;
    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: #eff6ff;
    border-top-color: #60a5fa;
    color: #1e3a8a;
}

.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(30, 64, 175, 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(30, 64, 175, 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(30, 64, 175, 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(30, 64, 175, 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, #60a5fa, #818cf8); }
.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: #1e40af;
    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), #60a5fa);
    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;
}

/* ==========================================================================
   Waitlist Form
   ========================================================================== */

.waitlist-form__row {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
}

.waitlist-form__input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--color-text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form__input::placeholder {
    color: var(--color-text-muted);
}

.waitlist-form__input:focus {
    border-color: var(--color-primary);
}

.waitlist-form__button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    background: var(--color-action);
    color: #FFFFFF;
    border: 2px solid var(--color-action);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.waitlist-form__button:hover {
    background: var(--color-action-hover);
    border-color: var(--color-action-hover);
}

.waitlist-form__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ---------- Verse Portal Overlay ---------- */
/* ============================================================
   Verse Portal - Meteor Impact Animation
   ============================================================ */

.verse-portal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    overflow: hidden;
}

.verse-portal.active {
    opacity: 1;
    visibility: visible;
}

/* Deep space backdrop */
.verse-portal__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, #0c1222 0%, #030712 100%);
}

/* Star layer 1 - bright */
.verse-portal__backdrop::before {
    content: '';
    position: absolute;
    width: 1px; height: 1px;
    border-radius: 50%;
    top: 0; left: 0;
    box-shadow:
        42px 68px 0 0 rgba(255,255,255,0.8),
        155px 32px 0 0 rgba(255,255,255,0.6),
        310px 145px 0 0 rgba(255,255,255,0.7),
        480px 28px 0 0 rgba(255,255,255,0.5),
        620px 190px 0 0 rgba(255,255,255,0.7),
        760px 72px 0 0 rgba(255,255,255,0.6),
        935px 168px 0 0 rgba(255,255,255,0.8),
        1080px 40px 0 0 rgba(255,255,255,0.5),
        1220px 120px 0 0 rgba(255,255,255,0.7),
        1400px 55px 0 0 rgba(255,255,255,0.6),
        90px 260px 0 0 rgba(255,255,255,0.7),
        340px 340px 0 0 rgba(255,255,255,0.5),
        570px 400px 0 0 rgba(255,255,255,0.8),
        800px 290px 0 0 rgba(255,255,255,0.6),
        1020px 370px 0 0 rgba(255,255,255,0.7),
        1280px 280px 0 0 rgba(255,255,255,0.5),
        180px 490px 0 0 rgba(255,255,255,0.6),
        440px 540px 0 0 rgba(255,255,255,0.8),
        700px 470px 0 0 rgba(255,255,255,0.5),
        950px 520px 0 0 rgba(255,255,255,0.7),
        1160px 440px 0 0 rgba(255,255,255,0.6),
        1380px 500px 0 0 rgba(255,255,255,0.8),
        60px 620px 0 0 rgba(255,255,255,0.5),
        520px 650px 0 0 rgba(255,255,255,0.7),
        880px 610px 0 0 rgba(255,255,255,0.6),
        1300px 640px 0 0 rgba(255,255,255,0.5);
    opacity: 0;
    transition: opacity 0.6s 0.1s;
}

.verse-portal.active .verse-portal__backdrop::before {
    opacity: 1;
    animation: starTwinkle 3s ease-in-out infinite alternate;
}

/* Star layer 2 - dimmer, offset */
.verse-portal__backdrop::after {
    content: '';
    position: absolute;
    width: 1px; height: 1px;
    border-radius: 50%;
    top: 0; left: 0;
    box-shadow:
        100px 110px 0 0 rgba(255,255,255,0.35),
        245px 210px 0 0 rgba(255,255,255,0.25),
        420px 90px 0 0 rgba(255,255,255,0.3),
        580px 310px 0 0 rgba(255,255,255,0.2),
        730px 170px 0 0 rgba(255,255,255,0.35),
        890px 250px 0 0 rgba(255,255,255,0.25),
        1050px 100px 0 0 rgba(255,255,255,0.3),
        1190px 320px 0 0 rgba(255,255,255,0.2),
        1350px 190px 0 0 rgba(255,255,255,0.35),
        1490px 410px 0 0 rgba(255,255,255,0.25),
        60px 420px 0 0 rgba(255,255,255,0.3),
        280px 500px 0 0 rgba(255,255,255,0.2),
        500px 150px 0 0 rgba(255,255,255,0.35),
        680px 570px 0 0 rgba(255,255,255,0.25),
        860px 450px 0 0 rgba(255,255,255,0.3),
        1100px 560px 0 0 rgba(255,255,255,0.2),
        1250px 480px 0 0 rgba(255,255,255,0.35),
        1420px 300px 0 0 rgba(255,255,255,0.25),
        160px 600px 0 0 rgba(255,255,255,0.3),
        390px 380px 0 0 rgba(255,255,255,0.2),
        640px 250px 0 0 rgba(255,255,255,0.35),
        1000px 630px 0 0 rgba(255,255,255,0.25);
    opacity: 0;
    transition: opacity 0.8s 0.3s;
}

.verse-portal.active .verse-portal__backdrop::after {
    opacity: 1;
    animation: starTwinkle 4s ease-in-out 1s infinite alternate;
}

@keyframes starTwinkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Screen shake on impact */
.verse-portal.landed .verse-portal__backdrop {
    animation: screenShake 0.4s ease-out;
}

@keyframes screenShake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5px, 3px); }
    20% { transform: translate(5px, -3px); }
    30% { transform: translate(-4px, -2px); }
    40% { transform: translate(4px, 2px); }
    50% { transform: translate(-3px, 1px); }
    60% { transform: translate(3px, -1px); }
    70% { transform: translate(-2px, 0); }
    80% { transform: translate(1px, 0); }
}

/* ---- Meteor Sky Layer ---- */
.verse-portal__sky {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Meteor base - centered at viewport middle */
.meteor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    opacity: 0;
}

/* Meteor core - fiery glowing ball */
.meteor__core {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: relative;
}

.meteor--brand .meteor__core {
    background: radial-gradient(circle, #fff 10%, #F43F5E 55%, rgba(244,63,94,0) 100%);
    box-shadow:
        0 0 20px 8px rgba(244,63,94,0.9),
        0 0 50px 20px rgba(244,63,94,0.5),
        0 0 80px 35px rgba(244,63,94,0.2);
}

.meteor--creator .meteor__core {
    background: radial-gradient(circle, #fff 10%, #F59E0B 55%, rgba(245,158,11,0) 100%);
    box-shadow:
        0 0 20px 8px rgba(245,158,11,0.9),
        0 0 50px 20px rgba(245,158,11,0.5),
        0 0 80px 35px rgba(245,158,11,0.2);
}

/* Meteor trail - extends backward from direction of travel */
.meteor__trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 5px;
    transform-origin: 0 50%;
    border-radius: 0 3px 3px 0;
}

/* Brand trail points upper-left (225deg in CSS clockwise from right) */
.meteor--brand .meteor__trail {
    transform: rotate(225deg);
    background: linear-gradient(to right,
        rgba(244,63,94,0.9) 0%,
        rgba(244,63,94,0.5) 25%,
        rgba(244,63,94,0.15) 60%,
        transparent 100%);
}

/* Creator trail points upper-right (315deg) */
.meteor--creator .meteor__trail {
    transform: rotate(315deg);
    background: linear-gradient(to right,
        rgba(245,158,11,0.9) 0%,
        rgba(245,158,11,0.5) 25%,
        rgba(245,158,11,0.15) 60%,
        transparent 100%);
}

/* Wide diffuse glow behind trail */
.meteor__trail::before {
    content: '';
    position: absolute;
    inset: -10px 0 -10px 0;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
    border-radius: inherit;
}

/* Spark particles along trail */
.meteor__trail::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    top: -3px;
    left: 15px;
}

.meteor--brand .meteor__trail::after {
    box-shadow:
        0 0 2px rgba(244,63,94,0.9),
        18px 7px 2px rgba(244,63,94,0.7),
        40px -5px 2px rgba(244,63,94,0.5),
        65px 9px 2px rgba(244,63,94,0.4),
        95px -3px 1px rgba(244,63,94,0.3),
        130px 5px 1px rgba(244,63,94,0.2),
        160px -6px 1px rgba(244,63,94,0.1);
}

.meteor--creator .meteor__trail::after {
    box-shadow:
        0 0 2px rgba(245,158,11,0.9),
        18px 7px 2px rgba(245,158,11,0.7),
        40px -5px 2px rgba(245,158,11,0.5),
        65px 9px 2px rgba(245,158,11,0.4),
        95px -3px 1px rgba(245,158,11,0.3),
        130px 5px 1px rgba(245,158,11,0.2),
        160px -6px 1px rgba(245,158,11,0.1);
}

/* ---- Meteor fall animations ---- */
.verse-portal.active .meteor--brand {
    animation: meteorFallLeft 0.8s cubic-bezier(0.32, 0, 0.67, 0) 0.2s forwards;
}

.verse-portal.active .meteor--creator {
    animation: meteorFallRight 0.8s cubic-bezier(0.32, 0, 0.67, 0) 0.25s forwards;
}

@keyframes meteorFallLeft {
    0% {
        transform: translate(-52vw, -52vh);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translate(-20px, 0);
        opacity: 0;
    }
}

@keyframes meteorFallRight {
    0% {
        transform: translate(52vw, -52vh);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translate(20px, 0);
        opacity: 0;
    }
}

/* ---- Impact Effects ---- */
.meteor__impact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Bright flash on impact */
.meteor__flash {
    position: absolute;
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255,255,255,1) 0%,
        rgba(255,220,180,0.6) 30%,
        rgba(255,255,255,0) 70%);
    opacity: 0;
    will-change: transform, opacity;
}

.verse-portal.landed .meteor__flash {
    animation: impactFlash 0.6s ease-out forwards;
}

@keyframes impactFlash {
    0% { transform: scale(0); opacity: 1; }
    30% { opacity: 0.9; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Shockwave rings */
.meteor__ring {
    position: absolute;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
}

.meteor__ring--1 {
    border: 2px solid rgba(244,63,94,0.7);
    box-shadow: 0 0 15px 3px rgba(244,63,94,0.3);
}

.meteor__ring--2 {
    border: 2px solid rgba(245,158,11,0.7);
    box-shadow: 0 0 15px 3px rgba(245,158,11,0.3);
}

.verse-portal.landed .meteor__ring--1 {
    animation: shockwave 0.9s ease-out forwards;
}

.verse-portal.landed .meteor__ring--2 {
    animation: shockwave 0.9s ease-out 0.1s forwards;
}

@keyframes shockwave {
    0% { transform: scale(0); opacity: 1; }
    60% { opacity: 0.5; }
    100% { transform: scale(10); opacity: 0; }
}

/* Ember particles from impact */
.meteor__embers {
    position: absolute;
    top: 0;
    left: 0;
}

.meteor__embers span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
}

.meteor__embers span:nth-child(odd) {
    background: #F43F5E;
    box-shadow: 0 0 6px 2px rgba(244,63,94,0.6);
}

.meteor__embers span:nth-child(even) {
    background: #F59E0B;
    box-shadow: 0 0 6px 2px rgba(245,158,11,0.6);
}

.verse-portal.landed .meteor__embers span {
    animation: emberFly 0.8s ease-out forwards;
}

.meteor__embers span:nth-child(1)  { --ex: -120px; --ey: -80px; }
.meteor__embers span:nth-child(2)  { --ex: 110px;  --ey: -70px; animation-delay: 0.02s; }
.meteor__embers span:nth-child(3)  { --ex: -80px;  --ey: -120px; animation-delay: 0.04s; }
.meteor__embers span:nth-child(4)  { --ex: 90px;   --ey: -110px; animation-delay: 0.06s; }
.meteor__embers span:nth-child(5)  { --ex: -140px; --ey: 20px; animation-delay: 0.03s; }
.meteor__embers span:nth-child(6)  { --ex: 130px;  --ey: 30px; animation-delay: 0.05s; }
.meteor__embers span:nth-child(7)  { --ex: -60px;  --ey: 50px; animation-delay: 0.07s; }
.meteor__embers span:nth-child(8)  { --ex: 50px;   --ey: 60px; animation-delay: 0.01s; }
.meteor__embers span:nth-child(9)  { --ex: -100px; --ey: -30px; animation-delay: 0.08s; }
.meteor__embers span:nth-child(10) { --ex: 70px;   --ey: -140px; animation-delay: 0.04s; }
.meteor__embers span:nth-child(11) { --ex: -30px;  --ey: -90px; animation-delay: 0.06s; }
.meteor__embers span:nth-child(12) { --ex: 150px;  --ey: -40px; animation-delay: 0.02s; }

@keyframes emberFly {
    0% {
        transform: translate(0, 0) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translate(var(--ex), var(--ey)) scale(0);
        opacity: 0;
    }
}

/* ---- Portal Content ---- */
.verse-portal__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 620px;
    width: 90%;
    padding: 40px 40px 48px;
    opacity: 0;
    transform: scale(0.7) translateY(30px);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.25s;
}

.verse-portal.landed .verse-portal__content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Logo in portal */
.verse-portal__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.verse-portal__logo img {
    filter: drop-shadow(0 0 12px rgba(244,63,94,0.4));
}

.verse-portal__logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #F43F5E 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verse-portal__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(244,63,94,0.3), 0 0 60px rgba(245,158,11,0.2);
}

.verse-portal__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
}

/* ---- Space Rock Door Cards ---- */
.verse-portal__doors {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.verse-door {
    flex: 1;
    position: relative;
    padding: 40px 28px 34px;
    cursor: pointer;
    overflow: hidden;
    font-family: inherit;
    text-align: center;
    border: none;
    border-radius: 0;
    transition: transform 0.3s, filter 0.3s;

    /* Irregular rocky silhouette */
    clip-path: polygon(
        3% 8%, 10% 2%, 22% 6%, 38% 0%, 56% 3%, 72% 1%, 88% 4%, 97% 2%,
        100% 14%, 98% 32%, 100% 52%, 97% 70%, 100% 85%, 96% 95%,
        84% 100%, 65% 96%, 48% 100%, 30% 97%, 14% 100%, 4% 94%,
        0% 80%, 2% 58%, 0% 38%, 2% 18%
    );

    /* Dark stone base with surface texture */
    background:
        /* rim light on top edge */
        linear-gradient(to bottom, rgba(255,255,255,0.07) 0%, transparent 4%),
        /* highlight bumps */
        radial-gradient(ellipse at 18% 12%, rgba(255,255,255,0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 82% 65%, rgba(255,255,255,0.04) 0%, transparent 40%),
        /* shadow craters */
        radial-gradient(ellipse at 55% 20%, rgba(0,0,0,0.25) 0%, transparent 35%),
        radial-gradient(ellipse at 28% 78%, rgba(0,0,0,0.2) 0%, transparent 30%),
        radial-gradient(ellipse at 75% 90%, rgba(0,0,0,0.15) 0%, transparent 25%),
        /* stone grain */
        repeating-linear-gradient(155deg, transparent, transparent 7px, rgba(255,255,255,0.01) 7px, rgba(255,255,255,0.01) 8px),
        repeating-linear-gradient(80deg, transparent, transparent 11px, rgba(0,0,0,0.03) 11px, rgba(0,0,0,0.03) 12px),
        /* base stone */
        linear-gradient(145deg, #1e1830 0%, #14101f 40%, #1a1530 65%, #0f0b1a 100%);

    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
}

.verse-door:hover {
    transform: translateY(-6px) scale(1.04);
}

/* Creator rock has different rocky shape */
.verse-door--creator {
    clip-path: polygon(
        2% 3%, 14% 1%, 30% 5%, 48% 0%, 66% 4%, 82% 1%, 94% 3%, 100% 10%,
        98% 28%, 100% 48%, 97% 68%, 100% 84%, 97% 96%,
        82% 100%, 62% 95%, 44% 100%, 26% 96%, 10% 100%, 2% 92%,
        0% 74%, 3% 52%, 0% 32%, 3% 14%
    );
}

/* Molten crack lines */
.verse-door__cracks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.verse-door--brand .verse-door__cracks {
    background:
        linear-gradient(152deg, transparent 28%, rgba(244,63,94,0.14) 28.4%, rgba(244,63,94,0.07) 29%, transparent 29.5%),
        linear-gradient(200deg, transparent 50%, rgba(244,63,94,0.12) 50.4%, rgba(244,63,94,0.06) 51%, transparent 51.5%),
        linear-gradient(115deg, transparent 65%, rgba(244,63,94,0.1) 65.3%, rgba(244,63,94,0.04) 66%, transparent 66.5%),
        linear-gradient(170deg, transparent 75%, rgba(244,63,94,0.08) 75.3%, transparent 76%);
}

.verse-door--creator .verse-door__cracks {
    background:
        linear-gradient(152deg, transparent 28%, rgba(245,158,11,0.14) 28.4%, rgba(245,158,11,0.07) 29%, transparent 29.5%),
        linear-gradient(200deg, transparent 50%, rgba(245,158,11,0.12) 50.4%, rgba(245,158,11,0.06) 51%, transparent 51.5%),
        linear-gradient(115deg, transparent 65%, rgba(245,158,11,0.1) 65.3%, rgba(245,158,11,0.04) 66%, transparent 66.5%),
        linear-gradient(170deg, transparent 75%, rgba(245,158,11,0.08) 75.3%, transparent 76%);
}

.verse-door:hover .verse-door__cracks {
    opacity: 1;
}

/* Inner molten glow */
.verse-door__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.verse-door--brand .verse-door__glow {
    background:
        radial-gradient(ellipse at 50% 110%, rgba(244,63,94,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(244,63,94,0.05) 0%, transparent 70%);
}

.verse-door--creator .verse-door__glow {
    background:
        radial-gradient(ellipse at 50% 110%, rgba(245,158,11,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.05) 0%, transparent 70%);
}

.verse-door:hover .verse-door__glow {
    opacity: 1;
}

/* Molten glow on hover via drop-shadow (follows clip-path) */
.verse-door--brand:hover {
    filter:
        drop-shadow(0 0 8px rgba(244,63,94,0.35))
        drop-shadow(0 0 25px rgba(244,63,94,0.15))
        drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.verse-door--creator:hover {
    filter:
        drop-shadow(0 0 8px rgba(245,158,11,0.35))
        drop-shadow(0 0 25px rgba(245,158,11,0.15))
        drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.verse-door__icon {
    position: relative;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s, filter 0.3s;
}

.verse-door--brand:hover .verse-door__icon {
    color: #F43F5E;
    filter: drop-shadow(0 0 10px rgba(244,63,94,0.6));
}

.verse-door--creator:hover .verse-door__icon {
    color: #F59E0B;
    filter: drop-shadow(0 0 10px rgba(245,158,11,0.6));
}

.verse-door__label {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.verse-door__desc {
    position: relative;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

.verse-portal__divider {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.2);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ---- Success State ---- */
.verse-portal__success .verse-portal__logo {
    margin-bottom: 20px;
}

.verse-portal__check {
    color: #34D399;
    margin-bottom: 16px;
    animation: checkPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.verse-portal__success .verse-portal__title {
    color: #34D399;
    text-shadow: 0 0 30px rgba(52,211,153,0.3);
}

.verse-portal__success .verse-portal__subtitle {
    margin-bottom: 0;
}

/* Spinner */
.verse-spinner {
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.waitlist-form__status {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.waitlist-form__status--success {
    background: var(--color-action-light);
    color: var(--color-action);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.waitlist-form__status--error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   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__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(30, 64, 175, 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;
    }

    .waitlist-form__row {
        flex-direction: column;
        gap: 8px;
    }

    .waitlist-form__input {
        border-right: 2px solid var(--color-border);
        border-radius: 8px;
    }

    .waitlist-form__input:focus {
        border-color: var(--color-primary);
    }

    .waitlist-form__button {
        border-radius: 8px;
        padding: 14px;
    }

    .verse-portal__content {
        padding: 28px 18px 36px;
    }

    .verse-portal__logo img {
        width: 36px;
        height: 36px;
    }

    .verse-portal__logo span {
        font-size: 19px;
    }

    .verse-portal__title {
        font-size: 24px;
    }

    .verse-portal__subtitle {
        margin-bottom: 28px;
    }

    .verse-portal__doors {
        flex-direction: column;
        gap: 14px;
    }

    .verse-portal__divider {
        display: none;
    }

    .verse-door {
        padding: 28px 20px 22px;
    }

    .verse-portal__doors {
        gap: 18px;
    }

    .meteor__trail {
        width: 120px;
    }

    .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;
    }
}
