/* PromoForge — Base Styles */

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-accent: #ff6b35;
    --color-accent-hot: #ff2d78;
    --color-bg: #0a0a0f;
    --color-bg-warm: #0d1117;
    --color-surface: #151520;
    --color-surface-hover: #1e1e2e;
    --color-text: #f1f5f9;
    --color-text-muted: #8892a4;
    --color-border: #1e2030;
    --color-border-light: #2a2d42;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.3);
    --gradient-accent: linear-gradient(135deg, #ff6b35, #ff2d78);
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.15) 0%, transparent 60%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════════════════════
   LANDING PAGE — Agency-Grade Presentation
   ══════════════════════════════════════════════════════ */

/* ── Landing Nav ─────────────────────────────────────── */
.landing .nav-main { display: none; }

.landing-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
}
.landing-nav-inner {
    display: flex; align-items: center;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
}
.landing-nav-inner.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}
.landing-logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: var(--color-text);
}
.logo-mark {
    background: var(--gradient-accent);
    color: white; font-weight: 800; font-size: 0.8rem;
    padding: 0.3rem 0.55rem; border-radius: 6px;
    letter-spacing: 0.5px;
}
.landing-logo-img {
    height: 56px; width: auto;
}
.logo-word {
    font-weight: 800; font-size: 1.5rem; letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff 40%, #ff6b35 70%, #ff2d78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-nav-links {
    display: flex; gap: 2rem; margin-left: auto; margin-right: 2rem;
}
.landing-nav-links a {
    color: var(--color-text-muted); text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    transition: color 0.2s;
}
.landing-nav-links a:hover { color: var(--color-text); }
.nav-signin { color: var(--color-text) !important; }

/* ── CTA Buttons ─────────────────────────────────────── */
.btn-cta {
    background: var(--gradient-accent);
    color: white; font-weight: 600;
    padding: 0.7rem 1.75rem; border-radius: var(--radius-sm);
    font-size: 0.9rem; text-decoration: none; display: inline-block;
    transition: all 0.2s; border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}
.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.45);
}
.btn-nav-cta { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.btn-ghost {
    background: transparent; color: var(--color-text);
    border: 1px solid var(--color-border-light);
    padding: 0.7rem 1.75rem; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; display: inline-block;
    transition: all 0.2s; cursor: pointer;
}
.btn-ghost:hover {
    border-color: var(--color-text-muted);
    background: rgba(255,255,255,0.03);
}
.btn-hero { padding: 0.9rem 2.5rem; font-size: 1.05rem; }

/* ── Hero Section ────────────────────────────────────── */
.landing-hero {
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 7rem 1.5rem 3rem;
    overflow: hidden;
}
.hero-glow {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 120%; height: 70%;
    background: radial-gradient(ellipse at 50% 30%, rgba(255,107,53,0.12) 0%, rgba(255,45,120,0.06) 40%, transparent 70%);
    pointer-events: none;
}
.hero-inner { position: relative; max-width: 800px; z-index: 2; }

/* ── Hero Logo Display ──────────────────────────────── */
.hero-logo-display {
    margin-bottom: 1.5rem;
}
.hero-logo-icon {
    height: 100px; width: auto;
    filter: drop-shadow(0 0 40px rgba(255,107,53,0.3)) drop-shadow(0 0 80px rgba(255,45,120,0.15));
    animation: heroLogoFloat 6s ease-in-out infinite;
}
@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-eyebrow {
    text-transform: uppercase; letter-spacing: 4px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-size: 4.5rem; font-weight: 800;
    line-height: 1.08; letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.hero-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-hero .hero-sub {
    font-size: 1.2rem; color: var(--color-text-muted);
    line-height: 1.7; margin-bottom: 2.5rem;
    max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero-actions {
    display: flex; gap: 1rem; justify-content: center;
    margin-bottom: 1.5rem;
}
.hero-micro {
    font-size: 0.8rem; color: var(--color-text-muted);
    letter-spacing: 0.3px;
}

/* ── Product Preview Mockup ─────────────────────────── */
.hero-product-preview {
    position: relative; z-index: 2;
    max-width: 900px; width: 100%;
    margin: 3rem auto 0;
    perspective: 1200px;
}
.product-window {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05),
        0 0 100px rgba(255,107,53,0.08);
    transform: rotateX(2deg);
    transition: transform 0.4s ease;
}
.product-window:hover {
    transform: rotateX(0deg);
}
.product-window-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 0.65rem 1rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--color-border);
}
.window-dot {
    width: 10px; height: 10px; border-radius: 50%;
    display: inline-block;
}
.window-title {
    margin-left: auto; margin-right: auto;
    font-size: 0.75rem; color: var(--color-text-muted);
    font-weight: 500;
}
.product-window-body {
    display: flex; min-height: 320px;
}

/* Mock sidebar */
.mock-sidebar {
    width: 180px; padding: 1rem 0;
    border-right: 1px solid var(--color-border);
    flex-shrink: 0;
}
.mock-nav-item {
    padding: 0.5rem 1.25rem; font-size: 0.8rem;
    color: var(--color-text-muted); cursor: default;
    display: flex; align-items: center; gap: 0.5rem;
}
.mock-nav-item.mock-active {
    color: var(--color-text);
    background: rgba(255,107,53,0.08);
    border-right: 2px solid var(--color-accent);
}
.mock-icon { font-size: 0.65rem; }

/* Mock main content */
.mock-main {
    flex: 1; padding: 1.5rem 2rem;
}
.mock-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}
.mock-header h4 {
    font-size: 1.1rem; font-weight: 700;
}
.mock-badge {
    background: rgba(255,107,53,0.15);
    color: var(--color-accent);
    padding: 0.2rem 0.6rem; border-radius: 12px;
    font-size: 0.7rem; font-weight: 600;
}

/* Mock scene cards */
.mock-scenes {
    display: flex; gap: 0.75rem; margin-bottom: 1.5rem;
}
.mock-scene {
    flex: 1; text-align: center;
}
.mock-scene-visual {
    aspect-ratio: 9/16; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.4rem;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.mock-scene-visual:hover {
    opacity: 1; transform: scale(1.03);
}
.mock-play {
    color: white; font-size: 1.2rem;
    opacity: 0.7;
}
.mock-scene-label {
    font-size: 0.65rem; color: var(--color-text-muted);
    font-weight: 500;
}

/* Mock action buttons */
.mock-actions {
    display: flex; gap: 0.75rem; justify-content: flex-end;
}
.mock-btn {
    padding: 0.45rem 1rem; border-radius: 6px;
    font-size: 0.75rem; font-weight: 600;
    cursor: default;
}
.mock-btn-gen {
    background: var(--gradient-accent); color: white;
    box-shadow: 0 2px 10px rgba(255,107,53,0.3);
}
.mock-btn-pub {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-muted);
}

/* ── Platforms Strip ────────────────────────────────── */
.platforms-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.platforms-label {
    text-align: center; font-size: 0.8rem;
    color: var(--color-text-muted); text-transform: uppercase;
    letter-spacing: 2px; font-weight: 600;
    margin-bottom: 1.25rem;
}
.platforms-row {
    display: flex; justify-content: center;
    gap: 2.5rem; flex-wrap: wrap;
}
.platform-badge {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.95rem; font-weight: 600;
    color: var(--color-text-muted);
}
.platform-icon { font-size: 1.2rem; }

/* ── Mobile responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .hero-headline { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-logo-icon { height: 72px; }
    .mock-sidebar { display: none; }
    .product-window { transform: none; }
    .mock-scenes { gap: 0.4rem; }
    .mock-header h4 { font-size: 0.9rem; }
    .platforms-row { gap: 1.5rem; }
    .platform-badge { font-size: 0.8rem; }
}

/* ── Pain Strip ──────────────────────────────────────── */
.pain-strip {
    padding: 5rem 0 4rem;
    border-top: 1px solid var(--color-border);
}
.pain-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; margin-bottom: 2rem;
}
.pain-item { text-align: center; }
.pain-number {
    display: block; font-size: 3rem; font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pain-label {
    display: block; font-size: 0.9rem;
    color: var(--color-text-muted); margin-top: 0.25rem;
}
.pain-divider {
    width: 1px; height: 60px;
    background: var(--color-border-light);
}
.pain-punchline {
    text-align: center; font-size: 1.1rem;
    color: var(--color-text-muted); font-style: italic;
}

/* ── Section Titles ──────────────────────────────────── */
.section-title {
    font-size: 2.5rem; font-weight: 800;
    letter-spacing: -1px; text-align: center;
    margin-bottom: 0.75rem;
}
.section-sub {
    text-align: center; font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
}

/* ── Timeline / How It Works ─────────────────────────── */
.timeline-section {
    padding: 6rem 0;
    background: var(--gradient-glow);
}
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
    content: ''; position: absolute;
    left: 52px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-hot), transparent);
}
.timeline-item {
    display: flex; gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    flex-shrink: 0; width: 105px; text-align: right;
    padding-top: 0.15rem;
}
.timeline-day {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    padding: 0.3rem 0.75rem; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--color-accent);
}
.timeline-content h3 {
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 0.4rem;
}
.timeline-content p {
    color: var(--color-text-muted); font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Team Section ────────────────────────────────────── */
.team-section { padding: 6rem 0; }
.team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.team-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all 0.3s;
}
.team-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.team-icon {
    font-size: 2rem; margin-bottom: 1rem;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
}
.team-card h3 {
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.6rem;
}
.team-card p {
    color: var(--color-text-muted); font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Comparison Section ──────────────────────────────── */
.comparison-section {
    padding: 6rem 0;
    background: var(--gradient-glow);
}
.comparison-grid {
    display: flex; align-items: stretch;
    justify-content: center; gap: 0;
    max-width: 850px; margin: 0 auto;
}
.comparison-card {
    flex: 1; padding: 2.5rem 2rem;
    border-radius: var(--radius);
    position: relative;
}
.comparison-agency {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    opacity: 0.7;
}
.comparison-pf {
    background: var(--color-surface);
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 60px rgba(255,107,53,0.15);
}
.comparison-badge {
    position: absolute; top: -12px; left: 24px;
    background: var(--gradient-accent);
    color: white; font-weight: 700; font-size: 0.7rem;
    padding: 0.3rem 0.8rem; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.comparison-vs {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800;
    color: var(--color-text-muted);
    padding: 0 1.5rem;
}
.comparison-card h3 {
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.75rem;
}
.comparison-price {
    font-size: 2rem; font-weight: 800;
    margin-bottom: 1.5rem;
}
.comparison-price span {
    font-size: 0.9rem; font-weight: 400;
    color: var(--color-text-muted);
}
.comparison-card ul { list-style: none; }
.comparison-card li {
    padding: 0.4rem 0; color: var(--color-text-muted);
    font-size: 0.85rem;
}
.comparison-agency li::before { content: "— "; color: var(--color-text-muted); }
.comparison-pf li::before { content: "✓ "; color: var(--color-success); }

/* ── Bento Grid / Capabilities ───────────────────────── */
.capabilities-section { padding: 6rem 0; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.bento-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.3s;
}
.bento-card:hover {
    border-color: var(--color-border-light);
}
.bento-wide { grid-column: span 2; }
.bento-card h3 {
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 0.6rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bento-card p {
    color: var(--color-text-muted); font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Pricing / Retainer ──────────────────────────────── */
.pricing-section {
    padding: 6rem 0;
    background: var(--gradient-glow);
}
.retainer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-bottom: 2rem;
}
.retainer-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    position: relative;
}
.retainer-featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 60px rgba(255,107,53,0.1);
    transform: scale(1.03);
}
.retainer-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white; font-weight: 700; font-size: 0.7rem;
    padding: 0.3rem 1rem; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    white-space: nowrap;
}
.retainer-card h3 {
    font-size: 1.3rem; font-weight: 800;
    margin-bottom: 0.15rem;
}
.retainer-tagline {
    font-size: 0.85rem; color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}
.retainer-price {
    font-size: 2.5rem; font-weight: 800;
    margin-bottom: 1.5rem;
}
.retainer-price span {
    font-size: 0.95rem; font-weight: 400;
    color: var(--color-text-muted);
}
.retainer-card ul {
    list-style: none; margin-bottom: 2rem;
    flex-grow: 1;
}
.retainer-card li {
    padding: 0.35rem 0; color: var(--color-text-muted);
    font-size: 0.85rem;
}
.retainer-card li::before { content: "✓ "; color: var(--color-success); }
.btn-retainer {
    display: block; text-align: center;
    background: transparent;
    border: 1px solid var(--color-border-light);
    color: var(--color-text);
    padding: 0.7rem 1.5rem; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-retainer:hover {
    border-color: var(--color-text-muted);
    background: rgba(255,255,255,0.03);
}
.btn-retainer-cta {
    display: block; text-align: center;
    background: var(--gradient-accent);
    color: white; border: none;
    padding: 0.8rem 1.5rem; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}
.btn-retainer-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.45);
}

/* Agency tier (separate row) */
.retainer-agency {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
}
.retainer-agency-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}
.retainer-agency h3 {
    font-size: 1.2rem; font-weight: 800;
    margin-bottom: 0.3rem;
}
.retainer-agency p {
    color: var(--color-text-muted); font-size: 0.9rem;
}
.retainer-agency-price {
    display: flex; align-items: center; gap: 1.5rem;
    flex-shrink: 0;
}
.retainer-agency-price .retainer-price {
    margin-bottom: 0; font-size: 2rem;
}

/* ── Final CTA ───────────────────────────────────────── */
.final-cta {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 150%; height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,107,53,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: 2.75rem; font-weight: 800;
    letter-spacing: -1px; line-height: 1.2;
    margin-bottom: 1rem; position: relative;
}
.final-cta p {
    color: var(--color-text-muted); font-size: 1.1rem;
    margin-bottom: 2rem; position: relative;
}
.final-cta .btn-cta { position: relative; }

/* ── Landing Footer ──────────────────────────────────── */
.landing-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand {
    display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-brand .logo-mark { align-self: flex-start; }
.footer-brand p {
    color: var(--color-text-muted); font-size: 0.85rem;
    margin-top: 0.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 {
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}
.footer-links a {
    color: var(--color-text-muted); text-decoration: none;
    font-size: 0.85rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-text); }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}
.footer-bottom p {
    color: var(--color-text-muted); font-size: 0.8rem;
    text-align: center;
}

/* ══════════════════════════════════════════════════════
   APP STYLES — Dashboard, Studio, etc.
   (Preserved from original, not affected by landing)
   ══════════════════════════════════════════════════════ */

/* ── App Nav ─────────────────────────────────────────── */
.nav-main {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}
.nav-brand a {
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none; color: var(--color-text);
}
.logo {
    background: var(--gradient-accent);
    color: white; font-weight: 700; font-size: 0.875rem;
    padding: 0.25rem 0.5rem; border-radius: 4px;
}
.nav-logo {
    height: 38px; width: auto;
}
.logo-text {
    font-weight: 700; font-size: 1.2rem;
    background: linear-gradient(135deg, #fff 40%, #ff6b35 70%, #ff2d78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; gap: 1.5rem; margin-left: 3rem; }
.nav-links a {
    color: var(--color-text-muted); text-decoration: none;
    font-size: 0.9rem; padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}
.nav-links a.active, .nav-links a:hover {
    color: var(--color-text); border-bottom-color: var(--color-accent);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.nav-right a { color: var(--color-text-muted); text-decoration: none; font-size: 0.875rem; }
.plan-badge {
    background: var(--gradient-accent); color: white;
    padding: 0.15rem 0.6rem; border-radius: 12px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-block; padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm); font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    font-size: 0.9rem; transition: all 0.15s;
}
.btn-primary { background: var(--gradient-accent); color: white; }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 1px solid var(--color-border-light); color: var(--color-text); background: transparent; }
.btn-outline:hover { background: var(--color-surface); }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.25rem 0.75rem; font-size: 0.8rem; }

/* ── Cards ────────────────────────────────────────────── */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.card h3 { margin-bottom: 1rem; font-size: 1rem; color: var(--color-text-muted); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-wide { grid-column: span 2; }

/* ── Dashboard ────────────────────────────────────────── */
.dashboard { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.dashboard-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.dashboard-header h1 { font-size: 1.5rem; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ── Tables ───────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; padding: 0.5rem; color: var(--color-text-muted); font-size: 0.8rem; border-bottom: 1px solid var(--color-border); }
.table td { padding: 0.5rem; font-size: 0.9rem; border-bottom: 1px solid var(--color-border); }
.table a { color: var(--color-accent); text-decoration: none; }

/* ── Status badges ────────────────────────────────────── */
[class*="status-"] {
    padding: 0.15rem 0.5rem; border-radius: 4px;
    font-size: 0.75rem; font-weight: 500;
}
.status-draft { background: var(--color-surface-hover); }
.status-storyboarded { background: #1e3a5f; color: #60a5fa; }
.status-previewed { background: #312e81; color: #a78bfa; }
.status-approved { background: #14532d; color: #4ade80; }
.status-rendering { background: #78350f; color: #fbbf24; }
.status-rendered { background: #14532d; color: #4ade80; }
.status-posted { background: #14532d; color: #4ade80; }
.status-failed { background: #450a0a; color: #f87171; }
.status-stale { background: #78350f; color: #fbbf24; }

/* ── Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; color: var(--color-text-muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.6rem 0.8rem; border-radius: var(--radius-sm);
    border: 1px solid var(--color-border); background: var(--color-bg);
    color: var(--color-text); font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-accent);
}

/* ── Messages ─────────────────────────────────────────── */
.messages { max-width: 1200px; margin: 0.5rem auto; padding: 0 1.5rem; }
.message { padding: 0.75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 0.5rem; font-size: 0.9rem; }
.message-success { background: #14532d; color: #4ade80; }
.message-error { background: #450a0a; color: #f87171; }
.message-warning { background: #78350f; color: #fbbf24; }

/* ── Onboarding ───────────────────────────────────────── */
.onboarding-prompt {
    text-align: center; padding: 4rem 2rem;
    background: var(--color-surface); border-radius: var(--radius);
    border: 2px dashed var(--color-border);
}
.onboarding-prompt h2 { margin-bottom: 0.75rem; }
.onboarding-prompt p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* ── Auth Pages ───────────────────────────────────────── */
.auth-page .nav-main { display: none; }
.auth-container {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; padding: 2rem;
}
.auth-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header h1 { font-size: 1.5rem; margin: 1rem 0 0.25rem; }
.auth-header p { color: var(--color-text-muted); font-size: 0.9rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.auth-footer p { font-size: 0.85rem; color: var(--color-text-muted); }
.auth-footer a { color: var(--color-accent); text-decoration: none; }
.btn-full { width: 100%; text-align: center; }
.form-row-inline { display: flex; justify-content: space-between; align-items: center; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--color-text-muted); cursor: pointer; }
.checkbox-label input { width: auto; }
.forgot-link { font-size: 0.8rem; color: var(--color-accent); text-decoration: none; }
.alert-error { background: #450a0a; color: #f87171; padding: 0.75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.85rem; }

/* ── Footer ───────────────────────────────────────────── */
footer { padding: 2rem 0; text-align: center; color: var(--color-text-muted); font-size: 0.85rem; border-top: 1px solid var(--color-border); margin-top: 4rem; }

/* ── AI Disclosure Badges ─────────────────────────────── */
.ai-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: linear-gradient(135deg, #312e81, #1e3a5f);
    color: #a78bfa; padding: 0.15rem 0.5rem;
    border-radius: 4px; font-size: 0.7rem; font-weight: 600;
    border: 1px solid #4338ca;
}
.ai-badge::before { content: "\2728"; font-size: 0.6rem; }
.ai-badge-compact { padding: 0.1rem 0.35rem; font-size: 0.65rem; }
.ai-badge-compact::before { display: none; }
.ai-disclosure-bar {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: var(--color-surface);
    border: 1px solid #4338ca33; border-radius: var(--radius-sm);
    font-size: 0.8rem; color: var(--color-text-muted);
    margin-top: 0.75rem;
}
.ai-disclosure-bar .ai-badge { flex-shrink: 0; }

/* ── Mobile Nav ───────────────────────────────────────── */
.nav-toggle {
    display: none; background: none; border: none;
    color: var(--color-text); font-size: 1.5rem; cursor: pointer;
    padding: 0.25rem; line-height: 1;
}
.nav-mobile {
    display: none; background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 1.5rem 1rem;
}
.nav-mobile a {
    display: block; padding: 0.5rem 0;
    color: var(--color-text-muted); text-decoration: none; font-size: 0.9rem;
}
.nav-mobile a.active { color: var(--color-text); }
.nav-mobile a:hover { color: var(--color-text); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    /* App responsive */
    .dashboard-grid { grid-template-columns: 1fr; }
    .card-wide { grid-column: span 1; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-mobile[data-open="true"] { display: block; }

    /* Landing responsive */
    .hero-headline { font-size: 2.4rem; }
    .landing-hero .hero-sub { font-size: 1rem; }
    .landing-nav-links { display: none; }
    .btn-nav-cta { font-size: 0.75rem; padding: 0.5rem 1rem; }
    .pain-grid { flex-direction: column; gap: 1.5rem; }
    .pain-divider { width: 60px; height: 1px; }
    .team-grid { grid-template-columns: 1fr; }
    .comparison-grid { flex-direction: column; }
    .comparison-vs { padding: 1rem 0; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .retainer-grid { grid-template-columns: 1fr; }
    .retainer-featured { transform: none; }
    .retainer-agency-inner { flex-direction: column; text-align: center; }
    .retainer-agency-price { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .section-title { font-size: 1.8rem; }
    .final-cta h2 { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}
