/* URBot.net — Salesman Bot Page Styles */
/* Special: free platform guide + $5 Pro upgrade */

:root {
    --bot-accent: #f59e0b;
    --bot-accent-dim: rgba(245, 158, 11, 0.15);
    --bot-accent-glow: rgba(245, 158, 11, 0.25);
    --dark-bg: #0a0e1a;
    --darker-bg: #050812;
    --card-bg: #151a2e;
    --card-bg-hover: #1a2038;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;
    --error-color: #ff4444;
    --success-color: #00ff88;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.page { max-width: 960px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.header {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    padding: 1.5rem 0; border-bottom: 1px solid var(--border-subtle);
}
.header-back {
    color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
    transition: color 0.2s;
}
.header-back:hover { color: var(--bot-accent); }
.header-auth { margin-left: auto; }
.header-auth-btn {
    color: var(--text-secondary); text-decoration: none; font-size: 0.85rem;
    padding: 0.4rem 1rem; border: 1px solid var(--border-accent); border-radius: 6px;
    transition: all 0.2s;
}
.header-auth-btn:hover { border-color: var(--bot-accent); color: var(--bot-accent); }
.header-bot { display: flex; align-items: center; gap: 1rem; width: 100%; margin-top: 0.5rem; }
.avatar-wrap {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--bot-accent-dim); border: 2px solid var(--bot-accent);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    box-shadow: 0 0 20px var(--bot-accent-glow);
}
.avatar { width: 48px; height: 48px; border-radius: 50%; }
.bot-name { font-size: 1.5rem; font-weight: 700; }
.category-badge {
    display: inline-block; padding: 0.2rem 0.7rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    background: var(--bot-accent-dim); color: var(--bot-accent);
    border: 1px solid var(--bot-accent);
}

/* Hero */
.hero { text-align: center; padding: 3rem 0 2rem; }
.tagline { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.description { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btn {
    display: inline-block; padding: 0.75rem 2rem; border-radius: 8px;
    background: linear-gradient(135deg, var(--bot-accent), #d97706); color: #000;
    font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--bot-accent-glow); }

/* Sections */
.section { padding: 2.5rem 0; border-top: 1px solid var(--border-subtle); }
.section-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; }

/* Feature list */
.feature-list { list-style: none; display: grid; gap: 1rem; max-width: 700px; margin: 0 auto; }
.feature-list li {
    padding: 1rem 1.25rem; background: var(--card-bg); border-radius: 8px;
    border-left: 3px solid var(--bot-accent); color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tier cards */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.tier-card {
    background: var(--card-bg); border: 1px solid var(--border-subtle);
    border-radius: 12px; padding: 1.5rem; position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tier-card:hover { border-color: var(--bot-accent); box-shadow: 0 0 20px var(--bot-accent-dim); }
.tier-card.popular { border-color: var(--bot-accent); }
.popular-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--bot-accent); color: #000; font-size: 0.7rem; font-weight: 700;
    padding: 0.2rem 0.8rem; border-radius: 999px; text-transform: uppercase;
}
.tier-header { text-align: center; margin-bottom: 1rem; }
.tier-header h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.tier-price { font-size: 2rem; font-weight: 800; color: var(--bot-accent); }
.tier-license { font-size: 0.8rem; color: var(--text-muted); }
.tier-includes { list-style: none; margin-bottom: 1.5rem; }
.tier-includes li { padding: 0.3rem 0; font-size: 0.85rem; color: var(--text-secondary); }
.tier-includes li::before { content: '\2713 '; color: var(--bot-accent); font-weight: 700; }
.tier-action { text-align: center; }
.buy-btn {
    display: inline-block; padding: 0.6rem 1.5rem; border-radius: 8px;
    background: var(--bot-accent); color: #000; border: none; cursor: pointer;
    font-weight: 700; font-size: 0.9rem; transition: transform 0.2s;
}
.buy-btn:hover { transform: translateY(-1px); }
.checkout-form { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.checkout-form input {
    padding: 0.6rem; border-radius: 6px; border: 1px solid var(--border-accent);
    background: var(--darker-bg); color: var(--text-primary); font-size: 0.9rem;
}
.checkout-submit {
    padding: 0.6rem; border-radius: 6px; border: none;
    background: var(--success-color); color: #000; font-weight: 700; cursor: pointer;
}
.checkout-error { color: var(--error-color); font-size: 0.8rem; }
.discount-badge { color: var(--bot-accent); font-size: 0.8rem; font-weight: 600; }

/* Free CTA */
.free-cta { text-align: center; padding: 2rem 0; }
.free-cta-btn {
    display: inline-block; padding: 1rem 2.5rem; border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
    font-weight: 800; font-size: 1.2rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
}
.free-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(16,185,129,0.3); }
.free-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { text-align: center; }
.step-number {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bot-accent-dim); color: var(--bot-accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; margin: 0 auto 0.75rem;
    border: 2px solid var(--bot-accent);
}
.step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* Chat demo */
.chat-demo {
    max-width: 600px; margin: 0 auto; background: var(--card-bg);
    border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border-subtle);
}
.chat-msg { margin-bottom: 1rem; }
.chat-msg:last-child { margin-bottom: 0; }
.chat-role {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.chat-role.user { color: #818cf8; }
.chat-role.bot { color: var(--bot-accent); }
.chat-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* Comparison table */
.comparison-table { width: 100%; max-width: 700px; margin: 0 auto; border-collapse: collapse; }
.comparison-table th,
.comparison-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; }
.comparison-table th { color: var(--bot-accent); font-weight: 700; }
.comparison-table td { color: var(--text-secondary); }
.comparison-table tr:hover td { background: var(--card-bg); }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.trust-item {
    background: var(--card-bg); border-radius: 10px; padding: 1.25rem;
    border: 1px solid var(--border-subtle); text-align: center;
}
.trust-item.trust-highlight { grid-column: 1 / -1; border-color: var(--bot-accent); }
.trust-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.trust-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* Signup */
.signup-section { text-align: center; }
.signup-subtitle { color: var(--text-muted); margin-bottom: 1rem; }
.signup-form { display: flex; gap: 0.5rem; max-width: 400px; margin: 0 auto; }
.signup-form input {
    flex: 1; padding: 0.6rem; border-radius: 6px;
    border: 1px solid var(--border-accent); background: var(--card-bg); color: var(--text-primary);
}
.signup-form button {
    padding: 0.6rem 1.5rem; border-radius: 6px; border: none;
    background: var(--bot-accent); color: #000; font-weight: 700; cursor: pointer;
}
.privacy-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Footer */
.footer { padding: 2rem 0; text-align: center; border-top: 1px solid var(--border-subtle); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--bot-accent); }
.footer-principle { font-style: italic; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
    .tier-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item.trust-highlight { grid-column: auto; }
}
